forked from GliomaGenomics/GBMDeconvoluteR
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathui.R
More file actions
executable file
·19 lines (17 loc) · 669 Bytes
/
Copy pathui.R
File metadata and controls
executable file
·19 lines (17 loc) · 669 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# This is the main user-interface definition for the
# GBMDeconvoluteR Shiny web application.
shinyUI(
navbarPage(title = div(
div(
id = "img-id", img(src = "Leeds_Uni_Logo.png", height = "60px", width = "170px"))
), header = useShinyjs(), # Set up shinyjs
collapsible = TRUE,
windowTitle = "GBMDeconvoluteR",
fluid = TRUE,
footer = includeHTML("tools/footer.html"),
id = "nav",
source("tabs/Home/homeTab.R", local = TRUE)$value,
source("tabs/Run/runTab.R", local = TRUE)$value,
source("tabs/About/aboutTab.R", local = TRUE)$value
)
)