metacell-tree | R Documentation |
xxxx
mod_metacell_tree_ui(id)
mod_metacell_tree_server(
id,
type = reactive({
NULL
}),
reset = reactive({
NULL
})
)
id |
xxx |
type |
xxx |
reset |
xxx |
NA
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)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.