JINJINT / ESCO

Single cell simulator with gene co-expression
GNU General Public License v3.0
6 stars 2 forks source link

escoEstimate.SingleCellExperiment ignores dirname, group, cellinfo #4

Open HelenaLC opened 3 years ago

HelenaLC commented 3 years ago

Issue

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)
}