Created
August 15, 2017 15:28
-
-
Save rwblair/4b9b3db2404e949380b5161e39fd1def to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
= The Cognitive Atlas | |
:neo4j-version: 2.0.0 | |
:author: Poldracklab | |
:twitter: @vsoch | |
:tags: cognitive:concepts:psychology:neuroscience | |
''' | |
View task: adaptive n-back task | |
The Cognitive Atlas is a collaborative knowledge building project that aims to develop a knowledge base (or ontology) that characterizes the state of current thought in cognitive science. The project is led by Russell Poldrack, Professor of Psychology at Stanford University. Development of the project was supported by grant RO1MH082795 from the National Institute of Mental Health. | |
''' | |
//setup | |
//hide | |
[source, cypher] | |
---- | |
create (_5:`task` {`id`:"trm_56674133b666c", `name`:"adaptive n-back task"}) | |
---- | |
//graph | |
We can use cypher to query the graph, here is an example to select the first 25 entities (tasks) | |
[source, cypher] | |
---- | |
MATCH (t:task)-[r:ASSERTS]->(c:concept) RETURN t.name as task_name,c.name as concept_name; | |
---- | |
//table | |
''' | |
Here is an interactive console for you to explore the mini graph. | |
//console | |
''' | |
== Poldracklab | |
* link:http://poldracklab.stanford.edu[Poldracklab] | |
* link:http://www.cognitiveatlas.org[The Cognitive Atlas] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment