From 9fb8c38ad21ed00f55b0cf137cf4fe873a330c5c Mon Sep 17 00:00:00 2001 From: Austyn Trull Date: Wed, 4 Oct 2023 11:04:05 -0500 Subject: [PATCH] Fixing PREPARE_GTF missing selector warning --- conf/modules.config | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/conf/modules.config b/conf/modules.config index 23f177c..16cc46c 100644 --- a/conf/modules.config +++ b/conf/modules.config @@ -192,11 +192,13 @@ process { } } -process { - withName: '.*:PREPARE_REFERENCE_FILES:PREPARE_GTF' { - publishDir = [ - enabled: false - ] +if (params.intron_retention_method){ + process { + withName: '.*:PREPARE_REFERENCE_FILES:PREPARE_GTF' { + publishDir = [ + enabled: false + ] + } } }