-
Notifications
You must be signed in to change notification settings - Fork 8
/
ui-tab-keggplots.R
77 lines (76 loc) · 2.95 KB
/
ui-tab-keggplots.R
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
tabItem(tabName = "keggPlotsTab",
h2(strong("KEGG Plots")),
tags$div(
box(title = "Dot Plot", solidHeader = T, status = "danger", width = 12, collapsible = T,id = "dotplot",
fluidRow(
column(3,
wellPanel(
numericInput("showCategory_dot_kegg", "number of categories to show", value = 10)
)
),
column(9,
wellPanel(
withSpinner(plotOutput(outputId = "dotPlot_kegg"),type = 8)
)
)
)
),
box(title = "Encrichment plot map", solidHeader = T, status = "danger", width = 12, collapsible = T,id = "gsePlotMap_kegg",
fluidRow(
column(3,
wellPanel(
numericInput("showCategory_enrichmap_kegg", "number of categories to show", value = 5)
)
)
,
column(9,
wellPanel(
plotOutput(outputId = "gsePlotMap_kegg")
)
)
)
),
box(title = "Category Netplot", solidHeader = T, status = "danger", width = 12, collapsible = T,id = "cnetplot",
fluidRow(
column(12,
wellPanel(
numericInput("showCategory_cnet_kegg", "number of categories to show", value = 5)
)
),
column(12,
wellPanel(
plotOutput(outputId = "cnetplot_kegg",width = "100%", height = "400px")
)
)
)
),
box(title = "Ridge Plot", solidHeader = T, status = "danger", width = 12, collapsible = T,id = "ridgeplot_kegg",
fluidRow(
column(3,
wellPanel(
numericInput("showCategory_ridge_kegg", "number of categories to show", value = 10)
)
),
column(9,
wellPanel(
withSpinner(plotOutput(outputId = "ridgePlot_kegg"),type = 8)
)
)
)
),
box(title = "GSEA Plot", solidHeader = T, status = "danger", width = 12, collapsible = T,id = "gseaplot_kegg",
fluidRow(
column(12,
wellPanel(
numericInput("geneSetId_gsea_kegg", "Gene Set ID", value = 1)
)
),
column(12,
wellPanel(
plotOutput(outputId = "gseaplot_kegg",width = "100%", height = "400px")
)
)
)
)
,style = "display:table;")
)