From 5c11e0892879cce6d9b5a76ba8b29bde607573fe Mon Sep 17 00:00:00 2001 From: "Gervaise H. Henry" <gervaise.henry@utsouthwestern.edu> Date: Thu, 6 May 2021 22:54:59 -0500 Subject: [PATCH] Fix new pre fail --- rna-seq.nf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rna-seq.nf b/rna-seq.nf index e7fb87e..0adcc63 100644 --- a/rna-seq.nf +++ b/rna-seq.nf @@ -2900,7 +2900,7 @@ executionRunRID_preFailseqwho_fl.splitCsv(sep: ",", header: false).separate( ) -failExecutionRunRID = executionRunRID_fail.ifEmpty('').mix(executionRunRID_preFail.ifEmpty('').mix(executionRunRID_preFailseqwho.ifEmpty('')).filter { it != "" } +failExecutionRunRID = executionRunRID_fail.ifEmpty('').mix(executionRunRID_preFail.ifEmpty('').mix(executionRunRID_preFailseqwho.ifEmpty(''))).filter { it != "" } /* * failExecutionRun: fail the execution run -- GitLab