Nothing
quantile_normalization <- function(x)
{
# x : expression profile
Rownames <- rownames(x)
Colnames <- colnames(x)
y <- rowMeans(apply(x, 2, sort))
qnorm <- apply(x, 2, function(x){quantile(y, ecdf(x)(x), type = 1)})
dimnames(qnorm) <- list(Rownames, Colnames)
qnorm
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.