Nothing
# Converts a data matrix into an ExpressionSet object.
neweS <-
function(mat, vlist, vlabel=as.list(names(vlist))) {
names(vlabel) <- names(vlist)
for (i in 1:length(vlist)) {
names(vlist[[i]]) <- colnames(mat)
}
pdata <- new("AnnotatedDataFrame")
pData(pdata) <- as.data.frame(vlist)
varLabels(pdata) <- vlabel
eset <- new("ExpressionSet", exprs=as.matrix(mat), phenoData=pdata)
return(eset)
}
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.