Nothing
#' app to survey 43000 cancer transcriptomes
#' @return a SummarizedExperiment
#' @note Copies source code and metadata to a temporary folder
#' and executes shiny::runApp there; sets working diretory to folder where
#' ca43k was called
#' when app is exited. Also will return either NULL or a
#' SummarizedExperiment at conclusion.
#' @examples
#' ca43k
#' @export
ca43k = function() {
od = getwd()
on.exit(setwd(od))
uif = system.file("ca43k/ui.R", package="HumanTranscriptomeCompendium")
servf = system.file("ca43k/server.R", package="HumanTranscriptomeCompendium")
zipf = system.file("ca43k/ca1009.zip", package="HumanTranscriptomeCompendium")
td = tempdir()
setwd(td)
file.copy(uif, ".", overwrite=TRUE)
file.copy(servf, ".", overwrite=TRUE)
file.copy(zipf, ".", overwrite=TRUE)
shiny::runApp()
}
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.