-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathui-tab-enrichGo.R
22 lines (19 loc) · 1.34 KB
/
ui-tab-enrichGo.R
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
tabItem(tabName = "enrichGoTab",
conditionalPanel("output.enrichGoAvailable",
column(2,
h3(strong("enrichGo Results")),
hr(),
checkboxInput("showGeneidGo","Show geneID column", value = F),
downloadButton('downloadEnrichGoCSV','Save Results as CSV File', class = "btn btn-info", style="margin: 7px;"),
actionButton("gotoGoPlots","enrichGo Plots",class = "btn btn-warning",icon = icon("chart-area"), style="margin: 7px;"),
actionButton("gotoWordcloud","Word Cloud",class = "btn btn-warning",icon = icon("chart-area"), style="margin: 7px;")
),
column(10,
tags$div(class = "BoxArea2",
withSpinner(dataTableOutput('enrichGoTable'))
),
tags$div(class = "clearBoth")
),
tags$div(class = "clearBoth")
)
)