DESeq2: three conditions lfcShrink CvsB analysis
1
0
Entering edit mode
kcbauer • 0
@kcbauer-21128
Last seen 4.8 years ago

Hello!

I'm new to RNA-Seq analyses and DeSEQ2. Apologies if this has been covered previously. I am running analyses on samples within three conditions. I created a dds object from a count matrix, pre-filtered, and moved on to differential expression analyses.

**dds <- DESeq(dds)

res1 <- results(dds, contrast=c("condition","B","A"))

res2 <- results(dds, contrast=c("condition","C","A"))

res3 <- results(dds, contrast=c("condition","C","B"))**

Then I tried lfcshrink...

**resLFC1 <- lfcShrink(dds, coef="conditionBvs_A", type="apeglm")

resLFC2 <- lfcShrink(dds, coef="conditionCvs_A", type="apeglm")

resLFC3 <- lfcShrink(dds, coef="conditionCvs_B", type="apeglm")**

Of course, I got an error on resLFC3 // coef %in% resultsNames(dds) is not TRUE

...As resultsNames only lists two conditions: "conditionBvsA" and "conditionCvsA"

I tried to relevel on condition B, but this doesn't change my resultsNames dds$condition <- relevel(dds$condition, ref = "B") I read the extended data section on shrinkage filters. "We give some examples below of producing equivalent designs for use with coef. We show how the coefficients change with model.matrix, but the user would, for example, either change the levels of dds$condition or replace the design using design(dds)<-, then run nbinomWaldTest followed by lfcShrink." Could someone help me on how to change the design(dds)...so I can run lfcSrhink on condition C vs B?

Thank you

deseq2 lfcShrink • 837 views
ADD COMMENT
0
Entering edit mode
@mikelove
Last seen 1 day ago
United States

"I tried to relevel on condition B, but this doesn't change my resultsNames"

Did you follow the order of operations in the vignette that you quoted above?

Can you show how the resultsNames(dds) didn't change after re-leveling the condition and running nbinomWaldTest(dds).

ADD COMMENT

Login before adding your answer.

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