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.