edgeR Differentially Expressed Genes
1
0
Entering edit mode
p_das • 0
@p_das-8653
Last seen 7.0 years ago
United States
Hi I am using edgeR for differential gene expression analysis. The following command : > summary(de <- decideTestsDGE(lrt.CHvsH)) gives me this result, > summary(de <- decideTestsDGE(lrt.CHvsH)) [,1] -1 1870 0 9649 1 515 How can the list of genes which are down regulated (1870 genes in this case), up regulated (515) and those which show no change (9649). Thank you Prerna
edger • 1.1k views
ADD COMMENT
3
Entering edit mode
Aaron Lun ★ 28k
@alun
Last seen 3 hours ago
The city by the bay

Try this:

res <- topTags(lrt.CHvH, n=Inf, sort.by="none")$table
res[de==-1L,] # downregulated
res[de==1L,] # upregulated
res[de==0L,] # no change
ADD COMMENT
0
Entering edit mode
Thanks a bunch Aaron!!
ADD REPLY
0
Entering edit mode
Aaron, you are the best...Thank you for helping me always..
ADD REPLY

Login before adding your answer.

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