Hi bk11, I am doing single cell multiome RNA + ATAC but I only read RNA assay into RStudio to analyze first.
Output FindMarkers()
Hi all,
Would you please share why I got peaks instead of genes when using this command:
compare_0 <- FindMarkers(merged_seurat, ident.1 = 'WT_0', ident.2 = 'MT_0')
head(compare_0)
Thank you so much!
• 1,888 views
•
link
1 answer
Hey, it looks like you are doing scATAC-seq data analysis. Here you are checking for Differentially accessible peaks between cell types.
• 0 views
•
link
• 0 views
•
link
You need to change the default assays before running FindMarkers then-
#To find markers in your RNA data slot
DefaultAssay(merged_seurat) <- "RNA"
compare_0 <- FindMarkers(merged_seurat, ident.1 = 'WT_0', ident.2 = 'MT_0')
#To find markers in your ATAC data slot
DefaultAssay(merged_seurat) <- "ATAC"
compare_0 <- FindMarkers(merged_seurat, ident.1 = 'WT_0', ident.2 = 'MT_0')
• 0 views
•
link
Unfortunately, it doesn't work as you see the only assay I have in this case is RNA.
• 0 views
•
link
Log in to answer this question.