Skip to contents

This function creates a Shiny module server for uploading .txt files from Runsalt

Usage

shiny_dataUploadServer(id)

Arguments

id

A character string that corresponds to the ID used in the UI function for this module.

Value

A reactive expression containing the tidied data frame'

Examples

if (FALSE) { # \dontrun{
# In a Shiny app:
ui <- fluidPage(
  shiny_dataUploadUI("dataUpload")
 )

 server <- function(input, output, session) {
   data <- shiny_dataUploadServer("dataUpload")
   }

} # }