File tree Expand file tree Collapse file tree 3 files changed +3
-2
lines changed
Expand file tree Collapse file tree 3 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ process {
33 "-A $params.project"
44 }
55
6- errorStrategy = { task.exitStatus == 143 ? 'retry' : ' terminate' }
6+ errorStrategy = { if ( task.exitStatus == 143) { 'retry' } else if ( $params.runfile ) { 'ignore' } else { ' terminate' } }
77 queue = 'devcore'
88 executor = 'slurm'
99
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ process {
33 "-A $params.project"
44 }
55
6- errorStrategy = { task.exitStatus == 143 ? 'retry' : ' terminate' }
6+ errorStrategy = { if ( task.exitStatus == 143) { 'retry' } else if ( $params.runfile ) { 'ignore' } else { ' terminate' } }
77 queue = 'core'
88 executor = 'slurm'
99
Original file line number Diff line number Diff line change @@ -50,6 +50,7 @@ profiles {
5050 local {
5151 includeConfig ' config/milou.config'
5252 process. executor = ' local'
53+ process. errorStrategy = { $params. runfile != " " ? ' ignore' : ' terminate' }
5354 }
5455}
5556
You can’t perform that action at this time.
0 commit comments