From 1232aa7a220bf9eedc35c93c6c7861f6355a44fd Mon Sep 17 00:00:00 2001 From: dmattek Date: Sun, 6 Oct 2019 14:31:21 +0200 Subject: [PATCH] Fixed: ability to upload ompressed files --- ui.R | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui.R b/ui.R index 117bddf..dbcca08 100644 --- a/ui.R +++ b/ui.R @@ -24,7 +24,7 @@ shinyUI(fluidPage( fileInput( 'inFileLoadNuc', "Select data file and click Load Data", - accept = c('text/csv', 'text/comma-separated-values,text/plain') + accept = c('text/csv', 'text/comma-separated-values,text/plain', "application/gzip", "application/bz2"), ), radioButtons("inRbutLongWide", actionLink("alDataFormat", "Data Format:"), c("Long" = 0, "Wide" = 1), inline = T), -- GitLab