-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathui.R
More file actions
24 lines (21 loc) · 774 Bytes
/
Copy pathui.R
File metadata and controls
24 lines (21 loc) · 774 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#
# This is a Shiny web application. You can run the application by clicking
# the 'Run App' button above.
#
# Find out more about building applications with Shiny here:
#
# http://shiny.rstudio.com/
#
source("packages.R")
ui <- navbarPage(
theme = "bootstrap.min.css",
title = "MetaSutra",
source("ui-tab-intro.R", local = TRUE)$value,
source("ui-tab-input.R", local = TRUE)$value,
source("ui-tab-ARG-cohort.R", local = TRUE)$value,
source("ui-tab-ARG-abundance-analysis.R", local = TRUE)$value,
source("ui-tab-Alpha-diversity-analysis.R", local = TRUE)$value,
source("ui-tab-beta-diversity-analysis.R", local = TRUE)$value,
source("ui-tab-help.R", local = TRUE)$value,
source("ui-tab-conditions.R", local = TRUE)$value
)