IgG control in RIP-seq with Deseq2
1
0
Entering edit mode
Adelaide • 0
@678b8770
Last seen 6 days ago
Italy

Hi! How can I use DESeq2 to analyze my RIP-seq data, which includes both INPUT and IgG control samples for each of the three replicates across two conditions: treated and untreated? Is it correct to put all the samples together, considering IP, INPUT, and IgG as different assays, and use the following formula?

dds <- DESeqDataSetFromMatrix(countData = count_matrix,
                              colData = colData_df,
                              design = ~ assay + treat + assay:treat)
dds <- DESeq(dds, test="LRT", reduced= ~ assay + treat)

And is it correct to retrive the results in this way?

results(dds, contrast=list("assayIP.treatTREATED", "assayigG_ctrl.treatTREATED"))

Thanks in advance,

AT

DESeq2 RIP-seq • 150 views
ADD COMMENT
0
Entering edit mode
@mikelove
Last seen 39 minutes ago
United States

You are mixing two threads of advice (I guess from different support site posts).

You can just do the LRT then:

results(dds)

This gives you the LRT result.

The other code you have posted is for a different setup.

And just to link to a relevant thread:

DESeq2 testing ratio of ratios (RIP-Seq, CLIP-Seq, ribosomal profiling)

ADD COMMENT

Login before adding your answer.

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