diff --git a/nextflow.config b/nextflow.config index 1ddc75a..fdc4c0c 100644 --- a/nextflow.config +++ b/nextflow.config @@ -3,9 +3,10 @@ manifest { author = 'Erin Young' homePage = 'https://github.com/UPHL-BioNGS/Grandeur' mainScript = 'main.nf' - version = '4.1.20240417' + version = '4.2.20240425' defaultBranch = 'main' description = 'Grandeur is short-read de novo assembly pipeline with serotyping.' + nextflowVersion = '!>=22.10.1' } //########## Setting Profiles ########## @@ -85,29 +86,29 @@ process { maxErrors = '-1' withLabel:process_single { - cpus = { 1 } - memory = { 6.GB * task.attempt } - time = { 10.m * task.attempt } + cpus = { 1 } + memory = { 4.GB } + time = { 30.m } } withLabel:process_low { - cpus = { 2 * task.attempt } - memory = { 12.GB * task.attempt } - time = { 2.h * task.attempt } + cpus = { 2 } + memory = { 12.GB } + time = { 2.h } } withLabel:process_medium { - cpus = { 6 * task.attempt } - memory = { 36.GB * task.attempt } - time = { 4.h * task.attempt } + cpus = { 6 } + memory = { 36.GB } + time = { 4.h } } withLabel:process_high { - cpus = { 12 * task.attempt } - memory = { 72.GB * task.attempt } - time = { 16.h * task.attempt } + cpus = { 12 } + memory = { 72.GB } + time = { 16.h } } withLabel:process_long { - time = { 20.h * task.attempt } + time = { 20.h } } withLabel:process_high_memory { - memory = { 200.GB * task.attempt } + memory = { 200.GB } } }