Skip to content

Commit

Permalink
Add copy_to_cron to configs
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanjameskennedy committed Nov 9, 2023
1 parent 2e5d2ea commit 10b4ac3
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 0 deletions.
3 changes: 3 additions & 0 deletions configs/nextflow.base.config
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,9 @@ process {
withName: chewbbaca_split_results {
publishDir = [ path: "${params.outdir}/${params.speciesDir}/chewbbaca", mode: 'copy', overwrite: true ]
}
withName: copy_to_cron {
publishDir = [ path: "${params.outdir}/${params.speciesDir}/cron", mode: 'copy', overwrite: true ]
}
withName: create_analysis_result {
container = "${params.containerDir}/pythonScripts.sif"
publishDir = [ path: "${params.outdir}/${params.speciesDir}/analysis_result", mode: 'copy', overwrite: true ]
Expand Down
3 changes: 3 additions & 0 deletions configs/nextflow.ngp.config
Original file line number Diff line number Diff line change
Expand Up @@ -122,6 +122,9 @@ process {
withName: chewbbaca_split_results {
publishDir = [ path: "${params.outdir}/${params.speciesDir}/chewbbaca", mode: 'copy', overwrite: true ]
}
withName: copy_to_cron {
publishDir = [ path: "${params.outdir}/${params.speciesDir}/cron", mode: 'copy', overwrite: true ]
}
withName: create_analysis_result {
container = "${params.containerDir}/pythonScripts.sif"
publishDir = [ path: "${params.outdir}/${params.speciesDir}/analysis_result", mode: 'copy', overwrite: true ]
Expand Down
3 changes: 3 additions & 0 deletions configs/nextflow.selftest.config
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,9 @@ process {
withName: chewbbaca_split_results {
publishDir = [ path: "${params.outdir}/${params.speciesDir}/chewbbaca", mode: 'copy', overwrite: true ]
}
withName: copy_to_cron {
publishDir = [ path: "${params.outdir}/${params.speciesDir}/cron", mode: 'copy', overwrite: true ]
}
withName: create_analysis_result {
container = "${params.containerDir}/pythonScripts.sif"
publishDir = [ path: "${params.outdir}/${params.speciesDir}/analysis_result", mode: 'copy', overwrite: true ]
Expand Down

0 comments on commit 10b4ac3

Please sign in to comment.