-
Notifications
You must be signed in to change notification settings - Fork 0
/
ui.R
31 lines (29 loc) · 1.26 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
##################################################
## Project: Omics Shiny Search Results Application
## Script purpose: Main UI Function
## Date: 06.08.2018
## Author: Ashleigh Myall
##################################################
# --- Main User Interface Function
ui <- dashboardPage(skin = "black",
dashboardHeader(title = "Results Analyser",disable = F),
dashboardSidebar(
useShinyalert(), # For generating custom alert pop ups
sidebarMenu(
menuItem("Home", tabName = "main", icon = icon("home")),
menuItem("Data", tabName = "data", icon = icon("table")),
menuItem("Analysis", tabName = "analysis", icon = icon("bolt"),
menuItem("Scatter", tabName = "scatter"),
menuItem("Histograms", tabName = "histograms"),
menuItem("Cleavages", tabName = "cleavages"),
menuItem("PTM", tabName = "ptm"),
menuItem("Statistical", tabName = "statistical",icon=icon("line-chart"),
menuItem("Decoy", tabName = "decoy"),
menuItem("Score", tabName = "score"))),
hr(), # Line Break
menuItem("Information", tabName = "info",icon=icon("info")),
hr()
)
),
body # Callig the body for tabs
)