From 2dbea37b5c257ce06c8bc5ab7e33c75696c8d4ec Mon Sep 17 00:00:00 2001 From: tdayris Date: Mon, 18 Dec 2023 14:30:03 +0100 Subject: [PATCH] update agat ressources --- workflow/rules/agat/gff2gtf.smk | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/workflow/rules/agat/gff2gtf.smk b/workflow/rules/agat/gff2gtf.smk index 241ddbe..e321c68 100644 --- a/workflow/rules/agat/gff2gtf.smk +++ b/workflow/rules/agat/gff2gtf.smk @@ -5,10 +5,10 @@ rule agat_gff2gtf: gtf="reference/{species}.{build}.{release}.gtf", threads: 1 resources: - # Reserve 1Gb per attempt (max_vms: ??? on Flamingo) - mem_mb=lambda wildcards, attempt: 1024 * attempt, - # Reserve 30min per attempts (hg38: ??? on Flamingo) - runtime=lambda wildcards, attempt: 30 * attempt, + # Reserve 14Gb per attempt (max_vms: 12786.95 on Flamingo) + mem_mb=lambda wildcards, attempt: (1024 * 14) * attempt, + # Reserve 20min per attempts (hg38: 0:14:50 on Flamingo) + runtime=lambda wildcards, attempt: 20 * attempt, tmpdir="tmp", log: "logs/agat/gff2gtf/{species}.{build}.{release}.log",