Find markers from multiple groups using bulk RNA-seq data
1
0
Entering edit mode
2.1 years ago
ccfpwll • 0

In the case of bulk RNA-seq data from multiple groups, is there any way to find markers for each group? I think DEGs and PCA analysis will give some clues. But is there any way to do it like FindAllMarkers in Seurat for scRNA-seq?

RNA-seq findMarkers bulk DEG • 1.2k views
ADD COMMENT
0
Entering edit mode
24 months ago
Chris S. ▴ 320

You can create a Seurat object using the normalized counts and then select one of the sample table columns as the identify class and run FindAllMarkers. The row names in the samples data.frame should match the count columns.

bulk <- CreateSeuratObject(counts=rlog_matrix, meta.data=samples_df, assay = "RNA")
Idents(bulk) <- 'patient'
x <- FindAllMarkers(object = bulk, only.pos = TRUE, logfc.threshold = 0.5)
ADD COMMENT

Login before adding your answer.

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