DESeq with multiple condition
1
0
Entering edit mode
@7e6a2774
Last seen 6 days ago
Italy

Hey, I wanted to ask for advice about some analysis I am doing. I have a count matrix (raw) and a metadata dataframe (condition_breakfast) for DESeq analysis.

dds_V_vs_L <- DESeqDataSetFromMatrix(countData=raw, 
                                     colData=condition_breakfast, 
                                     design=~ Campione)

In condition_breakfast I have multiple columns:

ID    Risposta Braccio Campione
 1 OE05  pCR      A       V       
 2 OE06  pCR      A       L       
 3 OE07  pCR      A       V       
 4 OE08  pCR      A       L       
 5 OE09  RD       B       V       
 6 OE10  RD       B       L       
 7 OE11  pCR      B       V

How I can do a comparison between sample in (pCR-V) vs sample in (RD-V)? and sample in (pCR-L) with sample in (RD-L)? So, how i can combine multiple colData? Because if I do

 dds_V_vs_L <- DESeqDataSetFromMatrix(countData=raw, 
                                     colData=condition_breakfast, 
                                     design=~ Risposta+ Campione)

I think he compare pCR-V vs pCR-L and RD-V vd RD-L, or i'm saying wrong?

MoleculeExperiment DifferentialExpression DESeq2 • 418 views
ADD COMMENT
0
Entering edit mode
ATpoint ★ 4.1k
@atpoint-13662
Last seen 11 hours ago
Germany

The easiest is to combine columns similar to code suggested in the vignette for interactions and then make the design on that column:

https://bioconductor.org/packages/release/bioc/vignettes/DESeq2/inst/doc/DESeq2.html#interactions

ADD COMMENT
0
Entering edit mode

Thank you for the answer. I try what you suggest but when i look at the resultName, I only have

resultsNames(dds) [1] "Intercept" "group_pCRV_vs_pCRL" "group_RDV_vs_pCRL"

ADD REPLY
0
Entering edit mode

See vignette on contrasts. In general, please read the vignette before starting an analysis.

ADD REPLY

Login before adding your answer.

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