Skip to content

Commit

Permalink
Merge pull request nf-core#672 from nf-core/eva-picard-exitstauts
Browse files Browse the repository at this point in the history
Add java related retries to picard
  • Loading branch information
aidaanva authored Apr 19, 2024
2 parents 60479ef + 16502fd commit b685fce
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions conf/pipeline/eager/eva.config
Original file line number Diff line number Diff line change
Expand Up @@ -190,6 +190,7 @@ process {

withName: picard_addorreplacereadgroups {
clusterOptions = { "-S /bin/bash -V -l h_vmem=${(task.memory.toGiga() * 2)}G" }
errorStrategy = { task.exitStatus in [1,143,137,104,134,139,140] ? 'retry' : 'finish' }
}

withName: genotyping_ug {
Expand Down Expand Up @@ -378,6 +379,7 @@ profiles {

withName: picard_addorreplacereadgroups {
clusterOptions = { "-S /bin/bash -V -l h_vmem=${(task.memory.toGiga() * 3)}G" }
errorStrategy = { task.exitStatus in [1,143,137,104,134,139,140] ? 'retry' : 'finish' }
}

withName: genotyping_ug {
Expand Down Expand Up @@ -559,6 +561,7 @@ profiles {

withName: picard_addorreplacereadgroups {
clusterOptions = { "-S /bin/bash -V -l h_vmem=${(task.memory.toGiga() * 6)}G" }
errorStrategy = { task.exitStatus in [1,143,137,104,134,139,140] ? 'retry' : 'finish' }
}

withName: genotyping_ug {
Expand Down

0 comments on commit b685fce

Please sign in to comment.