1
0
Fork 0
mirror of https://github.com/MillironX/nf-configs.git synced 2024-11-13 05:03:10 +00:00
nf-configs/conf/pipeline/eager/shh.config
James A. Fellows Yates f59443daf0
Update shh.config
2019-12-06 19:09:20 +01:00

18 lines
529 B
Text

// 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'
igenomes_base = "/projects1/public_data/igenomes/"
}
// Specific nf-core/eager process configuration
process {
withName:malt {
memory = { 700.GB * task.attempt }
cpus = { 64 * task.attempt }
time = 720.h
queue = { task.memory > 700.GB ? 'supercruncher' : 'long' }
}
}