mirror of
https://github.com/MillironX/nf-configs.git
synced 2024-11-22 08:29:54 +00:00
Read add empty BAM exit code for qualitmap 255
This commit is contained in:
parent
8c5a54ac9f
commit
2b06293f64
1 changed files with 3 additions and 3 deletions
|
@ -139,7 +139,7 @@ process {
|
|||
|
||||
withName: qualimap {
|
||||
clusterOptions = { "-S /bin/bash -V -l h_vmem=${(task.memory.toGiga() * 2)}G,virtual_free=${(task.memory.toGiga() * 2)}G" }
|
||||
errorStrategy = { task.exitStatus in [1,143,137,104,134,139,140] ? 'retry' : 'finish' }
|
||||
errorStrategy = { task.exitStatus in [1,143,137,104,134,139,140] ? 'retry' : task.exitStatus in [255] ? 'ignore' : 'finish' }
|
||||
}
|
||||
|
||||
withName: damageprofiler {
|
||||
|
@ -322,7 +322,7 @@ profiles {
|
|||
|
||||
withName: qualimap {
|
||||
clusterOptions = { "-S /bin/bash -V -l h_vmem=${(task.memory.toGiga() * 3)}G,virtual_free=${(task.memory.toGiga() * 3)}G" }
|
||||
errorStrategy = { task.exitStatus in [1,143,137,104,134,139,140] ? 'retry' : 'finish' }
|
||||
errorStrategy = { task.exitStatus in [1,143,137,104,134,139,140] ? 'retry' : task.exitStatus in [255] ? 'ignore' : 'finish' }
|
||||
}
|
||||
|
||||
withName: damageprofiler {
|
||||
|
@ -505,7 +505,7 @@ profiles {
|
|||
|
||||
withName: qualimap {
|
||||
clusterOptions = { "-S /bin/bash -V -l h_vmem=${(task.memory.toGiga() * 6)}G,virtual_free=${(task.memory.toGiga() * 6)}G" }
|
||||
errorStrategy = { task.exitStatus in [1,143,137,104,134,139,140] ? 'retry' : 'finish' }
|
||||
errorStrategy = { task.exitStatus in [1,143,137,104,134,139,140] ? 'retry' : task.exitStatus in [255] ? 'ignore' : 'finish' }
|
||||
}
|
||||
|
||||
withName: damageprofiler {
|
||||
|
|
Loading…
Reference in a new issue