From 6ffe02f459e81698bd1690a922c639aef007724b Mon Sep 17 00:00:00 2001 From: Mahesh Binzer-Panchal Date: Mon, 28 Oct 2024 15:24:12 +0000 Subject: [PATCH] Add resource limits to Gitpod profile --- nf_core/pipeline-template/nextflow.config | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/nf_core/pipeline-template/nextflow.config b/nf_core/pipeline-template/nextflow.config index 052a5d8b1..39749f877 100644 --- a/nf_core/pipeline-template/nextflow.config +++ b/nf_core/pipeline-template/nextflow.config @@ -178,6 +178,13 @@ profiles { executor.name = 'local' executor.cpus = 4 executor.memory = 8.GB + process { + resourceLimits = [ + memory: 8.GB, + cpus : 4, + time : 1.h + ] + } } {%- endif %} {% if test_config -%}