Skip to content
This repository was archived by the owner on Jan 27, 2020. It is now read-only.

Commit 0d7fc10

Browse files
authored
Merge pull request #488 from marcelm/concatvcf-resources
Reduce ConcatVCF resources to sane levels
2 parents f79642e + f362185 commit 0d7fc10

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

configuration/uppmax-localhost.config

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,8 +57,10 @@ process {
5757
// These processes are defined in main.nf
5858

5959
$ConcatVCF {
60-
cpus = 16
61-
memory = {params.totalMemory}
60+
cpus = 8
61+
// For unknown reasons, ConcatVCF sometimes fails with SIGPIPE
62+
// (exit code 141). Rerunning the process will usually work.
63+
errorStrategy = {task.exitStatus == 141 ? 'retry' : 'terminate'}
6264
}
6365
$CreateRecalibrationTable {
6466
cpus = 16

0 commit comments

Comments
 (0)