From 24a2949fe24e41e52116494bb1c3c7807a42bf76 Mon Sep 17 00:00:00 2001 From: Rogan Grant Date: Wed, 28 Jul 2021 18:05:45 -0500 Subject: [PATCH] Had executor options in wrong spot :( --- conf/nu_genomics.config | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/conf/nu_genomics.config b/conf/nu_genomics.config index 880810b..690c22e 100644 --- a/conf/nu_genomics.config +++ b/conf/nu_genomics.config @@ -13,9 +13,6 @@ params singularity { enabled = true - //queue = {task.memory >= 190.GB ? 'genomics-himem' : task.time >= 48.h ? 'genomicslong' : 'genomics'} - queue = 'genomics' - clusterOptions = '-A b1042' cacheDir = "/projects/b1042/singularity_cache" } @@ -23,6 +20,8 @@ process { beforeScript = 'module purge; module load singularity/latest; module load graphviz/2.40.1' executor = 'slurm' + queue = {task.memory >= 190.GB ? 'genomics-himem' : task.time >= 48.h ? 'genomicslong' : 'genomics'} + clusterOptions = '-A b1042' } executor