From 4968458b6c317476d40ed64b8e2b4145f97f9550 Mon Sep 17 00:00:00 2001 From: MaxUlysse Date: Tue, 16 Feb 2021 14:18:29 +0100 Subject: [PATCH] chores: add cpus, memory and time requirements to limit resource consumption --- tests/config/nextflow.config | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/tests/config/nextflow.config b/tests/config/nextflow.config index baa83417..26e10357 100644 --- a/tests/config/nextflow.config +++ b/tests/config/nextflow.config @@ -5,6 +5,12 @@ params { singularity_pull_docker_container = false } +process { + cpus = 2 + memory = 6.GB + time = 48.h +} + if ("$PROFILE" == "singularity") { singularity.enabled = true singularity.autoMounts = true