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
== Domain | |
== Setup | |
//hide | |
//setup | |
[source,cypher] | |
---- | |
CREATE CONSTRAINT ON (n:Person) ASSERT n.Name IS UNIQUE; | |
LOAD CSV WITH HEADERS FROM 'https://gist.githubusercontent.com/pducrot/d8cc544438631c3a8d3bb74106f9038a/raw/b681ffd513d13f1bebd6122a23ffca691b984fc9/knows.edges' as line FIELDTERMINATOR ',' MERGE (s:Person {Name: line.src}) MERGE (t:Person {Name: line.tgt}) CREATE (s)-[:KNOWS]-> (t) RETURN count(*); |
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
= Compound Structure Network | |
Pierre Ducrot <[email protected]> | |
v1.0, 3-May-2015 | |
:neo4j-version: 2.2.0 | |
:author: Pierre Ducrot | |
:twitter: ducrot_pierre | |
:tags: science, cheminformatics, molecular modeling | |
== Domain | |
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
= Scientific Bibliography | |
Pierre Ducrot <[email protected]> | |
v1.0, 7-Mar-2015 | |
:neo4j-version: 2.2.0 | |
:author: Pierre Ducrot | |
:twitter: ducrot_pierre | |
:tags: science, publication | |
== Domain | |