Nothing
helperGetData <- function(x){
tryCatch(
expr = {
cbind(ID = rownames(x), as.data.frame(assay(x)),
stringsAsFactors = FALSE)
},
error = function(e){
message('Be sure the dataSE object has rownames with gene IDs
and assay() functions from SummarizedExperiment.')
}
)
cbind(ID = rownames(x), as.data.frame(assay(x)),
stringsAsFactors = FALSE)
}
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.