normalizeDESeq {alpine} | R Documentation |
Simple implementation of DESeq median ratio normalization
normalizeDESeq(mat, cutoff)
mat |
a matrix of numeric values |
cutoff |
a numeric value to be used as the cutoff
for the row means of |
a matrix with the median ratio size factors divided out
Anders, S. and Huber, W., Differential expression analysis for sequence count data. Genome Biology (2010) doi: 10.1186/gb-2010-11-10-r106
x <- runif(50,1,100) mat <- cbind(x, 2*x, 3*x) norm.mat <- normalizeDESeq(mat, 5)