forked from jminnier/STARTapp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathui-tab-help.R
19 lines (19 loc) · 838 Bytes
/
ui-tab-help.R
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
tabPanel("Instructions",
fluidRow(
column(4,wellPanel(
h4("Instructions"),
a("Input Data", href = "#inputdata"), br(),
a("Data Formats", href = "#dataformat"), br(),
a("Save Data For Future START Sessions", href="#rdata"), br(),
a("Visualizations", href="#vis"), br(),
a("PCA Plots", href="#pcaplots"), br(),
a("Analysis Plots", href="#analysisplots"), br(),
a("Volcano Plots", href="#volcano"), br(),
a("Scatterplots", href="#scatterplots"), br(),
a("Gene Expression Boxplots", href="#boxplots"), br(),
a("Heatmaps", href="#heatmaps"), br()
)
),#column
column(8,
includeMarkdown("instructions/Instructions.md"))
))