NA values for mitochondrial gene percentage
I am running Seurat on publicly available dataset of ~400k cells. More than 80% of the cells are returned as NA when I use percentageFeatureSet(object, pattern = "^MT-"). How should I interpret these result? Does this mean the 80% of cells are of poor quality or have no mitochondrial content?
Any help would be greatly appreciated. Zahra
• 2,875 views
•
link
0 answers
No answers yet.
Log in to answer this question.
Are you even sure the gene names are HGNC so that you can use that pattern? What is the output of:
grep("^MT-", rownames(your_seurat_object), value=TRUE)and
head(rownames(your_seurat_object))?Yes, I do have MT genes.
Here is what I get:
What about case? I note here, they tried lowercase as well.
I did try lower case and returned character(0).
What is your exact line of code?
Update: The data was not downloaded intact. Thank you for your help!