Skip to content

Commit a950571

Browse files
committed
Fix how groups are count
1 parent 5850c6c commit a950571

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

subworkflows/local/bed_consensus_quantify_qc_bedtools_featurecounts_deseq2.nf

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ workflow BED_CONSENSUS_QUANTIFY_QC_BEDTOOLS_FEATURECOUNTS_DESEQ2 {
4646
def meta_new = [:]
4747
meta_new.id = antibody
4848
meta_new.multiple_groups = groups.size() > 1
49-
meta_new.replicates_exist = groups.max { groups.value }.value > 1
49+
meta_new.replicates_exist = groups.max { it.value }.value > 1
5050
[ meta_new, peaks ]
5151
}
5252
.set { ch_antibody_peaks }

0 commit comments

Comments
 (0)