inst/app/app.R

library(shiny)

ui <- navbarPage(
    source(file.path("ui", "ui.R"),  local = TRUE)$value
)

server <- function(input, output, session) {
    # Include the logic (server) for each tab
    source(file.path("server", "server.R"),  local = TRUE)$value
}
shinyApp(ui = ui, server = server)

Try the TCGAbiolinksGUI package in your browser

Any scripts or data that you put into this service are public.

TCGAbiolinksGUI documentation built on Nov. 8, 2020, 6:09 p.m.