Nothing
eset2genelevel <- function(x) {
stopifnot(is(x, 'ExpressionSet'))
annolib <- paste(annotation(x),'.db',sep='')
if (!(annolib %in% loadedNamespaces())) stop(paste(annolib,'has not been loaded!'))
#
ans <- nsFilter(x,require.entrez=FALSE,remove.dupEntrez=TRUE,var.filter=FALSE)$eset
text <- "as.character(unlist(AnnotationDbi::mget(featureNames(ans),eval(parse(text=paste(annotation(ans),'ENTREZID',sep=''))))))"
featureNames(ans) <- eval(parse(text=text))
text <- paste(annotation(ans),'ORGPKG',sep='')
annotation(ans) <- eval(parse(text=text))
ans
}
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.