GraphGists

我们正在构建一个基因共表达网络,并且使用 neo4j 来存储图数据并作为在网络上绘制图表的骨干支持

CZEH6d6UkAAPz2y

显示整个图

take a glance of the network
MATCH (n:Gene)-[r:COEXPRESS]->(m:Gene) RETURN n.GeneName as gene1,r.SCORE as CO_EXPRESSION_VALUE,m.GeneName as gene2 LIMIT 10;
Find genes that co-express with a target gene
MATCH (n:Gene{GeneName:"LOC_Os01g01040"})-[r:COEXPRESS*..2]->(m:Gene) WHERE all(x in r WHERE x.SCORE > 0.1) return n,r,m
neo4j can be used to rapidly build a model and fit our case beautifully