1
0
Fork 0
mirror of https://github.com/MillironX/nf-configs.git synced 2024-11-25 01:19:54 +00:00

fix(utd): Add check for less than 12 cpu

This commit is contained in:
Edmund Miller 2020-09-13 20:45:34 -05:00
parent dc2735207e
commit 2c06019d89
No known key found for this signature in database
GPG key ID: BD387FF7BC10AA9D

View file

@ -14,7 +14,7 @@ singularity {
process { process {
beforeScript = 'module load singularity/3.2.1' beforeScript = 'module load singularity/3.2.1'
executor = 'slurm' 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 { params {