mirror of
https://github.com/MillironX/nf-configs.git
synced 2024-11-22 08:29:54 +00:00
Restricts MALT re-tries and hardcodes resources so cannot go above SDAG max
This commit is contained in:
parent
5632a0631a
commit
638758423a
1 changed files with 3 additions and 2 deletions
|
@ -10,8 +10,9 @@ params {
|
|||
// Specific nf-core/eager process configuration
|
||||
process {
|
||||
withName: malt {
|
||||
memory = { 725.GB * task.attempt }
|
||||
cpus = { 64 * task.attempt }
|
||||
maxRetries = 1
|
||||
memory = { task.attempt > 1 ? 1900.GB : 725.GB }
|
||||
cpus = { task.attempt > 1 ? 112 : 64 }
|
||||
time = 1440.h
|
||||
queue = { task.memory > 756.GB ? 'supercruncher' : 'long' }
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue