From 03ad3d7e243459550750aa5c183e866452b80c2d Mon Sep 17 00:00:00 2001 From: Benjamin Wingfield Date: Fri, 15 Mar 2024 14:58:57 +0000 Subject: [PATCH] oops --- subworkflows/local/match.nf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/subworkflows/local/match.nf b/subworkflows/local/match.nf index a125845c..f1c880c0 100644 --- a/subworkflows/local/match.nf +++ b/subworkflows/local/match.nf @@ -45,7 +45,7 @@ workflow MATCH { // only meta.chrom is checked to see if it's set to 'ALL' or not // but using chrom values directly in meta map breaks cache because chrom order can differ across runs ch_matches.meta.first().map { it -> - def split = it.chrom == "ALL" + def split = it.chrom != "ALL" return [split:split, id: it.id] }.set { combine_meta }