mirror of
https://github.com/MillironX/nf-configs.git
synced 2024-11-11 04:23:10 +00:00
10 lines
227 B
Text
10 lines
227 B
Text
|
process {
|
||
|
withName : '.*PICARD.*' {
|
||
|
clusterOptions = {"-l h_vmem=${(task.memory + 4.GB).bytes/task.cpus}"}
|
||
|
}
|
||
|
|
||
|
withName : '.*SNPEFF.*' {
|
||
|
clusterOptions = {"-l h_vmem=${(task.memory + 4.GB).bytes/task.cpus}"}
|
||
|
}
|
||
|
}
|