Skip to content

Commit

Permalink
Fix how groups are count
Browse files Browse the repository at this point in the history
  • Loading branch information
JoseEspinosa committed Oct 7, 2024
1 parent 5850c6c commit a950571
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ workflow BED_CONSENSUS_QUANTIFY_QC_BEDTOOLS_FEATURECOUNTS_DESEQ2 {
def meta_new = [:]
meta_new.id = antibody
meta_new.multiple_groups = groups.size() > 1
meta_new.replicates_exist = groups.max { groups.value }.value > 1
meta_new.replicates_exist = groups.max { it.value }.value > 1
[ meta_new, peaks ]
}
.set { ch_antibody_peaks }
Expand Down

0 comments on commit a950571

Please sign in to comment.