Skip to content

Commit

Permalink
Add libgcc with v14.2.0 to conda environments
Browse files Browse the repository at this point in the history
  • Loading branch information
oezmuslu committed Jan 9, 2025
1 parent 3aef48d commit f30e284
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion modules/01_filter.nf
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ process FILTER_VCF {
memory params.memory
tag "${name}"

conda (params.enable_conda ? "bioconda::bcftools=1.15.1" : null)
conda (params.enable_conda ? "conda-forge::libgcc-ng=14.2.0 bioconda::bcftools=1.15.1" : null)

input:
tuple val(name), file(vcf)
Expand Down
4 changes: 2 additions & 2 deletions modules/02_normalization.nf
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ process BCFTOOLS_NORM {
memory params.memory
tag "${name}"

conda (params.enable_conda ? "bioconda::bcftools=1.15.1" : null)
conda (params.enable_conda ? "conda-forge::libgcc-ng=14.2.0 bioconda::bcftools=1.15.1" : null)

input:
tuple val(name), file(vcf)
Expand Down Expand Up @@ -54,7 +54,7 @@ process REMOVE_DUPLICATES {
tag "${name}"
publishDir "${params.output}/${name}", mode: "copy"

conda (params.enable_conda ? "bioconda::bcftools=1.15.1" : null)
conda (params.enable_conda ? "conda-forge::libgcc-ng=14.2.0 bioconda::bcftools=1.15.1" : null)

input:
tuple val(name), file(vcf)
Expand Down
2 changes: 1 addition & 1 deletion modules/03_summary.nf
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ process SUMMARY_VCF {
tag "${name}"
publishDir "${params.output}/${name}/metrics", mode: "copy"

conda (params.enable_conda ? "bioconda::bcftools=1.15.1" : null)
conda (params.enable_conda ? "conda-forge::libgcc-ng=14.2.0 bioconda::bcftools=1.15.1" : null)

input:
tuple val(name), file(vcf)
Expand Down
2 changes: 1 addition & 1 deletion modules/06_variant_annotation.nf
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ process VARIANT_ANNOTATION_BCFTOOLS {
publishDir "${params.output}/${name}", mode: "copy"
tag "${name}"

conda (params.enable_conda ? "bioconda::bcftools=1.15.1" : null)
conda (params.enable_conda ? "conda-forge::libgcc-ng=14.2.0 bioconda::bcftools=1.15.1" : null)

input:
tuple val(name), file(vcf)
Expand Down

0 comments on commit f30e284

Please sign in to comment.