Skip to content

Commit

Permalink
Merge pull request #3 from TRON-Bioinformatics/fix-issue-r-dependency
Browse files Browse the repository at this point in the history
Fix issue r dependency
  • Loading branch information
priesgo authored Dec 9, 2021
2 parents 2a5a937 + b7db808 commit f3f480c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
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
2 changes: 1 addition & 1 deletion nextflow.config
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ process.shell = ['/bin/bash', '-euo', 'pipefail']

cleanup = true

VERSION = '1.7.1'
VERSION = '1.7.2'
DOI = 'https://zenodo.org/badge/latestdoi/358400957'

manifest {
Expand Down

0 comments on commit f3f480c

Please sign in to comment.