1
0
Fork 0
mirror of https://github.com/MillironX/nf-configs.git synced 2024-09-21 22:12:03 +00:00
nf-configs/conf/pipeline/raredisease/hasta.config

13 lines
409 B
Text
Raw Normal View History

2021-09-28 08:38:15 +00:00
process {
withName:'PICARD_MARKDUPLICATES' {
2022-02-21 15:19:17 +00:00
memory = { check_max( 90.GB * task.attempt, 'memory' ) }
2021-09-28 08:38:15 +00:00
}
withName:'DEEPVARIANT' {
cpus = { check_max( 16 * task.attempt, 'cpus' ) }
memory = { check_max( 80.GB * task.attempt, 'memory' ) }
}
withName:'QUALIMAP_BAMQC' {
ext.args = { "--java-mem-size=${task.memory.giga / 1.15 as long}G" }
}
2021-09-28 08:38:15 +00:00
}