Meaning of the intercept when betaPrior is TRUE?
1
0
Entering edit mode
serpalma.v ▴ 60
@serpalmav-8912
Last seen 2.3 years ago
Germany

If I run DESeq(betaPrior=FALSE) I get two coefficients: the intercept (group A) and the difference between condition B versus A.

dds <- makeExampleDESeqDataSet()
res1 <- DESeq(dds, betaPrior = FALSE)
resultsNames(res1)
[1] "Intercept"        "condition_B_vs_A"

If I run DESeq(betaPrior=TRUE) I get an intercept plus an effect for each group. Here I do not know what the intercept represents, which is the question of this post.

res2 <- DESeq(dds, betaPrior = TRUE)
resultsNames(res2)
[1] "Intercept"  "conditionA" "conditionB"

 

Thanks in advance!

 

 

deseq2 • 819 views
ADD COMMENT
2
Entering edit mode
@mikelove
Last seen 6 hours ago
United States

The intercept with betaPrior=TRUE (which is kind of the "old way" that DESeq2 did shrinkage) gives a middle point that the expected normalized counts for all groups are shrunk towards.

ADD COMMENT

Login before adding your answer.

Traffic: 779 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