Entering edit mode
In the RNA-seq workflow: gene-level exploratory analysis and differential expression 9 Time course experiments There is a sentence saying
We can furthermore cluster significant genes by their profiles. We extract a matrix of the shrunken log2 fold changes using the coef function:
But I do not see the lfcShrink
fucntion in this
library("fission")
data("fission")
ddsTC <- DESeqDataSet(fission, ~ strain + minute + strain:minute)
So I am wondering whether there is no shrink for the coef(ddsTC)
?
Thanks Dr.Love :). And If I want to get the shrunk log2FoldChange of coef(ddsTC), can I use below code ?
Yes, that works. I've updated the vignette to note that
coef()
provides MLE for coefficients.