1
0
Fork 0
mirror of https://github.com/MillironX/nf-configs.git synced 2024-11-22 08:29:54 +00:00
This commit is contained in:
Emelie Nilsso 2020-11-24 07:10:05 +01:00
commit cd59bba83e

View file

@ -20,7 +20,6 @@ singularity {
process { process {
executor = 'slurm' executor = 'slurm'
queue = { task.memory > 756.GB || task.cpus > 64 ? 'supercruncher': task.time <= 2.h ? 'short' : task.time <= 48.h ? 'medium': 'long' }
} }
executor { executor {
@ -43,5 +42,8 @@ profiles {
max_memory = 2.TB max_memory = 2.TB
max_cpus = 128 max_cpus = 128
} }
process {
queue = { task.memory > 756.GB || task.cpus > 64 ? 'supercruncher': task.time <= 2.h ? 'short' : task.time <= 48.h ? 'medium': 'long' }
}
} }
} }