Why FindMarkers between conditions shows pct.1 and pct.2 as 1 for most of the genes?
1
0
Entering edit mode
10 months ago
Biologist ▴ 290

I have a Seurat object data which has identified seurat_clusters. And there are two conditions treatment and notreatment for this dataset.

I performed DEA between conditions in a specific cluster 3 using the FindMarkers function from Seurat like the following:

## Get the cluster 3 cells 
data2 <- subset(data, subset = RNA_snn_res.0.2 == 3)
Idents(data2) <- "Condition"

all.genes <- rownames(data2)
data2 <- ScaleData(data2, features = all.genes)

DEG <- FindMarkers(data2, ident.1 = "treatment", ident.2 = "notreatment", verbose = FALSE, logfc.threshold = 0, min.pct=0)
head(DEGs, n = 10)

top

Could you please tell me why pct.1 and pct.2 are 1 for all the genes above?

seurat FindMarkers scRNA-seq • 847 views
ADD COMMENT
0
Entering edit mode
10 months ago
bk11 ★ 2.4k

For pct.1 and pct.2, please check in this link.

For Doheatmap in seurat, you can absolutely define the features (genes of your interest). For this please check here.

ADD COMMENT
0
Entering edit mode

I know pct.1 and pct.2, my question is why there is 1 for all the genes of pct.1 and pct.2?

ADD REPLY

Login before adding your answer.

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