inst/shiny/server/server_auc.R

output$ttest <- DT::renderDataTable({
  tableAUC(vals$profilerdat,
           annotationColName = "Disease",
           signatureColNames = names(TBsignatures),
           num.boot = 100,
           pb.show = FALSE)
})

shiny::observe({
  if (is.null(vals$profilerdat)){
    shinyWidgets::updatePickerInput(session, 'bootsigs', choices = NULL)
    } else {shinyWidgets::updatePickerInput(
      session, 'bootsigs',
      choices = subset(siglist,
                       siglist %in% colnames(
                         SummarizedExperiment::colData(vals$profilerdat))))
      }
  })

shiny::observeEvent(input$bootplot, {
  colors.box <- RColorBrewer::brewer.pal(12, "Set3")
  colors.rep <- rep(colors.box, 3)
  l.sig <- length(input$bootsigs)
  output$bootbox <- shiny::renderPlot({
    shiny::isolate({compareBoxplots(vals$profilerdat,
                                    annotationColName = "Disease",
                                    signatureColNames = names(
                                      TBsignatures[input$bootsigs]),
                                    pb.show = FALSE,
                                    fill.col = colors.rep[1:l.sig],
                                    rotateLabels = TRUE)})
    })
  })

shiny::observe({
  if (is.null(vals$profilerdat)){
    shinyWidgets::updatePickerInput(session, 'singroc', choices = NULL)
  } else{shinyWidgets::updatePickerInput(session, 'singroc',
                                         choices = subset(
                                           siglist,
                                           siglist %in% colnames(
                                             SummarizedExperiment::colData(
                                               vals$profilerdat))))
    }
  })

shiny::observeEvent(input$rocplot, {
  output$rocsep <- shiny::renderPlot({
    shiny::isolate({print(signatureROCplot_CI(inputData = vals$profilerdat,
                                              signatureColNames = input$singroc,
                                              annotationColName = "Disease",
                                              name = paste("ROC plot")))})
    })
  })

Try the TBSignatureProfiler package in your browser

Any scripts or data that you put into this service are public.

TBSignatureProfiler documentation built on Nov. 8, 2020, 6:56 p.m.