#' launch_protGear_interactive
#'
#' This is Function is to launch the shiny application
#' @return launches the shiny interactive protGear app
#' @import rmarkdown shiny GGally pheatmap knitr
#' grid styler factoextra FactoMineR remotes
#' @importFrom flexdashboard renderValueBox valueBoxOutput valueBox
#' @importFrom shinydashboard renderInfoBox
#' @importFrom dplyr group_rows between first last
#' @export
#' @examples
#' app <- system.file("shiny-examples", "protGear_interactive",
#' "protGear_interactive.Rmd", package = "protGear")
#' if (app!=""){
#' ## run this
#' #launch_protGear_interactive()
#' }
#'
launch_protGear_interactive <- function() {
appDir <-
system.file("shiny-examples",
"protGear_interactive",
"protGear_interactive.Rmd",
package = "protGear")
if (appDir == "") {
stop("Could not find example directory. Try re-installing `protGear`.",
call. = FALSE)
}
rmarkdown::run(file = appDir)
}
#' launch_select
#'
#' This is Function is to launch mutiple shiny applications for protGear
#' @param theApp accepts one of the folders containing the shiny appplication
#' @return launches the app defined under theApp
#' @export
#' @examples
#' validExamples <-
#' list.files(system.file("shiny-examples", package = "protGear"))
#' #launch_select(validExamples[[1]])
launch_select <- function(theApp) {
# locate all the shiny app examples that exist
validExamples <-
list.files(system.file("shiny-examples", package = "protGear"))
validExamplesMsg <-
paste0("The available apps in `protGear` are: '",
paste(validExamples, collapse = "', '"),
"'")
# if an invalid folder is given, throw an error
if (missing(theApp) || !nzchar(theApp) ||
!theApp %in% validExamples) {
stop(
'Please run `launch_select()` with a valid example app as an argument.\n',
validExamplesMsg,
call. = FALSE
)
}
# find and launch the app
appDir <-
system.file("shiny-examples", theApp, package = "protGear")
if (grepl('protGear_interactive', theApp)) {
file_rmd <- 'protGear_interactive.Rmd'
} else
file_rmd <- 'index.Rmd'
rmarkdown::run(file = paste0(appDir, "/", file_rmd))
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.