1
0
Fork 0
mirror of https://github.com/MillironX/nf-configs.git synced 2024-11-11 04:23:10 +00:00
nf-configs/conf/pipeline/eager/shh.config
James A. Fellows Yates b1a8b45aa0
Maybe typo?
2019-12-05 17:52:53 +01:00

17 lines
517 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'
}
// Specific nf-core/eager process configuration
process {
withName:malt {
memory = { check_max( 756.GB * task.attempt, 'memory' ) }
cpus = { check_max(64 * task.attempt, 'cpus') }
time = 1440.h
queue = { task.memory > 756.GB ? 'supercruncher': 'long' }
}
}