From 80771512e8b35d0de7011200d08ca633713b4dac Mon Sep 17 00:00:00 2001 From: "Gervaise H. Henry" <gervaise.henry@utsouthwestern.edu> Date: Sun, 21 Jun 2020 14:51:47 -0500 Subject: [PATCH] Fix cluster process passing --- workflow/configs/cluster.config | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/workflow/configs/cluster.config b/workflow/configs/cluster.config index f5842a6..ed3da8d 100644 --- a/workflow/configs/cluster.config +++ b/workflow/configs/cluster.config @@ -1,27 +1,27 @@ process { executor = 'slurm' - queue = '32GB' + queue = 'super' clusterOptions = '--hold' - withLabel: trackStart { + withName:trackStart { executor = 'local' } - withLabel: checkDesignFile { + withName:checkDesignFile { executor = 'local' } - withLabel: count211 { + withName:count211 { queue = '128GB,256GB,256GBv1,384GB' } - withLabel: count302 { + withName:count302 { queue = '128GB,256GB,256GBv1,384GB' } - withLabel: count310 { + withName:count310 { queue = '128GB,256GB,256GBv1,384GB' } - withLabel: versions { + withName:versions { executor = 'local' } - withLabel: multiqc { + withName:multiqc { executor = 'local' } } -- GitLab