mirror of
https://github.com/MillironX/nf-configs.git
synced 2024-11-26 01:39:55 +00:00
6e201a71f4
Java processes with overhead memory requirements
14 lines
459 B
Text
14 lines
459 B
Text
process {
|
|
withName : "FASTQC" {
|
|
clusterOptions = {"-l h_vmem=${(task.memory + 4.GB).bytes/task.cpus}"}
|
|
}
|
|
withName : "MERGED_LIB_BAM" {
|
|
clusterOptions = {"-l h_vmem=${(task.memory + 4.GB).bytes/task.cpus}"}
|
|
}
|
|
withName : "MERGED_LIB_PICARD_METRICS" {
|
|
clusterOptions = {"-l h_vmem=${(task.memory + 4.GB).bytes/task.cpus}"}
|
|
}
|
|
withName : "MERGED_REP_BAM" {
|
|
clusterOptions = {"-l h_vmem=${(task.memory + 4.GB).bytes/task.cpus}"}
|
|
}
|
|
}
|