I have an RNA-seq experiments with a control, and 4 treatments, for each I have 3 replicates. I would like to find genes that are differentially expressed in any of these conditions compared to the control samples.
Meaning if gene A is up/down-regulated in one or more of the treatments compared to the control, I would like to know about it.
lcd = read.delim('mydata', row.names=1, as.is=T)
group = factor(c(rep("ctrl", 3), rep("treat1",3), rep("treat2",3), rep("treat3",3),rep("treat4",3)))
cds <- DGEList(lcd, group = group)
What is the alternative for using exactTest multiple times and intersecting the results, given that I would not like to average the expression of the treatments as the different treatment have different consequences?
Thanks!
I think design = ~group should be
You are correct! Good catch. I've updated the answer to correct that mistake.
Hi, Devon.
I did not understant one thing. If I have 4 groups: 1,1,1,2,2,2,3,3,3,4,4,4, and I want to compare all of them against each other, how can I do that?
For exemplo:
In this case, I am comparing groups 1 and 2. Them I would do that for the other comparisons.
Or, instead of that should I do something like this:
The problem is that I don't know exactly how to use
coef
for this kind of comparisons.coef=2:4
will compare all groups against the control group, but I do not have a control group, I want to compare everything.Other problem is that when I use the code like this the output is a single table with multiple comparisons, but just one p-value and one FDR. I need separeted p-values for each comparison (like pos-tests for ANOVA).
It would be great if you can help me.
Thanks
that is also my question , i have the same situation but i couldn't reach the proper answer.
I know this is old, but why isn't it
coef=2:5
??those coefficients denote comparison of ctrl (1) with : treat (2) , treat2 (3), treat3 (4), treat4 (5). goodez
Yes so 4 treatments, why is there only 3 coefficients (
2:4
)?