-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathui.R
52 lines (51 loc) · 1.24 KB
/
ui.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
library(shiny)
shinyUI(fluidPage(
titlePanel("sRNA miner"),
sidebarLayout(
sidebarPanel(
wellPanel(
helpText(h4("Input:")),
uiOutput("uibam"),
uiOutput("uichr")
),
wellPanel(
helpText(h4("Options:")),
sliderInput(
inputId = "bg",
label = "Minimal Reads per End",
min = 5,
max = 200,
value = 40,
step = 1),
sliderInput(
inputId = "se",
label = "Sharpness of End",
min = 0.30,
max = 1.00,
value = 0.75,
step = 0.01),
selectInput(
inputId = "end",
label = "select End",
choices = list("5' end" = 1, "3' end" = 2, "5' or 3' end" = 3, "5' and 3' ends" = 4),
selected = 3)
)
),
mainPanel(
tabsetPanel(
tabPanel(
"Help",
includeMarkdown("docs/Help.md")
),
tabPanel(
title = "Report",
wellPanel(
helpText("It may takes several minutes to get the coverage infomation."),
downloadButton("report", "Download Report")
),
dataTableOutput("bed")
)
)
)
)
))