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

fix vcf2db: add missing dependencies #7217

Merged
merged 2 commits into from
Dec 13, 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
4 changes: 4 additions & 0 deletions modules/nf-core/vcf2db/environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ channels:
dependencies:
# renovate: datasource=conda depName=conda-forge/python
- conda-forge::python=2.7
# renovate: datasource=conda depName=conda-forge/python-snappy
- conda-forge::python-snappy=0.5.4
# renovate: datasource=conda depName=conda-forge/snappy
- conda-forge::snappy=1.1.8
# renovate: datasource=conda depName=bioconda/cyvcf2
- bioconda::cyvcf2=0.20.9
# renovate: datasource=conda depName=bioconda/vcf2db
Expand Down
4 changes: 2 additions & 2 deletions modules/nf-core/vcf2db/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ process VCF2DB {
// WARN: Version information not provided by tool on CLI. Please update version string below when bumping container versions.
conda "${moduleDir}/environment.yml"
container "${ workflow.containerEngine == 'singularity' && !task.ext.singularity_pull_docker_container ?
'https://community-cr-prod.seqera.io/docker/registry/v2/blobs/sha256/14/14d1257c98f789e23a888e2961673b5b98d89e4d03e6a3efba2b1134ed439f61/data':
'community.wave.seqera.io/library/python_vcf2db:91f604106ada5cf2' }"
'https://community-cr-prod.seqera.io/docker/registry/v2/blobs/sha256/30/3013992b36b50c203acfd01b000d37f3753aee640238f6dd39d5e47f58e54d98/data':
'community.wave.seqera.io/library/python_python-snappy_snappy_cyvcf2_vcf2db:9c1d7f361187f21a' }"

input:
tuple val(meta), path(vcf), path(ped)
Expand Down
Loading