File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
Expand file tree Collapse file tree 2 files changed +2
-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 = { if (task.exitStatus == 143) { 'retry' } else if ($params.runfile != "" ) { 'ignore' } else { '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 = { if (task.exitStatus == 143) { 'retry' } else if ($params.runfile != "" ) { 'ignore' } else { 'terminate' } }
6+ errorStrategy = { if (task.exitStatus == 143) { 'retry' } else if ( $params.runfile ) { 'ignore' } else { 'terminate' } }
77 queue = 'core'
88 executor = 'slurm'
99
You can’t perform that action at this time.
0 commit comments