Can someone please explain the difference between FindConservedMarkers and FindMarkers.
As per definition:
FindConservedMarkers- Finds markers that are conserved between the groups
- But does that mean that the genes are similarly expressed between groups/conditions or genes are differentially expressed between groups/conditions?
- Also is this supposed to be for all clusters or a single cluster? If all clusters, according to the function we are identifying them for one cluster (ident.1) or max two clusters (ident.2) at a time right? Then, what ? Do I look for similar genes for all the clusters?
FindConservedMarkers(object, ident.1, ident.2 = NULL, grouping.var,
assay = "RNA", slot = "data", meta.method = minimump,
verbose = TRUE, ...)
FindMarkers - Finds markers (differentially expressed genes) for identity classes
I don't understand what's the significance of this?
FindAllMarkers - Finds markers (differentially expressed genes) for each of the identity classes in a dataset
What is this doing and how is this different from FindConserved Markers?
It would be very helpful if someone can explain this with a biological use cases.
Thanks in advance!
Payal
Thank you! This is helpful.
I have a combined dataset (control vs treatment ). I was following this - https://satijalab.org/seurat/v3.1/immune_alignment.html tutorial. I got confused after the FindConservedMarkers step.
In general on what basis should we select the marker genes to draw the feature plot or identify the clusters? In my case, should I be looking at the genes with low p-value and high log fold change difference between control and treatment for say cluster 1?
This depends on your experimental setup, research question, and cells. It's difficult to answer without more information. If it seems like cell types are clustering together, despite the treatment, then I think your approach would be valid. If not, you may want to assign cell types to your cells and then compare between treatment and control for each given cell type.
Hi Jared! Thanks a lot for this explanation! I am trying to identify differential expression in each cell cluster for control vs treatment. For this, which function will be appropriate? Thanks a lot in advance!
See their DE vignette. Generally, you'll want to use
FindMarkers
, though in your case you'll probably want to loop through each cluster and subset to your cell of interest before comparing the conditions. Or combine the cluster/treatment info into a single column in the metadata and use that to specify the two groups.Hi jared.andrews07 !
I have a question regarding
FindMarker
function. I have an integrated dataset (ctrl vs treatment) and I want to find the DEGs per cluster following this tutorial from seuratso I would do
FindAMarkers
but I notice differences based on the additional parameter so I am not sure why and maybe you have a clue on it. Basically if I do :I got these 5 top 5 genes (tot 2367 genes):
But If I do:
with orig.ident identifying control and treatment post integration I get :
And if I plot the top 2 genes per analysis (Wfdc2, Bifal and Aox3 and Serpinbl1) I get suggesting that the most DEGs from the 1st analysis is not that specific for clustert1
So which code should I use if I want to find the DEGs per cluster? I would expect that selecting the log2fc threshold and the method (in this case ROC) would give me more specific genes.
Neither of those are testing for what you think. Take a close look at the
FindMarkers
examples, which should help you figure out what you need.If you still run into issues, open a new question, piggybacking on old questions is generally discouraged as it makes information difficult to find.
Oh sorry, I thought it was a stupid question (eg. something that I have may missed) that's why I didn't open a new question. I have already look into it and obviously I didn't find very explanatory otherwise I would not have bothered you! but I will try again! Thanks!