We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6818f7f commit 4df99f3Copy full SHA for 4df99f3
config/devcore.config
@@ -3,7 +3,7 @@ process {
3
"-A $params.project"
4
}
5
6
- errorStrategy = { task.exitStatus == 143 ? 'retry' : 'terminate' }
+ errorStrategy = { if (task.exitStatus == 143) { 'retry' } else if ($params.runfile != "" ) { 'ignore' } else { 'terminate' } }
7
queue = 'devcore'
8
executor = 'slurm'
9
config/standard.config
queue = 'core'
0 commit comments