Skip to content
This repository was archived by the owner on Jan 27, 2020. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions configuration/uppmax-localhost.config
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,10 @@ process {
// These processes are defined in main.nf

$ConcatVCF {
cpus = 16
memory = {params.totalMemory}
cpus = 8
// For unknown reasons, ConcatVCF sometimes fails with SIGPIPE
// (exit code 141). Rerunning the process will usually work.
errorStrategy = {task.exitStatus == 141 ? 'retry' : 'terminate'}
}
$CreateRecalibrationTable {
cpus = 16
Expand Down