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

Commit

Permalink
fix requirements for runSingleManta and runSingleStrelka
Browse files Browse the repository at this point in the history
  • Loading branch information
maxulysse committed Oct 25, 2017
1 parent a163e10 commit 9825faa
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 0 deletions.
8 changes: 8 additions & 0 deletions configuration/uppmax-localhost.config
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,14 @@ process {
}
$RunSamtoolsStats {
}
$RunSingleManta {
cpus = 16
memory = {params.totalMemory}
}
$RunSingleStrelka {
cpus = 16
memory = {params.totalMemory}
}
$RunSnpeff {
errorStrategy = {task.exitStatus == 143 ? 'retry' : 'ignore'}
memory = {params.totalMemory} // TODO Does SnpEff really require that much?
Expand Down
5 changes: 5 additions & 0 deletions configuration/uppmax-slurm.config
Original file line number Diff line number Diff line change
Expand Up @@ -132,6 +132,11 @@ process {
cpus = 1
time = {params.runTime * task.attempt}
}
$RunSingleManta {
}
$RunSingleStrelka {
time = {params.runTime * task.attempt}
}
$RunSnpeff {
errorStrategy = { task.exitStatus == 143 ? 'retry' : 'ignore' }
}
Expand Down

0 comments on commit 9825faa

Please sign in to comment.