Skip to content

Commit

Permalink
Merge pull request #29 from SamGuay/fix_cbrain-prof
Browse files Browse the repository at this point in the history
Update output_dir for cbrain profile
  • Loading branch information
arnaudbore authored Oct 25, 2024
2 parents 2fa8858 + 755347c commit 6cff56c
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions nextflow.config
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,12 @@ profiles {

cbrain {
process{
publishDir = [path: {"./results_rbx/$sid/$task.process"}, mode: 'copy']
}
if(params.output_dir) {
publishDir = [path: {"$params.output_dir/$sid/$task.process"}, mode: 'copy']
}
else{
publishDir = [path: {"./results_tractometry/$sid/$task.process"}, mode: 'copy']
}
}
}
}

0 comments on commit 6cff56c

Please sign in to comment.