Skip to content

Commit 1c8dc76

Browse files
authored
Merge pull request #114 from icgc-argo/payload-gen-variant-calling.0.3.6.0
set publishDir mode: "copy"
2 parents 0ec3672 + 0ad6b7e commit 1c8dc76

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

tools/payload-gen-variant-calling/payload-gen-variant-calling.nf

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/env nextflow
22

33
/*
4-
* Copyright (c) 2019-2020, Ontario Institute for Cancer Research (OICR).
4+
* Copyright (c) 2019-2021, Ontario Institute for Cancer Research (OICR).
55
*
66
* This program is free software: you can redistribute it and/or modify
77
* it under the terms of the GNU Affero General Public License as published
@@ -22,7 +22,7 @@
2222
*/
2323

2424
nextflow.enable.dsl = 2
25-
version = '0.3.5.0'
25+
version = '0.3.6.0'
2626

2727
params.normal_analysis = ""
2828
params.tumour_analysis = ""
@@ -39,7 +39,7 @@ process payloadGenVariantCalling {
3939
container "quay.io/icgc-argo/payload-gen-variant-calling:payload-gen-variant-calling.${params.container_version ?: version}"
4040
cpus params.cpus
4141
memory "${params.mem} GB"
42-
publishDir "${params.publish_dir}/${task.process.replaceAll(':', '_')}", enabled: "${params.publish_dir ? true : ''}"
42+
publishDir "${params.publish_dir}/${task.process.replaceAll(':', '_')}", mode: "copy", enabled: "${params.publish_dir ? true : ''}"
4343

4444
input:
4545
path normal_analysis

0 commit comments

Comments
 (0)