SelectProjectFolderModule: SelectProjectFolderModule

View source: R/Module_SelectProjectFolderModule.R

SelectProjectFolderModuleR Documentation

SelectProjectFolderModule

Description

Module for loading a Project Folder

Usage

SelectProjectFolderModule(
  input,
  output,
  session,
  values = reactiveValues(projectData = NULL, featureTables = NULL, MSData = NULL,
    GlobalOpts = NULL)
)

SelectProjectFolderModuleUI(id)

Arguments

input

arguments necessary for use with callModule()

output

arguments necessary for use with callModule()

session

arguments necessary for use with callModule()

values

a reactiveValues object that in effect gives read and write access to external objects

id

id to be used to define a namespace via NS() (must match id in callModule for the server Module)

Value

Returns nothing

Functions

  • SelectProjectFolderModule: Server logic

  • SelectProjectFolderModuleUI: UI elements

See Also

values for a description of the values object

Examples

## 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)


mjhelf/Mosaic documentation built on April 28, 2022, 11:32 a.m.