Dear forum,
Hello, I have a question regarding interpreting DESeq2 results regarding baseMean and log2FoldChange. I run DESeq() to perform differential expression analysis between group 1 and 2, and got the results like following, condition is c("1", "2").
baseMean | log2FoldChange | lfcSE | |
A | 1000 | -0.80 | 0.15 |
B | 400 | 0.60 | 0.14 |
C | 500 | 0.80 | 0.20 |
I have a difficulty interpreting these, as it seems that baseMean represents mean of all participants (both group 1 and 2). I thought that "baseMean represents mean of group 1 (base level), and log2FoldChange indicate the change of group2 from group1." Is this interpretation correct?
If correct, How should I interpret this baseMean? Is it just showing all the participants mean for reference? I don't think the result is showing that "log2FoldChange of group 2 from all the group baseMean". I hope I clarified my question well...
Thanks in advance.
Thank you very much for the answer and pointing me to the right vignette! I read the section and still get confused about log2FoldChange ... if I understand it correctly, ignoring the baseMean of all the samples displayed in the results() table, from the results we can conclude that "if baseMean of A in group 1 is 100, shrinked log2FoldChange is -0.80 +- 0.15, so group2 have baseMean of 174.1 (100*(1/2^0.80)), and SE of 100*(1/2^-0.65)=156.9 to 100*(1/2^-0.95)=193.2"? I hope this is correct ... Sorry if misunderstanding.
Sure that looks right for translating the LFC point estimate and SE to the count scale.