Hi,
I have the following RNA-seq experiment:
control (right tissue) vs control (left tissue)
case (right tissue) vs case (left tissue)
I would like to find the DE genes present in the first comparison + DE genes second comparison but discarding those DE genes that are significant in both comparisons with the same fold change direction. The way I proceed is to perform DE analysis for each comparison separately and then removing the overlapping ones manually. But I would like to know if there is a more direct way performing only one test and extracting the required contrast.
So far I tried this with DESeq2:
design~group
res <- results(dds, contrast=c(0,-1,1,1,-1)) resultsNames(dds) "INTERSECT" "GROUPctl_LEFT" "GROUPctl_RIGHT" "GROUPcase_LEFT" "GROUPcase_RIGHT"
But the contrast is not the desired one.
Anyone could help me?