Open HelenaLC opened 3 years ago
Issue
x <- escoEstimate(sce, dirname, group = TRUE, cellinfo = ...)
getParam(x, "nGroups")
esco-estimate.R
escoEstimate.SingleCellExperiment
counts
params
Solution
escoEstimate.SingleCellExperiment <- function(counts, dirname, group = FALSE, cellinfo = NULL, params = newescoParams()) { counts <- BiocGenerics::counts(counts) escoEstimate(counts, params) }
should be
escoEstimate.SingleCellExperiment <- function(counts, dirname, group = FALSE, cellinfo = NULL, params = newescoParams()) { counts <- BiocGenerics::counts(counts) escoEstimate(counts, dirname, group, cellinfo, params) }
Issue
x <- escoEstimate(sce, dirname, group = TRUE, cellinfo = ...)
I kept getting 1 fromgetParam(x, "nGroups")
esco-estimate.R
,escoEstimate.SingleCellExperiment
in fact ignores all parameters except forcounts
andparams
Solution
should be