Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Guillaume Perréal
easy16S
Commits
d16fa1de
Commit
d16fa1de
authored
Jun 28, 2018
by
Midoux Cedric
Browse files
withLoader
parent
1b4662a6
Changes
1
Hide whitespace changes
Inline
Side-by-side
ui.R
View file @
d16fa1de
library
(
shinydashboard
)
library
(
shinycustomloader
)
shinyUI
(
dashboardPage
(
dashboardHeader
(
title
=
"Easy16S"
),
dashboardSidebar
(
...
...
@@ -71,16 +72,14 @@ shinyUI(dashboardPage(
tabPanel
(
"Summary"
,
verbatimTextOutput
(
"phyloseqPrint"
),
uiOutput
(
"summaryTable"
)
),
tabPanel
(
"Global barplot"
,
plotOutput
(
"histo"
,
height
=
700
),
uiOutput
(
"histUI"
)
withLoader
(
uiOutput
(
"summaryTable"
))
),
tabPanel
(
"Global barplot"
,
withLoader
(
plotOutput
(
"histo"
,
height
=
700
)),
uiOutput
(
"histUI"
)),
tabPanel
(
"Filtered barplot"
,
plotOutput
(
"histoFocus"
,
height
=
700
),
withLoader
(
plotOutput
(
"histoFocus"
,
height
=
700
)
)
,
box
(
title
=
"Paramètres"
,
width
=
NULL
,
...
...
@@ -92,25 +91,23 @@ shinyUI(dashboardPage(
uiOutput
(
"histFocusUIfocusX"
)
)
),
tabPanel
(
"Heatmap"
,
plotOutput
(
"Heatmap"
,
height
=
700
),
uiOutput
(
"HeatmapUI"
)
),
tabPanel
(
"Heatmap"
,
withLoader
(
plotOutput
(
"Heatmap"
,
height
=
700
)),
uiOutput
(
"HeatmapUI"
)),
tabPanel
(
"Rarefaction curves"
,
plotOutput
(
"rarefactionCurve"
,
height
=
700
),
withLoader
(
plotOutput
(
"rarefactionCurve"
,
height
=
700
)
)
,
uiOutput
(
"rarefactionCurveUI"
)
),
tabPanel
(
HTML
(
"α-diversity"
),
box
(
width
=
NULL
,
tabsetPanel
(
tabPanel
(
"Plots"
,
plotOutput
(
"richnessA"
,
height
=
700
),
uiOutput
(
"richnessAUI"
)
),
tabPanel
(
"Tables"
,
uiOutput
(
"richnessATable"
))
tabPanel
(
"Plots"
,
withLoader
(
plotOutput
(
"richnessA"
,
height
=
700
)),
uiOutput
(
"richnessAUI"
)
),
tabPanel
(
"Tables"
,
withLoader
(
uiOutput
(
"richnessATable"
))
)
)
)),
tabPanel
(
...
...
@@ -129,34 +126,30 @@ shinyUI(dashboardPage(
)
),
box
(
width
=
NULL
,
tabsetPanel
(
tabPanel
(
"Heatmap"
,
plotOutput
(
"richnessB"
,
height
=
700
),
uiOutput
(
"richnessBUI"
)
),
tabPanel
(
"Networks"
,
plotOutput
(
"networkB"
,
height
=
700
),
uiOutput
(
"networkBUI"
)
),
tabPanel
(
"Tables"
,
uiOutput
(
"richnessBTable"
))
tabPanel
(
"Heatmap"
,
withLoader
(
plotOutput
(
"richnessB"
,
height
=
700
)),
uiOutput
(
"richnessBUI"
)),
tabPanel
(
"Networks"
,
withLoader
(
plotOutput
(
"networkB"
,
height
=
700
)),
uiOutput
(
"networkBUI"
)),
tabPanel
(
"Tables"
,
withLoader
(
uiOutput
(
"richnessBTable"
)))
))
),
tabPanel
(
"MultiDimensional Scaling"
,
plotOutput
(
"acp"
,
height
=
700
),
withLoader
(
plotOutput
(
"acp"
,
height
=
700
)
)
,
uiOutput
(
"acpUI"
)
),
tabPanel
(
"Phylogenetic tree"
,
plotOutput
(
"tree"
,
height
=
700
),
withLoader
(
plotOutput
(
"tree"
,
height
=
700
)
)
,
uiOutput
(
"treeUI"
)
),
tabPanel
(
"Clustering"
,
plotOutput
(
"clust"
,
height
=
700
),
uiOutput
(
"clustUI"
)
),
tabPanel
(
"Clustering"
,
withLoader
(
plotOutput
(
"clust"
,
height
=
700
)),
uiOutput
(
"clustUI"
)),
tabPanel
(
"Help"
,
div
(
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment