mirror of
https://github.com/MillironX/nf-configs.git
synced 2024-11-13 05:03:10 +00:00
27 lines
727 B
Text
27 lines
727 B
Text
process {
|
|
|
|
withName:MapReads {
|
|
cpus = 16
|
|
}
|
|
withName:BuildDict {
|
|
cpus = 1
|
|
clusterOptions = {"-l h_vmem=${(task.memory + 4.GB).bytes/task.cpus}"}
|
|
}
|
|
withName:BamQC {
|
|
cpus = 8
|
|
memory = 128.GB
|
|
clusterOptions = {"-l h_vmem=${(task.memory + 8.GB).bytes/task.cpus}"}
|
|
}
|
|
withName:MarkDuplicates {
|
|
clusterOptions = {"-l h_vmem=${(task.memory + 4.GB).bytes/task.cpus}"}
|
|
}
|
|
withName:BaseRecalibrator {
|
|
clusterOptions = {"-l h_vmem=${(task.memory + 4.GB).bytes/task.cpus}"}
|
|
}
|
|
withName:ApplyBQSR {
|
|
clusterOptions = {"-l h_vmem=${(task.memory + 4.GB).bytes/task.cpus}"}
|
|
}
|
|
withName:GatherBQSRReports {
|
|
clusterOptions = {"-l h_vmem=${(task.memory + 4.GB).bytes/task.cpus}"}
|
|
}
|
|
}
|