-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathui.R
35 lines (31 loc) · 1.49 KB
/
ui.R
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
################################################################################################
################################################################################################
################################################################################################
# This is the ui script for the Proline 6 correction Shiny app developed by Joseph Longworth
################################################################################################
################################################################################################
################################################################################################
library(shiny)
library(stringr)
shinyUI(fluidPage(
titlePanel("Shiny-Pro6Correction"),
sidebarLayout(
sidebarPanel(
# textInput("Name", "Name:", "Submitter name"),
# textInput("run_name", "Name for search:", "HELA 200g"),
fileInput('file1', 'select protein groups file',
accept=c('text/txt',
'text/comma-separated-values,text/plain',
'.txt')),
fileInput('file2', 'select evidence file',
accept=c('text/txt',
'text/comma-separated-values,text/plain',
'.txt')),
tags$hr()
),
mainPanel(
plotOutput("plot"),
uiOutput("download_button")
)
)
))