metacell-tree: Displays a correlation matrix of the quantitative data of a...

metacell-treeR Documentation

Displays a correlation matrix of the quantitative data of a numeric matrix.

Description

xxxx

Usage

mod_metacell_tree_ui(id)

mod_metacell_tree_server(
  id,
  type = reactive({
     NULL
 }),
  reset = reactive({
     NULL
 })
)

Arguments

id

xxx

type

xxx

reset

xxx

Value

NA

Examples

library(shiny)


ui <- fluidPage(
  mod_metacell_tree_ui('tree')
)

server <- function(input, output) {
  rv <- reactiveValues(
    tags = NULL
  )
  
  observe({
    rv$tags <- mod_metacell_tree_server('tree', type = reactive({'peptide'}))
  })
  
  
}

if (interactive())
  shinyApp(ui = ui, server = server)

samWieczorek/DAPAR2 documentation built on Oct. 15, 2023, 1:45 p.m.