finishes setup

This commit is contained in:
Philipp Jacoby
2026-02-10 17:43:26 +01:00
parent 4f1a5c311f
commit 3003310be0
39 changed files with 2251611 additions and 1188 deletions

View File

@@ -0,0 +1,19 @@
// Genes
LOAD CSV WITH HEADERS FROM 'file:///nodes_Gene.csv' AS row
CREATE (g:Gene) SET g = row;
// Diseases
LOAD CSV WITH HEADERS FROM 'file:///nodes_Disease.csv' AS row
CREATE (d:Disease) SET d = row;
// Compounds
LOAD CSV WITH HEADERS FROM 'file:///nodes_Compound.csv' AS row
CREATE (c:Compound) SET c = row;
// Symptoms
LOAD CSV WITH HEADERS FROM 'file:///nodes_Symptom.csv' AS row
CREATE (s:Symptom) SET s = row;
// Side Effects
LOAD CSV WITH HEADERS FROM 'file:///nodes_Side_Effect.csv' AS row
CREATE (se:Side_Effect) SET se = row;