File tree Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -20,6 +20,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2020- [ PR #1523 ] ( https://github.com/nf-core/rnaseq/pull/1523 ) - Update preprocessing subworkflow to fix linting block on trimming
2121- [ PR #1521 ] ( https://github.com/nf-core/rnaseq/pull/1521 ) - Updated Perl conda package version for local module gtf2bed for Arm compatibility.
2222- [ PR #1550 ] ( https://github.com/nf-core/rnaseq/pull/1550 ) - Simplify ` SummarizedExperiment ` outputs.
23+ - [ PR #1553 ] ( https://github.com/nf-core/rnaseq/pull/1553 ) - Make jobs automatically resubmit for exit code 175
2324
2425# 3.18.0 - 2024-12-19
2526
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ process {
1515 memory = { 6.GB * task.attempt }
1616 time = { 4.h * task.attempt }
1717
18- errorStrategy = { task.exitStatus in ((130..145) + 104) ? 'retry' : 'finish' }
18+ errorStrategy = { task.exitStatus in ((130..145) + 104 + 175 ) ? 'retry' : 'finish' }
1919 maxRetries = 1
2020 maxErrors = '-1'
2121
You can’t perform that action at this time.
0 commit comments