1
0
Fork 0
mirror of https://github.com/MillironX/nf-configs.git synced 2024-09-21 22:12:03 +00:00
nf-configs/conf/cbe.config

26 lines
723 B
Text
Raw Normal View History

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 = 'https://clip.science'
2019-09-22 14:45:09 +00:00
}
process {
executor = 'slurm'
2019-10-27 19:44:08 +00:00
queue = { task.memory <= 170.GB ? 'c' : 'm' }
clusterOptions = { task.time <= 1.h ? '--qos rapid' : task.time <= 8.h ? '--qos short': task.time <= 48.h ? '--qos medium' : '--qos long' }
2021-01-15 11:55:46 +00:00
module = 'anaconda3/2019.10'
2019-09-22 14:45:09 +00:00
}
2019-11-26 13:22:16 +00:00
singularity {
enabled = true
cacheDir = '/resources/containers'
2019-11-26 13:22:16 +00:00
}
2019-09-22 14:45:09 +00:00
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-11-26 13:22:16 +00:00
igenomes_base = '/resources/references/igenomes'
}