forked from ceiron61/SWApp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathui.R
More file actions
94 lines (73 loc) · 2.94 KB
/
Copy pathui.R
File metadata and controls
94 lines (73 loc) · 2.94 KB
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
94
library(shiny)
library(DT)
shinyUI(
fluidPage(
titlePanel(title="", windowTitle="SWApp"),
sidebarLayout(
sidebarPanel(width=3,
h1(strong("SWApp")),
h3(strong("STOPGAP Web App")),
p(strong("SWApp"), "is a simple web application for querying", strong("STOPGAP.")),
br(),
selectInput("pvalue",
"pvalue:",
choices = list(1e-100,
1e-50,
1e-30,
1e-20,
1e-10,
1e-8,
1e-5,
1e-4),
selected=1e-8),
sliderInput("gene.score",
"gene_score:",
min = 0,
max = 12,
value = c(0, 12)),
sliderInput("gene.rank.min",
"gene_rank_min:",
min = 1,
max = 100,
value = c(1, 10)),
br(),
h4(strong("Info:")),
tags$ul(
tags$li("SWApp uses version 2.5.1 of the STOPGAP data."),
tags$li("Please refer to the STOPGAP",
a(strong("README"), href="https://github.com/StatGenPRD/STOPGAP/blob/master/README.md"),
"on GitHub for information on the datasets, column names and evidence types."),
tags$li("STOPGAP is developed by",
a(strong("Judong Shen,"), href="mailto:judong.shen@merck.com"),
a(strong("Kijoung Song,"), href="mailto:kijoung.2.song@gsk.com"),
a(strong("Andrew Slater,"), href="mailto:AndrewSlater1@outlook.com"),
a(strong("Enrico Ferrero,"), href="mailto:enrico.x.ferrero@gsk.com"),
"and",
a(strong("Matt Nelson."), href="mailto:matthew.r.nelson@gsk.com"),
"Source code is available on",
a(strong("GitHub."), href="https://github.com/StatGenPRD/STOPGAP")),
tags$li("SWApp is developed by",
a(strong("Enrico Ferrero"), href="mailto:enrico.x.ferrero@gsk.com"),
"using",
a(strong("Shiny."), href="http://shiny.rstudio.com/"),
"Source code is available on",
a(strong("GitHub."), href="https://github.com/enricoferrero/SWApp"))
)
),
mainPanel(
tabsetPanel(
tabPanel("stopgap.gene.mesh",
DT::dataTableOutput("table1"),
downloadButton("download1", "Download")),
tabPanel("stopgap.bestld",
DT::dataTableOutput("table2"),
downloadButton("download2", "Download"))
# downloadButton("download2", "Download")),
#
# tabPanel("stopgap",
# DT::dataTableOutput("table3"),
# downloadButton("download3", "Download"))
)
)
)
))