-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathui.R
53 lines (52 loc) · 2.09 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
ui <- fluidPage(
HTML('<meta name="viewport" content="width=1024">'),
# Application title
titlePanel(div(HTML("RNA-Seq Count Normalized Heatmap"))),
sidebarLayout(
sidebarPanel(
fileInput("file", "Choose CSV File",
accept = c(
"text/csv",
"text/comma-separated-values,text/plain",
".csv")
),
# checkboxInput("header", "Header", TRUE),
radioButtons("select_class",
"Normalization method:",
selected = c("Housekeeping normalization"),
choiceNames = list("Housekeeping normalization",
"edgeR TMM normalization"),
choiceValues = list("Housekeeping normalization",
"edgeR TMM normalization"),
width = 2000),
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")
)
)
)