mirror of
https://github.com/MillironX/nf-configs.git
synced 2024-11-11 12:33:10 +00:00
16 lines
337 B
Text
16 lines
337 B
Text
|
process {
|
||
|
|
||
|
withName : "PICARD_MARKDUPLICATES" {
|
||
|
clusterOptions = {"-l h_vmem=${(task.memory + 4.GB).bytes/task.cpus}"}
|
||
|
}
|
||
|
|
||
|
withName : "QUALIMAP_RNASEQ" {
|
||
|
clusterOptions = {"-l h_vmem=${(task.memory + 4.GB).bytes/task.cpus}"}
|
||
|
}
|
||
|
|
||
|
withName : "FASTQC" {
|
||
|
clusterOptions = {"-l h_vmem=${(task.memory + 4.GB).bytes/task.cpus}"}
|
||
|
}
|
||
|
|
||
|
}
|