Skip to content

Commit

Permalink
server selectizeinput for gene ids
Browse files Browse the repository at this point in the history
  • Loading branch information
jminnier committed Nov 15, 2016
1 parent 7477cb1 commit c124fa3
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions rsconnect/shinyapps.io/kcvi/START_devel.dcf
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ name: START_devel
account: kcvi
server: shinyapps.io
appId: 129924
bundleId: 578666
bundleId: 604762
url: https://kcvi.shinyapps.io/START_devel/
when: 1475768751.31451
when: 1478198443.38606
asMultiple: FALSE
asStatic: FALSE
2 changes: 1 addition & 1 deletion server-analysisres.R
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ observe({
choices=tmpgroups,selected = tmpgroups)
}
updateSelectizeInput(session,"analysisres_genes",
choices=tmpgeneids)
choices=tmpgeneids,server=TRUE)

updateRadioButtons(session,'scattervaluename',
choices=sort(tmpynames,decreasing = TRUE))
Expand Down
2 changes: 1 addition & 1 deletion server-dotplot.R
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ observe({
#
tmpynames = data_analyzed$data_long%>%select(-unique_id,-sampleid,-group)%>%colnames()
updateSelectizeInput(session,'sel_gene',
choices= tmpgeneids)
choices= tmpgeneids,server=TRUE)
updateCheckboxGroupInput(session,'sel_group',
choices=tmpgroups, selected=tmpgroups)
updateRadioButtons(session,'sel_gene_header',
Expand Down
2 changes: 1 addition & 1 deletion server-filterdata.R
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ observe({
choices=tmpsamples,selected=tmpsamples)

updateSelectizeInput(session,"datafilter_gene_select",
choices=tmpgeneids)
choices=tmpgeneids,server=TRUE)

updateSelectizeInput(session,"datafilter_selecttest",choices=tmptests)

Expand Down

0 comments on commit c124fa3

Please sign in to comment.