DEGseq - 3 conditions
0
0
Entering edit mode
18 months ago
pingu77 ▴ 20

Hello, I am fairly new to DEG analysis.

I have three conditions: A, B, C and I would like to get all the genes that are differentially expressed in A respect to B and C. I am testing DEseq2, should I run it twice? For example: A vs B A vs C

And take the genes that have a significant logFC and pvalue in both, or is there another way for doing this?

Thank you

rnaseq • 617 views
ADD COMMENT
0
Entering edit mode

Add more details about the design. Is something like disease-control-disease+drug? Do you expect that condition B would differ from condition C ?

ADD REPLY
0
Entering edit mode

thank you for your help! A,B,C are three states of a disease. I would be interested to find the genes that are consistently differentially expressed in A compared to B and C. I expect that not all genes will be the same if I compare A vs B and A vs C but there should be some genes that are DE in both. Should I just take the overlap?

ADD REPLY
1
Entering edit mode

If samples are indipendent each other, it's fine to have a design column (named here condition) with the three factors (A,B,C) that could be used as design=~condition. So, you'll run:

resB_A <- results(dds, contrast=c("condition","B","A"))
resC_A <- results(dds, contrast=c("condition","C","A"))
ADD REPLY
0
Entering edit mode

thank you! But after I should take the intersection of the genes that are DE in resB_A and resC_A, right? thank you!

ADD REPLY

Login before adding your answer.

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