Seurat re-clustering a cell subset but cell identity numbers are not completely showing up
1
0
Entering edit mode
2.7 years ago
leranwangcs ▴ 120

Hi,

After running T-SNE plot on dataset, I tried to extract a specific cell type then do reclustering. But I found that the some of the cell identity IDs are skipped in the reclustered T-SNE plot (0,2,3,4,6... instead of 0,1,2,3,4,5,6):

enter image description here

Here is my code:

DefaultAssay(combined.all) <- "integrated"

# subset Seurat to only Epithelial cells
subset.Epithelial <- subset(x = combined.all, idents = "Epithelial cells")
# run tsNE
subset.Epithelial <- RunTSNE(object = subset.Epithelial)
# run umap
subset.Epithelial <- RunUMAP(subset.Epithelial, dims = 1:20) # reduction = "pca"

# T-sne plot
Epithelial.clusters.tsne <- DimPlot(subset.Epithelial, reduction = "tsne",group.by = "seurat_clusters",label = TRUE)

I cannot figure this out nor find help from other website resources. Could anybody provide some help on how to interpret this?

Thanks so much!

scRNA • 4.7k views
ADD COMMENT
0
Entering edit mode

Now I know that I should have all the normalization steps before I RunTSNE() step. Now I have another question. So since I have already run the normalization step and the scale step on the entire Seurat object at the beginning, If I rerun them on this subset, will it run on raw counts or the normalized and scaled counts?

Thanks!

ADD REPLY
2
Entering edit mode
2.7 years ago
fracarb8 ★ 1.6k

The reason why you are missing some clusters is because you are not reclustering, and the column seurat_clusters in your final tsne still has the original clustering. What you need to do is to :

  1. Subset
  2. Run Umap/tsne
  3. Re-cluster ( FindNeighbors + FindClusters)
ADD COMMENT
0
Entering edit mode

Thanks for your reply fracarb8! Just to make sure, so I don't need the normalization and scaling steps here? Cause there are other suggestions said I need to also run those, so I'm confused here.

Thanks! Leran

ADD REPLY

Login before adding your answer.

Traffic: 2387 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