View source: R/normalization.R
applyNormalization | R Documentation |
Applies single or multiple normalization methods to the given data. Available methods are:
Total Count (TC)
Upper Quartile (UQ)
Median (median)
Trimmed Median of Means (TMM)
DESeq
PoissonSeq
Quantile Normalization (QN)
Remove Unwanted Variation (RUVg, RUVr, and RUVs)
applyNormalization(
data,
groups = rep(0, ncol(data)),
method = c("TC", "UQ", "median", "TMM", "DESeq", "PoissonSeq", "QN", "RUV")
)
data |
Un-normalized count data set of shape p x n, where p is the number of markers n is the number of samples. |
groups |
Vector of length n that maps the samples to sample groups. |
method |
Vector of normalization methods that are applied to the data.
Available methods are: |
If different groups or conditions are present in the data, the groups
vector must provide a group label for each sample and, thus,
maps each sample to a sample group (condition).
If "RUV" normalization is applied to the data, groups
must
be provided; otherwise, providing sample groups is optional.
List of normalized read counts for selected normalization methods.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.