1
0
Fork 0
mirror of https://github.com/MillironX/nf-configs.git synced 2024-09-21 14:02:05 +00:00
nf-configs/conf/pipeline/viralrecon/eddie.config
ameynert 2112168420
Set BLASTDB_LMDB_MAP_SIZE
This environment variable needs to be set in order to prevent memory allocation errors in the MAKEBLASTDB process.
2021-07-22 15:07:19 +01:00

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}"}
}
}