Skip to content

Commit

Permalink
oops
Browse files Browse the repository at this point in the history
  • Loading branch information
nebfield committed Mar 15, 2024
1 parent a4f8fd5 commit 03ad3d7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion subworkflows/local/match.nf
Original file line number Diff line number Diff line change
Expand Up @@ -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 }

Expand Down

0 comments on commit 03ad3d7

Please sign in to comment.