Skip to content

Commit

Permalink
Remove remaining usage of old check_max()
Browse files Browse the repository at this point in the history
  • Loading branch information
fasterius committed Oct 23, 2024
1 parent 14e074b commit 14fc405
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions conf/base.config
Original file line number Diff line number Diff line change
Expand Up @@ -46,9 +46,9 @@ process {
memory = { 200.GB * task.attempt }
}
withLabel:process_spaceranger {
cpus = { check_max( 8 * task.attempt, 'cpus' ) }
memory = { check_max( 64.GB * task.attempt, 'memory' ) }
time = { check_max( 20.h * task.attempt, 'time' ) }
cpus = { 8 * task.attempt }
memory = { 64.GB * task.attempt }
time = { 20.h * task.attempt }
}
withLabel:error_ignore {
errorStrategy = 'ignore'
Expand Down

0 comments on commit 14fc405

Please sign in to comment.