文章亮点:

按level来管理和分析数据,文章有不同stage,每个stage有不同subtype,这应该是一个真tree,而不只是一个进化树,文章里出现最多的进化树把所有的stage都整合了。

空间归类和taxonomy的工作,mapped cell types spatially and derived a hierarchical, data-driven taxonomy

神经元按解剖单元和递质类型归类;Neurons were the most diverse and were grouped by developmental anatomical units and by the expression of neurotransmitters and neuropeptides.

背景常识:

Neuronal diversity was driven by genes encoding cell identity, synaptic connectivity, neurotransmission, and membrane conductance.

先去看下科普视频,不然都不认识文章里面的各种名词。

这篇文章的侧重点在于CNS和发育,所以花了很大篇幅来用Dendrogram阐述Taxonomy。但我觉得这个系统树其实是失败的,太着重于subtype,而忽略了stage。其实也是算法的局限。

这种大数据的管理是真的难,管理架构不行,后面分析就举步维艰。本文的数据管理策略值得学习。

Molecular Architecture of the Mouse Nervous System - Sten Linnarsson

Mouse brain atlas - 对应的数据库

问题

1. 测了什么细胞?测了多少个细胞?

很明确,这篇文章关注的重点是Mouse Nervous System老鼠神经系统;那么是哪个阶段的呢?In summary, male and female mice were postnatal ages P12-30, as well as 6 and 8 weeks old. 明显得老鼠成熟了才有CNS和PNS,文章称是刚刚成型的老鼠神经系统adolescent mouse nervous system。测了50万个细胞,最新的4个胚胎发育天E9.5-E13.5测了200万个

We performed a comprehensive survey of the adolescent mouse nervous system by scRNA-seq. We dissected the brain and spinal cord into contiguous anatomical regions and further included the peripheral sensory, enteric, and sympathetic nervous system. In total, we analyzed 19 regions (Figure 1A) but omitted at least the retina, the olfactory epithelium, the vomeronasal organ, the inner ear, and the parasympathetic ganglia.

这里不是全部混合测序,建库之前就按解剖学分区了,分成了19个区,但是也忽略了一些特定的区域。

总体而言,测了CNS、PNS和ENS。

这次测序用的是商业的droplet microfluidics (10X Genomics Chromium),估计花了不少钱,后面就自己开发了 SPLiT-seq。

结果

A Molecular Survey of the Mouse Nervous System

In addition, the dataset was affected by a number of technical artifacts, including low-quality cells, batch effects, sex-specific gene expression, neuronal-activity-dependent gene expression, and more.

To overcome these challenges, we developed a multistage analysis pipeline called “cytograph,” which progressively discovers cell types or states while mitigating the impact of technical artifacts

cytograph,我很感兴趣,整合的算法,但是本文没怎么提及,因为还没有发表。在这个R统一了生物信息的时代,他们组还是坚持用python。

这个课题组还是要用loom,确实很不方便,不仅跨平台,而且要学习一个新的工具。

更新:查了下,loom还是有好处的,它是一个数据库数据结构,适用于超大数据,数据只存储于磁盘上,内存放不下,需要时才会调用,而且是分chunk

Loom files are stored on disk and are never loaded entirely. They are more like databases: you connect, retrieve some subset of the data, maybe update some attributes.

loom更像是纯粹的最终读取文件,edit loom文件非常不方便。

一个现有的矛盾就是,我们的所有数据分析都是在R里用R包跑出来的,loom是用Python开发的,对R的支持非常不好。想把loom里面的数据都导出来真的很费力。

以下代码可以在普通电脑上操作,不用担心内存不足。

import loompy
import pandas as pd
ds = loompy.connect("l5_all.loom")
# ds2 <- ds[:, ds.ca.Tissue == "ENS"]
# ds.ca.keys()
# ds.ra['ClusterName', 'Clusters', "CellID"] data = {"CellID":ds.ca.CellID, "ClusterName":ds.ca.ClusterName, "Clusters":ds.ca.Clusters, "Tissue":ds.ca.Tissue}
df = pd.DataFrame(data)
df.to_csv("cellID.clusterName.csv")

Postnatal Neurogenesis in the Central Nervous System

Astroependymal Cells Are Diverse and Spatially Patterned

Loss of Patterning in the Oligodendrocyte Lineage and Convergence to a Single Brain-wide Intermediate State

Vascular Cells and a Family of Broadly Distributed Mesothelial Fibroblasts

Neural-Crest-Derived Glia and Oligodendrocyte Progenitors

Peripheral Nervous System

Central Nervous Systems Neurons

Spatial Distributions Reflect Molecular Diversity

Drivers of Neuronal and Glial Diversity

里面的postonal embryogenesis的数据对我们很有用!

数据下载

读取和操作loom数据

R包 loomR 不好用,标准不够统一。

下载我感兴趣的ENS的文件:

http://mousebrain.org/tissues.html

细胞的注释信息则从总的loom文件中提取(如上)。

文献阅读 | Molecular Architecture of the Mouse Nervous System的更多相关文章

  1. 文献阅读 | The single-cell transcriptional landscape of mammalian organogenesis | 器官形成 | 单细胞转录组

    The single-cell transcriptional landscape of mammalian organogenesis 老板已经提了无数遍的文章,确实很nb,这个工作是之前我们无法想 ...

  2. 文献阅读笔记——group sparsity and geometry constrained dictionary

    周五实验室有同学报告了ICCV2013的一篇论文group sparsity and geometry constrained dictionary learning for action recog ...

  3. 文献阅读 | Epigenetics in ENS development and Hirschsprung disease

    系列篇: Epigenetics in ENS development and Hirschsprung disease - Review Epigenetic Mechanisms in Hirsc ...

  4. 文献阅读 | A single-cell molecular map of mouse gastrulation and early organogenesis

    A single-cell molecular map of mouse gastrulation and early organogenesis Here we report the transcr ...

  5. phd文献阅读日志-博一上学期

    为了记住并提醒自己阅读文献,进行了记录(这些论文都是我看过理解的),论文一直在更新中. 博一上学期: 1.week 6,2017.10.16 2014-Automatic Semantic Model ...

  6. AutoML文献阅读

    逐步会更新阅读过的AutoML文献(其实是NAS),以及自己的一些思考 Progressive Neural Architecture Search,2018ECCV的文章: 目的是:Speed up ...

  7. 空间插值文献阅读(Geostatistical approaches for incorporating elevation into the spatial interpolation of rainfall)

    空间插值技术应用必读论文---P. Goovaerts, Geostatistical approaches for incorporating elevation into the spatial ...

  8. 人体姿势识别,Convolutional pose machines文献阅读笔记。

    开源实现 https://github.com/shihenw/convolutional-pose-machines-release(caffe版本) https://github.com/psyc ...

  9. 文献阅读方法 & 如何阅读英文文献 - 施一公(转)

    附: 如何看懂英文文献?(好) 看需求,分层次 如何总结和整理学术文献? Mendeley & Everything 如何在pdf文献上做笔记?福晰阅读器 自己感悟: 一篇专业文献通常会有几页 ...

随机推荐

  1. django同一个项目中连接多个数据库

    一.场景与思路 同一个项目中需要连接多个数据库. 二.代码 代码中主要是三个部分,settings.models以及自己写的一个类. 1.自己写的文件:database_app_router.py  ...

  2. kafka原理与组件

    一.什么是kafkakafka的目标是实现一个为处理实时数据提供一个统一.高吞吐.低延迟的平台.是分布式发布-订阅消息系统,是一个分布式的,可划分的,冗余备份的持久性的日志服务.Kafka使用场景:1 ...

  3. python之变量的数据类型(1)int 、bool 、str 及for循环运用

    一.变量的数据类型(1) 1.int 类型 int类型是整数,常用的有bit_length() 方法 用来返回一个数的二进制长度 2.bool类型 布尔型只有两个值 True,False 有关类型转换 ...

  4. QT--初识

    一.组成QT的基本模块 二.创建一个简单工程 1.工程结构介绍 .pro 文件 QT += core gui # 包含的模块 greaterThan(QT_MAJOR_VERSION, ): QT + ...

  5. 爬虫(二)-创建项目&应用

    一.回顾 上篇已经讲解了python-django的环境搭建,本次将继续上次的课程,开始创建项目及应用. 上篇的验证结果为: 本次将加上创建应用之后浏览器打开演示~ 二.创建项目 1)使用django ...

  6. python使用二分法实现在一个有序列表中查找指定的元素

    二分法是一种快速查找的方法,时间复杂度低,逻辑简单易懂,总的来说就是不断的除以2除以2... 例如需要查找有序list里面的某个关键字key的位置,那么首先确认list的中位数mid,下面分为三种情况 ...

  7. 《hello-world》第九次团队作业:【Beta】Scrum meeting 3

    项目 内容 这个作业属于哪个课程 2016级计算机科学与工程学院软件工程(西北师范大学) 这个作业的要求在哪里 实验十三 团队作业9:Beta冲刺与团队项目验收 团队名称 <hello--wor ...

  8. sql:拼接字符串、截取字符串、取字符串长度

    --第一段 SELECT substr('1233***6795', 0, (select instr('1233***6795', '***', 1, 1) from dual) - 1) from ...

  9. 十七.protobuf在rpc中的使用

    关于protobuf在rpc中的使用,设计到gRPC,相关内容待续....

  10. md5关于加密

    # 导入hashlib模块 import hashlib # 获取MD5对象 # 不加盐操作 # md5 = hashlib.md5() # 加盐操作 md5 = hashlib.md5('wenwe ...