From b9da0b4f009f2a49124c02e5c3fe6a8dc4c26178 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aida=20Andrades=20Valtue=C3=B1a?= Date: Fri, 25 Mar 2022 09:36:29 +0100 Subject: [PATCH] Update eva.config Update eva.config to send big memory jobs (>700G) to the bigmem queue --- conf/eva.config | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conf/eva.config b/conf/eva.config index 7f89ac2..866cdd5 100644 --- a/conf/eva.config +++ b/conf/eva.config @@ -36,7 +36,7 @@ profiles { } process { - queue = 'archgen.q' + queue = { task.memory > 700.GB ? 'bigmem.q' : 'archgen.q' } clusterOptions = { "-S /bin/bash -V -j y -o output.log -l h_vmem=${task.memory.toGiga()}G" } }