##----------------------------------------------------------------------------##
## Custom functions.
##----------------------------------------------------------------------------##
cerebroBox <- function(title, content) {
box(
title = title,
status = "primary",
solidHeader = TRUE,
width = 12,
collapsible = TRUE,
content
)
}
cerebroInfoButton <- function(id) {
actionButton(
inputId = id,
label = "info",
icon = NULL,
class = "btn-xs",
title = "Show additional information for this panel."
)
}
boxTitle <- function(title) {
p(title, style = "padding-right: 5px; display: inline")
}
##----------------------------------------------------------------------------##
##
##----------------------------------------------------------------------------##
source(system.file("shiny/v1.2/load_data/UI.R", package = "cerebroApp"), local = TRUE)
source(system.file("shiny/v1.2/overview/UI.R", package = "cerebroApp"), local = TRUE)
source(system.file("shiny/v1.2/samples/UI.R", package = "cerebroApp"), local = TRUE)
source(system.file("shiny/v1.2/clusters/UI.R", package = "cerebroApp"), local = TRUE)
source(system.file("shiny/v1.2/most_expressed_genes/UI.R", package = "cerebroApp"), local = TRUE)
source(system.file("shiny/v1.2/marker_genes/UI.R", package = "cerebroApp"), local = TRUE)
source(system.file("shiny/v1.2/enriched_pathways/UI.R", package = "cerebroApp"), local = TRUE)
source(system.file("shiny/v1.2/gene_expression/UI.R", package = "cerebroApp"), local = TRUE)
source(system.file("shiny/v1.2/gene_set_expression/UI.R", package = "cerebroApp"), local = TRUE)
source(system.file("shiny/v1.2/trajectory/UI.R", package = "cerebroApp"), local = TRUE)
source(system.file("shiny/v1.2/gene_id_conversion/UI.R", package = "cerebroApp"), local = TRUE)
source(system.file("shiny/v1.2/analysis_info/UI.R", package = "cerebroApp"), local = TRUE)
source(system.file("shiny/v1.2/color_management/UI.R", package = "cerebroApp"), local = TRUE)
source(system.file("shiny/v1.2/about/UI.R", package = "cerebroApp"), local = TRUE)
##----------------------------------------------------------------------------##
##
##----------------------------------------------------------------------------##
ui <- dashboardPage(
title = "Cerebro",
dashboardHeader(
title = span("Cerebro ", style = "color: white; font-size: 28px; font-weight: bold")
),
dashboardSidebar(
tags$head(tags$style(HTML(".content-wrapper {overflow-x: scroll;}"))),
sidebarMenu(
sidebarMenuOutput("sidebar_menu")
)
),
dashboardBody(
tags$script(HTML('$("body").addClass("fixed");')),
tabItems(
tab_load_data,
tab_overview,
tab_samples,
tab_clusters,
tab_most_expressed_genes,
tab_marker_genes,
tab_enriched_pathways,
tab_gene_expression,
tab_gene_set_expression,
tab_trajectory,
tab_gene_id_conversion,
tab_analysis_info,
tab_color_management,
tab_about
)
)
)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.