Can I manually add nCount_RNA & nFeature_RNA to a converted Seurat object?
0
0
Entering edit mode
3.8 years ago
jrleary ▴ 210

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 • 5.9k views
ADD COMMENT
5
Entering edit mode

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
ADD REPLY

Login before adding your answer.

Traffic: 2211 users visited in the last hour
Help About
FAQ
Access RSS
API
Stats

Use of this site constitutes acceptance of our User Agreement and Privacy Policy.

Powered by the version 2.3.6