mirror of
https://github.com/MillironX/nf-configs.git
synced 2024-11-22 00:26:03 +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 {
|
singularity {
|
||||||
enabled = true
|
enabled = true
|
||||||
automounts = true
|
autoMounts = true
|
||||||
}
|
}
|
||||||
|
|
||||||
process {
|
process {
|
||||||
executor = 'slurm'
|
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
|
maxRetries = 3
|
||||||
beforeScript = 'module load Singularity'
|
beforeScript = 'module load Singularity'
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue