Nothing
shinyPanelPathway <- fluidPage(
tags$div(
class = "container",
h1("Pathway Activity Analysis"),
h5(tags$a(href = "https://www.sctk.science/articles/tab06_pathway-activity-analysis",
"(help)", target = "_blank")),
sidebarLayout(
sidebarPanel(
selectInput("pathwayAssay", "Select Assay:", currassays),
selectInput("pathwayMethod", "Select Method:", "GSVA"),
uiOutput("selectPathwayGeneLists"),
uiOutput("selectNumTopPaths"),
selectInput("pathwayPlotVar",
"Select Condition(s) of interest for plot:", clusterChoice,
multiple = TRUE),
radioButtons("pathwayOutPlot", "Plot Type:", c("Heatmap", "Violin")),
withBusyIndicatorUI(actionButton("pathwayRun", "Run")),
tags$hr(),
h3("Save pathway results:"),
actionButton("savePathway", "Save Pathways"),
downloadButton("downloadPathway", "Download Pathway Results")
),
mainPanel(
tabsetPanel(
tabPanel(
"Plot",
plotOutput("pathwayPlot", height = "600px")
),
tabPanel(
"Results Table",
DT::dataTableOutput("pathwaytable")
)
)
)
)
)
)
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.