单细胞ATAC高级分析
单细胞ATAC高级分析
前两篇分享(单细胞ATAC概述和单细胞ATAC亚群分析),我们分别给大家介绍了单细胞ATAC的基础知识点和亚群分析,这篇分享就是专门给大家带来一些高级分析的内容了。
主要包括以下四个方面:motifdeviation的计算、单细胞ATAC拟时间分析、单细胞RNA与ATAC的整合分析以及peak co-accessibility分析。
图1:motif deviation score的计算原理(Buenrostro, Wu et al. 2015)
01
addMonocleTrajectory()方法
https://www.archrproject.com/reference/addMonocleTrajectory.html
结合上面表格对scATAC和scRNA的总结,我们知道二者在用monocle3做拟时间分析时主要是preprocess_cds、reduce_dimension函数的参数要注意区别:
cds <- preprocess_cds(cds, method='LSI',norm_method='none', num_dim = 50) #ATAC, 需要先用log(TF-IDF)标准化scATAC peak matrix
cds <- reduce_dimension(cds, preprocess_method = "LSI",reduction_method = c("UMAP"))
#scRNA
cds <- preprocess_cds(cds, method='PCA',norm_method='log', num_dim = 50)
cds <- reduce_dimension(cds, preprocess_method = "PCA",reduction_method = c("UMAP"))
02
addTrajectory()方法
https://www.archrproject.com/reference/addTrajectory.html
https://www.archrproject.com/bookdown/trajectory-analysis-with-archr.html
03
addSlingShotTrajectories()方法
函数说明:
https://www.archrproject.com/reference/addSlingShotTrajectories.html
04
stream包
01
利用Signac整合
https://satijalab.org/signac/articles/pbmc_vignette.html#integrating-with-scrna-seq-data-1
图3:Signac包的单细胞ATAC和RNA的整合结果
02
利用ArchR包整合
ArchR包整合的工作方式是,通过比较scATAC-seq基因得分矩阵和scRNA-seq基因表达矩阵,将来自scATAC-seq的细胞与来自scRNA-seq的细胞直接对齐。在底层,这种对齐也是使用Seurat包中的FindTransferAnchors函数执行的,该函数允许跨两个数据集对齐数据。然而,为了将这个过程适当地扩展到数十万个单元,ArchR通过将整个单元划分为更小的单元组并执行单独的对齐,提供了这个过程的并行化。
图4:ArchR包利用单细胞RNA数据预测ATAC细胞类型结果
图5:ArchR包peak co-accessibility分析图
单细胞ATAC的三篇分享(基础知识点、亚群分析、高级分析)就到这里啦。有机会的话,小编后面可能还会给大家带来更多关于单细胞ATAC的分享内容。
本分享更多是从知识点和分析原理来讲解和归纳总结,具体实现方法和流程脚本可以查看下面参考资料软件的官方文档,里面都写得都很详细清楚。
假设大家对单细胞ATAC分析需求很大(欢迎读者朋友们多多点击“在看”、收藏和转给需要的朋友呀),后期可能会专门给大家带来一篇ArchR软件流程实操的经验分享。
https://satijalab.org/signac/articles/pbmc_vignette.html #Signac官方教程
https://www.archrproject.com/bookdown/creating-arrow-files.html #ArchR官方教程
Buenrostro JD, Wu B, Litzenburger UM, Ruff D, Gonzales ML, Snyder MP,et al. Single-cell chromatin accessibility reveals principles of regulatory variation. Nature. 2015;523:486–90. #Greenleaf(Buenrostro, Wu et al. 2015)实验室
Granja, J. M., et al. (2021). "ArchR is a scalable software package for integrative single-cell chromatin accessibility analysis." Nat Genet 53(3): 403-411.https://www.nature.com/articles/s41588-021-00790-6
Single-cell multiomic analysis identifies regulatory programs in mixed-phenotype acute leukemia. Nature Biotechnology (Granja JM, Klemm SK, McGinnis LM*, et al. 2019)https://www.nature.com/articles/s41587-019-0332-7 #人scATAC文章
A cis-regulatory atlas in maize at single-cell resolution. https://www.cell.com/cell/fulltext/S0092-8674(21)00493-1#articleInformation #玉米scATAC文章,5月7日发表在Cell上。
https://cole-trapnell-lab.github.io/monocle3/docs/introduction/ #monocle3官方教程
https://github.com/kstreet13/slingshot #slingshot发育轨迹分析
https://nbviewer.jupyter.org/github/pinellolab/STREAM/blob/master/tutorial/2.1-STREAM_scATAC-seq_peaks.ipynb?flush_cache=true #利用stream做scATAC数据的发育轨迹分析
Chen, H., et al., Single-cell trajectories reconstruction, exploration and mapping of omics data with STREAM. Nat Commun, 2019. 10(1): p. 1903. #stream软件发表文章
作者:Jenny
审稿:童蒙
编辑:angelica
往 期 精 彩 看 过 来