normBy | R Documentation |
Normalization by multiple known methods
normBy(counts, method = c("edgeR", "DESeq2", "RUVs", "fpkm", "vsn"), ...)
counts |
Output of countReads |
method |
Character(1L) to indicate the method for normalization. |
... |
parameters will be passed to normByRUVs or getFPKM |
Normalized counts list
path <- system.file("extdata", package="ribosomeProfilingQC")
cnts <- readRDS(file.path(path, "cnts.rds"))
norm <- normBy(cnts, method = 'edgeR')
norm2 <- normBy(cnts, method = 'DESeq2')
norm3 <- normBy(cnts, 'vsn')
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.