Skip to content

Commit

Permalink
Revert "added specific species call for inferred edges"
Browse files Browse the repository at this point in the history
This reverts commit f72f0d1.
  • Loading branch information
ctrlaltaf committed May 7, 2024
1 parent f2c1d0e commit 4ab6d1b
Showing 1 changed file with 2 additions and 12 deletions.
14 changes: 2 additions & 12 deletions project-docs/docs/setup.md
Original file line number Diff line number Diff line change
Expand Up @@ -277,19 +277,9 @@ UNWIND parent_terms AS parent_term
MERGE (p)-[r:ProGo]-(parent_term)
```

26. Add qualifiers for new ProGo edges for each species.
26. Add qualifiers for new ProGo edges.
```js
MATCH (p:protein {txid: 'txid7227'})-[r:ProGo]-(g:go_term)
WHERE r.relationship IS NULL
SET r.relationship = "inferred_from_descendant"
```
```js
MATCH (p:protein {txid: 'txid224308'})-[r:ProGo]-(g:go_term)
WHERE r.relationship IS NULL
SET r.relationship = "inferred_from_descendant"
```
```js
MATCH (p:protein {txid: 'txid7955'})-[r:ProGo]-(g:go_term)
MATCH (p:protein)-[r:ProGo]-(g:go_term)
WHERE r.relationship IS NULL
SET r.relationship = "inferred_from_descendant"
```
Expand Down

0 comments on commit 4ab6d1b

Please sign in to comment.