mirror of
https://github.com/MillironX/nf-configs.git
synced 2024-11-24 17:19:54 +00:00
fix(utd): Add check for less than 12 cpu
This commit is contained in:
parent
dc2735207e
commit
2c06019d89
1 changed files with 1 additions and 1 deletions
|
@ -14,7 +14,7 @@ singularity {
|
|||
process {
|
||||
beforeScript = 'module load singularity/3.2.1'
|
||||
executor = 'slurm'
|
||||
queue = { task.memory >= 32.GB ? 'Kim': task.memory <= 24.GB && task.cpu <= 8 ? 'smallmem' : 'genomics' }
|
||||
queue = { task.memory >= 32.GB && task.cpu <= 12 ? 'Kim': task.memory <= 24.GB && task.cpu <= 8 ? 'smallmem' : 'genomics' }
|
||||
}
|
||||
|
||||
params {
|
||||
|
|
Loading…
Reference in a new issue