-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathui.R
77 lines (74 loc) · 2.29 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
library(shiny)
fluidPage(
titlePanel("_SPACE_"),
sidebarLayout(
sidebarPanel(
fileInput('file1', 'Choose PCA File'),
downloadButton("export_button", "Export Data"),
#radioButtons("plot_type", "Plot Type", c("PCA", "Line")),
tags$hr(),
fluidRow(
column(6, uiOutput('colorBy')),
column(6, uiOutput('box_summary'))
),
fluidRow(
column(4, selectInput('palette', 'Color Palette', c('Subset', 'Greyed Out', 'All'))),
column(4, uiOutput('pc_x')),
column(4, uiOutput('pc_y'))
),
fluidRow(
column(6, sliderInput('cex', 'Dot size', min = .1, max=3, value = 1)),
column(6, sliderInput('alpha', 'Transparency', min = .1, max=1, value = 1))
),
fluidRow(
column(6, sliderInput('num_pch', 'Shapes', min = 1, max=10, value = 1, step = 1)),
column(6, sliderInput('rotate', 'Rotate', min = 1, max=180, value = 1, step = 1))
),
tags$hr(),
fluidRow(
column(6, uiOutput('subset_1')),
column(6, uiOutput('subset_2'))
),
fluidRow(
column(3,
br(),
actionButton("toggle_boxes_1", "Toggle")
),
column(3, numericInput('subset_thresh_1', label = "Threshold", value = "0")),
column(3,
br(),
actionButton("toggle_boxes_2", "Toggle")
),
column(3, numericInput('subset_thresh_2', label = "Threshold", value = "0"))
),
fluidRow(
column(6, uiOutput('region_select_1')),
column(6, uiOutput('region_select_2'))
),
downloadLink("sampleData", label = "example.txt")
),
mainPanel(
plotOutput('plot1',
height = "600px",
dblclick = "plot1_dblclick",
brush = brushOpts(
id = "plot1_brush"
)),
uiOutput('legend.ui'),
fluidRow(
tags$head(tags$style(type="text/css",
'#brush_info {font-size: 8px;}'
)
),
br(),
verbatimTextOutput("brush_info2")
,
fluidRow(tags$head(tags$style(type="text/css",
'#brush_info {font-size: 12px;}'
)
),
dataTableOutput("brush_info"))
)
)
)
)