input <- params$input error_check <- function(func) { tryCatch({ func() }, error=function(e) { print("An error was encountered. Please sure the plots are showing up correctly in OmicLoupe before export.") print("If not helping, please contact the developers for further support") print("Error message: ") print(e) }) }
error_check(params$make_ref_volcano)
error_check(params$make_comp_volcano)
error_check(params$make_ref_ma)
error_check(params$make_comp_ma)
error_check(params$make_ref_phist)
error_check(params$make_comp_phist)
Current tab
settings_df <- params$input %>% reactiveValuesToList() %>% unlist() %>% data.frame() %>% rownames_to_column() %>% `colnames<-`(c("Name", "Value")) DT::datatable(settings_df)
Setup tab
setup_settings_df <- params$setup_input %>% reactiveValuesToList() %>% unlist() %>% data.frame() %>% rownames_to_column() %>% `colnames<-`(c("Name", "Value")) DT::datatable(setup_settings_df)
sessionInfo()
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.