Entering edit mode
Hi!
I have been using the rnaseqDTU
workflow and the function testForDEU
internally uses the DESeq2
function nbinormLRT
. I was wondering what the ramifications are if I wanted to calculate fold change for example for specific timepoints.. Hypothetically could I use the wald test
instead of LRT
in this case to get FCs?
Thanks!
dxd <- estimateSizeFactors(dxd)
dxd <- estimateDispersions(dxd, quiet=FALSE)
dxd <- testForDEU(dxd, reducedModel=~sample + exon + replicate:exon)
OK. Thanks Michael! Should I add an additional tag to this post?
Any update on this post authors of DEXSeq?
I pinged the authors.
Thank You!
This is a good point. It should be possible to use the Wald test vs LRT to get the LFC of the interaction exon:condition. But I've not compared the different approaches myself. If any (differences) I guess they would be similar to those observed for gene level tests.
OK. Interesting. Thank you for your input!