1
0
Fork 0
mirror of https://github.com/MillironX/nf-configs.git synced 2024-11-22 00:26:03 +00:00

Add params block to sdag queue

Co-authored-by: James A. Fellows Yates <jfy133@gmail.com>
This commit is contained in:
Thiseas C. Lamnidis 2020-11-18 13:04:46 +01:00 committed by GitHub
parent da781907f2
commit 71d1ff2226
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -38,10 +38,12 @@ profiles {
} }
sdag { sdag {
params { params {
config_profile_description = 'SDAG MPI-SHH profile, provided by nf-core/configs.' config_profile_description = 'SDAG MPI-SHH profile, provided by nf-core/configs.'
max_memory = 2.TB max_memory = 2.TB
max_cpus = 128 max_cpus = 128
queue = { task.memory > 756.GB || task.cpus > 64 ? 'supercruncher': task.time <= 2.h ? 'short' : task.time <= 48.h ? 'medium': 'long' } }
process {
queue = { task.memory > 756.GB || task.cpus > 64 ? 'supercruncher': task.time <= 2.h ? 'short' : task.time <= 48.h ? 'medium': 'long' }
} }
} }
} }