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

bowtie2: add linux-aarch64 build #46423

Merged
merged 2 commits into from
Mar 19, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
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
5 changes: 5 additions & 0 deletions recipes/bowtie2/build.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
#!/bin/bash

# Fetch third party dependencies
# (Git submodules - https://github.com/BenLangmead/bowtie2/blob/a43fa6f43f54989468a294967898f85b9fe4cefa/.gitmodules)
git clone --branch master https://github.com/simd-everywhere/simde-no-tests.git third_party/simde
git clone https://github.com/ch4rr0/libsais third_party/libsais

LDFLAGS=""
make CXX=$CXX CPP=$CXX CC=$CC LDLIBS="-L$PREFIX/lib -lz -lzstd -ltbb -ltbbmalloc -lpthread" WITH_ZSTD=1

Expand Down
5 changes: 4 additions & 1 deletion recipes/bowtie2/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ source:
sha256: 4ac3ece3db011322caab14678b9d80cfc7f75208cdaf0c58b24a6ea0f1a0a60e

build:
number: 0
number: 1
skip: True # [py2k]
run_exports:
- {{ pin_subpackage('bowtie2', max_pin="x") }}
Expand All @@ -18,6 +18,7 @@ requirements:
build:
- {{ compiler('cxx') }}
- make
- git
host:
- python
- zlib
Expand Down Expand Up @@ -54,6 +55,8 @@ about:
summary: Fast and sensitive gapped read alignment

extra:
additional-platforms:
- linux-aarch64
identifiers:
- biotools:bowtie2
- doi:10.1038/nmeth.1923
Expand Down