Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Rebuild breseq #51221

Merged
merged 3 commits into from
Oct 7, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 12 additions & 2 deletions recipes/breseq/build.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
#!/bin/bash

set -eux
./configure --prefix=$PREFIX
make -j ${CPU_COUNT}

export INCLUDES="-I${PREFIX}/include"
export LIBPATH="-L${PREFIX}/lib"
export LDFLAGS="${LDFLAGS} -L${PREFIX}/lib"

autoreconf -if
./configure --prefix="${PREFIX}" \
CXX="${CXX}" \
CXXFLAGS="${CXXFLAGS} -O3 -I${PREFIX}/include" \
LDFLAGS="${LDFLAGS}"
make -j "${CPU_COUNT}"
make install
14 changes: 9 additions & 5 deletions recipes/breseq/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,19 +9,17 @@ source:
sha256: "39b35e246ecd2b497c82a99765ca4d78a0400bc4a7518b7506b140229ccc0247"

build:
number: 1
number: 2
run_exports:
- {{ pin_subpackage('breseq', max_pin="x.x") }}

requirements:
build:
- make
- {{ compiler("c") }}
- {{ compiler("cxx") }}
host:
- zlib
run:
- zlib
- r-base
- r-cairo
- bowtie2 >=2.0.0,!=2.0.3,!=2.0.4,!=2.3.1
Expand All @@ -36,11 +34,17 @@ about:
license: GPL-2.0-or-later
license_family: GPL
license_file: COPYING
summary: A computational pipeline for finding mutations relative to a reference sequence in short-read DNA re-sequencing
data.
summary: "A computational pipeline for finding mutations relative to a reference sequence in short-read DNA re-sequencing
data."
doc_url: "https://barricklab.org/twiki/pub/Lab/ToolsBacterialGenomeResequencing/documentation/"
dev_url: https://github.com/barricklab/breseq

extra:
additional-platforms:
- linux-aarch64
- osx-arm64
identifiers:
- biotools:breseq
- biotools:breseq_bam2aln
- biotools:breseq_bam2cov
- usegalaxy-eu:breseq
Loading