Hi as I understand it, in DESeq2 one of the ways to run a DEG analysis on time course data is using a likelihood ration test on two different models. For example, I can test for genes that show significant differences in time trajectories for two different treatments can be done as follows
ddsMat<-DESeqDataSetFromMatrix(countData=Xdata, coldata=DMAT, design= treatment+time+treatment:time)
dds<-DESeq(ddsMat,test="LRT", reduced =~ treatment+time)
From my limited understanding of GLM, this basically looks at two different models one with an extra-term for the interaction between time and treatment and the other without and performs a statistical test (LRT) to determine which one better models the mean expression values better. You can then look at the results matrix and determine which genes meet your significance criteria. However, the results table also gives you log2FoldChange but it is not clear what this log2Foldchange is with respect to. In a standard DEG analysis the log2Foldchange is the log2foldchange between one group and a reference group, but in this case we have a reference model. I'm trying to figure out how to plot these results, and a volcano plot doesn't make sense unless there is an interpretable meaning to the log2foldchange value. Thanks
And