Description Usage Arguments Value Examples
A function to generate circlepack plot to visualise the marker for each cluster
1 | DEbubblePlot(de_list)
|
de_list |
A list of results from 'DE genes ()' |
A ggplot to visualise the DE results via bubble plot
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 | library(S4Vectors)
data(sce_control_subset, package = "CiteFuse")
sce_control_subset <- DEgenes(sce_control_subset,
altExp_name = "none",
group = sce_control_subset$SNF_W_louvain,
return_all = TRUE,
exprs_pct = 0.5)
sce_control_subset <- selectDEgenes(sce_control_subset,
altExp_name = "none")
sce_control_subset <- DEgenes(sce_control_subset,
altExp_name = "ADT",
group = sce_control_subset$SNF_W_louvain,
return_all = TRUE,
exprs_pct = 0.5)
sce_control_subset <- selectDEgenes(sce_control_subset,
altExp_name = "ADT")
rna_DEgenes <- metadata(sce_control_subset)[["DE_res_RNA_filter"]]
adt_DEgenes <- metadata(sce_control_subset)[["DE_res_ADT_filter"]]
rna_DEgenes <- lapply(rna_DEgenes, function(x){
x$name <- gsub("hg19_", "", x$name)
x})
DEbubblePlot(list(RNA = rna_DEgenes, ADT = adt_DEgenes))
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.