2019-09-22 14:45:09 +00:00
|
|
|
//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 = 'http://www.gmi.oeaw.ac.at/'
|
|
|
|
}
|
|
|
|
|
|
|
|
process {
|
|
|
|
executor = 'slurm'
|
2019-10-10 19:22:19 +00:00
|
|
|
module = 'singularity/3.2.1'
|
2019-10-27 19:44:08 +00:00
|
|
|
queue = { task.memory <= 170.GB ? 'c' : 'm' }
|
|
|
|
clusterOptions = { task.time <= 8.h ? '--qos short': task.time <= 48.h ? '--qos medium' : '--qos long' }
|
2019-09-22 14:45:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
singularity.enabled = true
|
|
|
|
|
|
|
|
params {
|
2019-10-27 19:44:08 +00:00
|
|
|
params.max_time = 14.d
|
2019-09-22 14:45:09 +00:00
|
|
|
params.max_cpus = 36
|
2019-10-27 19:44:08 +00:00
|
|
|
params.max_memory = 4.TB
|
2019-10-28 10:38:24 +00:00
|
|
|
igenomes_ignore = true
|
|
|
|
igenomesIgnore = true //deprecated
|
2019-10-27 19:44:08 +00:00
|
|
|
}
|