Skip to content

Commit f3f480c

Browse files
authored
Merge pull request #3 from TRON-Bioinformatics/fix-issue-r-dependency
Fix issue r dependency
2 parents 2a5a937 + b7db808 commit f3f480c

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
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)

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.1'
49+
VERSION = '1.7.2'
5050
DOI = 'https://zenodo.org/badge/latestdoi/358400957'
5151

5252
manifest {

0 commit comments

Comments
 (0)