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

augustus: add linux-aarch64 build #47056

Open
wants to merge 5 commits into
base: master
Choose a base branch
from
Open
Changes from 4 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
10 changes: 7 additions & 3 deletions recipes/augustus/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,9 @@ source:
- patches/utrrnaseq.patch

build:
number: 4
number: 5
run_exports:
- {{ pin_subpackage('augustus', max_pin="x") }}

requirements:
build:
Expand All @@ -22,8 +24,8 @@ requirements:
- {{ compiler('cxx') }}
host:
- zlib
- samtools ==0.1.19
- bamtools
- samtools =>1.19
- bamtools =>2.5.2
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue

Update version specifiers for samtools and bamtools

The version updates for samtools and bamtools are notable:

  1. The samtools version has been significantly bumped from 0.1.19 to 1.19. This is a major version change that may introduce compatibility issues. Please ensure that Augustus is compatible with this newer version of samtools.

  2. The specific version requirement for bamtools (=>2.5.2) is good for reproducibility.

However, there's an issue with the syntax of the version specifiers:

The => operator is not a standard conda version specifier. Instead, use the >= operator for "greater than or equal to". Please update the lines as follows:

- samtools >=1.19
- bamtools >=2.5.2

This change will ensure that conda correctly interprets the version requirements.

- htslib
- gsl
- lp_solve
Expand Down Expand Up @@ -163,6 +165,8 @@ about:
protein alignments and synthenic genomic alignments.'

extra:
additional-platforms:
- linux-aarch64
identifiers:
- biotools:augustus
- doi:10.1093/bioinformatics/btr010
Expand Down