-
Notifications
You must be signed in to change notification settings - Fork 6
/
ui-tab-pathview.R
38 lines (33 loc) · 1.46 KB
/
ui-tab-pathview.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
tabItem(tabName = "pathviewTab",
h2(strong("Pathview Plot")),
wellPanel(
column(6,
selectizeInput("pathwayIds", label="Select Pathway ID",
choices=NULL,
multiple=F,
options = list(
placeholder =
'Start typing pathway id'
)
)
)
,
column(6,
selectInput("geneid_type","Gene ID type:", choices = c(""), selected = NULL)
),
column(6,
actionButton("generatePathview", "Generate Pathview", class = "btn btn-info")
),
conditionalPanel("output.pathviewPlotsAvailable",
column(3,
downloadButton('downloadPathviewPng','Download .png', class = "btn btn-warning", style="margin: 7px;")
),
column(3,
downloadButton('downloadPathviewPdf','Download .pdf', class = "btn btn-warning", style="margin: 7px;")
)
)
,
tags$div(class = "clearBoth")
),
withSpinner(imageOutput(outputId = "pathview_plot", inline = T),type = 8)
)