1
0
Fork 0
mirror of https://github.com/MillironX/nf-configs.git synced 2024-09-21 14:02:05 +00:00
nf-configs/conf/cbe.config
Patrick Hüther 1cbe2759c4
fix invalid rapid qos selection
it only applies to the c partition
2021-09-22 11:54:27 +02:00

27 lines
909 B
Text
Executable file

//Profile config names for nf-core/configs
params {
config_profile_description = 'CLIP BATCH ENVIRONMENT (CBE) cluster profile provided by nf-core/configs'
config_profile_contact = 'Patrick Hüther (@phue)'
config_profile_url = 'https://clip.science'
}
process {
executor = 'slurm'
queue = { task.memory <= 170.GB ? 'c' : 'm' }
module = 'anaconda3/2019.10'
// --signal option will be handled by nextflow after 21.10.0 release (see https://github.com/nextflow-io/nextflow/issues/2163)
clusterOptions = { '--signal B:USR2 ' << ( (queue == 'c' & task.time <= 1.h) ? '--qos rapid' : ( task.time <= 8.h ? '--qos short': ( task.time <= 48.h ? '--qos medium' : '--qos long' ) ) ) }
}
singularity {
enabled = true
cacheDir = '/resources/containers'
}
params {
params.max_time = 14.d
params.max_cpus = 36
params.max_memory = 1800.GB
igenomes_base = '/resources/references/igenomes'
}