Entering edit mode
10.0 years ago
bioinforupesh2009.au
▴
140
Dear all,
I try to compare normalization by edgeR (method=rle) and DESeq2. I assumed it should be equal but its not. Why? Any comment?
## DESeq
# Estimate size factor
dds <- estimateSizeFactors(dds)
sizeFactors<-sizeFactors(dds)
> sizeFactors
c1 c2 c3 t1 t2 t3
1.0499440 0.8303715 1.2730947 1.0406032 1.1123688 0.8099849
## edgeR (Method of DESeq normalization)
rle <- calcNormFactors(geneCounts.dgelist, method="RLE")
> rle$sample$norm.factors
c1 c2 c3 t1 t2 t3
1.0398201 1.0503468 1.0296647 0.9079722 0.9871300 0.9921249
Thank you