To order list of genes
1
0
Entering edit mode
18 months ago
rufusek500 • 0

Hello, I obtained my list of genes after DESeq2 and I want to order my list of genes based on up and downregulation. Do you recommend me any command or pacakge which enables me to order my list of genes?

DEG • 671 views
ADD COMMENT
1
Entering edit mode

If, let's say, you stored your full list of DEGs in a variable called res, you can simply do so:

#for UP DEGs with logFC threshold >= 1 and significant at adjusted p-value <= 0.05
degenes_up <- subset(res, res$padj <= 0.05 & res$log2FoldChange >= 1)

#for DOWN DEGs with logFC threshold <= -1 and significant at adjusted p-value <= 0.05
degenes_down <- subset(res, res$padj <= 0.05 & res$log2FoldChange <= -1)

Naturally, adjust the logFC threshold based on your preferences.

ADD REPLY
0
Entering edit mode

Thanks for the answear, it worked!

ADD REPLY
0
Entering edit mode

Ironically, this command is called order:

data(mtcars)
mtcars[order(mtcars$qsec),]

See ?order for details.

ADD REPLY
0
Entering edit mode
18 months ago

i would just drop any with an adjusted p-value below some threshold (depending on how many DGE I have) then sort based on log2FC.

just do it in R:subset(dge[order(dge$log2FC, decreasing=TRUE),],p.adjust <= 0.5) for up-reg etc...

ADD COMMENT

Login before adding your answer.

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