Nothing
#Like lnorm, but applies to and returns an ExpressionSet object #instead of a matrix
lnormeS <-
function (eS, span=0.1)
{
if (!is.element(class(eS), c("ExpressionSet", "AffyBatch"))){
stop("'eS' must be an object of class 'ExpressionSet' or 'AffyBatch'")
}
normat <- lnorm(exprs(eS), span)
normed.eS <- eS
exprs(normed.eS) <- normat
return(normed.eS)
}
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.