Skip to content

Commit b7db808

Browse files
committed
add R dependency to Picard metrics
1 parent 1b6cd4c commit b7db808

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

modules/03_metrics.nf

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,8 @@ process METRICS {
5252
tag "${name}"
5353
publishDir "${params.output}/${name}/metrics/gatk_multiple_metrics", mode: "copy"
5454

55-
conda (params.enable_conda ? "bioconda::gatk4=4.2.0.0" : null)
55+
// 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)
5657

5758
input:
5859
tuple val(name), val(type), file(bam), file(bai)

0 commit comments

Comments
 (0)