-
Notifications
You must be signed in to change notification settings - Fork 0
/
ui.R
46 lines (45 loc) · 1.71 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
ui <- fluidPage(
HTML('<meta name="viewport" content="width=1024">'),
# Application title
titlePanel(div(HTML("CT value Normalized Heatmap for qPCR"))),
sidebarLayout(
sidebarPanel(
fileInput("file", "Choose CSV File",
accept = c(
"text/csv",
"text/comma-separated-values,text/plain",
".csv")
),
checkboxGroupInput("header", "Housekeeping genes:",
c("ACTB","GAPDH","TUBB"),selected = c("ACTB","GAPDH","TUBB")),
radioButtons("select_class_1",
"Sample Clustering:",
selected = c("Yes"),
choiceNames = list("Yes",
"No"),
choiceValues = list("Yes",
"No"),
width = 200),
radioButtons("select_class_2",
"Clustering method:",
selected = c("ward.D2"),
choiceNames = list("ward.D2",
"ward.D",
"single",
"complete",
"average",
"median"),
choiceValues = list("ward.D2",
"ward.D",
"single",
"complete",
"average",
"median"),
width = 200),
downloadButton("export", label = "download heatmap"),
width = 2),
mainPanel(
plotOutput("distPlot")
)
)
)