-
Notifications
You must be signed in to change notification settings - Fork 41
/
server-analysisres.R
142 lines (103 loc) · 4.87 KB
/
server-analysisres.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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
## ==================================================================================== ##
# START Shiny App for analysis and visualization of transcriptome data.
# Copyright (C) 2016 Jessica Minnier
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
# You may contact the author of this code, Jessica Minnier, at <[email protected]>
## ==================================================================================== ##
##
##
## #update list of groups
observe({
print("server-analysisres-update")
data_analyzed = analyzeDataReactive()
tmpdat = data_analyzed$results
tmpgroups = data_analyzed$group_names
tmptests = unique(as.character(tmpdat$test))
tmpdatlong = data_analyzed$data_long
tmpynames = tmpdatlong%>%select(-unique_id,-sampleid,-group,-one_of("rep"))%>%colnames()
tmpgeneids = data_analyzed$geneids
data_analyzedgenes = as.character(unlist(tmpgeneids))
updateSelectizeInput(session,'analysisres_test',
choices=tmptests, selected=tmptests[1])
updateSelectizeInput(session,'analysisres_groups',
choices=tmpgroups)
if(length(tmpgroups)==2) {
updateSelectizeInput(session,'analysisres_groups',
choices=tmpgroups,selected = tmpgroups)
}
updateSelectizeInput(session,"analysisres_genes",
choices=data_analyzedgenes,server=TRUE)
updateRadioButtons(session,'scattervaluename',
choices=sort(tmpynames,decreasing = TRUE))
updateRadioButtons(session,'scatterresultsname',
choices=tmptests)
})
observe({
print("drawing volcano plot")
data_analyzed = analyzeDataReactive()
data_results = data_analyzed$results
geneids = data_analyzed$geneids
output$volcanoplot <- renderPlotly({
validate(need(input$analysisres_test!="","Select a test."))
validate(need(data_results%>%filter(test==input$analysisres_test)%>%nrow()>0,"Test not found."))
withProgress(message = "Drawing volcano plot, please wait",
{
# rna_volcanoplot(data_results = data_results,
# test_sel = input$analysisres_test,
# absFCcut = input$analysisres_fold_change_cut,
# fdrcut = input$analysisres_fdrcut)%>%
# bind_shiny("volcanoplot_2groups_ggvis","volcanoplot_2groups_ggvisUI")
if (names(dev.cur()) != "null device") dev.off()
pdf(NULL)
p=rna_volcanoplot(data_results = data_results,
test_sel = input$analysisres_test,
absFCcut = input$analysisres_fold_change_cut,
pvalcut = input$analysisres_pvalcut,
fdrcut = input$analysisres_fdrcut,
sel_genes = input$analysisres_genes)
})#end withProgress
})
})
observe({
print("drawing scatterplot")
#if(length(input$analysisres_groups)==2) {
data_analyzed = analyzeDataReactive()
data_long = data_analyzed$data_long
geneids = data_analyzed$geneids
results = data_analyzed$results
# rna_scatterplot(data_long = data_long,
# group_sel = input$analysisres_groups,
# valuename=input$scattervaluename)%>%
# bind_shiny("scatterplot_fc_2groups_ggvis","scatterplot_fc_2groups_ggvisUI")
output$scatterplot <- renderPlotly({
validate(need(length(input$analysisres_groups)==2,"Please select two groups."))
withProgress(message = "Drawing scatterplot, please wait",{
if (names(dev.cur()) != "null device") dev.off()
pdf(NULL)
p=rna_scatterplot(data_long = data_long,
results = results,
group_sel = input$analysisres_groups,
valuename=input$scattervaluename,
color_result_name = input$scattercolor,
results_test_name = input$scatterresultsname,
color_low = input$scattercolor_low,
color_hi = input$scattercolor_hi,
sel_genes = input$analysisres_genes
)
})#end withProgress
})
#}
})