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

shiny-ui-config: Adapt other reactive functions to state-building ones

* R/shiny-ui-config.R(gen_cmpd_inputs): Obsolete function removed.

(get_all_sets): Adapt to using the m_input_cmpds function.
parent 9cecee9f
No related branches found
No related tags found
No related merge requests found
......@@ -123,13 +123,7 @@ mk_ui_config <- function() {
react_conf_f <- function(input,output,session,rv,rf) {
## Reactive functions.
rf$gen_cmpd_inputs <- react_f({
rv$m$conf$compounds$known
rv$m$conf$compounds$unknown
rv$m$conf$compounds$sets
verify_compounds(rv$m$conf)
load_compound_input(rv$m)
})
rf$get_tags_from_txt <- react_f({
## Tags in the text box.
......@@ -147,7 +141,10 @@ react_conf_f <- function(input,output,session,rv,rf) {
dtable(rf$ctrl2mzml_df())
})
rf$get_all_sets <- react_e(rv$m$input$tab$setid,unique(rv$m$input$tab$setid$set))
rf$get_all_sets <- react_f({
m <- rf$m_input_cmpds()
unique(m$input$tab$setid$set)})
rf$m_conf <- react_f({
m <- list()
m$conf$project <- rv$project_path
......
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