Skip to content

Commit 9dabd24

Browse files
committed
avoid incompatibility between gcc and bcftools
1 parent fff32e0 commit 9dabd24

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

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 ? "conda-forge::libgcc-ng=9.4.0 bioconda::bcftools=1.15.1" : null)
12+
conda (params.enable_conda ? "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 ? "conda-forge::libgcc-ng=9.4.0 bioconda::bcftools=1.15.1" : null)
12+
conda (params.enable_conda ? "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 ? "conda-forge::libgcc-ng=9.4.0 bioconda::bcftools=1.15.1" : null)
57+
conda (params.enable_conda ? "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 ? "conda-forge::libgcc-ng=9.4.0 bioconda::bcftools=1.15.1" : null)
12+
conda (params.enable_conda ? "bioconda::bcftools=1.15.1" : null)
1313

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

0 commit comments

Comments
 (0)