Skip to content

Commit

Permalink
revert base.config
Browse files Browse the repository at this point in the history
  • Loading branch information
nvnieuwk committed Oct 11, 2024
1 parent 30a6abe commit 5d7dfec
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions conf/base.config
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ process {

// TODO nf-core: Check the defaults for all processes
cpus = { 1 * task.attempt }
memory = { 6.GB * task.attempt }
memory = { 8.GB * task.attempt }
time = { 4.h * task.attempt }

errorStrategy = { task.exitStatus in ((130..145) + 104) ? 'retry' : 'finish' }
Expand All @@ -22,22 +22,22 @@ process {
// Process-specific resource requirements
withLabel:process_single {
cpus = { 1 }
memory = { 6.GB * task.attempt }
memory = { 8.GB * task.attempt }
time = { 4.h * task.attempt }
}
withLabel:process_low {
cpus = { 2 * task.attempt }
memory = { 12.GB * task.attempt }
memory = { 16.GB * task.attempt }
time = { 4.h * task.attempt }
}
withLabel:process_medium {
cpus = { 6 * task.attempt }
memory = { 36.GB * task.attempt }
cpus = { 4 * task.attempt }
memory = { 32.GB * task.attempt }
time = { 8.h * task.attempt }
}
withLabel:process_high {
cpus = { 12 * task.attempt }
memory = { 72.GB * task.attempt }
cpus = { 8 * task.attempt }
memory = { 64.GB * task.attempt }
time = { 16.h * task.attempt }
}
withLabel:process_long {
Expand Down

0 comments on commit 5d7dfec

Please sign in to comment.