mirror of
https://github.com/MillironX/nf-configs.git
synced 2024-11-22 08:29:54 +00:00
add specific BamQC config
This commit is contained in:
parent
fbe7bd133a
commit
81f910cc95
1 changed files with 7 additions and 0 deletions
|
@ -14,6 +14,13 @@ def hostname = "hostname".execute().text.trim()
|
||||||
|
|
||||||
if (hostname ==~ "r.*") {
|
if (hostname ==~ "r.*") {
|
||||||
params.single_cpu_mem = 6400.MB
|
params.single_cpu_mem = 6400.MB
|
||||||
|
process {
|
||||||
|
withName:BamQC {
|
||||||
|
cpus = {params.max_cpus}
|
||||||
|
memory = {params.max_memory}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if (hostname ==~ "i.*") {
|
if (hostname ==~ "i.*") {
|
||||||
|
|
Loading…
Reference in a new issue