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:
parent
7d72e8d94b
commit
b9da0b4f00
1 changed files with 1 additions and 1 deletions
|
@ -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" }
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue