Skip to content

Commit

Permalink
Merge pull request #14 from TRON-Bioinformatics/bump-vafator-220
Browse files Browse the repository at this point in the history
bump vafator version to v2.2.0
  • Loading branch information
priesgo authored Feb 1, 2023
2 parents 2f5928f + f7fed72 commit a882743
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions modules/04_vafator.nf
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ process VAFATOR {
tag "${patient_name}"
publishDir "${params.output}/${patient_name}", mode: "copy"

conda (params.enable_conda ? "bioconda::vafator=2.1.0" : null)
conda (params.enable_conda ? "bioconda::vafator=2.2.0" : null)

input:
tuple val(patient_name), file(vcf), val(bams), val(purities), val(clonalities)
Expand Down Expand Up @@ -41,7 +41,7 @@ process MULTIALLELIC_FILTER {
tag "${name}"
publishDir "${params.output}/${name}", mode: "copy"

conda (params.enable_conda ? "bioconda::vafator=2.1.0" : null)
conda (params.enable_conda ? "bioconda::vafator=2.2.0" : null)

input:
tuple val(name), file(vcf)
Expand Down
2 changes: 1 addition & 1 deletion nextflow.config
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ env {
// Capture exit codes from upstream processes when piping
process.shell = ['/bin/bash', '-euo', 'pipefail']

VERSION = '3.0.0'
VERSION = '3.1.0'

manifest {
name = 'TRON-Bioinformatics/tronflow-vcf-postprocessing'
Expand Down

0 comments on commit a882743

Please sign in to comment.