inst/shiny/ui-tab-pcHeatmapPlot.R

tabItem(tabName =  "heatmapPlot", 
        fluidRow(
          column(12,h3(strong("PCHeatmap Output:")),
                 column(3,
                        wellPanel(
                          h4("PCs to use:"),
                          numericInput("pcsToUse1", "PC", value = 1),
                          numericInput("pcsToUse2", "To", value = 6),
                          hr(),
                          numericInput("cellsToUse", "Number of cells to use:", value = 500)
                        ),
                        wellPanel(
                          h4("Plot Download Options"),
                          numericInput("heatmapDownloadHeight", "Plot height (in cm):", value = 30),
                          numericInput("heatmapDownloadWidth", "Plot width (in cm):", value = 30),
                          radioButtons("heatmapDownloadAs", "Download File Type:", choices = list("PDF" = ".pdf", "SVG" = ".svg", "PNG" = ".png", "JPEG" = ".jpeg"), selected = ".pdf"),
                          downloadButton("downloadHeatmap", "Download Plot")
                        )
                 ),
                 column(9,
                        column(12,
                               #p("Visualize cells and genes that define the PCA"),
                               #strong(textOutput("numVarGenesFound")),
                               withSpinner(plotOutput(outputId = "heatmapPlot", height = 700))
                        )
                 )
          )
        )
)
nyuad-corebio/nasqar-seuratv3wizard documentation built on April 19, 2022, 12:07 a.m.