Entering edit mode
3 months ago
f2ff7a46
•
0
Is there an alternative to the make interactions comparison you are able to do in limma in DESeq2? i.e.
cont.matrix <- makeContrasts(
+ SvsUinWT=WT.S-WT.U,
+ SvsUinMu=Mu.S-Mu.U,
+ Diff=(Mu.S-Mu.U)-(WT.S-WT.U),
+ levels=design)
So I'm interested in getting the DESeq2 equivalent of the Diff = (Mu.S-Mu.U)-(WT.S-WT.U) comparison. Is this possible?
https://support.bioconductor.org/p/9143932/ -- see the lower parts where Michael Love answers, it comes down to numeric contrasts.