-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathui.R
More file actions
31 lines (30 loc) · 1.26 KB
/
Copy pathui.R
File metadata and controls
31 lines (30 loc) · 1.26 KB
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
# libs and files ####
source("./views/welcome.R", local=TRUE)
source("./views/upload.R", local=TRUE)
source("./views/network.R", local=TRUE)
source("./views/annotations.R", local=TRUE)
source("./views/topology.R", local=TRUE)
source("./views/help.R", local=TRUE)
source("./views/about.R", local=TRUE)
# UI fixedPage ####
fixedPage(
theme = shinytheme("sandstone"),
useShinyjs(),
useShinyalert(),
tags$head(tags$script(src = "intro.js")),
tags$head(tags$script(src = "introbutton.js")),
tags$head(tags$link(rel = "stylesheet", type = "text/css", href = "norma.css")),
tags$head(tags$link(rel = "stylesheet", type = "text/css", href = "intro.css")),
tags$head(tags$link(rel = "stylesheet", type = "text/css", href = "annot_table.css")),
tags$head(tags$link(rel = "shortcut icon", href = "favicon.ico")),
tags$img(src = b64_1),
navbarPage("NORMA: The NetwORk Makeup Artist",
tabPanel( "Welcome", welcomePage ),
tabPanel( "Upload", icon = icon("upload"), uploadPage ),
tabPanel( "Network", networkPage ),
tabPanel( "Annotations", annotationsPage),
tabPanel( "Topology", icon = icon("globe", lib = "glyphicon"), topologyPage ),
tabPanel( "Help", icon = icon("question"), helpPage ),
tabPanel( "About", icon = icon("users"), aboutPage )
)
)