I tried to run fastMNN (installed today from bioconductor), but I get more cells than expecte din the corrected object. Any idea why?
sobj <- subset(data, features=hvg)
print('sobj')
print(sobj)
expr <- GetAssayData(object = sobj ,slot = "data")
print('expr')
print(dim(expr))
sce <- fastMNN(expr, batch = sobj@meta.data[[batch]])
print('sce')
print(dim(sce))
[1] "sobj"
An object of class Seurat
2000 features across 2730 samples within 1 assay
Active assay: originalexp (2000 features, 0 variable features)
[1] "expr"
[1] 2000 2730
[1] "sce"
[1] 2000 9815
I tried to run fastMNN (installed today from bioconductor), but I get more cells than expecte din the corrected object. Any idea why?