From 14fc40538e057acf480f87619927d364ab09cabe Mon Sep 17 00:00:00 2001 From: Erik Fasterius Date: Wed, 23 Oct 2024 13:14:31 +0200 Subject: [PATCH] Remove remaining usage of old `check_max()` --- conf/base.config | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/conf/base.config b/conf/base.config index 26c7180..1f07601 100644 --- a/conf/base.config +++ b/conf/base.config @@ -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'