Normalizes consensus peak using different methods
normalizeConsensus(cp, norm.method = "cpm", log.option = FALSE)
bed formatted consensus peak matrix: CHR, START, STOP and raw peak counts (peaks by 3+samples)
normalization method for consensus peaks
logical, log option for cpm function in edgeR
Normalized consensus peaks
# NOT RUN {
set.seed(123)
cp <- matrix(rexp(200, rate=.1), ncol=20)
## using cpm function from `edgeR` package
cp.normalized <- normalizeConsensus(cp)
## quantile normalization option
cp.normalized <- normalizeConsensus(cp, norm.method = "quantile")
# }
Run the code above in your browser using DataLab