Use this function to run the single cell analysis app.
singleCellTK(inSCE = NULL, includeVersion = TRUE, theme = "yeti")
The input SCtkExperiment class object
Include the version number in the SCTK header. The default is TRUE.
The bootswatch theme to use for the singleCellTK UI. The default is 'flatly'.
The shiny app will open
#Upload data through the app
if(interactive()){
singleCellTK()
}
#Load the app with a SCtkExperiment object
if(interactive()){
data("mouseBrainSubsetSCE")
singleCellTK(mouseBrainSubsetSCE)
}