Hi,
I have an RNA-seq dataset where a treatment has been applied and treatment effects measured in replicate across several time points post-exposure. I have 3 treatment and 3 control replicates for each time point. I then run DESeq2's LR test below to find genes affected by treatment at any time point.
full_model ~ extraction_batch + SVs + timepoint + treatment + treatment:timepoint
reduced_model ~ extraction_batch + SVs + timepoint
However, when I plot the model coefficients obtained using the coeff() function, I notice that the intercept is huge across all genes, whereas the other coefficients / LFCs are much smaller by comparison. What does this mean? Am I doing something wrong? Given the biological question I want to answer, I am positive these are the models I should use.
Thank you in advance for your advice.
Denise
sessionInfo( )
```

As a trivial example, consider this:
The baseline in this case is treatment 1.
Thanks James -- Denise you can check the "note on factor levels" in the vignette.
And I'd recommend
plotCounts()for looking at individual genes.Hi,
Thank you very much, James and Michael, for getting back to me! I noticed the large intercept when plotting the coefficients returned by coef() with pheatmap(), as used in the DESeq2 vignette.
I know how to interpret each coefficient returned by resultsNames() after running LRT, but not the intercept it seems! So, in my case, the intercept is the average gene expression in controls at time point A!
Thank you.