Skip to content

Commit

Permalink
Merge branch 'develop' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
haowang-bioinfo committed Mar 11, 2023
2 parents ae8698e + ca39265 commit 9c87207
Show file tree
Hide file tree
Showing 3 changed files with 15,719 additions and 807,736 deletions.
13 changes: 12 additions & 1 deletion data/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,18 @@
This directory contains datasets that were used for the generation and curation of Worm-GEM. The files and their contents are briefly summarized below.


- `human2WormOrthologs.json`: The human-worm ortholog pairs downloaded from the [Alliance of Genomes Resources](https://www.alliancegenome.org).
- `human2WormOrthologs.tsv`: The human-worm ortholog pairs downloaded from the [Alliance of Genomes Resources](https://www.alliancegenome.org) using the following code:
```bash
curl -X \
GET "https://www.alliancegenome.org/api/homologs/9606/6239?filter.stringency=stringent&limit=50000&page=1" \
-H "accept: application/json" | \
jq -r \
'["fromGeneId", "fromSymbol", "toGeneId", "toSymbol", "best",
"bestReverse", "methodCount", "totalMethodCount"], (.results[] |
[.gene["id"], .gene["symbol"], .homologGene["id"], .homologGene["symbol"],
.best, .bestReverse, .methodCount, .totalMethodCount])
| @tsv' > human2WormOrthologs.tsv
```
- `wormSpecificMets.tsv` and `wormSpecificRxns.tsv`: The curated metabolic network that is not part of human metabolism but specific to worm.


Loading

0 comments on commit 9c87207

Please sign in to comment.