Nothing
csApply <- function(X, FUN, ..., simplify = TRUE)
{
if (!is(X, "cytoSet"))
stop("'X' must be of class cytoSet")
sapply(X@phenoData$name, function(i){
Y <- exprs(X[[i]])
attr(Y, "well") <- X[[i]]@well
FUN(Y, ...)}, simplify=simplify)
}
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.