-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: refactor all_ontology_generator for cleanliness and modularity
- Loading branch information
1 parent
3e50769
commit 4384459
Showing
5 changed files
with
154 additions
and
158 deletions.
There are no files selected for viewing
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
import os | ||
|
||
PACKAGE_ROOT = os.path.dirname(os.path.realpath(__file__)) | ||
ONTOLOGY_DIR = os.path.join(PACKAGE_ROOT, "ontology-references") | ||
OWL_INFO_YAML = os.path.join(ONTOLOGY_DIR, "owl_info.yml") | ||
PARSED_ONTOLOGIES_FILE = os.path.join(ONTOLOGY_DIR, "all_ontology.json.gz") | ||
ONTOLOGY_REF_DIR = os.path.join(PACKAGE_ROOT, "ontology-references") | ||
RAW_ONTOLOGY_DIR = os.path.join(ONTOLOGY_REF_DIR, "raw-files") | ||
ONTO_INFO_YAML = os.path.join(ONTOLOGY_REF_DIR, "ontology_info.yml") | ||
PARSED_ONTOLOGIES_FILE = os.path.join(ONTOLOGY_REF_DIR, "all_ontology.json.gz") |
36 changes: 36 additions & 0 deletions
36
tools/ontology-builder/ontology-references/ontology_info.yml
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
CL: | ||
version: v2024-01-04 | ||
source: https://github.com/obophenotype/cell-ontology/releases/download | ||
filetype: owl | ||
EFO: | ||
version: v3.62.0 | ||
source: https://github.com/EBISPOT/efo/releases/download | ||
filetype: owl | ||
HANCESTRO: | ||
version: 3.0 | ||
source: https://github.com/EBISPOT/hancestro/raw/ | ||
filetype: owl | ||
HsapDv: | ||
version: 11 | ||
source: http://aber-owl.net/media/ontologies/HSAPDV/ | ||
filetype: owl | ||
MONDO: | ||
version: v2024-01-03 | ||
source: https://github.com/monarch-initiative/mondo/releases/download/ | ||
filetype: owl | ||
MmusDv: | ||
version: 9 | ||
source: http://aber-owl.net/media/ontologies/MMUSDV/ | ||
filetype: owl | ||
NCBITaxon: | ||
version: v2023-06-20 | ||
source: https://github.com/obophenotype/ncbitaxon/releases/download/ | ||
filetype: owl.gz | ||
UBERON: | ||
version: v2024-01-18 | ||
source: https://github.com/obophenotype/uberon/releases/download/ | ||
filetype: owl | ||
PATO: | ||
version: v2023-05-18 | ||
source: https://github.com/pato-ontology/pato/raw/ | ||
filetype: owl |
This file was deleted.
Oops, something went wrong.