This is a test version of Biostars. For the public version, visit https://www.biostars.org.
Can I manually add nCount_RNA & nFeature_RNA to a converted Seurat object?

I'm converting a SingleCellExperiment object to a Seurat object, and I'd like to be able to regress out the effect of % mitochondrial DNA when running SCTransform for normalization & detection of highly variable genes. However, running as.Seurat does not add the necessary nCount_RNA or nFeature_RNA metadata to the new Seurat object. Is there a non-exported function in Seurat that I could use to add this information?

scrna-seq seurat r

As quickly as I asked this, I figured it out. The hidden function CalcN performs this:

nCount = colSums(x = object, slot = "counts")  # nCount_RNA
nFeature = colSums(x = GetAssayData(object = object, slot = "counts") > 0)  # nFeatureRNA

0 answers

No answers yet.

Log in to answer this question.