From d7d0f5ceccea4d28ceab5c5e4c1fa75642955073 Mon Sep 17 00:00:00 2001 From: James Fellows Yates Date: Thu, 10 Feb 2022 11:32:49 +0100 Subject: [PATCH] Change base time --- conf/eva.config | 2 +- conf/pipeline/eager/eva.config | 6 ------ 2 files changed, 1 insertion(+), 7 deletions(-) diff --git a/conf/eva.config b/conf/eva.config index 8b52dda..432b667 100644 --- a/conf/eva.config +++ b/conf/eva.config @@ -30,7 +30,7 @@ profiles { config_profile_description = 'MPI-EVA archgen profile, provided by nf-core/configs.' max_memory = 256.GB max_cpus = 32 - max_time = 720.h + max_time = 365.d //Illumina iGenomes reference file path } diff --git a/conf/pipeline/eager/eva.config b/conf/pipeline/eager/eva.config index 669097d..67c3b5a 100644 --- a/conf/pipeline/eager/eva.config +++ b/conf/pipeline/eager/eva.config @@ -19,37 +19,31 @@ process { withLabel:'sc_tiny'{ cpus = { check_max( 1, 'cpus' ) } memory = { check_max( 1.GB * task.attempt, 'memory' ) } - time = 365.d } withLabel:'sc_small'{ cpus = { check_max( 1, 'cpus' ) } memory = { check_max( 4.GB * task.attempt, 'memory' ) } - time = 365.d } withLabel:'sc_medium'{ cpus = { check_max( 1, 'cpus' ) } memory = { check_max( 8.GB * task.attempt, 'memory' ) } - time = 365.d } withLabel:'mc_small'{ cpus = { check_max( 2, 'cpus' ) } memory = { check_max( 4.GB * task.attempt, 'memory' ) } - time = 365.d } withLabel:'mc_medium' { cpus = { check_max( 4, 'cpus' ) } memory = { check_max( 8.GB * task.attempt, 'memory' ) } - time = 365.d } withLabel:'mc_large'{ cpus = { check_max( 8, 'cpus' ) } memory = { check_max( 16.GB * task.attempt, 'memory' ) } - time = 365.d } withLabel:'mc_huge'{