mirror of
https://github.com/MillironX/nf-configs.git
synced 2024-11-10 20:13:09 +00:00
Fixing syntax in cheaha profile
This commit is contained in:
parent
f876227a38
commit
1c9e1bf8a1
1 changed files with 2 additions and 2 deletions
|
@ -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'
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue