-
Notifications
You must be signed in to change notification settings - Fork 0
/
ui.R
73 lines (65 loc) · 2.45 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
library(shiny)
library(shinyjs) #http://deanattali.com/shinyjs/
shinyUI(
fluidPage(useShinyjs(),
# Include shinyjs
# Application title
title = "Timecourse Inspector",
sidebarLayout(
sidebarPanel(
#Selector for file upload
fileInput(
'inFileLoadNuc',
'Select data file (e.g. tCoursesSelected.csv) and press "Load Data"',
accept = c('text/csv',
'text/comma-separated-values,text/plain',
'application/gzip',
'application/bz2')
),
actionButton("inButLoadNuc", "Load Data"),
actionButton("butReset", "Reset file input"),
actionButton('inDataGen1', 'Generate artificial dataset'),
tags$hr(),
checkboxInput('chBcellID',
'Dataset contains cell IDs',
FALSE),
uiOutput('uiChBtrackUni'),
uiOutput('uiChBcellIDunique'),
uiOutput('varSelSite'),
uiOutput('varSelTrackLabel'),
checkboxInput('chBgroup', 'Dataset contains grouping column (e.g. treatment, condition)', FALSE),
uiOutput('varSelGroup'),
uiOutput('varSelMeas1'),
radioButtons(
'inSelMath',
'Math operation 1st and 2nd meas.:',
c(
'None' = '',
'Divide' = " / ",
'Sum' = " + ",
'Multiply' = " * ",
'Subtract' = ' - ',
'1 / X' = '1 / ',
'log10' = 'log10'
)
),
uiOutput('varSelMeas2'),
tags$hr(),
checkboxInput('chBmeasTrim', 'Trim measurement', FALSE),
uiOutput('uiSlMeasTrim')
),
mainPanel(
tabsetPanel(
tabPanel(
'Manual',
tabHistPlotUI('myTabHistPlot')
),
tabPanel(
'Model',
tabFitModelUI('myTabFitModel')
)
)
)
)
)
)