Skip to content

Commit cab0df2

Browse files
committed
upgrade GATK to 4.2.5.0
1 parent 6aaa617 commit cab0df2

File tree

6 files changed

+8
-8
lines changed

6 files changed

+8
-8
lines changed

modules/01_prepare_bam.nf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ process PREPARE_BAM {
1717
memory "${params.prepare_bam_memory}"
1818
tag "${name}"
1919

20-
conda (params.enable_conda ? "bioconda::gatk4=4.2.0.0" : null)
20+
conda (params.enable_conda ? "bioconda::gatk4=4.2.5.0" : null)
2121

2222
input:
2323
tuple val(name), val(type), file(bam)
@@ -58,7 +58,7 @@ process INDEX_BAM {
5858
memory "${params.index_memory}"
5959
tag "${name}"
6060

61-
conda (params.enable_conda ? "bioconda::gatk4=4.2.0.0" : null)
61+
conda (params.enable_conda ? "bioconda::gatk4=4.2.5.0" : null)
6262

6363
input:
6464
tuple val(name), val(type), file(bam)

modules/02_mark_duplicates.nf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ process MARK_DUPLICATES {
1111
tag "${name}"
1212
publishDir "${params.output}/${name}/metrics/mark_duplicates", mode: "copy", pattern: "*.dedup_metrics.txt"
1313

14-
conda (params.enable_conda ? "bioconda::gatk4=4.2.0.0" : null)
14+
conda (params.enable_conda ? "bioconda::gatk4=4.2.5.0" : null)
1515

1616
input:
1717
tuple val(name), val(type), file(bam)

modules/03_metrics.nf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ process HS_METRICS {
1313
tag "${name}"
1414
publishDir "${params.output}/${name}/metrics/hs_metrics", mode: "copy"
1515

16-
conda (params.enable_conda ? "bioconda::gatk4=4.2.0.0" : null)
16+
conda (params.enable_conda ? "bioconda::gatk4=4.2.5.0" : null)
1717

1818
input:
1919
tuple val(name), val(type), file(bam), file(bai)
@@ -53,7 +53,7 @@ process METRICS {
5353
publishDir "${params.output}/${name}/metrics/gatk_multiple_metrics", mode: "copy"
5454

5555
// NOTE: the method CollectMultipleMetrics has a hidden dependency to R for making plots
56-
conda (params.enable_conda ? "bioconda::gatk4=4.2.0.0 r::r=3.6.0" : null)
56+
conda (params.enable_conda ? "bioconda::gatk4=4.2.5.0 r::r=3.6.0" : null)
5757

5858
input:
5959
tuple val(name), val(type), file(bam), file(bai)

modules/04_realignment_around_indels.nf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ process REALIGNMENT_AROUND_INDELS {
1414

1515
// NOTE: this dependency is fixed to GATK 3 as the realignment around indels is not anymore maintained in GATK 4
1616
// but still for some reason for GATK 3 to work the dependency to GATK 4 is needed
17-
conda (params.enable_conda ? "bioconda::gatk4=4.2.0.0 bioconda::gatk=3.8" : null)
17+
conda (params.enable_conda ? "bioconda::gatk4=4.2.5.0 bioconda::gatk=3.8" : null)
1818

1919
input:
2020
tuple val(name), val(type), file(bam), file(bai)

modules/05_bqsr.nf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ process BQSR {
1111
publishDir "${params.output}/${name}", mode: "copy"
1212
tag "${name}"
1313

14-
conda (params.enable_conda ? "bioconda::gatk4=4.2.0.0" : null)
14+
conda (params.enable_conda ? "bioconda::gatk4=4.2.5.0" : null)
1515

1616
input:
1717
tuple val(name), val(type), file(bam), file(bai)

nextflow.config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ process.shell = ['/bin/bash', '-euo', 'pipefail']
4646

4747
cleanup = true
4848

49-
VERSION = '1.7.3'
49+
VERSION = '1.8.0'
5050
DOI = 'https://zenodo.org/badge/latestdoi/358400957'
5151

5252
manifest {

0 commit comments

Comments
 (0)