mirror of
https://github.com/MillironX/nf-configs.git
synced 2024-11-22 16:29:55 +00:00
Fixes hasta java memory issues
This commit is contained in:
parent
a543a3ebc6
commit
8b9744723c
1 changed files with 8 additions and 0 deletions
|
@ -21,6 +21,14 @@ params {
|
||||||
process {
|
process {
|
||||||
executor = 'slurm'
|
executor = 'slurm'
|
||||||
clusterOptions = { "-A $params.priority ${params.clusterOptions ?: ''}" }
|
clusterOptions = { "-A $params.priority ${params.clusterOptions ?: ''}" }
|
||||||
|
|
||||||
|
withName: QUALIMAP_BAMQC {
|
||||||
|
memory = 64.GB
|
||||||
|
ext.args = "--java-mem-size=60G"
|
||||||
|
}
|
||||||
|
withName: 'PICARD_COLLECTHSMETRICS|PICARD_COLLECTMULTIPLEMETRICS|COLLECTREADCOUNTS|DENOISEREADCOUNTS' {
|
||||||
|
clusterOptions = { task.memory ? "-l h_vmem=${task.memory.bytes/task.cpus}+2" : null }
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
profiles {
|
profiles {
|
||||||
|
|
Loading…
Reference in a new issue