R/runinterpretproteinidentification.R

Defines functions runinterpretproteinidentification

Documented in runinterpretproteinidentification

# runinterpretproteinidentification.R
# Author: Kai Ren Chen (kairen.chen@mail.utoronto.ca)
# Date: December 8, 2021

#' Launch Shiny App for interpretproteinidentification
#'
#' A function that launches the Shiny app for interpretproteinidentification
#' The code has been placed in \code{./inst/shiny-scripts}.
#'
#' @return No return value but it open up a Shiny page.
#'
#' @examples
#' \dontrun{
#' interpretproteinidentification::runinterpretproteinidentification()
#' }
#'
#' @references
#' Grolemund, G. (2015). Learn Shiny - Video Tutorials. \href{https://shiny.rstudio.com/tutorial/}{Link}
#'
#' @export
#' @importFrom shiny runApp

runinterpretproteinidentification <- function() {
  appDir <- system.file("shiny-scripts",
                        package = "interpretproteinidentification")
  shiny::runApp(appDir, display.mode = "normal")
  return()
}
# [END]
kairenchen721/interpretproteinidentification documentation built on Dec. 21, 2021, 5:15 a.m.