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

Commit

Permalink
Merge pull request #488 from marcelm/concatvcf-resources
Browse files Browse the repository at this point in the history
Reduce ConcatVCF resources to sane levels
  • Loading branch information
maxulysse authored Oct 27, 2017
2 parents f79642e + f362185 commit 0d7fc10
Showing 1 changed file with 4 additions and 2 deletions.
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

0 comments on commit 0d7fc10

Please sign in to comment.