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

Commit f362185

Browse files
committed
Retry ConcatVCF if it fails with SIGPIPE
1 parent 1bd8727 commit f362185

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

configuration/uppmax-localhost.config

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,9 @@ process {
5858

5959
$ConcatVCF {
6060
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'}
6164
}
6265
$CreateRecalibrationTable {
6366
cpus = 16

0 commit comments

Comments
 (0)