
Shiny Module Server for Data Upload and Processing from Runsalt output
Source:R/shiny_DataUploadServer.R
shiny_dataUploadServer.Rd
This function creates a Shiny module server for uploading .txt files from Runsalt
Examples
if (FALSE) { # \dontrun{
# In a Shiny app:
ui <- fluidPage(
shiny_dataUploadUI("dataUpload")
)
server <- function(input, output, session) {
data <- shiny_dataUploadServer("dataUpload")
}
} # }