View source: R/Module_SelectProjectFolderModule.R
SelectProjectFolderModule | R Documentation |
Module for loading a Project Folder
SelectProjectFolderModule( input, output, session, values = reactiveValues(projectData = NULL, featureTables = NULL, MSData = NULL, GlobalOpts = NULL) ) SelectProjectFolderModuleUI(id)
input |
arguments necessary for use with
|
output |
arguments necessary for use with
|
session |
arguments necessary for use with
|
values |
a |
id |
id to be used to define a namespace via |
Returns nothing
SelectProjectFolderModule
: Server logic
SelectProjectFolderModuleUI
: UI elements
values
for a description of the values
object
## Not run: library(shiny) ui <- SelectProjectFolderModuleUI("examplemodule") server <- function(input, output) { MseekMinimalServer(diagnostics = F, data = F, tables = F) ExampleModule <- callModule(SelectProjectFolderModule, "examplemodule", values) } Run Shiny app ---- shinyApp(ui, server) ## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.