There's several ways to cut this, but it seems that you should be focusing on finding genes that are DE in treat1 and treat2 against each control. We require DE against each control, because if you have a gene that is DE against one control but not DE against another control, then one could reasonably argue that the DE in the first comparison is an artifact from some aspect of the experiment that is captured by the second control but not by the first. We also require DE in both treatments against each control (hence, the "and" condition above). This should reduce detection of DE genes due to off-target effects, as it seems unlikely to get the same type of spurious DE from different siRNA sequences with different non-specific targets.
In short, you could do something like this:
design <- model.matrix(~0 + treat)
colnames(design) <- levels(treat)
con <- makeContrasts(treat1 - control1, treat1 - control2, treat1 - control3,
treat2 - control1, treat2 - control2, treat2 - control3, levels=design)
# ... edgeR stuff ...
lrt11 <- glmLRT(fit,contrast=con[,1])
lrt12 <- glmLRT(fit,contrast=con[,2])
lrt13 <- glmLRT(fit,contrast=con[,3])
lrt21 <- glmLRT(fit,contrast=con[,4])
lrt22 <- glmLRT(fit,contrast=con[,5])
lrt23 <- glmLRT(fit,contrast=con[,6])
... and then identify the genes that are DE (in the same direction, hopefully) across all comparisons. This is the most conservative approach, but anything you get out should be very reliable with respect to specificity. If you don't get any genes, you could relax it a bit by only requiring DE in one treatment or the other:
lrt1x <- glmLRT(fit,contrast=con[,c(1,4)])
lrt2x <- glmLRT(fit,contrast=con[,c(2,5)])
lrt3x <- glmLRT(fit,contrast=con[,c(3,6)])
This effectively does an ANOVA-like comparison to test for differences in treat1 or treat2 against each control (you then identify the intersection of the DE genes from the comparisons to each control). This might be better if you suspect your two siRNAs have differences in efficiency such that requiring concomitant changes in both would be too stringent.
Finally, the contrast you have in your original post wouldn't provide much protection against off-target effects. Strong DE due to an off-target effect in either treatment would result in a non-zero log-fold change. Even if this off-target DE were captured by one control, the expression of the control is divided by 3 whereas the expression of the treatments is only divided by 2; changes to the former would be outweighed by changes of the same size in the latter.
hi,
This looks a question about using the edgeR software, so I am removing the DESeq2 tag.
Are the two siRNAs targeting the same gene? What is the nature of the controls, e.g., shuffled/nonsense siRNA?
Hi Aaron, the siRNAs are targeting the same gene (LncRNA in my case). The controls are of different non-targeting siRNAs.