From 4d877402bc342252ff397402b5ea5f151fc40d16 Mon Sep 17 00:00:00 2001 From: ben stear Date: Sat, 11 Nov 2023 15:15:26 -0500 Subject: [PATCH] Update data_dict.md --- petagraph/data_dict.md | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/petagraph/data_dict.md b/petagraph/data_dict.md index 0c01772..4f5778e 100644 --- a/petagraph/data_dict.md +++ b/petagraph/data_dict.md @@ -256,7 +256,7 @@ RETURN * LIMIT 1 drawing -**Schema Description**: +**Schema Description**: An `HGNC` Concept, Code and Term node are connected to an `HGNC` Concept, Code and Term node on the right. The `MSIGDB` SAB is located on the SAB property for both sets of relationships ```cypher // Cypher query to reproduce the schema figure @@ -272,7 +272,7 @@ return * limit 1 drawing -**Schema Description**: +**Schema Description**: An HGNC Concept, Code and Term node are shown on the left, connected to an HPO Concept, Code and Term node on the right through the `gene_associated_with_disease_or_phenotype` relationship. The SAB for this mapping dataset, `CLINVAR` is found on the SAB property of the relationship. ```cypher // Cypher query to reproduce the schema figure @@ -302,11 +302,8 @@ return * limit 1 match (a:Code {SAB:'AZ'})-[r0:CODE]-(b:Concept)-[r1]-(c:Concept)-[r2:CODE]-(d:Code {SAB:'HGNC'}) return * limit 1 - - match (a:Code {SAB:'AZ'})-[r0:CODE]-(b:Concept)-[r1]-(c:Concept)-[r2:CODE]-(d:Code {SAB:'HGNC'}) match (b)-[r3 {SAB:'AZ'}]-(e:Concept)-[:CODE]-(f:Code) - return distinct f.SAB ``` @@ -317,12 +314,11 @@ return distinct f.SAB **Preproccessing**: We converted ENSP entries to UNIPROTKB and filtered the dataset for the top 10% of the combined score. The refined dataset contains 459,701 relationships (919,402 including reverse ones) that connects UNIPROTKB nodes with the relationship type: “interacts_with” and “inverse_interacts_with”, SAB: “STRING” and evidence_class denotes the combined score for the relationship. - -mention human only data.... +mention human only data was ingested.... drawing -**Schema Description**: ... +**Schema Description**: A `UNIPROTKB` Concept, Code and Term node are connected to another set of `UNIPROTKB` Concept, Code and Term nodes on the right through an `interacts_with` relationship. The SAB property on the edge of this relationship is `STRING`. ```cypher // Cypher query to reproduce the schema figure