Skip to content

Commit

Permalink
add R dependency to Picard metrics
Browse files Browse the repository at this point in the history
  • Loading branch information
priesgo committed Dec 9, 2021
1 parent 1b6cd4c commit b7db808
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion modules/03_metrics.nf
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,8 @@ process METRICS {
tag "${name}"
publishDir "${params.output}/${name}/metrics/gatk_multiple_metrics", mode: "copy"

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

input:
tuple val(name), val(type), file(bam), file(bai)
Expand Down

0 comments on commit b7db808

Please sign in to comment.