1
0
Fork 0
mirror of https://github.com/MillironX/nf-configs.git synced 2024-11-22 00:26:03 +00:00

Update eva.config

Update eva.config to send big memory jobs (>700G) to the bigmem queue
This commit is contained in:
Aida Andrades Valtueña 2022-03-25 09:36:29 +01:00 committed by GitHub
parent 7d72e8d94b
commit b9da0b4f00
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -36,7 +36,7 @@ profiles {
}
process {
queue = 'archgen.q'
queue = { task.memory > 700.GB ? 'bigmem.q' : 'archgen.q' }
clusterOptions = { "-S /bin/bash -V -j y -o output.log -l h_vmem=${task.memory.toGiga()}G" }
}