1
0
Fork 0
mirror of https://github.com/MillironX/nf-configs.git synced 2024-09-21 06:02:03 +00:00

Fixing syntax in cheaha profile

This commit is contained in:
Austyn Trull 2022-01-28 14:18:57 -06:00
parent f876227a38
commit 1c9e1bf8a1

View file

@ -7,12 +7,12 @@ params {
singularity {
enabled = true
automounts = true
autoMounts = true
}
process {
executor = 'slurm'
queue = { task.memory <= 50GB ? (task.time <= 2.h ? 'express' : task.time <= 12.h ? 'short' : task.time <= 50.h ? 'medium' : 'long') : (task.time <= 50.h ? 'largemem' : 'largemem-long')}
queue = { task.memory <= 50.GB ? (task.time <= 2.h ? 'express' : task.time <= 12.h ? 'short' : task.time <= 50.h ? 'medium' : 'long') : (task.time <= 50.h ? 'largemem' : 'largemem-long')}
maxRetries = 3
beforeScript = 'module load Singularity'
}