Skip to content
Snippets Groups Projects
Unverified Commit d2b8be2b authored by Todor Kondic's avatar Todor Kondic
Browse files

Adapt to new volumes function

* R/shiny-ui-config.R <shinyFileChoose observers>: Replace vs with volumes.
parent 963e5c6a
No related branches found
No related tags found
No related merge requests found
......@@ -158,21 +158,20 @@ server_conf <- function(input,output,session,rv,rf) {
## ***** shinyFiles observers *****
droot <- rf$get_proj_vol
dpath <- rf$get_proj_path
vs <- vols()
shinyFiles::shinyFileChoose(input, 'impKnownListB',defaultRoot=droot(),
defaultPath=dpath(),roots=vs)
defaultPath=dpath(),roots=volumes)
shinyFiles::shinyFileChoose(input, 'impUnkListB',defaultRoot=droot(),
defaultPath=dpath(),roots=vs)
defaultPath=dpath(),roots=volumes)
shinyFiles::shinyFileChoose(input, 'impSetIdB',defaultRoot=droot(),
defaultPath=dpath(),roots=vs)
defaultPath=dpath(),roots=volumes)
shinyFiles::shinyFileSave(input, 'saveConfB',defaultRoot=droot(),
defaultPath=dpath(),roots=vs)
defaultPath=dpath(),roots=volumes)
shinyFiles::shinyFileChoose(input, 'restoreConfB',defaultRoot=droot(),
defaultPath=dpath(),roots=vs)
defaultPath=dpath(),roots=volumes)
shinyFiles::shinyFileChoose(input, 'mzMLB',defaultRoot=droot(),
defaultPath=dpath(),roots=vs)
shinyFiles::shinyDirChoose(input, 'switchProjB',roots=vs)
defaultPath=dpath(),roots=volumes)
shinyFiles::shinyDirChoose(input, 'switchProjB',roots=volumes)
obsrv_e(input$saveConfB, {
conf<-rv_conf2conf(rv)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment