inst/shinyTutorialHeatmap/ui.R

library(shiny)
#library(d3heatmap)
# library(plotly)
library(heatmaply)

shinyUI(fluidPage(
  titlePanel("CellMiner Heatmap"),
  sidebarLayout(
    sidebarPanel(
      textInput("geneList", "Gene List:", "TP53 BRAF PTEN")
    ),
    mainPanel(
      # d3heatmapOutput("heatmap")
      plotlyOutput("heatmap")
    )
  )
))

Try the rcellminer package in your browser

Any scripts or data that you put into this service are public.

rcellminer documentation built on Nov. 26, 2020, 2:02 a.m.