View source: R/outlier_analysis_functions.R
deva_normalization | R Documentation |
Normalization of data to prepare for deva. Uses a Median of Ratio method followed by a log2 transformation.
deva_normalization(intable, method = "MoR-log")
intable |
table with samples along the columns and features along the rows. |
method |
DEFAULT: "MoR-log"; Method by which to normalize data in preparation for deva. Options are <"MoR-log", "MoR", "log">. Where "MoR" refers to the Median of ratio's. The "log" transformation is necessary to compress heavily skewed data and allow for proper detection. "MoR-log" as the default will perform MoR followed by a log2 transform. |
A normalized table for input into deva
library(pasilla) pasCts <- system.file("extdata", "pasilla_gene_counts.tsv", package="pasilla") cts <- as.matrix(read.csv(pasCts,sep="\t",row.names="gene_id")) norm_cts <- deva_normalization(cts, method = "MoR-log")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.