Entering edit mode
3.2 years ago
Audra
•
0
Why am I getting numbers instead of gene names at this step? It was working fine yesterday.
Here is how I have my Seurat object set up:
In your counts table you set the first column to null, and commented out the line before that may have set the rownames to gene names. After loading the count matrix and before setting
V1
toNULL
, what does the count matrix look like?If the gene names are in the first column you need to uncomment the line that has
rownames(counts) <- counts$V1
and run it before you remove that column.Thank you, I had commented that line out since it was 1.3 GB of data and it was taking a while on my humble laptop :)
It is working now.