Normalize bulk-rna seq with median of ratios and DEseq2
0
0
Entering edit mode
3.2 years ago
anael.cain • 0

Hi,

I have multiple samples from bulk-rna seq that I want to normalize using the median of ratios method, using DEseq2. I probably make something wrong as the result that I get before and after the normalization are pratically similar to what I get if I make a FPKM score. I thought that calculating the sizeFactor before the normalization step is enough to perform the median of ratios. What I'm missing? Here is the code that I'm using - all the samples should be normalized together

dds <- DESeq2::DESeqDataSetFromMatrix(countData = counts,
                                      colData = infos.samples, design = ~1)
dds <- estimateSizeFactors(dds)
counts.norm <- t(DESeq2::counts(dds, normalized = T))

In addition, is there a way (maybe using the design) to normalize across a condition?

Thank you!

rna-seq normalization DEseq2 • 1.2k views
ADD COMMENT
0
Entering edit mode

Do you need a design? No, the design has nothing to do with how the method works.

If you have no compositional changes between your samples and only the depth of sequencing is the difference between the samples then FPKM and DESeq2 should yield fairly similar outputs. What exactly does surprise you?

ADD REPLY
0
Entering edit mode

You're right. I'm new to this and thought that different methods yield different results.

Thank you for the help

ADD REPLY

Login before adding your answer.

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