MseekContainer: MseekContainer

View source: R/Container_MseekContainer.R

MseekContainerR Documentation

MseekContainer

Description

Module that contains the entire Metaboseek program

Usage

MseekContainer(input, output, session)

MseekContainerUI(id)

Arguments

input

arguments necessary for use with callModule()

output

arguments necessary for use with callModule()

session

arguments necessary for use with callModule()

id

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

Value

The server module for this container returns nothing

Functions

  • MseekContainer: server logic module, to be called with callModule()

  • MseekContainerUI: returns the shiny UI elements for the entire Metaboseek program

MseekContainers

Containers are used to keep the code organised and can be characterized as Modules which contain other Modules, but do not contain add any functionality themselves. They should not contain any observers and are only here to pass values into modules, or provide ways for individual Modules to interact with each other.

See Also

values for a description of the values object

Examples

## Not run: 
ui <- function(request){
MseekContainerUI("Mseek")
}
server <- function(input, output, session) {
   callModule(MseekContainer, "Mseek")
}
Create Shiny app ----
shinyApp(ui, server)

## End(Not run)


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