Skip to content

Commit

Permalink
try a retry with more memory
Browse files Browse the repository at this point in the history
  • Loading branch information
rannick committed May 2, 2024
1 parent ecd6286 commit eee7818
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion conf/modules/align_bwa_bwamem2.config
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ process {
ext.args = { "-M -K 100000000 -R ${meta.read_group}" }
ext.prefix = { "${meta.id}_sorted" }
ext.when = { params.aligner.equals("bwamem2") }
errorStrategy = { task.exitStatus in (1 + (130..145) + 104) ? 'retry' : 'finish' }
errorStrategy = { task.exitStatus in (1, (130..145), 104) ? 'retry' : 'finish' }
}

withName: '.*ALIGN:ALIGN_BWA_BWAMEM2:BWA_MEM' {
Expand Down

0 comments on commit eee7818

Please sign in to comment.