Skip to content

Commit f30e284

Browse files
committed
Add libgcc with v14.2.0 to conda environments
1 parent 3aef48d commit f30e284

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

modules/01_filter.nf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ process FILTER_VCF {
99
memory params.memory
1010
tag "${name}"
1111

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

1414
input:
1515
tuple val(name), file(vcf)

modules/02_normalization.nf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ process BCFTOOLS_NORM {
99
memory params.memory
1010
tag "${name}"
1111

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

1414
input:
1515
tuple val(name), file(vcf)
@@ -54,7 +54,7 @@ process REMOVE_DUPLICATES {
5454
tag "${name}"
5555
publishDir "${params.output}/${name}", mode: "copy"
5656

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

5959
input:
6060
tuple val(name), file(vcf)

modules/03_summary.nf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ process SUMMARY_VCF {
99
tag "${name}"
1010
publishDir "${params.output}/${name}/metrics", mode: "copy"
1111

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

1414
input:
1515
tuple val(name), file(vcf)

modules/06_variant_annotation.nf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ process VARIANT_ANNOTATION_BCFTOOLS {
3636
publishDir "${params.output}/${name}", mode: "copy"
3737
tag "${name}"
3838

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

4141
input:
4242
tuple val(name), file(vcf)

0 commit comments

Comments
 (0)