Hi all,
I'm interested in testing which genes are not significantly downregulated. While I'm able to get genes significantly upregulated with the following code:
resUp <- results(dds, lfcThreshold=0, altHypothesis="greater")
And genes significantly unregulated with the following code:
resLA <- results(dds, lfcThreshold=1, altHypothesis="lessAbs")
I'm unable to define genes significantly NOT downregulated using altHypothesis = "greater" and lfcThreshold = -1 as the lfcThreshold must be a non-negative value. Is there another way to directly test this?
couldn't you do that by test for log2fc >1 or log2fc <-1 and add significance, ex padjust < 0.05?
That's essentially the standard analysis looking for significantly up- or down-regulated genes, isn't it? I'm trying to identify genes not downregulated. The best I've been able to achieve is looking for genes that do not have a log2fc < 0 and a p.adj < 0.05. The issue with this is that I'm still testing for genes that are downregulated, not the alternative which would be genes not downregulated.