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/pipeline/eager/shh.config

19 lines
530 B
Text
Raw Normal View History

2019-12-05 16:01:10 +00:00
// Profile config names for nf-core/configs
params {
// Specific nf-core/configs params
config_profile_contact = 'James Fellows Yates (@jfy133)'
config_profile_description = 'nf-core/eager SHH profile provided by nf-core/configs'
2019-12-06 12:17:31 +00:00
igenomes_base = "/projects1/public_data/igenomes/"
2019-12-05 16:01:10 +00:00
}
// Specific nf-core/eager process configuration
process {
2019-12-05 16:52:53 +00:00
withName:malt {
2019-12-06 17:37:39 +00:00
memory = { 756.GB * task.attempt }
2019-12-05 16:58:49 +00:00
cpus = { 64 * task.attempt }
2019-12-05 16:01:10 +00:00
time = 1440.h
2019-12-05 17:08:39 +00:00
queue = { task.memory > 756.GB ? 'supercruncher' : 'long' }
2019-12-05 16:01:10 +00:00
}
}