Nothing
#' Run PhyloProfile app
#' @export
#' @return A shiny application - GUI version of PhyloProfile
#' @import BiocStyle
#' @import DT
#' @importFrom colourpicker colourInput
#' @import energy
#' @import ExperimentHub
#' @import shinyBS
#' @rawNamespace import(shinyjs, except = colourInput)
#' @examples
#' ?runPhyloProfile
#' \dontrun{
#' runPhyloProfile()
#' }
runPhyloProfile <- function(){
appDir <- system.file("PhyloProfile", package = "PhyloProfile")
if (appDir == "") {
stop(
"Could not find apps directory. Try re-installing `PhyloProfile`.",
call = FALSE
)
}
shiny::runApp(
appDir,
launch.browser = TRUE,
display.mode = "normal"
)
}
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.