mirror of
https://github.com/MillironX/nf-configs.git
synced 2024-11-10 20:13:09 +00:00
2112168420
This environment variable needs to be set in order to prevent memory allocation errors in the MAKEBLASTDB process.
13 lines
270 B
Text
13 lines
270 B
Text
env {
|
|
BLASTDB_LMDB_MAP_SIZE=100000000
|
|
}
|
|
|
|
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}"}
|
|
}
|
|
}
|