Description Usage Arguments Value Author(s) Examples
scater shiny app GUI for workflow for less programmatically inclined users or those who would like a quick and easy way to view multiple plots.
1 | scater_gui(sce_set)
|
sce_set |
SCESet object after running |
Opens a browser window with an interactive shiny app and visualize all possible plots included in the scater
Davis McCarthy and Vladimir Kiselev
1 2 3 4 5 6 7 8 9 10 11 12 | data("sc_example_counts")
data("sc_example_cell_info")
pd <- new("AnnotatedDataFrame", data=sc_example_cell_info)
rownames(pd) <- pd$Cell
example_sceset <- newSCESet(countData=sc_example_counts, phenoData=pd)
drop_genes <- apply(exprs(example_sceset), 1, function(x) {var(x) == 0})
example_sceset <- example_sceset[!drop_genes, ]
example_sceset <- calculateQCMetrics(example_sceset, feature_controls = 1:40)
## Not run:
scater_gui(example_sceset)
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.