Seurat: can someone explain how to identify cell types in clusters
1
0
Entering edit mode
5.5 years ago
Bios ▴ 10

I'm confused on Seurat's tutorial of integrating two datasets.

Seurat has this: nk.markers <- FindConservedMarkers(immune.combined, ident.1 = 7, grouping.var = "stim",print.bar = FALSE)

After I do this for every cluster, what should go into the feature plot? Seurat has this line of code, but I don't know where those genes come from. Is it the highest logFC (of conserved markers) from each cluster?

FeaturePlot(object = immune.combined, features.plot = c("CD3D", "SELL", "CREM", "CD8A", "GNLY", "CD79A", "FCGR3A", "CCL2", "PPBP"), min.cutoff = "q9", cols.use = c("lightgrey", "blue"), pt.size = 0.5)

Thanks for your help.

RNA-Seq R Seurat • 3.7k views
ADD COMMENT
1
Entering edit mode
5.5 years ago
paulranum11 ▴ 80

FeaturePlot is a tool that allows you to visualize that distribution of a feature in you tSNE plot. For example if you do:

FeaturePlot(object = immune.combined, features.plot = c("CD3D"), min.cutoff = "q9", cols.use = c("lightgrey", "blue"), pt.size = 0.5)

You should see the expression level of the gene CD3D in each cell that it is expressed in. If i remember correctly you can also visualize other features from your metadata (if you have provided metadata). Something like the following should allow you to visualize the batch IDs as colors (if you provided batch IDs).

FeaturePlot(object = immune.combined, features.plot = c("batch"), min.cutoff = "q9", pt.size = 0.5)

To answer you question about how to identify cell types in the clusters... This is best done by looking for the expression of known marker genes for each cluster. You might start by looking for known markers among the list of top cluster defining genes generated for each cluster.

ADD COMMENT

Login before adding your answer.

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