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

add tabix version #497

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
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
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<description>multiple VCF datasets</description>

<requirements>
<requirement type="package">tabix</requirement>
<requirement type="package" version="0.2.5">tabix</requirement>
Copy link
Member

Choose a reason for hiding this comment

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

Wouldn't it be better to use:

        <requirement type="package" version="1.6">htslib</requirement>

instead? 0.2.5 is pretty ancient and tabix has been distributed as part of htslib for ages.

Copy link
Member Author

Choose a reason for hiding this comment

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

I just try to fix the old package. The multicontainer builds are failing because of this. Thats also the reason I have not bumped the tool version number.
Is this ok for you?

Copy link
Member

Choose a reason for hiding this comment

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

That's not the only problematic requirement in this tool collection:

tool_collections/vcftools/vcftools_annotate/vcftools_annotate.xml
5:        <requirement type="binary">echo</requirement>

tool_collections/vcftools/vcftools_isec/vcftools_isec.xml
5:        <requirement type="package">tabix</requirement>

tool_collections/vcftools/vcftools_merge/vcftools_merge.xml
5:        <requirement type="package">tabix</requirement>

tool_collections/vcftools/vcftools_slice/vcftools_slice.xml
5:        <requirement type="binary">echo</requirement>

tool_collections/vcftools/vcftools_subset/vcftools_subset.xml
5:        <requirement type="package">tabix</requirement>

Also, tool_collections/vcftools/vcftools_consensus/vcftools_consensus.xml is already using htslib to provide tabix:

<requirement type="package" version="1.3.2">htslib</requirement>

Finally, I noticed that:

The upstream vcftools seems to be maintained, so it may be worth to use a more sustainable solution?

<requirement type="package" version="0.1.11">vcftools</requirement>
</requirements>

Expand Down