From d4a2305f1fe5d9e65312f9a4575ff942fd0c21eb Mon Sep 17 00:00:00 2001 From: James Eapen Date: Wed, 13 Jul 2022 10:31:28 -0400 Subject: [PATCH] Don't checkDimnames when making SummarizedExperiment --- R/combine.R | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/R/combine.R b/R/combine.R index e798032..40ba952 100644 --- a/R/combine.R +++ b/R/combine.R @@ -217,7 +217,9 @@ combineList <- function(x, ..., BACKEND = NULL) { se <- SummarizedExperiment( assays = ans_assays, rowRanges = ans_rowRanges, - colData = ans_colData) + colData = ans_colData, + checkDimnames = FALSE + ) # TODO: Avoid validity check. .BSseq(se, parameters = ans_parameters, trans = ans_trans) }