A problem about RNA-seq workflow:9 Time course experiments
1
1
Entering edit mode
@shangguandong1996-21805
Last seen 18 months ago
China

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)?

rnaseqgene • 857 views
ADD COMMENT
2
Entering edit mode
@mikelove
Last seen 3 hours ago
United States

Thanks for posting. That sentence needs to be fixed, it’s from an older version when coef() returned shrunken LFC. Now it only returns MLE. I’ll update the workflow text.

ADD COMMENT
0
Entering edit mode

Thanks Dr.Love :). And If I want to get the shrunk log2FoldChange of coef(ddsTC), can I use below code ?

lapply(colnames(coef(ddsTC))[3:12], function(coef_name){
  result_lfc <- lfcShrink(dds = ddsTC, coef = coef_name,type = "apeglm")
  return(result_lfc$log2FoldChange)
}) -> betas

names(betas) <- colnames(coef(ddsTC))[3:12]
do.call(cbind,betas)
ADD REPLY
0
Entering edit mode

Yes, that works. I've updated the vignette to note that coef() provides MLE for coefficients.

ADD REPLY

Login before adding your answer.

Traffic: 536 users visited in the last hour
Help About
FAQ
Access RSS
API
Stats

Use of this site constitutes acceptance of our User Agreement and Privacy Policy.

Powered by the version 2.3.6