From bf1a9df2004bac856008a0a073e054bc83b2aeae Mon Sep 17 00:00:00 2001 From: Chris Date: Wed, 6 Nov 2024 19:09:32 +0800 Subject: [PATCH] Remove check_max function in cellranger_count block Co-authored-by: Gregor Sturm --- conf/modules.config | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conf/modules.config b/conf/modules.config index dd65957a..c049e5b3 100644 --- a/conf/modules.config +++ b/conf/modules.config @@ -82,7 +82,7 @@ if(params.aligner == "cellranger") { mode: params.publish_dir_mode ] ext.args = {"--chemistry ${meta.chemistry} --create-bam ${params.save_align_intermeds}" + " " + (meta.expected_cells ? "--expect-cells ${meta.expected_cells}" : '')} - time = { check_max( 240.h * task.attempt, 'time' ) } + time = { 240.h * task.attempt, 'time' } } } }