-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathui.R
27 lines (23 loc) · 759 Bytes
/
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
library(shiny)
library(data.table)
library(shinyHeatmaply)
fluidPage(
titlePanel("384 Well Read Count Heatmap"),
sidebarLayout(
sidebarPanel(
downloadButton("downloadData", label = "Download Sample Input File"),
fileInput("file1", "Choose Data File",
multiple = FALSE,
accept = c(
"text/csv",
"text/comma-separated-values,text/plain",
".csv"
)),
# Gene input scans leftmost column in the dataset to render this list
uiOutput("geneOutput"),
numericInput("upperLimit", "Scale Upper Limit", value = 500, min = 0)
),
mainPanel(
plotlyOutput("heatmap")
)
))