From 8082edf5085b2f73c9f5eb13e36b396dc3180ee5 Mon Sep 17 00:00:00 2001 From: Keiran Raine Date: Mon, 21 Feb 2022 14:05:26 +0000 Subject: [PATCH] correct LSF queues --- nextflow.config | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/nextflow.config b/nextflow.config index b7f1c72..f498660 100644 --- a/nextflow.config +++ b/nextflow.config @@ -56,28 +56,28 @@ process { withName: 'create_fake_bam' { cpus = 1 memory = '1 GB' - queue = 'yesterday' + queue = 'small' } withName: 'np_pindel' { cpus = 3 memory = '6 GB' - queue = 'yesterday' + queue = 'long' } withName: 'np_creation' { cpus = 1 memory = '4 GB' - queue = 'yesterday' + queue = 'long' } // pindel_pl withName: 'pindel' { cpus = 2 memory = '8 GB' - queue = 'yesterday' + queue = 'long' } withName: 'pindel_flag' { cpus = 1 memory = '4 GB' - queue = 'yesterday' + queue = 'normal' } }