-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathui.R
More file actions
23 lines (21 loc) · 738 Bytes
/
ui.R
File metadata and controls
23 lines (21 loc) · 738 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
########################################################
# Developed by S. Alaimo (alaimos at dmi . unict . it) #
# Released under licence GNU GENERAL PUBLIC LICENSE 3 #
# Date: 2015-06-01 #
########################################################
library(shiny)
source("utils.R")
source("home.R")
source("download.R")
source("help.R")
source("references.R")
source("contacts.R")
shinyUI(navbarPage("ncPred",
build.home.panel(),
build.job.panel(),
build.download.panel(),
build.help.panel(),
build.references.panel(),
build.contacts.panel(),
theme="bootstrap.css"
))