2.3.5 工具 | 2018-iSEE:单细胞数据可视化辅助网页工具
刘小泽写于2021.10.27
前言

设计初衷

工具结构



至于怎么实现的可视化

上一页2.3.4 算法 | 2021-细胞分群新方法——CNA(co-varying neighborhood analysis)下一页2.3.6 工具 | 2021-MACA: 一款自动注释细胞类型的工具
最后更新于
刘小泽写于2021.10.27






最后更新于
library(zellkonverter)
sce_h5ad <- readH5AD("file_as_anndata.h5ad")
assayNames(sce_h5ad) <- "logcounts"
HDF5Array::saveHDF5SummarizedExperiment(sce_Bcells_h5ad, dir = "see_as_hdf5")
#And to read that in ->
sce_read_in_again <- HDF5Array::loadHDF5SummarizedExperiment("see_as_hdf5")
library(iSEE)
iSEE(sce_read_in_again)# 上游分析得到sce对象
# Once the processing steps above are done, we can call `iSEE` with the subsampled `SingleCellExperiment` object.
if (!requireNamespace("BiocManager", quietly = TRUE))
install.packages("BiocManager")
BiocManager::install("iSEE")
# or also...
BiocManager::install("iSEE", dependencies = TRUE)
if (require(iSEE)) {
iSEE(sce)
}