Cluster sub-set analysis using Seurat
4
1
Entering edit mode
3.8 years ago
singcell • 0

I am trying to dig deeper into my Seurat single-cell data analysis. If I want to further sub-cluster a big cluster then what would be the best way to do it:

1) Decreasing the resolution at FindClusters stage

or

2) extracting the individual cell index and re-clustering and then further analysis.

What would be the major difference in outcome between two approaches? How to perfrom the second approach in Seurat? using Whichcells function to extract and then I am not sure about next step please

Thank you.

seurat single-cell • 14k views
ADD COMMENT
0
Entering edit mode

It doesn't matter, since the raw count table are the same either way. The real important thing is the algo you use for sub-clustering. Modularity based clustering may not work good. Maybe gaussian mixture will be better?

ADD REPLY
0
Entering edit mode

the raw count table are the same either way

Clustering is not based on the raw counts table (in the default Seurat workflow, at least). It's based on the reduced dimensions matrix which will change when you remove some of the sources of variation.

ADD REPLY
4
Entering edit mode
3.8 years ago

Subsetting and rerunning the umap coords and clustering will separate out different things better.

Personally, I cheat, and use Loupe. It's easy to use the mouse to draw categories, then export your categories into the metadata of your seurat object. But you have to have your data go through the 10xGenomics pipeline for that.

ADD COMMENT
0
Entering edit mode

Never perform the analysis geometrically.

ADD REPLY
0
Entering edit mode

What is a geometric analysis?

ADD REPLY
0
Entering edit mode

Like "use the mouse to draw categories", or make conclusions based on your eyes or based on dimension reduced visualizations, etc. In my opinion, all analysis should be done analytically (mathmatically).

ADD REPLY
0
Entering edit mode

For scRNA-seq, there has to be substantial manual supervision to guide the analysis and make biologically meaningful conclusions. An exploratory analysis just to help you understand your data does not need to be perfect.

ADD REPLY
0
Entering edit mode

In general, I don't quite agree with "manual supervision". All judgement should be based on some mathematical algo. If the results are not "biologically meaningful", it means that algo used is problematic here. Theoretically, researcher should improve or replace algo instead of applying "manual supervision" on the same algo.

ADD REPLY
3
Entering edit mode
3.8 years ago
igor 13k

Both approaches are valid. It really depends on your question. You can increase the resolution to get more clusters. You can just select the cluster of interest and analyze it more closely or in different ways. For example, if your population of interest is only 10% of the total cells, it would be difficult to analyze it in the full dataset. If you just keep those cells, that becomes easier.

If you want to extract the cells of a specific cluster, you can use subset(). The Interaction Tips vignette has a few examples such as:

# Can I create a Seurat object of just the NK cells and B cells?
subset(pbmc, idents = c("NK", "B"))
ADD COMMENT
0
Entering edit mode

Thank you for your reply. I have got integrated Seurat object containing KO and WT samples. Can I still use subset() function? Can I still differentiate between WT and KO samples during downstream analysis after subsetting.

ADD REPLY
1
Entering edit mode

Subsetting just keeps/removes specific cells. It does not alter their metadata.

ADD REPLY
1
Entering edit mode
4 months ago
j.gleixner ▴ 20

There now is also Seurat::FindSubCluster

ADD COMMENT
0
Entering edit mode
2.5 years ago

I have a follow-up question:

How can I define a new cluster based on a feature's expression level, but maintain it in the same object, along side the other clusters that were already defined by clustering?

Thanks!

ADD COMMENT

Login before adding your answer.

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