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-09-22 14:45:09 +00:00
|
|
|
queue = 'c'
|
|
|
|
}
|
|
|
|
|
|
|
|
singularity.enabled = true
|
|
|
|
|
|
|
|
params {
|
|
|
|
target_qos = 'medium'
|
|
|
|
params.max_cpus = 36
|
|
|
|
params.max_memory = 170.GB
|
|
|
|
igenomesIgnore = true
|
|
|
|
}
|
|
|
|
|
|
|
|
if (params.target_qos == 'short') {
|
|
|
|
params.max_time = 8.h
|
|
|
|
process.clusterOptions = '--qos short'
|
|
|
|
} else if (params.target_qos == 'medium') {
|
|
|
|
params.max_time = 2.d
|
|
|
|
process.clusterOptions = '--qos medium'
|
|
|
|
} else {
|
|
|
|
params.max_time = 14.d
|
|
|
|
process.clusterOptions = '--qos long'
|
|
|
|
}
|