Skip to content

Commit

Permalink
Fix publish_dir_mode syntax bugs
Browse files Browse the repository at this point in the history
  • Loading branch information
drpatelh committed Feb 18, 2022
1 parent b921321 commit 3461a61
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions conf/modules.config
Original file line number Diff line number Diff line change
Expand Up @@ -17,22 +17,22 @@
process {
publishDir = [
path: { "${params.outdir}/${task.process.tokenize(':')[-1].tokenize('_')[0].toLowerCase()}" },
mode: 'mode: params.publish_dir_mode,',
mode: params.publish_dir_mode,
saveAs: { filename -> filename.equals('versions.yml') ? null : filename }
]

withName: 'SAMPLESHEET_CHECK' {
publishDir = [
path: { "${params.outdir}/pipeline_info" },
mode: 'mode: params.publish_dir_mode,',
mode: params.publish_dir_mode,
saveAs: { filename -> filename.equals('versions.yml') ? null : filename }
]
}

withName: 'CUSTOM_DUMPSOFTWAREVERSIONS' {
publishDir = [
path: { "${params.outdir}/pipeline_info" },
mode: 'mode: params.publish_dir_mode,',
mode: params.publish_dir_mode,
pattern: '*_versions.yml'
]
}
Expand Down

0 comments on commit 3461a61

Please sign in to comment.