-
Notifications
You must be signed in to change notification settings - Fork 6
/
ui-tab-goplots.R
93 lines (91 loc) · 3.34 KB
/
ui-tab-goplots.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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
tabItem(tabName = "goplotsTab",
h2(strong("GO Plots")),
tags$div(
box(title = "Upset Plot", solidHeader = T, status = "danger", width = 12, collapsible = T,id = "barplot",
fluidRow(
column(3,
wellPanel(
numericInput("showCategory_upset", "number of categories to show", value = 10)
)
),
column(9,
wellPanel(
withSpinner(plotOutput(outputId = "upsetPlot"),type = 8)
)
)
)
),
box(title = "Bar Plot", solidHeader = T, status = "danger", width = 12, collapsible = T,id = "barplot",
fluidRow(
column(3,
wellPanel(
numericInput("showCategory_bar", "number of categories to show", value = 10)
)
),
column(9,
wellPanel(
withSpinner(plotOutput(outputId = "barPlot"),type = 8)
)
)
)
),
box(title = "Dot Plot", solidHeader = T, status = "danger", width = 12, collapsible = T,id = "dotplot",
fluidRow(
column(3,
wellPanel(
numericInput("showCategory_dot", "number of categories to show", value = 10)
)
),
column(9,
wellPanel(
withSpinner(plotOutput(outputId = "dotPlot"),type = 8)
)
)
)
),
box(title = "Encrichment plot map", solidHeader = T, status = "danger", width = 12, collapsible = T,id = "enrichPlotMap",
fluidRow(
column(3,
wellPanel(
numericInput("showCategory_enrichmap", "number of categories to show", value = 5)
)
)
,
column(9,
wellPanel(
plotOutput(outputId = "enrichPlotMap")
)
)
)
),
box(title = "Category Netplot", solidHeader = T, status = "danger", width = 12, collapsible = T,id = "goInducedGraph",
fluidRow(
column(12,
wellPanel(
numericInput("showCategory_goplot", "number of categories to show", value = 5)
)
)
,
column(12,
wellPanel(
plotOutput(outputId = "goInducedGraph")
)
)
)
),
box(title = "Enriched GO induced graph (cnetplot)", solidHeader = T, status = "danger", width = 12, collapsible = T,id = "cnetplot",
fluidRow(
column(12,
wellPanel(
numericInput("showCategory_cnet", "number of categories to show", value = 5)
)
),
column(12,
wellPanel(
plotOutput(outputId = "cnetplot",width = "100%", height = "400px")
)
)
)
)
, style = "display:table;")
)