Entering edit mode
18 months ago
Picasa
▴
650
Hi,
Working on single cell, I have created a seurat object. I would like to list all the genes name of a specific cell (ex: abc_TTCGATAGCGACTG-1
). Any idea how can I do it ?
Thanks for your help
if you want the genes in your count matrix use
rownames(obj)
. Or are you looking to get all genes with count > 0 for a particular cell? Please clarify.