From 9b47629df458c1fb90b961e975e1f14cfc39946f Mon Sep 17 00:00:00 2001 From: Charles Tapley Hoyt Date: Thu, 19 Aug 2021 10:52:14 +0200 Subject: [PATCH 1/5] Add predicted WikiPathways orthologs --- scripts/generate_wikipathways_orthologs.py | 50 + src/biomappings/resources/predictions.tsv | 2053 ++++++++++++++++++++ 2 files changed, 2103 insertions(+) create mode 100644 scripts/generate_wikipathways_orthologs.py diff --git a/scripts/generate_wikipathways_orthologs.py b/scripts/generate_wikipathways_orthologs.py new file mode 100644 index 00000000..dec4c9d1 --- /dev/null +++ b/scripts/generate_wikipathways_orthologs.py @@ -0,0 +1,50 @@ +# -*- coding: utf-8 -*- + +"""Generate orthologous relations between WikiPathways.""" + +from typing import Iterable + +import itertools as itt +from tqdm import tqdm + +import pyobo +from biomappings.resources import PredictionTuple, append_prediction_tuples +from biomappings.utils import get_script_url +from gilda.process import normalize + + +def _lexical_exact_match(name1: str, name2: str) -> bool: + return normalize(name1) == normalize(name2) + + +def iterate_orthologous_lexical_matches(prefix: str = "wikipathways") -> Iterable[PredictionTuple]: + """Generate orthologous relations between lexical matches from different species.""" + names = pyobo.get_id_name_mapping(prefix) + species = pyobo.get_id_species_mapping(prefix) + provenance = get_script_url(__file__) + + count = 0 + it = itt.combinations(names.items(), 2) + it = tqdm(it, unit_scale=True, unit="pair", total=len(names) * (len(names) - 1) / 2) + for (source_id, source_name), (target_id, target_name) in it: + if species[source_id] == species[target_id]: + continue + if _lexical_exact_match(source_name, target_name): + count += 1 + yield PredictionTuple( + prefix, + source_id, + source_name, + "RO:HOM0000017", + prefix, + target_id, + target_name, + "lexical", + 0.99, + provenance, + ) + tqdm.write(f"Identified {count} orthologs") + + +if __name__ == "__main__": + append_prediction_tuples(iterate_orthologous_lexical_matches()) diff --git a/src/biomappings/resources/predictions.tsv b/src/biomappings/resources/predictions.tsv index b4c73377..72c0987b 100644 --- a/src/biomappings/resources/predictions.tsv +++ b/src/biomappings/resources/predictions.tsv @@ -28386,3 +28386,2056 @@ reactome R-SSC-72172 mRNA Splicing speciesSpecific go GO:0000372 Group I intron reactome R-SSC-72172 mRNA Splicing speciesSpecific go GO:0000373 Group II intron splicing lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/0969bd/scripts/generate_pathway_mappings.py reactome R-XTR-72172 mRNA Splicing speciesSpecific go GO:0000372 Group I intron splicing lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/0969bd/scripts/generate_pathway_mappings.py reactome R-XTR-72172 mRNA Splicing speciesSpecific go GO:0000373 Group II intron splicing lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/0969bd/scripts/generate_pathway_mappings.py +wikipathways WP1 Statin pathway RO:HOM0000017 wikipathways WP1041 Statin pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1 Statin pathway RO:HOM0000017 wikipathways WP1157 Statin pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1 Statin pathway RO:HOM0000017 wikipathways WP145 Statin pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1 Statin pathway RO:HOM0000017 wikipathways WP921 Statin pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP10 IL-9 signaling pathway RO:HOM0000017 wikipathways WP1320 IL-9 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP10 IL-9 signaling pathway RO:HOM0000017 wikipathways WP22 IL-9 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP10 IL-9 signaling pathway RO:HOM0000017 wikipathways WP8 IL-9 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP10 IL-9 signaling pathway RO:HOM0000017 wikipathways WP974 IL-9 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP100 Glutathione metabolism RO:HOM0000017 wikipathways WP164 Glutathione metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP100 Glutathione metabolism RO:HOM0000017 wikipathways WP3207 Glutathione metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP100 Glutathione metabolism RO:HOM0000017 wikipathways WP469 Glutathione metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1000 Arachidonate epoxygenase / epoxide hydrolase RO:HOM0000017 wikipathways WP1250 Arachidonate epoxygenase / epoxide hydrolase lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1000 Arachidonate epoxygenase / epoxide hydrolase RO:HOM0000017 wikipathways WP1285 Arachidonate epoxygenase / epoxide hydrolase lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1000 Arachidonate epoxygenase / epoxide hydrolase RO:HOM0000017 wikipathways WP678 Arachidonate epoxygenase / epoxide hydrolase lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1001 Peptide GPCRs RO:HOM0000017 wikipathways WP131 Peptide GPCRs lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1001 Peptide GPCRs RO:HOM0000017 wikipathways WP1338 Peptide GPCRs lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1001 Peptide GPCRs RO:HOM0000017 wikipathways WP24 Peptide GPCRs lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1002 Electron transport chain RO:HOM0000017 wikipathways WP1119 Electron transport chain lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1002 Electron transport chain RO:HOM0000017 wikipathways WP1339 Electron transport chain lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1002 Electron transport chain RO:HOM0000017 wikipathways WP295 Electron transport chain lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1002 Electron transport chain RO:HOM0000017 wikipathways WP542 Electron transport chain lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1002 Electron transport chain RO:HOM0000017 wikipathways WP59 Electron transport chain lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1004 Kit receptor signaling pathway RO:HOM0000017 wikipathways WP1121 Kit receptor signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1004 Kit receptor signaling pathway RO:HOM0000017 wikipathways WP1341 Kit receptor signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1004 Kit receptor signaling pathway RO:HOM0000017 wikipathways WP147 Kit receptor signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1004 Kit receptor signaling pathway RO:HOM0000017 wikipathways WP304 Kit receptor signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1004 Kit receptor signaling pathway RO:HOM0000017 wikipathways WP407 Kit receptor signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1004 Kit receptor signaling pathway RO:HOM0000017 wikipathways WP774 Kit receptor signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1004 Kit receptor signaling pathway RO:HOM0000017 wikipathways WP886 Kit receptor signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1005 GPCRs, class B secretin-like RO:HOM0000017 wikipathways WP334 GPCRs, class B secretin-like lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1005 GPCRs, class B secretin-like RO:HOM0000017 wikipathways WP378 GPCRs, class B secretin-like lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1005 GPCRs, class B secretin-like RO:HOM0000017 wikipathways WP456 GPCRs, class B secretin-like lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1006 Metapathway biotransformation RO:HOM0000017 wikipathways WP1212 Metapathway biotransformation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1006 Metapathway biotransformation RO:HOM0000017 wikipathways WP1251 Metapathway biotransformation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1006 Metapathway biotransformation RO:HOM0000017 wikipathways WP1286 Metapathway biotransformation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1007 Osteoclast signaling RO:HOM0000017 wikipathways WP12 Osteoclast signaling lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1007 Osteoclast signaling RO:HOM0000017 wikipathways WP1342 Osteoclast signaling lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1007 Osteoclast signaling RO:HOM0000017 wikipathways WP454 Osteoclast signaling lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1007 Osteoclast signaling RO:HOM0000017 wikipathways WP890 Osteoclast signaling lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1008 Amino acid conjugation of benzoic acid RO:HOM0000017 wikipathways WP1252 Amino acid conjugation of benzoic acid lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1008 Amino acid conjugation of benzoic acid RO:HOM0000017 wikipathways WP1287 Amino acid conjugation of benzoic acid lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1008 Amino acid conjugation of benzoic acid RO:HOM0000017 wikipathways WP1577 Amino acid conjugation of benzoic acid lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1008 Amino acid conjugation of benzoic acid RO:HOM0000017 wikipathways WP521 Amino acid conjugation of benzoic acid lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1009 MAPK cascade RO:HOM0000017 wikipathways WP1343 mapk cascade lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1009 MAPK cascade RO:HOM0000017 wikipathways WP251 Mapk cascade lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1009 MAPK cascade RO:HOM0000017 wikipathways WP422 MAPK cascade lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1009 MAPK cascade RO:HOM0000017 wikipathways WP446 Mapk cascade lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP101 Synthesis and degradation of ketone bodies RO:HOM0000017 wikipathways WP349 Synthesis and degradation of ketone bodies lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP101 Synthesis and degradation of ketone bodies RO:HOM0000017 wikipathways WP543 Synthesis and degradation of ketone bodies lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1010 Wnt signaling pathway and pluripotency RO:HOM0000017 wikipathways WP1129 Wnt signaling pathway and pluripotency lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1010 Wnt signaling pathway and pluripotency RO:HOM0000017 wikipathways WP1288 Wnt signaling pathway and pluripotency lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1010 Wnt signaling pathway and pluripotency RO:HOM0000017 wikipathways WP1344 Wnt Signaling Pathway and Pluripotency lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1010 Wnt signaling pathway and pluripotency RO:HOM0000017 wikipathways WP399 Wnt signaling pathway and pluripotency lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1010 Wnt signaling pathway and pluripotency RO:HOM0000017 wikipathways WP723 Wnt signaling pathway and pluripotency lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1010 Wnt signaling pathway and pluripotency RO:HOM0000017 wikipathways WP779 Wnt signaling pathway and pluripotency lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1012 IL-7 signaling pathway RO:HOM0000017 wikipathways WP1346 IL-7 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1012 IL-7 signaling pathway RO:HOM0000017 wikipathways WP205 IL-7 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1012 IL-7 signaling pathway RO:HOM0000017 wikipathways WP297 IL-7 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1013 Triacylglyceride synthesis RO:HOM0000017 wikipathways WP212 Triacylglyceride synthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1013 Triacylglyceride synthesis RO:HOM0000017 wikipathways WP325 Triacylglyceride synthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1013 Triacylglyceride synthesis RO:HOM0000017 wikipathways WP386 Triacylglyceride synthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1014 Androgen receptor signaling pathway RO:HOM0000017 wikipathways WP1133 Androgen receptor signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1014 Androgen receptor signaling pathway RO:HOM0000017 wikipathways WP138 Androgen receptor signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1014 Androgen receptor signaling pathway RO:HOM0000017 wikipathways WP897 Androgen receptor signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1015 Ketone bodies synthesis and degradation RO:HOM0000017 wikipathways WP1134 Ketone bodies synthesis and degradation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1015 Ketone bodies synthesis and degradation RO:HOM0000017 wikipathways WP311 Ketone bodies synthesis and degradation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1015 Ketone bodies synthesis and degradation RO:HOM0000017 wikipathways WP427 Ketone bodies synthesis and degradation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1015 Ketone bodies synthesis and degradation RO:HOM0000017 wikipathways WP784 Ketone bodies synthesis and degradation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1015 Ketone bodies synthesis and degradation RO:HOM0000017 wikipathways WP898 Ketone bodies synthesis and degradation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1016 Wnt signaling pathway RO:HOM0000017 wikipathways WP1135 Wnt signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1016 Wnt signaling pathway RO:HOM0000017 wikipathways WP1349 Wnt Signaling Pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1016 Wnt signaling pathway RO:HOM0000017 wikipathways WP363 Wnt signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1016 Wnt signaling pathway RO:HOM0000017 wikipathways WP403 Wnt signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1016 Wnt signaling pathway RO:HOM0000017 wikipathways WP785 Wnt signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1016 Wnt signaling pathway RO:HOM0000017 wikipathways WP899 Wnt signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1016 Wnt signaling pathway RO:HOM0000017 wikipathways WP97 Wnt signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1017 Type II interferon signaling (IFNG) RO:HOM0000017 wikipathways WP1253 Type II interferon signaling (IFNG) lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1017 Type II interferon signaling (IFNG) RO:HOM0000017 wikipathways WP1289 Type II interferon signaling (IFNG) lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1017 Type II interferon signaling (IFNG) RO:HOM0000017 wikipathways WP619 Type II interferon signaling (IFNG) lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1018 Apoptosis RO:HOM0000017 wikipathways WP1254 Apoptosis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1018 Apoptosis RO:HOM0000017 wikipathways WP1290 Apoptosis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1018 Apoptosis RO:HOM0000017 wikipathways WP1351 Apoptosis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1018 Apoptosis RO:HOM0000017 wikipathways WP254 Apoptosis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1018 Apoptosis RO:HOM0000017 wikipathways WP787 Apoptosis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1019 FAS pathway and stress induction of HSP regulation RO:HOM0000017 wikipathways WP1138 FAS pathway and stress induction of HSP regulation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1019 FAS pathway and stress induction of HSP regulation RO:HOM0000017 wikipathways WP511 FAS pathway and stress induction of HSP regulation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1019 FAS pathway and stress induction of HSP regulation RO:HOM0000017 wikipathways WP571 FAS pathway and stress induction of HSP regulation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1019 FAS pathway and stress induction of HSP regulation RO:HOM0000017 wikipathways WP788 FAS pathway and stress induction of HSP regulation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1019 FAS pathway and stress induction of HSP regulation RO:HOM0000017 wikipathways WP89 FAS pathway and stress induction of HSP regulation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1019 FAS pathway and stress induction of HSP regulation RO:HOM0000017 wikipathways WP902 FAS pathway and stress induction of HSP regulation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1020 Fatty acid biosynthesis RO:HOM0000017 wikipathways WP1352 Fatty acid biosynthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1020 Fatty acid biosynthesis RO:HOM0000017 wikipathways WP336 Fatty acid biosynthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1020 Fatty acid biosynthesis RO:HOM0000017 wikipathways WP357 Fatty acid biosynthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1020 Fatty acid biosynthesis RO:HOM0000017 wikipathways WP38 Fatty acid biosynthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1020 Fatty acid biosynthesis RO:HOM0000017 wikipathways WP504 Fatty acid biosynthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1020 Fatty acid biosynthesis RO:HOM0000017 wikipathways WP568 Fatty acid biosynthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1021 Phase I biotransformations, non P450 RO:HOM0000017 wikipathways WP1213 Phase I biotransformations, non P450 lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1021 Phase I biotransformations, non P450 RO:HOM0000017 wikipathways WP1291 Phase I biotransformations, non P450 lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1021 Phase I biotransformations, non P450 RO:HOM0000017 wikipathways WP136 Phase I biotransformations, non P450 lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1022 Hedgehog signaling pathway RO:HOM0000017 wikipathways WP1141 Hedgehog signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1022 Hedgehog signaling pathway RO:HOM0000017 wikipathways WP116 Hedgehog signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1022 Hedgehog signaling pathway RO:HOM0000017 wikipathways WP4249 Hedgehog signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1022 Hedgehog signaling pathway RO:HOM0000017 wikipathways WP492 Hedgehog signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1022 Hedgehog signaling pathway RO:HOM0000017 wikipathways WP574 Hedgehog signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1022 Hedgehog signaling pathway RO:HOM0000017 wikipathways WP790 Hedgehog signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1022 Hedgehog signaling pathway RO:HOM0000017 wikipathways WP905 Hedgehog signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1023 mRNA Processing RO:HOM0000017 wikipathways WP1142 mRNA Processing lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1023 mRNA Processing RO:HOM0000017 wikipathways WP1229 mRNA processing lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1023 mRNA Processing RO:HOM0000017 wikipathways WP123 mRNA processing lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1023 mRNA Processing RO:HOM0000017 wikipathways WP142 mRNA processing lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1023 mRNA Processing RO:HOM0000017 wikipathways WP310 mRNA processing lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1023 mRNA Processing RO:HOM0000017 wikipathways WP411 mRNA processing lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1023 mRNA Processing RO:HOM0000017 wikipathways WP467 mRNA processing lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1023 mRNA Processing RO:HOM0000017 wikipathways WP529 mRNA processing lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1023 mRNA Processing RO:HOM0000017 wikipathways WP793 mRNA processing lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1023 mRNA Processing RO:HOM0000017 wikipathways WP906 mRNA Processing lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1024 Steroid biosynthesis RO:HOM0000017 wikipathways WP496 Steroid biosynthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1024 Steroid biosynthesis RO:HOM0000017 wikipathways WP55 Steroid biosynthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1024 Steroid biosynthesis RO:HOM0000017 wikipathways WP66 Steroid biosynthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1025 B cell receptor signaling pathway RO:HOM0000017 wikipathways WP23 B cell receptor signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1026 One-carbon metabolism RO:HOM0000017 wikipathways WP1203 One-carbon metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1026 One-carbon metabolism RO:HOM0000017 wikipathways WP1230 One-carbon metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1026 One-carbon metabolism RO:HOM0000017 wikipathways WP1292 One-carbon metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1026 One-carbon metabolism RO:HOM0000017 wikipathways WP1355 One-carbon metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1026 One-carbon metabolism RO:HOM0000017 wikipathways WP241 One-carbon metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1026 One-carbon metabolism RO:HOM0000017 wikipathways WP435 One-carbon metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1026 One-carbon metabolism RO:HOM0000017 wikipathways WP796 One-carbon metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1026 One-carbon metabolism RO:HOM0000017 wikipathways WP909 One-carbon metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1027 Glycolysis and gluconeogenesis RO:HOM0000017 wikipathways WP1356 Glycolysis and gluconeogenesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1027 Glycolysis and gluconeogenesis RO:HOM0000017 wikipathways WP144 Glycolysis and gluconeogenesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1027 Glycolysis and gluconeogenesis RO:HOM0000017 wikipathways WP157 Glycolysis and gluconeogenesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1027 Glycolysis and gluconeogenesis RO:HOM0000017 wikipathways WP515 Glycolysis and gluconeogenesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1027 Glycolysis and gluconeogenesis RO:HOM0000017 wikipathways WP534 Glycolysis and gluconeogenesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1027 Glycolysis and gluconeogenesis RO:HOM0000017 wikipathways WP96 Glycolysis and Gluconeogenesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1028 Pentose phosphate pathway RO:HOM0000017 wikipathways WP1231 Pentose phosphate pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1028 Pentose phosphate pathway RO:HOM0000017 wikipathways WP282 Pentose phosphate pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1028 Pentose phosphate pathway RO:HOM0000017 wikipathways WP312 Pentose phosphate pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1028 Pentose phosphate pathway RO:HOM0000017 wikipathways WP369 Pentose phosphate pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1028 Pentose phosphate pathway RO:HOM0000017 wikipathways WP63 Pentose phosphate pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1029 Notch signaling pathway RO:HOM0000017 wikipathways WP1148 Notch signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1029 Notch signaling pathway RO:HOM0000017 wikipathways WP1232 Notch signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1029 Notch signaling pathway RO:HOM0000017 wikipathways WP208 Notch signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1029 Notch signaling pathway RO:HOM0000017 wikipathways WP29 Notch signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1029 Notch signaling pathway RO:HOM0000017 wikipathways WP517 Notch signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1029 Notch signaling pathway RO:HOM0000017 wikipathways WP798 Notch signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1029 Notch signaling pathway RO:HOM0000017 wikipathways WP912 Notch signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP103 Cholesterol biosynthesis RO:HOM0000017 wikipathways WP1070 Cholesterol biosynthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP103 Cholesterol biosynthesis RO:HOM0000017 wikipathways WP1186 Cholesterol biosynthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP103 Cholesterol biosynthesis RO:HOM0000017 wikipathways WP132 Cholesterol biosynthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP103 Cholesterol biosynthesis RO:HOM0000017 wikipathways WP1387 Cholesterol biosynthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP103 Cholesterol biosynthesis RO:HOM0000017 wikipathways WP461 Cholesterol biosynthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP103 Cholesterol biosynthesis RO:HOM0000017 wikipathways WP833 Cholesterol biosynthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP103 Cholesterol biosynthesis RO:HOM0000017 wikipathways WP952 Cholesterol biosynthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1031 IL-3 signaling pathway RO:HOM0000017 wikipathways WP1359 IL-3 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1031 IL-3 signaling pathway RO:HOM0000017 wikipathways WP286 IL-3 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1031 IL-3 signaling pathway RO:HOM0000017 wikipathways WP319 IL-3 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1031 IL-3 signaling pathway RO:HOM0000017 wikipathways WP373 IL-3 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1032 Nod-like receptor (NLR) signaling pathway RO:HOM0000017 wikipathways WP1256 Nod-like receptor (NLR) signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1032 Nod-like receptor (NLR) signaling pathway RO:HOM0000017 wikipathways WP1294 Nod-like receptor (NLR) signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1032 Nod-like receptor (NLR) signaling pathway RO:HOM0000017 wikipathways WP1360 Nod-like receptor (NLR) signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1032 Nod-like receptor (NLR) signaling pathway RO:HOM0000017 wikipathways WP288 Nod-like receptor (NLR) signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1032 Nod-like receptor (NLR) signaling pathway RO:HOM0000017 wikipathways WP799 Nod-like receptor (NLR) signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1032 Nod-like receptor (NLR) signaling pathway RO:HOM0000017 wikipathways WP914 Nod-like receptor (NLR) signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1033 ACE inhibitor pathway RO:HOM0000017 wikipathways WP1151 ACE inhibitor pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1033 ACE inhibitor pathway RO:HOM0000017 wikipathways WP396 ACE inhibitor pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1033 ACE inhibitor pathway RO:HOM0000017 wikipathways WP468 ACE inhibitor pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1033 ACE inhibitor pathway RO:HOM0000017 wikipathways WP554 ACE inhibitor pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1033 ACE inhibitor pathway RO:HOM0000017 wikipathways WP557 ACE inhibitor pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1033 ACE inhibitor pathway RO:HOM0000017 wikipathways WP801 ACE inhibitor pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1033 ACE inhibitor pathway RO:HOM0000017 wikipathways WP915 ACE inhibitor pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1034 Acetylcholine synthesis RO:HOM0000017 wikipathways WP175 Acetylcholine synthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1034 Acetylcholine synthesis RO:HOM0000017 wikipathways WP264 Acetylcholine synthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1034 Acetylcholine synthesis RO:HOM0000017 wikipathways WP360 Acetylcholine synthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1034 Acetylcholine synthesis RO:HOM0000017 wikipathways WP476 Acetylcholine synthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1034 Acetylcholine synthesis RO:HOM0000017 wikipathways WP528 Acetylcholine synthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1035 Mismatch repair RO:HOM0000017 wikipathways WP1152 Mismatch repair lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1035 Mismatch repair RO:HOM0000017 wikipathways WP1233 Mismatch repair lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1035 Mismatch repair RO:HOM0000017 wikipathways WP1257 Mismatch repair lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1035 Mismatch repair RO:HOM0000017 wikipathways WP1295 Mismatch repair lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1035 Mismatch repair RO:HOM0000017 wikipathways WP802 Mismatch repair lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1036 Homologous recombination RO:HOM0000017 wikipathways WP1153 Homologous recombination lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1036 Homologous recombination RO:HOM0000017 wikipathways WP1205 Homologous recombination lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1036 Homologous recombination RO:HOM0000017 wikipathways WP1258 Homologous recombination lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1036 Homologous recombination RO:HOM0000017 wikipathways WP1296 Homologous recombination lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1036 Homologous recombination RO:HOM0000017 wikipathways WP186 Homologous recombination lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1036 Homologous recombination RO:HOM0000017 wikipathways WP804 Homologous recombination lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1036 Homologous recombination RO:HOM0000017 wikipathways WP917 Homologous recombination lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1037 p38 MAPK signaling pathway RO:HOM0000017 wikipathways WP1154 p38 MAPK signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1037 p38 MAPK signaling pathway RO:HOM0000017 wikipathways WP1363 p38 mapk signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1037 p38 MAPK signaling pathway RO:HOM0000017 wikipathways WP294 p38 Mapk signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1037 p38 MAPK signaling pathway RO:HOM0000017 wikipathways WP350 p38 Mapk signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1037 p38 MAPK signaling pathway RO:HOM0000017 wikipathways WP400 p38 MAPK signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1037 p38 MAPK signaling pathway RO:HOM0000017 wikipathways WP803 p38 MAPK signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1037 p38 MAPK signaling pathway RO:HOM0000017 wikipathways WP918 p38 MAPK signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1038 Vitamin A and carotenoid metabolism RO:HOM0000017 wikipathways WP716 Vitamin A and carotenoid metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1040 Inflammatory response pathway RO:HOM0000017 wikipathways WP40 Inflammatory response pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1040 Inflammatory response pathway RO:HOM0000017 wikipathways WP453 Inflammatory response pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1040 Inflammatory response pathway RO:HOM0000017 wikipathways WP458 Inflammatory response pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1041 Statin pathway RO:HOM0000017 wikipathways WP1157 Statin pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1041 Statin pathway RO:HOM0000017 wikipathways WP145 Statin pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1041 Statin pathway RO:HOM0000017 wikipathways WP921 Statin pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1042 Nucleotide GPCRs RO:HOM0000017 wikipathways WP207 Nucleotide GPCRs lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1042 Nucleotide GPCRs RO:HOM0000017 wikipathways WP502 Nucleotide GPCRs lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1042 Nucleotide GPCRs RO:HOM0000017 wikipathways WP80 Nucleotide GPCRs lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1044 ErbB signaling pathway RO:HOM0000017 wikipathways WP1261 ErbB signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1044 ErbB signaling pathway RO:HOM0000017 wikipathways WP1299 ErbB signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1044 ErbB signaling pathway RO:HOM0000017 wikipathways WP1366 ErbB signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1044 ErbB signaling pathway RO:HOM0000017 wikipathways WP673 ErbB signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1045 TGF-beta signaling pathway RO:HOM0000017 wikipathways WP113 TGF-beta signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1045 TGF-beta signaling pathway RO:HOM0000017 wikipathways WP366 TGF-beta signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1046 Hepatocyte growth factor receptor signaling RO:HOM0000017 wikipathways WP1162 Hepatocyte growth factor receptor signaling lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1046 Hepatocyte growth factor receptor signaling RO:HOM0000017 wikipathways WP193 Hepatocyte growth factor receptor signaling lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1046 Hepatocyte growth factor receptor signaling RO:HOM0000017 wikipathways WP313 Hepatocyte growth factor receptor signaling lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1046 Hepatocyte growth factor receptor signaling RO:HOM0000017 wikipathways WP444 Hepatocyte growth factor receptor signaling lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1046 Hepatocyte growth factor receptor signaling RO:HOM0000017 wikipathways WP810 Hepatocyte growth factor receptor signaling lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1046 Hepatocyte growth factor receptor signaling RO:HOM0000017 wikipathways WP927 Hepatocyte growth factor receptor signaling lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1046 Hepatocyte growth factor receptor signaling RO:HOM0000017 wikipathways WP94 Hepatocyte growth factor receptor signaling lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1047 TNF-alpha signaling pathway RO:HOM0000017 wikipathways WP231 TNF-alpha signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1048 TGF-beta receptor signaling RO:HOM0000017 wikipathways WP560 TGF-beta receptor signaling lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1049 G protein signaling pathways RO:HOM0000017 wikipathways WP1165 G protein signaling pathways lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1049 G protein signaling pathways RO:HOM0000017 wikipathways WP1371 G protein signaling pathways lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1049 G protein signaling pathways RO:HOM0000017 wikipathways WP232 G protein signaling pathways lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1049 G protein signaling pathways RO:HOM0000017 wikipathways WP35 G protein signaling pathways lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1049 G protein signaling pathways RO:HOM0000017 wikipathways WP73 G protein signaling pathways lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1049 G protein signaling pathways RO:HOM0000017 wikipathways WP813 G protein signaling pathways lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1049 G protein signaling pathways RO:HOM0000017 wikipathways WP931 G protein signaling pathways lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1050 Oxidative stress response RO:HOM0000017 wikipathways WP1372 Oxidative stress response lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1050 Oxidative stress response RO:HOM0000017 wikipathways WP173 Oxidative stress response lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1050 Oxidative stress response RO:HOM0000017 wikipathways WP408 Oxidative stress response lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1050 Oxidative stress response RO:HOM0000017 wikipathways WP412 Oxidative stress response lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1051 GPCRs, class C metabotropic glutamate, pheromone RO:HOM0000017 wikipathways WP1373 GPCRs, class C metabotropic glutamate, pheromone lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1051 GPCRs, class C metabotropic glutamate, pheromone RO:HOM0000017 wikipathways WP327 GPCRs, class C metabotropic glutamate, pheromone lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1051 GPCRs, class C metabotropic glutamate, pheromone RO:HOM0000017 wikipathways WP42 GPCRs, class C metabotropic glutamate, pheromone lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1051 GPCRs, class C metabotropic glutamate, pheromone RO:HOM0000017 wikipathways WP501 GPCRs, class C metabotropic glutamate, pheromone lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1052 ID signaling pathway RO:HOM0000017 wikipathways WP1168 Id signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1052 ID signaling pathway RO:HOM0000017 wikipathways WP1374 Id signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1052 ID signaling pathway RO:HOM0000017 wikipathways WP397 Id signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1052 ID signaling pathway RO:HOM0000017 wikipathways WP512 Id signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1052 ID signaling pathway RO:HOM0000017 wikipathways WP53 ID signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1052 ID signaling pathway RO:HOM0000017 wikipathways WP934 Id signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1053 Estrogen metabolism RO:HOM0000017 wikipathways WP1264 Estrogen metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1053 Estrogen metabolism RO:HOM0000017 wikipathways WP1302 Estrogen metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1053 Estrogen metabolism RO:HOM0000017 wikipathways WP697 Estrogen metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1054 Polyol pathway RO:HOM0000017 wikipathways WP1170 Polyol pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1054 Polyol pathway RO:HOM0000017 wikipathways WP1218 Polyol pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1054 Polyol pathway RO:HOM0000017 wikipathways WP1236 Polyol pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1054 Polyol pathway RO:HOM0000017 wikipathways WP1265 Polyol pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1054 Polyol pathway RO:HOM0000017 wikipathways WP1303 Polyol pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1054 Polyol pathway RO:HOM0000017 wikipathways WP1375 Polyol pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1054 Polyol pathway RO:HOM0000017 wikipathways WP690 Polyol pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1054 Polyol pathway RO:HOM0000017 wikipathways WP936 Polyol pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1055 IL-4 signaling pathway RO:HOM0000017 wikipathways WP1376 IL-4 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1055 IL-4 signaling pathway RO:HOM0000017 wikipathways WP395 IL-4 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1056 Complement and coagulation cascades RO:HOM0000017 wikipathways WP547 Complement and coagulation cascades lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1056 Complement and coagulation cascades RO:HOM0000017 wikipathways WP558 Complement and coagulation cascades lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP106 Alanine and aspartate metabolism RO:HOM0000017 wikipathways WP240 Alanine and aspartate metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP106 Alanine and aspartate metabolism RO:HOM0000017 wikipathways WP3262 Alanine and aspartate metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1060 Matrix metalloproteinases RO:HOM0000017 wikipathways WP1176 Matrix metalloproteinases lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1060 Matrix metalloproteinases RO:HOM0000017 wikipathways WP129 Matrix metalloproteinases lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1060 Matrix metalloproteinases RO:HOM0000017 wikipathways WP278 Matrix metalloproteinases lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1060 Matrix metalloproteinases RO:HOM0000017 wikipathways WP441 Matrix metalloproteinases lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1060 Matrix metalloproteinases RO:HOM0000017 wikipathways WP823 Matrix metalloproteinases lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1060 Matrix metalloproteinases RO:HOM0000017 wikipathways WP942 Matrix metalloproteinases lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1061 Fatty acid beta-oxidation RO:HOM0000017 wikipathways WP1269 Fatty acid beta-oxidation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1061 Fatty acid beta-oxidation RO:HOM0000017 wikipathways WP1307 Fatty acid beta-oxidation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1061 Fatty acid beta-oxidation RO:HOM0000017 wikipathways WP143 Fatty acid beta-oxidation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1061 Fatty acid beta-oxidation RO:HOM0000017 wikipathways WP506 Fatty acid beta-oxidation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1063 G13 signaling pathway RO:HOM0000017 wikipathways WP1179 G13 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1063 G13 signaling pathway RO:HOM0000017 wikipathways WP1381 G13 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1063 G13 signaling pathway RO:HOM0000017 wikipathways WP298 G13 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1063 G13 signaling pathway RO:HOM0000017 wikipathways WP520 G13 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1063 G13 signaling pathway RO:HOM0000017 wikipathways WP524 G13 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1063 G13 signaling pathway RO:HOM0000017 wikipathways WP826 G13 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1063 G13 signaling pathway RO:HOM0000017 wikipathways WP945 G13 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1064 Notch signaling pathway RO:HOM0000017 wikipathways WP1148 Notch signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1064 Notch signaling pathway RO:HOM0000017 wikipathways WP1232 Notch signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1064 Notch signaling pathway RO:HOM0000017 wikipathways WP208 Notch signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1064 Notch signaling pathway RO:HOM0000017 wikipathways WP29 Notch signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1064 Notch signaling pathway RO:HOM0000017 wikipathways WP517 Notch signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1064 Notch signaling pathway RO:HOM0000017 wikipathways WP798 Notch signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1064 Notch signaling pathway RO:HOM0000017 wikipathways WP912 Notch signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1065 Endochondral ossification RO:HOM0000017 wikipathways WP1270 Endochondral ossification lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1065 Endochondral ossification RO:HOM0000017 wikipathways WP1308 Endochondral ossification lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1065 Endochondral ossification RO:HOM0000017 wikipathways WP1383 Endochondral ossification lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1065 Endochondral ossification RO:HOM0000017 wikipathways WP474 Endochondral ossification lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1066 Eukaryotic transcription initiation RO:HOM0000017 wikipathways WP1182 Eukaryotic transcription initiation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1066 Eukaryotic transcription initiation RO:HOM0000017 wikipathways WP1238 Eukaryotic transcription initiation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1066 Eukaryotic transcription initiation RO:HOM0000017 wikipathways WP177 Eukaryotic transcription initiation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1066 Eukaryotic transcription initiation RO:HOM0000017 wikipathways WP405 Eukaryotic transcription initiation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1066 Eukaryotic transcription initiation RO:HOM0000017 wikipathways WP425 Eukaryotic transcription initiation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1066 Eukaryotic transcription initiation RO:HOM0000017 wikipathways WP491 Eukaryotic transcription initiation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1066 Eukaryotic transcription initiation RO:HOM0000017 wikipathways WP518 Eukaryotic transcription initiation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1066 Eukaryotic transcription initiation RO:HOM0000017 wikipathways WP567 Eukaryotic transcription initiation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1066 Eukaryotic transcription initiation RO:HOM0000017 wikipathways WP830 Eukaryotic transcription initiation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1066 Eukaryotic transcription initiation RO:HOM0000017 wikipathways WP948 Eukaryotic transcription initiation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1067 Toll-like receptor signaling pathway RO:HOM0000017 wikipathways WP1309 Toll-like receptor signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1067 Toll-like receptor signaling pathway RO:HOM0000017 wikipathways WP1384 Toll-like receptor signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1067 Toll-like receptor signaling pathway RO:HOM0000017 wikipathways WP75 Toll-like receptor signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1068 Nuclear receptors RO:HOM0000017 wikipathways WP1184 Nuclear receptors lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1068 Nuclear receptors RO:HOM0000017 wikipathways WP170 Nuclear receptors lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1068 Nuclear receptors RO:HOM0000017 wikipathways WP217 Nuclear receptors lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1068 Nuclear receptors RO:HOM0000017 wikipathways WP509 Nuclear Receptors lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1068 Nuclear receptors RO:HOM0000017 wikipathways WP831 Nuclear receptors lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1068 Nuclear receptors RO:HOM0000017 wikipathways WP950 Nuclear receptors lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1069 Integrin-mediated cell adhesion RO:HOM0000017 wikipathways WP1185 Integrin-mediated cell adhesion lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1069 Integrin-mediated cell adhesion RO:HOM0000017 wikipathways WP1386 Integrin-mediated cell adhesion lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1069 Integrin-mediated cell adhesion RO:HOM0000017 wikipathways WP185 Integrin-mediated cell adhesion lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1069 Integrin-mediated cell adhesion RO:HOM0000017 wikipathways WP6 Integrin-mediated cell adhesion lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1069 Integrin-mediated cell adhesion RO:HOM0000017 wikipathways WP74 Integrin-mediated cell adhesion lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1069 Integrin-mediated cell adhesion RO:HOM0000017 wikipathways WP832 Integrin-mediated cell adhesion lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1069 Integrin-mediated cell adhesion RO:HOM0000017 wikipathways WP951 Integrin-mediated cell adhesion lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP107 Translation factors RO:HOM0000017 wikipathways WP110 Translation factors lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP107 Translation factors RO:HOM0000017 wikipathways WP149 Translation factors lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP107 Translation factors RO:HOM0000017 wikipathways WP307 Translation factors lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP107 Translation factors RO:HOM0000017 wikipathways WP32 Translation factors lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP107 Translation factors RO:HOM0000017 wikipathways WP537 Translation factors lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP107 Translation factors RO:HOM0000017 wikipathways WP965 Translation factors lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1070 Cholesterol biosynthesis RO:HOM0000017 wikipathways WP1186 Cholesterol biosynthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1070 Cholesterol biosynthesis RO:HOM0000017 wikipathways WP132 Cholesterol biosynthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1070 Cholesterol biosynthesis RO:HOM0000017 wikipathways WP1387 Cholesterol biosynthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1070 Cholesterol biosynthesis RO:HOM0000017 wikipathways WP461 Cholesterol biosynthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1070 Cholesterol biosynthesis RO:HOM0000017 wikipathways WP833 Cholesterol biosynthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1070 Cholesterol biosynthesis RO:HOM0000017 wikipathways WP952 Cholesterol biosynthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1071 Cytoplasmic ribosomal proteins RO:HOM0000017 wikipathways WP1239 Cytoplasmic ribosomal proteins lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1071 Cytoplasmic ribosomal proteins RO:HOM0000017 wikipathways WP163 Cytoplasmic ribosomal proteins lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1071 Cytoplasmic ribosomal proteins RO:HOM0000017 wikipathways WP210 Cytoplasmic ribosomal proteins lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1071 Cytoplasmic ribosomal proteins RO:HOM0000017 wikipathways WP30 Cytoplasmic ribosomal proteins lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1071 Cytoplasmic ribosomal proteins RO:HOM0000017 wikipathways WP324 Cytoplasmic ribosomal proteins lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1071 Cytoplasmic ribosomal proteins RO:HOM0000017 wikipathways WP477 Cytoplasmic ribosomal proteins lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1071 Cytoplasmic ribosomal proteins RO:HOM0000017 wikipathways WP540 Cytoplasmic ribosomal proteins lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1072 GPCRs, class A rhodopsin-like RO:HOM0000017 wikipathways WP189 GPCRs, class A rhodopsin-like lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1072 GPCRs, class A rhodopsin-like RO:HOM0000017 wikipathways WP455 GPCRs, class A rhodopsin-like lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1072 GPCRs, class A rhodopsin-like RO:HOM0000017 wikipathways WP473 GPCRs, class A rhodopsin-like lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1073 Glycogen metabolism RO:HOM0000017 wikipathways WP1189 Glycogen metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1073 Glycogen metabolism RO:HOM0000017 wikipathways WP1388 Glycogen metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1073 Glycogen metabolism RO:HOM0000017 wikipathways WP160 Glycogen metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1073 Glycogen metabolism RO:HOM0000017 wikipathways WP317 Glycogen metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1073 Glycogen metabolism RO:HOM0000017 wikipathways WP436 Glycogen metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1073 Glycogen metabolism RO:HOM0000017 wikipathways WP835 Glycogen metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1073 Glycogen metabolism RO:HOM0000017 wikipathways WP955 Glycogen metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1074 Osteoblast signaling RO:HOM0000017 wikipathways WP227 Osteoblast signaling lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1074 Osteoblast signaling RO:HOM0000017 wikipathways WP238 Osteoblast signaling lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1074 Osteoblast signaling RO:HOM0000017 wikipathways WP322 Osteoblast signaling lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1074 Osteoblast signaling RO:HOM0000017 wikipathways WP956 Osteoblast signaling lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1075 Folate metabolism RO:HOM0000017 wikipathways WP176 Folate metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1076 Monoamine GPCRs RO:HOM0000017 wikipathways WP1193 Monoamine GPCRs lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1076 Monoamine GPCRs RO:HOM0000017 wikipathways WP1389 Monoamine GPCRs lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1076 Monoamine GPCRs RO:HOM0000017 wikipathways WP276 Monoamine GPCRs lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1076 Monoamine GPCRs RO:HOM0000017 wikipathways WP570 Monoamine GPCRs lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1076 Monoamine GPCRs RO:HOM0000017 wikipathways WP58 Monoamine GPCRs lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1076 Monoamine GPCRs RO:HOM0000017 wikipathways WP839 Monoamine GPCRs lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1076 Monoamine GPCRs RO:HOM0000017 wikipathways WP957 Monoamine GPCRs lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1077 Oxidation by cytochrome P450 RO:HOM0000017 wikipathways WP1274 Oxidation by cytochrome P450 lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1077 Oxidation by cytochrome P450 RO:HOM0000017 wikipathways WP43 Oxidation by cytochrome P450 lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1078 G1 to S cell cycle control RO:HOM0000017 wikipathways WP1195 G1 to S cell cycle control lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1078 G1 to S cell cycle control RO:HOM0000017 wikipathways WP348 G1 to S cell cycle control lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1078 G1 to S cell cycle control RO:HOM0000017 wikipathways WP413 G1 to S cell cycle control lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1078 G1 to S cell cycle control RO:HOM0000017 wikipathways WP445 G1 to S cell cycle control lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1078 G1 to S cell cycle control RO:HOM0000017 wikipathways WP45 G1 to S cell cycle control lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1078 G1 to S cell cycle control RO:HOM0000017 wikipathways WP840 G1 to S cell cycle control lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1078 G1 to S cell cycle control RO:HOM0000017 wikipathways WP959 G1 to S cell cycle control lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1079 Proteasome degradation RO:HOM0000017 wikipathways WP1240 Proteasome Degradation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1079 Proteasome degradation RO:HOM0000017 wikipathways WP158 Proteasome degradation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1079 Proteasome degradation RO:HOM0000017 wikipathways WP183 Proteasome degradation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1079 Proteasome degradation RO:HOM0000017 wikipathways WP281 Proteasome degradation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1079 Proteasome degradation RO:HOM0000017 wikipathways WP302 Proteasome degradation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1079 Proteasome degradation RO:HOM0000017 wikipathways WP470 Proteasome degradation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1079 Proteasome degradation RO:HOM0000017 wikipathways WP519 Proteasome degradation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1080 Irinotecan pathway RO:HOM0000017 wikipathways WP1197 Irinotecan pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1080 Irinotecan pathway RO:HOM0000017 wikipathways WP124 Irinotecan pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1080 Irinotecan pathway RO:HOM0000017 wikipathways WP229 Irinotecan pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1080 Irinotecan pathway RO:HOM0000017 wikipathways WP475 Irinotecan pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1080 Irinotecan pathway RO:HOM0000017 wikipathways WP961 Irinotecan pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1081 S1P receptor signal transduction RO:HOM0000017 wikipathways WP1198 S1P receptor signal transduction lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1081 S1P receptor signal transduction RO:HOM0000017 wikipathways WP1312 S1P receptor signal transduction lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1081 S1P receptor signal transduction RO:HOM0000017 wikipathways WP1391 S1P receptor signal transduction lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1081 S1P receptor signal transduction RO:HOM0000017 wikipathways WP26 S1P receptor signal transduction lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1082 Apoptosis modulation by HSP70 RO:HOM0000017 wikipathways WP1392 Apoptosis modulation by HSP70 lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1082 Apoptosis modulation by HSP70 RO:HOM0000017 wikipathways WP166 Apoptosis modulation by HSP70 lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1082 Apoptosis modulation by HSP70 RO:HOM0000017 wikipathways WP384 Apoptosis modulation by HSP70 lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1082 Apoptosis modulation by HSP70 RO:HOM0000017 wikipathways WP487 Apoptosis modulation by HSP70 lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1082 Apoptosis modulation by HSP70 RO:HOM0000017 wikipathways WP963 Apoptosis modulation by HSP70 lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1083 Cell cycle RO:HOM0000017 wikipathways WP1200 Cell cycle lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1083 Cell cycle RO:HOM0000017 wikipathways WP1393 Cell cycle lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1083 Cell cycle RO:HOM0000017 wikipathways WP179 Cell cycle lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1083 Cell cycle RO:HOM0000017 wikipathways WP844 Cell cycle lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1083 Cell cycle RO:HOM0000017 wikipathways WP964 Cell cycle lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1086 Heme biosynthesis RO:HOM0000017 wikipathways WP1221 Heme biosynthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1086 Heme biosynthesis RO:HOM0000017 wikipathways WP1314 Heme biosynthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1086 Heme biosynthesis RO:HOM0000017 wikipathways WP18 Heme biosynthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1086 Heme biosynthesis RO:HOM0000017 wikipathways WP269 Heme biosynthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1086 Heme biosynthesis RO:HOM0000017 wikipathways WP561 Heme biosynthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1086 Heme biosynthesis RO:HOM0000017 wikipathways WP848 Heme biosynthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1086 Heme biosynthesis RO:HOM0000017 wikipathways WP86 Heme biosynthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1086 Heme biosynthesis RO:HOM0000017 wikipathways WP967 Heme biosynthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1090 Eicosanoid synthesis RO:HOM0000017 wikipathways WP1318 Eicosanoid synthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1090 Eicosanoid synthesis RO:HOM0000017 wikipathways WP167 Eicosanoid synthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1090 Eicosanoid synthesis RO:HOM0000017 wikipathways WP293 Eicosanoid synthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1090 Eicosanoid synthesis RO:HOM0000017 wikipathways WP318 Eicosanoid synthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1090 Eicosanoid synthesis RO:HOM0000017 wikipathways WP854 Eicosanoid synthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1090 Eicosanoid synthesis RO:HOM0000017 wikipathways WP972 Eicosanoid synthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1091 IL-2 signaling pathway RO:HOM0000017 wikipathways WP1319 IL-2 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1091 IL-2 signaling pathway RO:HOM0000017 wikipathways WP450 IL-2 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1091 IL-2 signaling pathway RO:HOM0000017 wikipathways WP49 IL-2 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1091 IL-2 signaling pathway RO:HOM0000017 wikipathways WP569 IL-2 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1091 IL-2 signaling pathway RO:HOM0000017 wikipathways WP973 IL-2 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1096 EGFR1 signaling pathway RO:HOM0000017 wikipathways WP1323 EGFR1 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1096 EGFR1 signaling pathway RO:HOM0000017 wikipathways WP5 EGFR1 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1096 EGFR1 signaling pathway RO:HOM0000017 wikipathways WP572 EGFR1 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1096 EGFR1 signaling pathway RO:HOM0000017 wikipathways WP752 EGFR1 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1096 EGFR1 signaling pathway RO:HOM0000017 wikipathways WP860 EGFR1 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1099 Nuclear receptors in lipid metabolism and toxicity RO:HOM0000017 wikipathways WP1326 Nuclear receptors in lipid metabolism and toxicity lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1099 Nuclear receptors in lipid metabolism and toxicity RO:HOM0000017 wikipathways WP139 Nuclear receptors in lipid metabolism and toxicity lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1099 Nuclear receptors in lipid metabolism and toxicity RO:HOM0000017 wikipathways WP299 Nuclear receptors in lipid metabolism and toxicity lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1099 Nuclear receptors in lipid metabolism and toxicity RO:HOM0000017 wikipathways WP431 Nuclear receptors in lipid metabolism and toxicity lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1099 Nuclear receptors in lipid metabolism and toxicity RO:HOM0000017 wikipathways WP755 Nuclear receptors in lipid metabolism and toxicity lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1099 Nuclear receptors in lipid metabolism and toxicity RO:HOM0000017 wikipathways WP863 Nuclear receptors in lipid metabolism and toxicity lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1099 Nuclear receptors in lipid metabolism and toxicity RO:HOM0000017 wikipathways WP981 Nuclear receptors in lipid metabolism and toxicity lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP110 Translation factors RO:HOM0000017 wikipathways WP149 Translation factors lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP110 Translation factors RO:HOM0000017 wikipathways WP307 Translation factors lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP110 Translation factors RO:HOM0000017 wikipathways WP32 Translation factors lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP110 Translation factors RO:HOM0000017 wikipathways WP537 Translation factors lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP110 Translation factors RO:HOM0000017 wikipathways WP965 Translation factors lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1101 DNA replication RO:HOM0000017 wikipathways WP1223 DNA replication lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1101 DNA replication RO:HOM0000017 wikipathways WP13 DNA replication lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1101 DNA replication RO:HOM0000017 wikipathways WP150 DNA replication lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1101 DNA replication RO:HOM0000017 wikipathways WP192 DNA replication lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1101 DNA replication RO:HOM0000017 wikipathways WP451 DNA replication lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1101 DNA replication RO:HOM0000017 wikipathways WP466 DNA replication lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1101 DNA replication RO:HOM0000017 wikipathways WP484 DNA replication lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1101 DNA replication RO:HOM0000017 wikipathways WP565 DNA replication lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1101 DNA replication RO:HOM0000017 wikipathways WP757 DNA replication lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1101 DNA replication RO:HOM0000017 wikipathways WP865 DNA replication lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1101 DNA replication RO:HOM0000017 wikipathways WP983 DNA replication lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1105 Adipogenesis RO:HOM0000017 wikipathways WP1331 Adipogenesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1105 Adipogenesis RO:HOM0000017 wikipathways WP155 Adipogenesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1105 Adipogenesis RO:HOM0000017 wikipathways WP236 Adipogenesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1105 Adipogenesis RO:HOM0000017 wikipathways WP869 Adipogenesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1105 Adipogenesis RO:HOM0000017 wikipathways WP987 Adipogenesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1112 EPO receptor signaling RO:HOM0000017 wikipathways WP1249 EPO receptor signaling lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1112 EPO receptor signaling RO:HOM0000017 wikipathways WP1284 EPO receptor signaling lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1112 EPO receptor signaling RO:HOM0000017 wikipathways WP1336 EPO receptor signaling lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1112 EPO receptor signaling RO:HOM0000017 wikipathways WP581 EPO receptor signaling lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1112 EPO receptor signaling RO:HOM0000017 wikipathways WP768 EPO receptor signaling lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1112 EPO receptor signaling RO:HOM0000017 wikipathways WP878 EPO receptor signaling lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1112 EPO receptor signaling RO:HOM0000017 wikipathways WP996 EPO receptor signaling lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1113 Cytokines and inflammatory response RO:HOM0000017 wikipathways WP222 Cytokines and inflammatory response lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1113 Cytokines and inflammatory response RO:HOM0000017 wikipathways WP271 Cytokines and inflammatory response lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1113 Cytokines and inflammatory response RO:HOM0000017 wikipathways WP530 Cytokines and inflammatory response lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1113 Cytokines and inflammatory response RO:HOM0000017 wikipathways WP879 Cytokines and inflammatory response lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1113 Cytokines and inflammatory response RO:HOM0000017 wikipathways WP997 Cytokines and inflammatory response lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1114 MAPK signaling pathway RO:HOM0000017 wikipathways WP1337 MAPK signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1114 MAPK signaling pathway RO:HOM0000017 wikipathways WP358 MAPK signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1114 MAPK signaling pathway RO:HOM0000017 wikipathways WP382 MAPK signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1114 MAPK signaling pathway RO:HOM0000017 wikipathways WP493 Mapk signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1114 MAPK signaling pathway RO:HOM0000017 wikipathways WP510 MAPK signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1114 MAPK signaling pathway RO:HOM0000017 wikipathways WP769 MAPK signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1114 MAPK signaling pathway RO:HOM0000017 wikipathways WP880 MAPK signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1114 MAPK signaling pathway RO:HOM0000017 wikipathways WP998 MAPK signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1118 Biogenic amine synthesis RO:HOM0000017 wikipathways WP125 Biogenic amine synthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1118 Biogenic amine synthesis RO:HOM0000017 wikipathways WP154 Biogenic amine synthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1118 Biogenic amine synthesis RO:HOM0000017 wikipathways WP3168 Biogenic amine synthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1118 Biogenic amine synthesis RO:HOM0000017 wikipathways WP323 Biogenic amine synthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1118 Biogenic amine synthesis RO:HOM0000017 wikipathways WP522 Biogenic amine synthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1118 Biogenic amine synthesis RO:HOM0000017 wikipathways WP550 Biogenic amine synthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1119 Electron transport chain RO:HOM0000017 wikipathways WP1339 Electron transport chain lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1119 Electron transport chain RO:HOM0000017 wikipathways WP295 Electron transport chain lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1119 Electron transport chain RO:HOM0000017 wikipathways WP542 Electron transport chain lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1119 Electron transport chain RO:HOM0000017 wikipathways WP59 Electron transport chain lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1121 Kit receptor signaling pathway RO:HOM0000017 wikipathways WP1341 Kit receptor signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1121 Kit receptor signaling pathway RO:HOM0000017 wikipathways WP147 Kit receptor signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1121 Kit receptor signaling pathway RO:HOM0000017 wikipathways WP304 Kit receptor signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1121 Kit receptor signaling pathway RO:HOM0000017 wikipathways WP407 Kit receptor signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1121 Kit receptor signaling pathway RO:HOM0000017 wikipathways WP774 Kit receptor signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1121 Kit receptor signaling pathway RO:HOM0000017 wikipathways WP886 Kit receptor signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1122 Blood clotting cascade RO:HOM0000017 wikipathways WP255 Blood clotting cascade lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1122 Blood clotting cascade RO:HOM0000017 wikipathways WP272 Blood clotting cascade lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1122 Blood clotting cascade RO:HOM0000017 wikipathways WP3251 Blood clotting cascade lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1122 Blood clotting cascade RO:HOM0000017 wikipathways WP460 Blood clotting cascade lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1122 Blood clotting cascade RO:HOM0000017 wikipathways WP775 Blood clotting cascade lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1122 Blood clotting cascade RO:HOM0000017 wikipathways WP887 Blood clotting cascade lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1126 Tryptophan metabolism RO:HOM0000017 wikipathways WP270 Tryptophan metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1126 Tryptophan metabolism RO:HOM0000017 wikipathways WP3248 Tryptophan metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1126 Tryptophan metabolism RO:HOM0000017 wikipathways WP465 Tryptophan metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1126 Tryptophan metabolism RO:HOM0000017 wikipathways WP79 Tryptophan metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1129 Wnt signaling pathway and pluripotency RO:HOM0000017 wikipathways WP1288 Wnt signaling pathway and pluripotency lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1129 Wnt signaling pathway and pluripotency RO:HOM0000017 wikipathways WP1344 Wnt Signaling Pathway and Pluripotency lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1129 Wnt signaling pathway and pluripotency RO:HOM0000017 wikipathways WP399 Wnt signaling pathway and pluripotency lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1129 Wnt signaling pathway and pluripotency RO:HOM0000017 wikipathways WP723 Wnt signaling pathway and pluripotency lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1129 Wnt signaling pathway and pluripotency RO:HOM0000017 wikipathways WP779 Wnt signaling pathway and pluripotency lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP113 TGF-beta signaling pathway RO:HOM0000017 wikipathways WP366 TGF-beta signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1133 Androgen receptor signaling pathway RO:HOM0000017 wikipathways WP138 Androgen receptor signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1133 Androgen receptor signaling pathway RO:HOM0000017 wikipathways WP897 Androgen receptor signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1134 Ketone bodies synthesis and degradation RO:HOM0000017 wikipathways WP311 Ketone bodies synthesis and degradation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1134 Ketone bodies synthesis and degradation RO:HOM0000017 wikipathways WP427 Ketone bodies synthesis and degradation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1134 Ketone bodies synthesis and degradation RO:HOM0000017 wikipathways WP784 Ketone bodies synthesis and degradation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1134 Ketone bodies synthesis and degradation RO:HOM0000017 wikipathways WP898 Ketone bodies synthesis and degradation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1135 Wnt signaling pathway RO:HOM0000017 wikipathways WP1349 Wnt Signaling Pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1135 Wnt signaling pathway RO:HOM0000017 wikipathways WP363 Wnt signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1135 Wnt signaling pathway RO:HOM0000017 wikipathways WP403 Wnt signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1135 Wnt signaling pathway RO:HOM0000017 wikipathways WP785 Wnt signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1135 Wnt signaling pathway RO:HOM0000017 wikipathways WP899 Wnt signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1135 Wnt signaling pathway RO:HOM0000017 wikipathways WP97 Wnt signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1138 FAS pathway and stress induction of HSP regulation RO:HOM0000017 wikipathways WP511 FAS pathway and stress induction of HSP regulation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1138 FAS pathway and stress induction of HSP regulation RO:HOM0000017 wikipathways WP571 FAS pathway and stress induction of HSP regulation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1138 FAS pathway and stress induction of HSP regulation RO:HOM0000017 wikipathways WP788 FAS pathway and stress induction of HSP regulation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1138 FAS pathway and stress induction of HSP regulation RO:HOM0000017 wikipathways WP89 FAS pathway and stress induction of HSP regulation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1138 FAS pathway and stress induction of HSP regulation RO:HOM0000017 wikipathways WP902 FAS pathway and stress induction of HSP regulation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1141 Hedgehog signaling pathway RO:HOM0000017 wikipathways WP116 Hedgehog signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1141 Hedgehog signaling pathway RO:HOM0000017 wikipathways WP4249 Hedgehog signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1141 Hedgehog signaling pathway RO:HOM0000017 wikipathways WP492 Hedgehog signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1141 Hedgehog signaling pathway RO:HOM0000017 wikipathways WP574 Hedgehog signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1141 Hedgehog signaling pathway RO:HOM0000017 wikipathways WP790 Hedgehog signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1141 Hedgehog signaling pathway RO:HOM0000017 wikipathways WP905 Hedgehog signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1142 mRNA Processing RO:HOM0000017 wikipathways WP1229 mRNA processing lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1142 mRNA Processing RO:HOM0000017 wikipathways WP123 mRNA processing lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1142 mRNA Processing RO:HOM0000017 wikipathways WP142 mRNA processing lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1142 mRNA Processing RO:HOM0000017 wikipathways WP310 mRNA processing lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1142 mRNA Processing RO:HOM0000017 wikipathways WP411 mRNA processing lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1142 mRNA Processing RO:HOM0000017 wikipathways WP467 mRNA processing lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1142 mRNA Processing RO:HOM0000017 wikipathways WP529 mRNA processing lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1142 mRNA Processing RO:HOM0000017 wikipathways WP793 mRNA processing lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1142 mRNA Processing RO:HOM0000017 wikipathways WP906 mRNA Processing lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1148 Notch signaling pathway RO:HOM0000017 wikipathways WP1232 Notch signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1148 Notch signaling pathway RO:HOM0000017 wikipathways WP208 Notch signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1148 Notch signaling pathway RO:HOM0000017 wikipathways WP29 Notch signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1148 Notch signaling pathway RO:HOM0000017 wikipathways WP517 Notch signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1148 Notch signaling pathway RO:HOM0000017 wikipathways WP798 Notch signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1148 Notch signaling pathway RO:HOM0000017 wikipathways WP912 Notch signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1151 ACE inhibitor pathway RO:HOM0000017 wikipathways WP396 ACE inhibitor pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1151 ACE inhibitor pathway RO:HOM0000017 wikipathways WP468 ACE inhibitor pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1151 ACE inhibitor pathway RO:HOM0000017 wikipathways WP554 ACE inhibitor pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1151 ACE inhibitor pathway RO:HOM0000017 wikipathways WP557 ACE inhibitor pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1151 ACE inhibitor pathway RO:HOM0000017 wikipathways WP801 ACE inhibitor pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1151 ACE inhibitor pathway RO:HOM0000017 wikipathways WP915 ACE inhibitor pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1152 Mismatch repair RO:HOM0000017 wikipathways WP1233 Mismatch repair lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1152 Mismatch repair RO:HOM0000017 wikipathways WP1257 Mismatch repair lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1152 Mismatch repair RO:HOM0000017 wikipathways WP1295 Mismatch repair lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1152 Mismatch repair RO:HOM0000017 wikipathways WP802 Mismatch repair lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1153 Homologous recombination RO:HOM0000017 wikipathways WP1205 Homologous recombination lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1153 Homologous recombination RO:HOM0000017 wikipathways WP1258 Homologous recombination lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1153 Homologous recombination RO:HOM0000017 wikipathways WP1296 Homologous recombination lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1153 Homologous recombination RO:HOM0000017 wikipathways WP186 Homologous recombination lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1153 Homologous recombination RO:HOM0000017 wikipathways WP804 Homologous recombination lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1153 Homologous recombination RO:HOM0000017 wikipathways WP917 Homologous recombination lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1154 p38 MAPK signaling pathway RO:HOM0000017 wikipathways WP1363 p38 mapk signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1154 p38 MAPK signaling pathway RO:HOM0000017 wikipathways WP294 p38 Mapk signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1154 p38 MAPK signaling pathway RO:HOM0000017 wikipathways WP350 p38 Mapk signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1154 p38 MAPK signaling pathway RO:HOM0000017 wikipathways WP400 p38 MAPK signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1154 p38 MAPK signaling pathway RO:HOM0000017 wikipathways WP803 p38 MAPK signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1154 p38 MAPK signaling pathway RO:HOM0000017 wikipathways WP918 p38 MAPK signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1157 Statin pathway RO:HOM0000017 wikipathways WP145 Statin pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1157 Statin pathway RO:HOM0000017 wikipathways WP921 Statin pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1159 Calcium regulation in cardiac cells RO:HOM0000017 wikipathways WP1365 Calcium regulation in cardiac cells lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1159 Calcium regulation in cardiac cells RO:HOM0000017 wikipathways WP326 Calcium regulation in cardiac cells lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1159 Calcium regulation in cardiac cells RO:HOM0000017 wikipathways WP536 Calcium regulation in cardiac cells lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1159 Calcium regulation in cardiac cells RO:HOM0000017 wikipathways WP553 Calcium regulation in cardiac cells lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1159 Calcium regulation in cardiac cells RO:HOM0000017 wikipathways WP808 Calcium regulation in cardiac cells lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1159 Calcium regulation in cardiac cells RO:HOM0000017 wikipathways WP923 Calcium regulation in cardiac cells lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP116 Hedgehog signaling pathway RO:HOM0000017 wikipathways WP4249 Hedgehog signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP116 Hedgehog signaling pathway RO:HOM0000017 wikipathways WP492 Hedgehog signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP116 Hedgehog signaling pathway RO:HOM0000017 wikipathways WP574 Hedgehog signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP116 Hedgehog signaling pathway RO:HOM0000017 wikipathways WP790 Hedgehog signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP116 Hedgehog signaling pathway RO:HOM0000017 wikipathways WP905 Hedgehog signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1162 Hepatocyte growth factor receptor signaling RO:HOM0000017 wikipathways WP193 Hepatocyte growth factor receptor signaling lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1162 Hepatocyte growth factor receptor signaling RO:HOM0000017 wikipathways WP313 Hepatocyte growth factor receptor signaling lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1162 Hepatocyte growth factor receptor signaling RO:HOM0000017 wikipathways WP444 Hepatocyte growth factor receptor signaling lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1162 Hepatocyte growth factor receptor signaling RO:HOM0000017 wikipathways WP810 Hepatocyte growth factor receptor signaling lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1162 Hepatocyte growth factor receptor signaling RO:HOM0000017 wikipathways WP927 Hepatocyte growth factor receptor signaling lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1162 Hepatocyte growth factor receptor signaling RO:HOM0000017 wikipathways WP94 Hepatocyte growth factor receptor signaling lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1165 G protein signaling pathways RO:HOM0000017 wikipathways WP1371 G protein signaling pathways lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1165 G protein signaling pathways RO:HOM0000017 wikipathways WP232 G protein signaling pathways lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1165 G protein signaling pathways RO:HOM0000017 wikipathways WP35 G protein signaling pathways lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1165 G protein signaling pathways RO:HOM0000017 wikipathways WP73 G protein signaling pathways lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1165 G protein signaling pathways RO:HOM0000017 wikipathways WP813 G protein signaling pathways lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1165 G protein signaling pathways RO:HOM0000017 wikipathways WP931 G protein signaling pathways lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1168 Id signaling pathway RO:HOM0000017 wikipathways WP1374 Id signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1168 Id signaling pathway RO:HOM0000017 wikipathways WP397 Id signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1168 Id signaling pathway RO:HOM0000017 wikipathways WP512 Id signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1168 Id signaling pathway RO:HOM0000017 wikipathways WP53 ID signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1168 Id signaling pathway RO:HOM0000017 wikipathways WP934 Id signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP117 GPCRs, other RO:HOM0000017 wikipathways WP409 GPCRs, other lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP117 GPCRs, other RO:HOM0000017 wikipathways WP41 GPCRs, other lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP117 GPCRs, other RO:HOM0000017 wikipathways WP990 GPCRs, other lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1170 Polyol pathway RO:HOM0000017 wikipathways WP1218 Polyol pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1170 Polyol pathway RO:HOM0000017 wikipathways WP1236 Polyol pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1170 Polyol pathway RO:HOM0000017 wikipathways WP1265 Polyol pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1170 Polyol pathway RO:HOM0000017 wikipathways WP1303 Polyol pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1170 Polyol pathway RO:HOM0000017 wikipathways WP1375 Polyol pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1170 Polyol pathway RO:HOM0000017 wikipathways WP690 Polyol pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1170 Polyol pathway RO:HOM0000017 wikipathways WP936 Polyol pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1176 Matrix metalloproteinases RO:HOM0000017 wikipathways WP129 Matrix metalloproteinases lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1176 Matrix metalloproteinases RO:HOM0000017 wikipathways WP278 Matrix metalloproteinases lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1176 Matrix metalloproteinases RO:HOM0000017 wikipathways WP441 Matrix metalloproteinases lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1176 Matrix metalloproteinases RO:HOM0000017 wikipathways WP823 Matrix metalloproteinases lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1176 Matrix metalloproteinases RO:HOM0000017 wikipathways WP942 Matrix metalloproteinases lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1179 G13 signaling pathway RO:HOM0000017 wikipathways WP1381 G13 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1179 G13 signaling pathway RO:HOM0000017 wikipathways WP298 G13 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1179 G13 signaling pathway RO:HOM0000017 wikipathways WP520 G13 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1179 G13 signaling pathway RO:HOM0000017 wikipathways WP524 G13 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1179 G13 signaling pathway RO:HOM0000017 wikipathways WP826 G13 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1179 G13 signaling pathway RO:HOM0000017 wikipathways WP945 G13 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1180 Delta-Notch signaling pathway RO:HOM0000017 wikipathways WP1382 Delta-Notch signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1180 Delta-Notch signaling pathway RO:HOM0000017 wikipathways WP199 Delta-Notch signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1180 Delta-Notch signaling pathway RO:HOM0000017 wikipathways WP265 Delta-Notch signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1180 Delta-Notch signaling pathway RO:HOM0000017 wikipathways WP827 Delta-Notch signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1180 Delta-Notch signaling pathway RO:HOM0000017 wikipathways WP946 Delta-Notch signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1182 Eukaryotic transcription initiation RO:HOM0000017 wikipathways WP1238 Eukaryotic transcription initiation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1182 Eukaryotic transcription initiation RO:HOM0000017 wikipathways WP177 Eukaryotic transcription initiation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1182 Eukaryotic transcription initiation RO:HOM0000017 wikipathways WP405 Eukaryotic transcription initiation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1182 Eukaryotic transcription initiation RO:HOM0000017 wikipathways WP425 Eukaryotic transcription initiation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1182 Eukaryotic transcription initiation RO:HOM0000017 wikipathways WP491 Eukaryotic transcription initiation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1182 Eukaryotic transcription initiation RO:HOM0000017 wikipathways WP518 Eukaryotic transcription initiation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1182 Eukaryotic transcription initiation RO:HOM0000017 wikipathways WP567 Eukaryotic transcription initiation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1182 Eukaryotic transcription initiation RO:HOM0000017 wikipathways WP830 Eukaryotic transcription initiation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1182 Eukaryotic transcription initiation RO:HOM0000017 wikipathways WP948 Eukaryotic transcription initiation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1184 Nuclear receptors RO:HOM0000017 wikipathways WP170 Nuclear receptors lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1184 Nuclear receptors RO:HOM0000017 wikipathways WP217 Nuclear receptors lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1184 Nuclear receptors RO:HOM0000017 wikipathways WP509 Nuclear Receptors lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1184 Nuclear receptors RO:HOM0000017 wikipathways WP831 Nuclear receptors lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1184 Nuclear receptors RO:HOM0000017 wikipathways WP950 Nuclear receptors lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1185 Integrin-mediated cell adhesion RO:HOM0000017 wikipathways WP1386 Integrin-mediated cell adhesion lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1185 Integrin-mediated cell adhesion RO:HOM0000017 wikipathways WP185 Integrin-mediated cell adhesion lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1185 Integrin-mediated cell adhesion RO:HOM0000017 wikipathways WP6 Integrin-mediated cell adhesion lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1185 Integrin-mediated cell adhesion RO:HOM0000017 wikipathways WP74 Integrin-mediated cell adhesion lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1185 Integrin-mediated cell adhesion RO:HOM0000017 wikipathways WP832 Integrin-mediated cell adhesion lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1185 Integrin-mediated cell adhesion RO:HOM0000017 wikipathways WP951 Integrin-mediated cell adhesion lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1186 Cholesterol biosynthesis RO:HOM0000017 wikipathways WP132 Cholesterol biosynthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1186 Cholesterol biosynthesis RO:HOM0000017 wikipathways WP1387 Cholesterol biosynthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1186 Cholesterol biosynthesis RO:HOM0000017 wikipathways WP461 Cholesterol biosynthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1186 Cholesterol biosynthesis RO:HOM0000017 wikipathways WP833 Cholesterol biosynthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1186 Cholesterol biosynthesis RO:HOM0000017 wikipathways WP952 Cholesterol biosynthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1189 Glycogen metabolism RO:HOM0000017 wikipathways WP1388 Glycogen metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1189 Glycogen metabolism RO:HOM0000017 wikipathways WP160 Glycogen metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1189 Glycogen metabolism RO:HOM0000017 wikipathways WP317 Glycogen metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1189 Glycogen metabolism RO:HOM0000017 wikipathways WP436 Glycogen metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1189 Glycogen metabolism RO:HOM0000017 wikipathways WP835 Glycogen metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1189 Glycogen metabolism RO:HOM0000017 wikipathways WP955 Glycogen metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1193 Monoamine GPCRs RO:HOM0000017 wikipathways WP1389 Monoamine GPCRs lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1193 Monoamine GPCRs RO:HOM0000017 wikipathways WP276 Monoamine GPCRs lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1193 Monoamine GPCRs RO:HOM0000017 wikipathways WP570 Monoamine GPCRs lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1193 Monoamine GPCRs RO:HOM0000017 wikipathways WP58 Monoamine GPCRs lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1193 Monoamine GPCRs RO:HOM0000017 wikipathways WP839 Monoamine GPCRs lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1193 Monoamine GPCRs RO:HOM0000017 wikipathways WP957 Monoamine GPCRs lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1195 G1 to S cell cycle control RO:HOM0000017 wikipathways WP348 G1 to S cell cycle control lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1195 G1 to S cell cycle control RO:HOM0000017 wikipathways WP413 G1 to S cell cycle control lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1195 G1 to S cell cycle control RO:HOM0000017 wikipathways WP445 G1 to S cell cycle control lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1195 G1 to S cell cycle control RO:HOM0000017 wikipathways WP45 G1 to S cell cycle control lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1195 G1 to S cell cycle control RO:HOM0000017 wikipathways WP840 G1 to S cell cycle control lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1195 G1 to S cell cycle control RO:HOM0000017 wikipathways WP959 G1 to S cell cycle control lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1197 Irinotecan pathway RO:HOM0000017 wikipathways WP124 Irinotecan pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1197 Irinotecan pathway RO:HOM0000017 wikipathways WP229 Irinotecan pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1197 Irinotecan pathway RO:HOM0000017 wikipathways WP475 Irinotecan pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1197 Irinotecan pathway RO:HOM0000017 wikipathways WP961 Irinotecan pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1198 S1P receptor signal transduction RO:HOM0000017 wikipathways WP1312 S1P receptor signal transduction lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1198 S1P receptor signal transduction RO:HOM0000017 wikipathways WP1391 S1P receptor signal transduction lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1198 S1P receptor signal transduction RO:HOM0000017 wikipathways WP26 S1P receptor signal transduction lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP12 Osteoclast signaling RO:HOM0000017 wikipathways WP1342 Osteoclast signaling lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP12 Osteoclast signaling RO:HOM0000017 wikipathways WP454 Osteoclast signaling lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP12 Osteoclast signaling RO:HOM0000017 wikipathways WP890 Osteoclast signaling lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1200 Cell cycle RO:HOM0000017 wikipathways WP1393 Cell cycle lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1200 Cell cycle RO:HOM0000017 wikipathways WP179 Cell cycle lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1200 Cell cycle RO:HOM0000017 wikipathways WP844 Cell cycle lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1200 Cell cycle RO:HOM0000017 wikipathways WP964 Cell cycle lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1201 Non-homologous end joining RO:HOM0000017 wikipathways WP1242 Non-homologous end joining lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1201 Non-homologous end joining RO:HOM0000017 wikipathways WP1277 Non-homologous end joining lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1201 Non-homologous end joining RO:HOM0000017 wikipathways WP438 Non-homologous end joining lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1201 Non-homologous end joining RO:HOM0000017 wikipathways WP979 Non-homologous end joining lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1203 One-carbon metabolism RO:HOM0000017 wikipathways WP1230 One-carbon metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1203 One-carbon metabolism RO:HOM0000017 wikipathways WP1292 One-carbon metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1203 One-carbon metabolism RO:HOM0000017 wikipathways WP1355 One-carbon metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1203 One-carbon metabolism RO:HOM0000017 wikipathways WP241 One-carbon metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1203 One-carbon metabolism RO:HOM0000017 wikipathways WP435 One-carbon metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1203 One-carbon metabolism RO:HOM0000017 wikipathways WP796 One-carbon metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1203 One-carbon metabolism RO:HOM0000017 wikipathways WP909 One-carbon metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1204 DNA mismatch repair RO:HOM0000017 wikipathways WP531 DNA mismatch repair lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1205 Homologous recombination RO:HOM0000017 wikipathways WP1258 Homologous recombination lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1205 Homologous recombination RO:HOM0000017 wikipathways WP1296 Homologous recombination lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1205 Homologous recombination RO:HOM0000017 wikipathways WP186 Homologous recombination lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1205 Homologous recombination RO:HOM0000017 wikipathways WP804 Homologous recombination lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1205 Homologous recombination RO:HOM0000017 wikipathways WP917 Homologous recombination lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1211 Arylamine metabolism RO:HOM0000017 wikipathways WP694 Arylamine metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1211 Arylamine metabolism RO:HOM0000017 wikipathways WP993 Arylamine metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1212 Metapathway biotransformation RO:HOM0000017 wikipathways WP1251 Metapathway biotransformation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1212 Metapathway biotransformation RO:HOM0000017 wikipathways WP1286 Metapathway biotransformation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1213 Phase I biotransformations, non P450 RO:HOM0000017 wikipathways WP1291 Phase I biotransformations, non P450 lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1213 Phase I biotransformations, non P450 RO:HOM0000017 wikipathways WP136 Phase I biotransformations, non P450 lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1217 Aflatoxin B1 metabolism RO:HOM0000017 wikipathways WP1262 Aflatoxin B1 metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1217 Aflatoxin B1 metabolism RO:HOM0000017 wikipathways WP1300 Aflatoxin B1 metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1217 Aflatoxin B1 metabolism RO:HOM0000017 wikipathways WP3247 Aflatoxin B1 metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1217 Aflatoxin B1 metabolism RO:HOM0000017 wikipathways WP699 Aflatoxin B1 metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1217 Aflatoxin B1 metabolism RO:HOM0000017 wikipathways WP925 Aflatoxin B1 metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1218 Polyol pathway RO:HOM0000017 wikipathways WP1236 Polyol pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1218 Polyol pathway RO:HOM0000017 wikipathways WP1265 Polyol pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1218 Polyol pathway RO:HOM0000017 wikipathways WP1303 Polyol pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1218 Polyol pathway RO:HOM0000017 wikipathways WP1375 Polyol pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1218 Polyol pathway RO:HOM0000017 wikipathways WP690 Polyol pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1218 Polyol pathway RO:HOM0000017 wikipathways WP936 Polyol pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1221 Heme biosynthesis RO:HOM0000017 wikipathways WP1314 Heme biosynthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1221 Heme biosynthesis RO:HOM0000017 wikipathways WP18 Heme biosynthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1221 Heme biosynthesis RO:HOM0000017 wikipathways WP269 Heme biosynthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1221 Heme biosynthesis RO:HOM0000017 wikipathways WP561 Heme biosynthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1221 Heme biosynthesis RO:HOM0000017 wikipathways WP848 Heme biosynthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1221 Heme biosynthesis RO:HOM0000017 wikipathways WP86 Heme biosynthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1221 Heme biosynthesis RO:HOM0000017 wikipathways WP967 Heme biosynthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1223 DNA replication RO:HOM0000017 wikipathways WP13 DNA replication lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1223 DNA replication RO:HOM0000017 wikipathways WP150 DNA replication lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1223 DNA replication RO:HOM0000017 wikipathways WP192 DNA replication lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1223 DNA replication RO:HOM0000017 wikipathways WP451 DNA replication lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1223 DNA replication RO:HOM0000017 wikipathways WP466 DNA replication lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1223 DNA replication RO:HOM0000017 wikipathways WP484 DNA replication lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1223 DNA replication RO:HOM0000017 wikipathways WP565 DNA replication lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1223 DNA replication RO:HOM0000017 wikipathways WP757 DNA replication lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1223 DNA replication RO:HOM0000017 wikipathways WP865 DNA replication lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1223 DNA replication RO:HOM0000017 wikipathways WP983 DNA replication lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1224 EBV LMP1 signaling RO:HOM0000017 wikipathways WP1243 EBV LMP1 signaling lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1224 EBV LMP1 signaling RO:HOM0000017 wikipathways WP1278 EBV LMP1 signaling lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1224 EBV LMP1 signaling RO:HOM0000017 wikipathways WP984 EBV LMP1 signaling lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1227 TCA cycle RO:HOM0000017 wikipathways WP19 TCA cycle lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1227 TCA cycle RO:HOM0000017 wikipathways WP347 TCA cycle lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1227 TCA cycle RO:HOM0000017 wikipathways WP434 TCA cycle lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1227 TCA cycle RO:HOM0000017 wikipathways WP490 TCA cycle lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1227 TCA cycle RO:HOM0000017 wikipathways WP76 TCA cycle lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1227 TCA cycle RO:HOM0000017 wikipathways WP999 TCA cycle lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1229 mRNA processing RO:HOM0000017 wikipathways WP123 mRNA processing lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1229 mRNA processing RO:HOM0000017 wikipathways WP142 mRNA processing lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1229 mRNA processing RO:HOM0000017 wikipathways WP310 mRNA processing lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1229 mRNA processing RO:HOM0000017 wikipathways WP411 mRNA processing lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1229 mRNA processing RO:HOM0000017 wikipathways WP467 mRNA processing lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1229 mRNA processing RO:HOM0000017 wikipathways WP529 mRNA processing lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1229 mRNA processing RO:HOM0000017 wikipathways WP793 mRNA processing lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1229 mRNA processing RO:HOM0000017 wikipathways WP906 mRNA Processing lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP123 mRNA processing RO:HOM0000017 wikipathways WP142 mRNA processing lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP123 mRNA processing RO:HOM0000017 wikipathways WP310 mRNA processing lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP123 mRNA processing RO:HOM0000017 wikipathways WP411 mRNA processing lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP123 mRNA processing RO:HOM0000017 wikipathways WP467 mRNA processing lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP123 mRNA processing RO:HOM0000017 wikipathways WP529 mRNA processing lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP123 mRNA processing RO:HOM0000017 wikipathways WP793 mRNA processing lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP123 mRNA processing RO:HOM0000017 wikipathways WP906 mRNA Processing lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1230 One-carbon metabolism RO:HOM0000017 wikipathways WP1292 One-carbon metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1230 One-carbon metabolism RO:HOM0000017 wikipathways WP1355 One-carbon metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1230 One-carbon metabolism RO:HOM0000017 wikipathways WP241 One-carbon metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1230 One-carbon metabolism RO:HOM0000017 wikipathways WP435 One-carbon metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1230 One-carbon metabolism RO:HOM0000017 wikipathways WP796 One-carbon metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1230 One-carbon metabolism RO:HOM0000017 wikipathways WP909 One-carbon metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1231 Pentose phosphate pathway RO:HOM0000017 wikipathways WP282 Pentose phosphate pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1231 Pentose phosphate pathway RO:HOM0000017 wikipathways WP312 Pentose phosphate pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1231 Pentose phosphate pathway RO:HOM0000017 wikipathways WP369 Pentose phosphate pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1231 Pentose phosphate pathway RO:HOM0000017 wikipathways WP63 Pentose phosphate pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1232 Notch signaling pathway RO:HOM0000017 wikipathways WP208 Notch signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1232 Notch signaling pathway RO:HOM0000017 wikipathways WP29 Notch signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1232 Notch signaling pathway RO:HOM0000017 wikipathways WP517 Notch signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1232 Notch signaling pathway RO:HOM0000017 wikipathways WP798 Notch signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1232 Notch signaling pathway RO:HOM0000017 wikipathways WP912 Notch signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1233 Mismatch repair RO:HOM0000017 wikipathways WP1257 Mismatch repair lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1233 Mismatch repair RO:HOM0000017 wikipathways WP1295 Mismatch repair lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1233 Mismatch repair RO:HOM0000017 wikipathways WP802 Mismatch repair lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1236 Polyol pathway RO:HOM0000017 wikipathways WP1265 Polyol pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1236 Polyol pathway RO:HOM0000017 wikipathways WP1303 Polyol pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1236 Polyol pathway RO:HOM0000017 wikipathways WP1375 Polyol pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1236 Polyol pathway RO:HOM0000017 wikipathways WP690 Polyol pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1236 Polyol pathway RO:HOM0000017 wikipathways WP936 Polyol pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1238 Eukaryotic transcription initiation RO:HOM0000017 wikipathways WP177 Eukaryotic transcription initiation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1238 Eukaryotic transcription initiation RO:HOM0000017 wikipathways WP405 Eukaryotic transcription initiation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1238 Eukaryotic transcription initiation RO:HOM0000017 wikipathways WP425 Eukaryotic transcription initiation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1238 Eukaryotic transcription initiation RO:HOM0000017 wikipathways WP491 Eukaryotic transcription initiation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1238 Eukaryotic transcription initiation RO:HOM0000017 wikipathways WP518 Eukaryotic transcription initiation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1238 Eukaryotic transcription initiation RO:HOM0000017 wikipathways WP567 Eukaryotic transcription initiation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1238 Eukaryotic transcription initiation RO:HOM0000017 wikipathways WP830 Eukaryotic transcription initiation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1238 Eukaryotic transcription initiation RO:HOM0000017 wikipathways WP948 Eukaryotic transcription initiation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1239 Cytoplasmic ribosomal proteins RO:HOM0000017 wikipathways WP163 Cytoplasmic ribosomal proteins lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1239 Cytoplasmic ribosomal proteins RO:HOM0000017 wikipathways WP210 Cytoplasmic ribosomal proteins lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1239 Cytoplasmic ribosomal proteins RO:HOM0000017 wikipathways WP30 Cytoplasmic ribosomal proteins lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1239 Cytoplasmic ribosomal proteins RO:HOM0000017 wikipathways WP324 Cytoplasmic ribosomal proteins lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1239 Cytoplasmic ribosomal proteins RO:HOM0000017 wikipathways WP477 Cytoplasmic ribosomal proteins lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1239 Cytoplasmic ribosomal proteins RO:HOM0000017 wikipathways WP540 Cytoplasmic ribosomal proteins lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP124 Irinotecan pathway RO:HOM0000017 wikipathways WP229 Irinotecan pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP124 Irinotecan pathway RO:HOM0000017 wikipathways WP475 Irinotecan pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP124 Irinotecan pathway RO:HOM0000017 wikipathways WP961 Irinotecan pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1240 Proteasome Degradation RO:HOM0000017 wikipathways WP158 Proteasome degradation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1240 Proteasome Degradation RO:HOM0000017 wikipathways WP183 Proteasome degradation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1240 Proteasome Degradation RO:HOM0000017 wikipathways WP281 Proteasome degradation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1240 Proteasome Degradation RO:HOM0000017 wikipathways WP302 Proteasome degradation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1240 Proteasome Degradation RO:HOM0000017 wikipathways WP470 Proteasome degradation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1240 Proteasome Degradation RO:HOM0000017 wikipathways WP519 Proteasome degradation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1241 Glucuronidation RO:HOM0000017 wikipathways WP1276 Glucuronidation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1241 Glucuronidation RO:HOM0000017 wikipathways WP3210 Glucuronidation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1241 Glucuronidation RO:HOM0000017 wikipathways WP698 Glucuronidation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1242 Non-homologous end joining RO:HOM0000017 wikipathways WP1277 Non-homologous end joining lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1242 Non-homologous end joining RO:HOM0000017 wikipathways WP438 Non-homologous end joining lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1242 Non-homologous end joining RO:HOM0000017 wikipathways WP979 Non-homologous end joining lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1243 EBV LMP1 signaling RO:HOM0000017 wikipathways WP1278 EBV LMP1 signaling lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1243 EBV LMP1 signaling RO:HOM0000017 wikipathways WP984 EBV LMP1 signaling lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1244 Estrogen signaling RO:HOM0000017 wikipathways WP1279 Estrogen signaling lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1244 Estrogen signaling RO:HOM0000017 wikipathways WP1330 Estrogen signaling lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1245 Transcriptional activation by Nfe2l2 in response to phytochemicals RO:HOM0000017 wikipathways WP1280 Transcriptional activation by Nfe2l2 in response to phytochemicals lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1245 Transcriptional activation by Nfe2l2 in response to phytochemicals RO:HOM0000017 wikipathways WP1332 Transcriptional activation by nfe2l2 in response to phytochemicals lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1246 Hypothetical network for drug addiction RO:HOM0000017 wikipathways WP1281 Hypothetical network for drug addiction lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1246 Hypothetical network for drug addiction RO:HOM0000017 wikipathways WP1333 Hypothetical network for drug addiction lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1247 Methylation RO:HOM0000017 wikipathways WP1282 Methylation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1248 Oxidative phosphorylation RO:HOM0000017 wikipathways WP1283 Oxidative phosphorylation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1248 Oxidative phosphorylation RO:HOM0000017 wikipathways WP1335 Oxidative phosphorylation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1248 Oxidative phosphorylation RO:HOM0000017 wikipathways WP623 Oxidative phosphorylation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1248 Oxidative phosphorylation RO:HOM0000017 wikipathways WP994 Oxidative phosphorylation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1249 EPO receptor signaling RO:HOM0000017 wikipathways WP1284 EPO receptor signaling lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1249 EPO receptor signaling RO:HOM0000017 wikipathways WP1336 EPO receptor signaling lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1249 EPO receptor signaling RO:HOM0000017 wikipathways WP581 EPO receptor signaling lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1249 EPO receptor signaling RO:HOM0000017 wikipathways WP768 EPO receptor signaling lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1249 EPO receptor signaling RO:HOM0000017 wikipathways WP878 EPO receptor signaling lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1249 EPO receptor signaling RO:HOM0000017 wikipathways WP996 EPO receptor signaling lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP125 Biogenic amine synthesis RO:HOM0000017 wikipathways WP154 Biogenic amine synthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP125 Biogenic amine synthesis RO:HOM0000017 wikipathways WP3168 Biogenic amine synthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP125 Biogenic amine synthesis RO:HOM0000017 wikipathways WP323 Biogenic amine synthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP125 Biogenic amine synthesis RO:HOM0000017 wikipathways WP522 Biogenic amine synthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP125 Biogenic amine synthesis RO:HOM0000017 wikipathways WP550 Biogenic amine synthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1250 Arachidonate epoxygenase / epoxide hydrolase RO:HOM0000017 wikipathways WP1285 Arachidonate epoxygenase / epoxide hydrolase lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1250 Arachidonate epoxygenase / epoxide hydrolase RO:HOM0000017 wikipathways WP678 Arachidonate epoxygenase / epoxide hydrolase lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1251 Metapathway biotransformation RO:HOM0000017 wikipathways WP1286 Metapathway biotransformation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1252 Amino acid conjugation of benzoic acid RO:HOM0000017 wikipathways WP1287 Amino acid conjugation of benzoic acid lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1252 Amino acid conjugation of benzoic acid RO:HOM0000017 wikipathways WP1577 Amino acid conjugation of benzoic acid lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1252 Amino acid conjugation of benzoic acid RO:HOM0000017 wikipathways WP521 Amino acid conjugation of benzoic acid lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1253 Type II interferon signaling (IFNG) RO:HOM0000017 wikipathways WP1289 Type II interferon signaling (IFNG) lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1253 Type II interferon signaling (IFNG) RO:HOM0000017 wikipathways WP619 Type II interferon signaling (IFNG) lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1254 Apoptosis RO:HOM0000017 wikipathways WP1290 Apoptosis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1254 Apoptosis RO:HOM0000017 wikipathways WP1351 Apoptosis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1254 Apoptosis RO:HOM0000017 wikipathways WP254 Apoptosis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1254 Apoptosis RO:HOM0000017 wikipathways WP787 Apoptosis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1256 Nod-like receptor (NLR) signaling pathway RO:HOM0000017 wikipathways WP1294 Nod-like receptor (NLR) signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1256 Nod-like receptor (NLR) signaling pathway RO:HOM0000017 wikipathways WP1360 Nod-like receptor (NLR) signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1256 Nod-like receptor (NLR) signaling pathway RO:HOM0000017 wikipathways WP288 Nod-like receptor (NLR) signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1256 Nod-like receptor (NLR) signaling pathway RO:HOM0000017 wikipathways WP799 Nod-like receptor (NLR) signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1256 Nod-like receptor (NLR) signaling pathway RO:HOM0000017 wikipathways WP914 Nod-like receptor (NLR) signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1257 Mismatch repair RO:HOM0000017 wikipathways WP1295 Mismatch repair lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1257 Mismatch repair RO:HOM0000017 wikipathways WP802 Mismatch repair lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1258 Homologous recombination RO:HOM0000017 wikipathways WP1296 Homologous recombination lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1258 Homologous recombination RO:HOM0000017 wikipathways WP186 Homologous recombination lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1258 Homologous recombination RO:HOM0000017 wikipathways WP804 Homologous recombination lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1258 Homologous recombination RO:HOM0000017 wikipathways WP917 Homologous recombination lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1259 Retinol metabolism RO:HOM0000017 wikipathways WP1297 Retinol metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1259 Retinol metabolism RO:HOM0000017 wikipathways WP805 Retinol metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP126 Fatty acid beta-oxidation 1 RO:HOM0000017 wikipathways WP39 Fatty acid beta-oxidation 1 lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1261 ErbB signaling pathway RO:HOM0000017 wikipathways WP1299 ErbB signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1261 ErbB signaling pathway RO:HOM0000017 wikipathways WP1366 ErbB signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1261 ErbB signaling pathway RO:HOM0000017 wikipathways WP673 ErbB signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1262 Aflatoxin B1 metabolism RO:HOM0000017 wikipathways WP1300 Aflatoxin B1 metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1262 Aflatoxin B1 metabolism RO:HOM0000017 wikipathways WP3247 Aflatoxin B1 metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1262 Aflatoxin B1 metabolism RO:HOM0000017 wikipathways WP699 Aflatoxin B1 metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1262 Aflatoxin B1 metabolism RO:HOM0000017 wikipathways WP925 Aflatoxin B1 metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1263 Mitochondrial gene expression RO:HOM0000017 wikipathways WP1301 Mitochondrial gene expression lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1263 Mitochondrial gene expression RO:HOM0000017 wikipathways WP3134 Mitochondrial gene expression lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1263 Mitochondrial gene expression RO:HOM0000017 wikipathways WP391 Mitochondrial gene expression lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1264 Estrogen metabolism RO:HOM0000017 wikipathways WP1302 Estrogen metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1264 Estrogen metabolism RO:HOM0000017 wikipathways WP697 Estrogen metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1265 Polyol pathway RO:HOM0000017 wikipathways WP1303 Polyol pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1265 Polyol pathway RO:HOM0000017 wikipathways WP1375 Polyol pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1265 Polyol pathway RO:HOM0000017 wikipathways WP690 Polyol pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1265 Polyol pathway RO:HOM0000017 wikipathways WP936 Polyol pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1266 SIDS susceptibility pathways RO:HOM0000017 wikipathways WP3130 SIDS susceptibility pathways lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1269 Fatty acid beta-oxidation RO:HOM0000017 wikipathways WP1307 Fatty acid beta-oxidation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1269 Fatty acid beta-oxidation RO:HOM0000017 wikipathways WP143 Fatty acid beta-oxidation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1269 Fatty acid beta-oxidation RO:HOM0000017 wikipathways WP506 Fatty acid beta-oxidation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP127 IL-5 signaling pathway RO:HOM0000017 wikipathways WP1315 IL-5 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP127 IL-5 signaling pathway RO:HOM0000017 wikipathways WP151 IL-5 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP127 IL-5 signaling pathway RO:HOM0000017 wikipathways WP44 IL-5 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP127 IL-5 signaling pathway RO:HOM0000017 wikipathways WP968 IL-5 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1270 Endochondral ossification RO:HOM0000017 wikipathways WP1308 Endochondral ossification lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1270 Endochondral ossification RO:HOM0000017 wikipathways WP1383 Endochondral ossification lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1270 Endochondral ossification RO:HOM0000017 wikipathways WP474 Endochondral ossification lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1272 Selenium micronutrient network RO:HOM0000017 wikipathways WP15 Selenium micronutrient network lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1272 Selenium micronutrient network RO:HOM0000017 wikipathways WP3257 Selenium micronutrient network lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1273 Folic acid network RO:HOM0000017 wikipathways WP1311 Folic acid network lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1274 Oxidation by cytochrome P450 RO:HOM0000017 wikipathways WP43 Oxidation by cytochrome P450 lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1276 Glucuronidation RO:HOM0000017 wikipathways WP3210 Glucuronidation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1276 Glucuronidation RO:HOM0000017 wikipathways WP698 Glucuronidation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1277 Non-homologous end joining RO:HOM0000017 wikipathways WP438 Non-homologous end joining lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1277 Non-homologous end joining RO:HOM0000017 wikipathways WP979 Non-homologous end joining lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1278 EBV LMP1 signaling RO:HOM0000017 wikipathways WP984 EBV LMP1 signaling lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1279 Estrogen signaling RO:HOM0000017 wikipathways WP1330 Estrogen signaling lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1280 Transcriptional activation by Nfe2l2 in response to phytochemicals RO:HOM0000017 wikipathways WP1332 Transcriptional activation by nfe2l2 in response to phytochemicals lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1281 Hypothetical network for drug addiction RO:HOM0000017 wikipathways WP1333 Hypothetical network for drug addiction lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1283 Oxidative phosphorylation RO:HOM0000017 wikipathways WP1335 Oxidative phosphorylation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1283 Oxidative phosphorylation RO:HOM0000017 wikipathways WP623 Oxidative phosphorylation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1283 Oxidative phosphorylation RO:HOM0000017 wikipathways WP994 Oxidative phosphorylation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1284 EPO receptor signaling RO:HOM0000017 wikipathways WP1336 EPO receptor signaling lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1284 EPO receptor signaling RO:HOM0000017 wikipathways WP581 EPO receptor signaling lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1284 EPO receptor signaling RO:HOM0000017 wikipathways WP768 EPO receptor signaling lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1284 EPO receptor signaling RO:HOM0000017 wikipathways WP878 EPO receptor signaling lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1284 EPO receptor signaling RO:HOM0000017 wikipathways WP996 EPO receptor signaling lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1285 Arachidonate epoxygenase / epoxide hydrolase RO:HOM0000017 wikipathways WP678 Arachidonate epoxygenase / epoxide hydrolase lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1287 Amino acid conjugation of benzoic acid RO:HOM0000017 wikipathways WP1577 Amino acid conjugation of benzoic acid lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1287 Amino acid conjugation of benzoic acid RO:HOM0000017 wikipathways WP521 Amino acid conjugation of benzoic acid lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1288 Wnt signaling pathway and pluripotency RO:HOM0000017 wikipathways WP1344 Wnt Signaling Pathway and Pluripotency lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1288 Wnt signaling pathway and pluripotency RO:HOM0000017 wikipathways WP399 Wnt signaling pathway and pluripotency lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1288 Wnt signaling pathway and pluripotency RO:HOM0000017 wikipathways WP723 Wnt signaling pathway and pluripotency lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1288 Wnt signaling pathway and pluripotency RO:HOM0000017 wikipathways WP779 Wnt signaling pathway and pluripotency lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1289 Type II interferon signaling (IFNG) RO:HOM0000017 wikipathways WP619 Type II interferon signaling (IFNG) lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP129 Matrix metalloproteinases RO:HOM0000017 wikipathways WP278 Matrix metalloproteinases lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP129 Matrix metalloproteinases RO:HOM0000017 wikipathways WP441 Matrix metalloproteinases lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP129 Matrix metalloproteinases RO:HOM0000017 wikipathways WP823 Matrix metalloproteinases lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP129 Matrix metalloproteinases RO:HOM0000017 wikipathways WP942 Matrix metalloproteinases lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1290 Apoptosis RO:HOM0000017 wikipathways WP1351 Apoptosis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1290 Apoptosis RO:HOM0000017 wikipathways WP254 Apoptosis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1290 Apoptosis RO:HOM0000017 wikipathways WP787 Apoptosis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1291 Phase I biotransformations, non P450 RO:HOM0000017 wikipathways WP136 Phase I biotransformations, non P450 lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1292 One-carbon metabolism RO:HOM0000017 wikipathways WP1355 One-carbon metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1292 One-carbon metabolism RO:HOM0000017 wikipathways WP241 One-carbon metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1292 One-carbon metabolism RO:HOM0000017 wikipathways WP435 One-carbon metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1292 One-carbon metabolism RO:HOM0000017 wikipathways WP796 One-carbon metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1292 One-carbon metabolism RO:HOM0000017 wikipathways WP909 One-carbon metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1293 Selenium metabolism selenoproteins RO:HOM0000017 wikipathways WP1358 Selenium metabolism selenoproteins lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1294 Nod-like receptor (NLR) signaling pathway RO:HOM0000017 wikipathways WP1360 Nod-like receptor (NLR) signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1294 Nod-like receptor (NLR) signaling pathway RO:HOM0000017 wikipathways WP288 Nod-like receptor (NLR) signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1294 Nod-like receptor (NLR) signaling pathway RO:HOM0000017 wikipathways WP799 Nod-like receptor (NLR) signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1294 Nod-like receptor (NLR) signaling pathway RO:HOM0000017 wikipathways WP914 Nod-like receptor (NLR) signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1295 Mismatch repair RO:HOM0000017 wikipathways WP802 Mismatch repair lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1296 Homologous recombination RO:HOM0000017 wikipathways WP186 Homologous recombination lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1296 Homologous recombination RO:HOM0000017 wikipathways WP804 Homologous recombination lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1296 Homologous recombination RO:HOM0000017 wikipathways WP917 Homologous recombination lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1297 Retinol metabolism RO:HOM0000017 wikipathways WP805 Retinol metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1299 ErbB signaling pathway RO:HOM0000017 wikipathways WP1366 ErbB signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1299 ErbB signaling pathway RO:HOM0000017 wikipathways WP673 ErbB signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP13 DNA replication RO:HOM0000017 wikipathways WP150 DNA replication lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP13 DNA replication RO:HOM0000017 wikipathways WP192 DNA replication lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP13 DNA replication RO:HOM0000017 wikipathways WP451 DNA replication lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP13 DNA replication RO:HOM0000017 wikipathways WP466 DNA replication lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP13 DNA replication RO:HOM0000017 wikipathways WP484 DNA replication lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP13 DNA replication RO:HOM0000017 wikipathways WP565 DNA replication lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP13 DNA replication RO:HOM0000017 wikipathways WP757 DNA replication lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP13 DNA replication RO:HOM0000017 wikipathways WP865 DNA replication lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP13 DNA replication RO:HOM0000017 wikipathways WP983 DNA replication lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1300 Aflatoxin B1 metabolism RO:HOM0000017 wikipathways WP3247 Aflatoxin B1 metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1300 Aflatoxin B1 metabolism RO:HOM0000017 wikipathways WP699 Aflatoxin B1 metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1300 Aflatoxin B1 metabolism RO:HOM0000017 wikipathways WP925 Aflatoxin B1 metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1301 Mitochondrial gene expression RO:HOM0000017 wikipathways WP3134 Mitochondrial gene expression lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1301 Mitochondrial gene expression RO:HOM0000017 wikipathways WP391 Mitochondrial gene expression lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1302 Estrogen metabolism RO:HOM0000017 wikipathways WP697 Estrogen metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1303 Polyol pathway RO:HOM0000017 wikipathways WP1375 Polyol pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1303 Polyol pathway RO:HOM0000017 wikipathways WP690 Polyol pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1303 Polyol pathway RO:HOM0000017 wikipathways WP936 Polyol pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1307 Fatty acid beta-oxidation RO:HOM0000017 wikipathways WP143 Fatty acid beta-oxidation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1308 Endochondral ossification RO:HOM0000017 wikipathways WP1383 Endochondral ossification lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1308 Endochondral ossification RO:HOM0000017 wikipathways WP474 Endochondral ossification lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1309 Toll-like receptor signaling pathway RO:HOM0000017 wikipathways WP1384 Toll-like receptor signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1309 Toll-like receptor signaling pathway RO:HOM0000017 wikipathways WP75 Toll-like receptor signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP131 Peptide GPCRs RO:HOM0000017 wikipathways WP1338 Peptide GPCRs lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP131 Peptide GPCRs RO:HOM0000017 wikipathways WP24 Peptide GPCRs lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1312 S1P receptor signal transduction RO:HOM0000017 wikipathways WP1391 S1P receptor signal transduction lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1312 S1P receptor signal transduction RO:HOM0000017 wikipathways WP26 S1P receptor signal transduction lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1313 Insulin signaling RO:HOM0000017 wikipathways WP439 Insulin signaling lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1313 Insulin signaling RO:HOM0000017 wikipathways WP481 Insulin signaling lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1313 Insulin signaling RO:HOM0000017 wikipathways WP65 Insulin signaling lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1313 Insulin signaling RO:HOM0000017 wikipathways WP743 Insulin signaling lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1313 Insulin signaling RO:HOM0000017 wikipathways WP966 Insulin signaling lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1314 Heme biosynthesis RO:HOM0000017 wikipathways WP18 Heme biosynthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1314 Heme biosynthesis RO:HOM0000017 wikipathways WP269 Heme biosynthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1314 Heme biosynthesis RO:HOM0000017 wikipathways WP561 Heme biosynthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1314 Heme biosynthesis RO:HOM0000017 wikipathways WP848 Heme biosynthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1314 Heme biosynthesis RO:HOM0000017 wikipathways WP86 Heme biosynthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1314 Heme biosynthesis RO:HOM0000017 wikipathways WP967 Heme biosynthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1315 IL-5 signaling pathway RO:HOM0000017 wikipathways WP151 IL-5 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1315 IL-5 signaling pathway RO:HOM0000017 wikipathways WP44 IL-5 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1315 IL-5 signaling pathway RO:HOM0000017 wikipathways WP968 IL-5 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1316 Striated muscle contraction RO:HOM0000017 wikipathways WP316 Striated muscle contraction lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1316 Striated muscle contraction RO:HOM0000017 wikipathways WP969 Striated muscle contraction lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1317 Small ligand GPCRs RO:HOM0000017 wikipathways WP161 Small ligand GPCRs lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1317 Small ligand GPCRs RO:HOM0000017 wikipathways WP247 Small ligand GPCRs lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1317 Small ligand GPCRs RO:HOM0000017 wikipathways WP971 Small ligand GPCRs lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1318 Eicosanoid synthesis RO:HOM0000017 wikipathways WP167 Eicosanoid synthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1318 Eicosanoid synthesis RO:HOM0000017 wikipathways WP293 Eicosanoid synthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1318 Eicosanoid synthesis RO:HOM0000017 wikipathways WP318 Eicosanoid synthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1318 Eicosanoid synthesis RO:HOM0000017 wikipathways WP854 Eicosanoid synthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1318 Eicosanoid synthesis RO:HOM0000017 wikipathways WP972 Eicosanoid synthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1319 IL-2 signaling pathway RO:HOM0000017 wikipathways WP450 IL-2 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1319 IL-2 signaling pathway RO:HOM0000017 wikipathways WP49 IL-2 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1319 IL-2 signaling pathway RO:HOM0000017 wikipathways WP569 IL-2 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1319 IL-2 signaling pathway RO:HOM0000017 wikipathways WP973 IL-2 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP132 Cholesterol biosynthesis RO:HOM0000017 wikipathways WP1387 Cholesterol biosynthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP132 Cholesterol biosynthesis RO:HOM0000017 wikipathways WP461 Cholesterol biosynthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP132 Cholesterol biosynthesis RO:HOM0000017 wikipathways WP833 Cholesterol biosynthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP132 Cholesterol biosynthesis RO:HOM0000017 wikipathways WP952 Cholesterol biosynthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1320 IL-9 signaling pathway RO:HOM0000017 wikipathways WP22 IL-9 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1320 IL-9 signaling pathway RO:HOM0000017 wikipathways WP8 IL-9 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1320 IL-9 signaling pathway RO:HOM0000017 wikipathways WP974 IL-9 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1322 IL-6 signaling pathway RO:HOM0000017 wikipathways WP135 IL-6 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1322 IL-6 signaling pathway RO:HOM0000017 wikipathways WP364 IL-6 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1322 IL-6 signaling pathway RO:HOM0000017 wikipathways WP387 IL-6 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1322 IL-6 signaling pathway RO:HOM0000017 wikipathways WP976 IL-6 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1323 EGFR1 signaling pathway RO:HOM0000017 wikipathways WP5 EGFR1 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1323 EGFR1 signaling pathway RO:HOM0000017 wikipathways WP572 EGFR1 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1323 EGFR1 signaling pathway RO:HOM0000017 wikipathways WP752 EGFR1 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1323 EGFR1 signaling pathway RO:HOM0000017 wikipathways WP860 EGFR1 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1326 Nuclear receptors in lipid metabolism and toxicity RO:HOM0000017 wikipathways WP139 Nuclear receptors in lipid metabolism and toxicity lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1326 Nuclear receptors in lipid metabolism and toxicity RO:HOM0000017 wikipathways WP299 Nuclear receptors in lipid metabolism and toxicity lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1326 Nuclear receptors in lipid metabolism and toxicity RO:HOM0000017 wikipathways WP431 Nuclear receptors in lipid metabolism and toxicity lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1326 Nuclear receptors in lipid metabolism and toxicity RO:HOM0000017 wikipathways WP755 Nuclear receptors in lipid metabolism and toxicity lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1326 Nuclear receptors in lipid metabolism and toxicity RO:HOM0000017 wikipathways WP863 Nuclear receptors in lipid metabolism and toxicity lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1326 Nuclear receptors in lipid metabolism and toxicity RO:HOM0000017 wikipathways WP981 Nuclear receptors in lipid metabolism and toxicity lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1327 Hypertrophy model RO:HOM0000017 wikipathways WP202 Hypertrophy model lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1327 Hypertrophy model RO:HOM0000017 wikipathways WP442 Hypertrophy model lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1327 Hypertrophy model RO:HOM0000017 wikipathways WP516 Hypertrophy model lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1327 Hypertrophy model RO:HOM0000017 wikipathways WP982 Hypertrophy model lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP133 Fatty acid omega-oxidation RO:HOM0000017 wikipathways WP206 Fatty acid omega-oxidation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP133 Fatty acid omega-oxidation RO:HOM0000017 wikipathways WP33 Fatty acid omega-oxidation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP133 Fatty acid omega-oxidation RO:HOM0000017 wikipathways WP852 Fatty acid omega-oxidation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP133 Fatty acid omega-oxidation RO:HOM0000017 wikipathways WP970 Fatty acid omega-oxidation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1331 Adipogenesis RO:HOM0000017 wikipathways WP155 Adipogenesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1331 Adipogenesis RO:HOM0000017 wikipathways WP236 Adipogenesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1331 Adipogenesis RO:HOM0000017 wikipathways WP869 Adipogenesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1331 Adipogenesis RO:HOM0000017 wikipathways WP987 Adipogenesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1335 Oxidative phosphorylation RO:HOM0000017 wikipathways WP623 Oxidative phosphorylation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1335 Oxidative phosphorylation RO:HOM0000017 wikipathways WP994 Oxidative phosphorylation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1336 EPO receptor signaling RO:HOM0000017 wikipathways WP581 EPO receptor signaling lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1336 EPO receptor signaling RO:HOM0000017 wikipathways WP768 EPO receptor signaling lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1336 EPO receptor signaling RO:HOM0000017 wikipathways WP878 EPO receptor signaling lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1336 EPO receptor signaling RO:HOM0000017 wikipathways WP996 EPO receptor signaling lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1337 MAPK signaling pathway RO:HOM0000017 wikipathways WP358 MAPK signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1337 MAPK signaling pathway RO:HOM0000017 wikipathways WP382 MAPK signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1337 MAPK signaling pathway RO:HOM0000017 wikipathways WP493 Mapk signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1337 MAPK signaling pathway RO:HOM0000017 wikipathways WP510 MAPK signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1337 MAPK signaling pathway RO:HOM0000017 wikipathways WP769 MAPK signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1337 MAPK signaling pathway RO:HOM0000017 wikipathways WP880 MAPK signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1337 MAPK signaling pathway RO:HOM0000017 wikipathways WP998 MAPK signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1338 Peptide GPCRs RO:HOM0000017 wikipathways WP24 Peptide GPCRs lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1339 Electron transport chain RO:HOM0000017 wikipathways WP295 Electron transport chain lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1339 Electron transport chain RO:HOM0000017 wikipathways WP542 Electron transport chain lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1339 Electron transport chain RO:HOM0000017 wikipathways WP59 Electron transport chain lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1341 Kit receptor signaling pathway RO:HOM0000017 wikipathways WP147 Kit receptor signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1341 Kit receptor signaling pathway RO:HOM0000017 wikipathways WP304 Kit receptor signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1341 Kit receptor signaling pathway RO:HOM0000017 wikipathways WP407 Kit receptor signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1341 Kit receptor signaling pathway RO:HOM0000017 wikipathways WP774 Kit receptor signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1341 Kit receptor signaling pathway RO:HOM0000017 wikipathways WP886 Kit receptor signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1342 Osteoclast signaling RO:HOM0000017 wikipathways WP454 Osteoclast signaling lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1342 Osteoclast signaling RO:HOM0000017 wikipathways WP890 Osteoclast signaling lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1343 mapk cascade RO:HOM0000017 wikipathways WP251 Mapk cascade lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1343 mapk cascade RO:HOM0000017 wikipathways WP422 MAPK cascade lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1343 mapk cascade RO:HOM0000017 wikipathways WP446 Mapk cascade lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1344 Wnt Signaling Pathway and Pluripotency RO:HOM0000017 wikipathways WP399 Wnt signaling pathway and pluripotency lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1344 Wnt Signaling Pathway and Pluripotency RO:HOM0000017 wikipathways WP723 Wnt signaling pathway and pluripotency lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1344 Wnt Signaling Pathway and Pluripotency RO:HOM0000017 wikipathways WP779 Wnt signaling pathway and pluripotency lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1346 IL-7 signaling pathway RO:HOM0000017 wikipathways WP205 IL-7 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1346 IL-7 signaling pathway RO:HOM0000017 wikipathways WP297 IL-7 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1349 Wnt Signaling Pathway RO:HOM0000017 wikipathways WP363 Wnt signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1349 Wnt Signaling Pathway RO:HOM0000017 wikipathways WP403 Wnt signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1349 Wnt Signaling Pathway RO:HOM0000017 wikipathways WP785 Wnt signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1349 Wnt Signaling Pathway RO:HOM0000017 wikipathways WP899 Wnt signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1349 Wnt Signaling Pathway RO:HOM0000017 wikipathways WP97 Wnt signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP135 IL-6 signaling pathway RO:HOM0000017 wikipathways WP364 IL-6 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP135 IL-6 signaling pathway RO:HOM0000017 wikipathways WP387 IL-6 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP135 IL-6 signaling pathway RO:HOM0000017 wikipathways WP976 IL-6 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1351 Apoptosis RO:HOM0000017 wikipathways WP254 Apoptosis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1351 Apoptosis RO:HOM0000017 wikipathways WP787 Apoptosis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1352 Fatty acid biosynthesis RO:HOM0000017 wikipathways WP336 Fatty acid biosynthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1352 Fatty acid biosynthesis RO:HOM0000017 wikipathways WP357 Fatty acid biosynthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1352 Fatty acid biosynthesis RO:HOM0000017 wikipathways WP38 Fatty acid biosynthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1352 Fatty acid biosynthesis RO:HOM0000017 wikipathways WP504 Fatty acid biosynthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1352 Fatty acid biosynthesis RO:HOM0000017 wikipathways WP568 Fatty acid biosynthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1355 One-carbon metabolism RO:HOM0000017 wikipathways WP241 One-carbon metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1355 One-carbon metabolism RO:HOM0000017 wikipathways WP435 One-carbon metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1355 One-carbon metabolism RO:HOM0000017 wikipathways WP796 One-carbon metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1355 One-carbon metabolism RO:HOM0000017 wikipathways WP909 One-carbon metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1356 Glycolysis and gluconeogenesis RO:HOM0000017 wikipathways WP144 Glycolysis and gluconeogenesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1356 Glycolysis and gluconeogenesis RO:HOM0000017 wikipathways WP157 Glycolysis and gluconeogenesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1356 Glycolysis and gluconeogenesis RO:HOM0000017 wikipathways WP515 Glycolysis and gluconeogenesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1356 Glycolysis and gluconeogenesis RO:HOM0000017 wikipathways WP534 Glycolysis and gluconeogenesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1356 Glycolysis and gluconeogenesis RO:HOM0000017 wikipathways WP96 Glycolysis and Gluconeogenesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1359 IL-3 signaling pathway RO:HOM0000017 wikipathways WP286 IL-3 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1359 IL-3 signaling pathway RO:HOM0000017 wikipathways WP319 IL-3 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1359 IL-3 signaling pathway RO:HOM0000017 wikipathways WP373 IL-3 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1360 Nod-like receptor (NLR) signaling pathway RO:HOM0000017 wikipathways WP288 Nod-like receptor (NLR) signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1360 Nod-like receptor (NLR) signaling pathway RO:HOM0000017 wikipathways WP799 Nod-like receptor (NLR) signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1360 Nod-like receptor (NLR) signaling pathway RO:HOM0000017 wikipathways WP914 Nod-like receptor (NLR) signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1363 p38 mapk signaling pathway RO:HOM0000017 wikipathways WP294 p38 Mapk signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1363 p38 mapk signaling pathway RO:HOM0000017 wikipathways WP350 p38 Mapk signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1363 p38 mapk signaling pathway RO:HOM0000017 wikipathways WP400 p38 MAPK signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1363 p38 mapk signaling pathway RO:HOM0000017 wikipathways WP803 p38 MAPK signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1363 p38 mapk signaling pathway RO:HOM0000017 wikipathways WP918 p38 MAPK signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1365 Calcium regulation in cardiac cells RO:HOM0000017 wikipathways WP326 Calcium regulation in cardiac cells lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1365 Calcium regulation in cardiac cells RO:HOM0000017 wikipathways WP536 Calcium regulation in cardiac cells lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1365 Calcium regulation in cardiac cells RO:HOM0000017 wikipathways WP553 Calcium regulation in cardiac cells lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1365 Calcium regulation in cardiac cells RO:HOM0000017 wikipathways WP808 Calcium regulation in cardiac cells lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1365 Calcium regulation in cardiac cells RO:HOM0000017 wikipathways WP923 Calcium regulation in cardiac cells lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1366 ErbB signaling pathway RO:HOM0000017 wikipathways WP673 ErbB signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1369 TNF-alpha NF-kB signaling pathway RO:HOM0000017 wikipathways WP246 TNF-alpha NF-kB signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1369 TNF-alpha NF-kB signaling pathway RO:HOM0000017 wikipathways WP457 TNF-alpha NF-kB signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1371 G protein signaling pathways RO:HOM0000017 wikipathways WP232 G protein signaling pathways lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1371 G protein signaling pathways RO:HOM0000017 wikipathways WP35 G protein signaling pathways lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1371 G protein signaling pathways RO:HOM0000017 wikipathways WP73 G protein signaling pathways lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1371 G protein signaling pathways RO:HOM0000017 wikipathways WP813 G protein signaling pathways lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1371 G protein signaling pathways RO:HOM0000017 wikipathways WP931 G protein signaling pathways lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1372 Oxidative stress response RO:HOM0000017 wikipathways WP173 Oxidative stress response lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1372 Oxidative stress response RO:HOM0000017 wikipathways WP408 Oxidative stress response lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1372 Oxidative stress response RO:HOM0000017 wikipathways WP412 Oxidative stress response lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1373 GPCRs, class C metabotropic glutamate, pheromone RO:HOM0000017 wikipathways WP327 GPCRs, class C metabotropic glutamate, pheromone lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1373 GPCRs, class C metabotropic glutamate, pheromone RO:HOM0000017 wikipathways WP42 GPCRs, class C metabotropic glutamate, pheromone lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1373 GPCRs, class C metabotropic glutamate, pheromone RO:HOM0000017 wikipathways WP501 GPCRs, class C metabotropic glutamate, pheromone lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1374 Id signaling pathway RO:HOM0000017 wikipathways WP397 Id signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1374 Id signaling pathway RO:HOM0000017 wikipathways WP512 Id signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1374 Id signaling pathway RO:HOM0000017 wikipathways WP53 ID signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1374 Id signaling pathway RO:HOM0000017 wikipathways WP934 Id signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1375 Polyol pathway RO:HOM0000017 wikipathways WP690 Polyol pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1375 Polyol pathway RO:HOM0000017 wikipathways WP936 Polyol pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1376 IL-4 signaling pathway RO:HOM0000017 wikipathways WP395 IL-4 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP138 Androgen receptor signaling pathway RO:HOM0000017 wikipathways WP897 Androgen receptor signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1380 Regulation of actin cytoskeleton RO:HOM0000017 wikipathways WP351 Regulation of actin cytoskeleton lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1380 Regulation of actin cytoskeleton RO:HOM0000017 wikipathways WP51 Regulation of actin cytoskeleton lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1380 Regulation of actin cytoskeleton RO:HOM0000017 wikipathways WP523 Regulation of actin cytoskeleton lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1380 Regulation of actin cytoskeleton RO:HOM0000017 wikipathways WP824 Regulation of actin cytoskeleton lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1381 G13 signaling pathway RO:HOM0000017 wikipathways WP298 G13 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1381 G13 signaling pathway RO:HOM0000017 wikipathways WP520 G13 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1381 G13 signaling pathway RO:HOM0000017 wikipathways WP524 G13 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1381 G13 signaling pathway RO:HOM0000017 wikipathways WP826 G13 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1381 G13 signaling pathway RO:HOM0000017 wikipathways WP945 G13 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1382 Delta-Notch signaling pathway RO:HOM0000017 wikipathways WP199 Delta-Notch signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1382 Delta-Notch signaling pathway RO:HOM0000017 wikipathways WP265 Delta-Notch signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1382 Delta-Notch signaling pathway RO:HOM0000017 wikipathways WP827 Delta-Notch signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1382 Delta-Notch signaling pathway RO:HOM0000017 wikipathways WP946 Delta-Notch signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1383 Endochondral ossification RO:HOM0000017 wikipathways WP474 Endochondral ossification lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1384 Toll-like receptor signaling pathway RO:HOM0000017 wikipathways WP75 Toll-like receptor signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1386 Integrin-mediated cell adhesion RO:HOM0000017 wikipathways WP185 Integrin-mediated cell adhesion lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1386 Integrin-mediated cell adhesion RO:HOM0000017 wikipathways WP6 Integrin-mediated cell adhesion lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1386 Integrin-mediated cell adhesion RO:HOM0000017 wikipathways WP74 Integrin-mediated cell adhesion lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1386 Integrin-mediated cell adhesion RO:HOM0000017 wikipathways WP832 Integrin-mediated cell adhesion lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1386 Integrin-mediated cell adhesion RO:HOM0000017 wikipathways WP951 Integrin-mediated cell adhesion lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1387 Cholesterol biosynthesis RO:HOM0000017 wikipathways WP461 Cholesterol biosynthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1387 Cholesterol biosynthesis RO:HOM0000017 wikipathways WP833 Cholesterol biosynthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1387 Cholesterol biosynthesis RO:HOM0000017 wikipathways WP952 Cholesterol biosynthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1388 Glycogen metabolism RO:HOM0000017 wikipathways WP160 Glycogen metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1388 Glycogen metabolism RO:HOM0000017 wikipathways WP317 Glycogen metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1388 Glycogen metabolism RO:HOM0000017 wikipathways WP436 Glycogen metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1388 Glycogen metabolism RO:HOM0000017 wikipathways WP835 Glycogen metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1388 Glycogen metabolism RO:HOM0000017 wikipathways WP955 Glycogen metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1389 Monoamine GPCRs RO:HOM0000017 wikipathways WP276 Monoamine GPCRs lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1389 Monoamine GPCRs RO:HOM0000017 wikipathways WP570 Monoamine GPCRs lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1389 Monoamine GPCRs RO:HOM0000017 wikipathways WP58 Monoamine GPCRs lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1389 Monoamine GPCRs RO:HOM0000017 wikipathways WP839 Monoamine GPCRs lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1389 Monoamine GPCRs RO:HOM0000017 wikipathways WP957 Monoamine GPCRs lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP139 Nuclear receptors in lipid metabolism and toxicity RO:HOM0000017 wikipathways WP299 Nuclear receptors in lipid metabolism and toxicity lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP139 Nuclear receptors in lipid metabolism and toxicity RO:HOM0000017 wikipathways WP431 Nuclear receptors in lipid metabolism and toxicity lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP139 Nuclear receptors in lipid metabolism and toxicity RO:HOM0000017 wikipathways WP755 Nuclear receptors in lipid metabolism and toxicity lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP139 Nuclear receptors in lipid metabolism and toxicity RO:HOM0000017 wikipathways WP863 Nuclear receptors in lipid metabolism and toxicity lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP139 Nuclear receptors in lipid metabolism and toxicity RO:HOM0000017 wikipathways WP981 Nuclear receptors in lipid metabolism and toxicity lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1391 S1P receptor signal transduction RO:HOM0000017 wikipathways WP26 S1P receptor signal transduction lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1392 Apoptosis modulation by HSP70 RO:HOM0000017 wikipathways WP166 Apoptosis modulation by HSP70 lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1392 Apoptosis modulation by HSP70 RO:HOM0000017 wikipathways WP384 Apoptosis modulation by HSP70 lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1392 Apoptosis modulation by HSP70 RO:HOM0000017 wikipathways WP487 Apoptosis modulation by HSP70 lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1392 Apoptosis modulation by HSP70 RO:HOM0000017 wikipathways WP963 Apoptosis modulation by HSP70 lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1393 Cell cycle RO:HOM0000017 wikipathways WP179 Cell cycle lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1393 Cell cycle RO:HOM0000017 wikipathways WP844 Cell cycle lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1393 Cell cycle RO:HOM0000017 wikipathways WP964 Cell cycle lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP140 Myometrial relaxation and contraction pathways RO:HOM0000017 wikipathways WP289 Myometrial relaxation and contraction pathways lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP140 Myometrial relaxation and contraction pathways RO:HOM0000017 wikipathways WP3276 Myometrial relaxation and contraction pathways lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP140 Myometrial relaxation and contraction pathways RO:HOM0000017 wikipathways WP385 Myometrial relaxation and contraction pathways lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP142 mRNA processing RO:HOM0000017 wikipathways WP310 mRNA processing lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP142 mRNA processing RO:HOM0000017 wikipathways WP411 mRNA processing lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP142 mRNA processing RO:HOM0000017 wikipathways WP467 mRNA processing lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP142 mRNA processing RO:HOM0000017 wikipathways WP529 mRNA processing lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP142 mRNA processing RO:HOM0000017 wikipathways WP793 mRNA processing lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP142 mRNA processing RO:HOM0000017 wikipathways WP906 mRNA Processing lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1423 Ganglio sphingolipid metabolism RO:HOM0000017 wikipathways WP3219 Ganglio sphingolipid metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1424 Globo sphingolipid metabolism RO:HOM0000017 wikipathways WP3278 Globo sphingolipid metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP143 Fatty acid beta-oxidation RO:HOM0000017 wikipathways WP506 Fatty acid beta-oxidation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1434 Osteopontin signaling RO:HOM0000017 wikipathways WP3156 Osteopontin signaling lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1438 Influenza A virus infection RO:HOM0000017 wikipathways WP3214 Influenza A virus infection lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP144 Glycolysis and gluconeogenesis RO:HOM0000017 wikipathways WP157 Glycolysis and gluconeogenesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP144 Glycolysis and gluconeogenesis RO:HOM0000017 wikipathways WP515 Glycolysis and gluconeogenesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP144 Glycolysis and gluconeogenesis RO:HOM0000017 wikipathways WP534 Glycolysis and gluconeogenesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP144 Glycolysis and gluconeogenesis RO:HOM0000017 wikipathways WP96 Glycolysis and Gluconeogenesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1449 Regulation of toll-like receptor signaling pathway RO:HOM0000017 wikipathways WP3132 Regulation of toll-like receptor signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP145 Statin pathway RO:HOM0000017 wikipathways WP921 Statin pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1455 Serotonin transporter activity RO:HOM0000017 wikipathways WP3138 Serotonin transporter activity lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP146 Nucleotide metabolism RO:HOM0000017 wikipathways WP321 Nucleotide metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP146 Nucleotide metabolism RO:HOM0000017 wikipathways WP3211 Nucleotide metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP146 Nucleotide metabolism RO:HOM0000017 wikipathways WP404 Nucleotide metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP146 Nucleotide metabolism RO:HOM0000017 wikipathways WP87 Nucleotide metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP147 Kit receptor signaling pathway RO:HOM0000017 wikipathways WP304 Kit receptor signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP147 Kit receptor signaling pathway RO:HOM0000017 wikipathways WP407 Kit receptor signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP147 Kit receptor signaling pathway RO:HOM0000017 wikipathways WP774 Kit receptor signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP147 Kit receptor signaling pathway RO:HOM0000017 wikipathways WP886 Kit receptor signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1471 Target of rapamycin (TOR) signaling RO:HOM0000017 wikipathways WP3256 Target of rapamycin (TOR) signaling lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP149 Translation factors RO:HOM0000017 wikipathways WP307 Translation factors lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP149 Translation factors RO:HOM0000017 wikipathways WP32 Translation factors lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP149 Translation factors RO:HOM0000017 wikipathways WP537 Translation factors lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP149 Translation factors RO:HOM0000017 wikipathways WP965 Translation factors lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1495 Glycine metabolism RO:HOM0000017 wikipathways WP3142 Glycine metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1496 Oxidative damage response RO:HOM0000017 wikipathways WP3941 Oxidative damage response lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1498 Dopaminergic neurogenesis RO:HOM0000017 wikipathways WP2855 Dopaminergic neurogenesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1498 Dopaminergic neurogenesis RO:HOM0000017 wikipathways WP3196 Dopaminergic neurogenesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP15 Selenium micronutrient network RO:HOM0000017 wikipathways WP3257 Selenium micronutrient network lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP150 DNA replication RO:HOM0000017 wikipathways WP192 DNA replication lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP150 DNA replication RO:HOM0000017 wikipathways WP451 DNA replication lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP150 DNA replication RO:HOM0000017 wikipathways WP466 DNA replication lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP150 DNA replication RO:HOM0000017 wikipathways WP484 DNA replication lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP150 DNA replication RO:HOM0000017 wikipathways WP565 DNA replication lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP150 DNA replication RO:HOM0000017 wikipathways WP757 DNA replication lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP150 DNA replication RO:HOM0000017 wikipathways WP865 DNA replication lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP150 DNA replication RO:HOM0000017 wikipathways WP983 DNA replication lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP151 IL-5 signaling pathway RO:HOM0000017 wikipathways WP44 IL-5 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP151 IL-5 signaling pathway RO:HOM0000017 wikipathways WP968 IL-5 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1528 Physiological and pathological hypertrophy of the heart RO:HOM0000017 wikipathways WP3121 Physiological and pathological hypertrophy of the heart lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1531 Vitamin D metabolism RO:HOM0000017 wikipathways WP3162 Vitamin D metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1533 Vitamin B12 metabolism RO:HOM0000017 wikipathways WP3193 Vitamin B12 metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1539 Angiogenesis RO:HOM0000017 wikipathways WP3184 Angiogenesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP154 Biogenic amine synthesis RO:HOM0000017 wikipathways WP3168 Biogenic amine synthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP154 Biogenic amine synthesis RO:HOM0000017 wikipathways WP323 Biogenic amine synthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP154 Biogenic amine synthesis RO:HOM0000017 wikipathways WP522 Biogenic amine synthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP154 Biogenic amine synthesis RO:HOM0000017 wikipathways WP550 Biogenic amine synthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1544 MicroRNAs in cardiomyocyte hypertrophy RO:HOM0000017 wikipathways WP1560 MicroRNAs in cardiomyocyte hypertrophy lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP155 Adipogenesis RO:HOM0000017 wikipathways WP236 Adipogenesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP155 Adipogenesis RO:HOM0000017 wikipathways WP869 Adipogenesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP155 Adipogenesis RO:HOM0000017 wikipathways WP987 Adipogenesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP157 Glycolysis and gluconeogenesis RO:HOM0000017 wikipathways WP515 Glycolysis and gluconeogenesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP157 Glycolysis and gluconeogenesis RO:HOM0000017 wikipathways WP534 Glycolysis and gluconeogenesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP157 Glycolysis and gluconeogenesis RO:HOM0000017 wikipathways WP96 Glycolysis and Gluconeogenesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1577 Amino acid conjugation of benzoic acid RO:HOM0000017 wikipathways WP521 Amino acid conjugation of benzoic acid lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP158 Proteasome degradation RO:HOM0000017 wikipathways WP183 Proteasome degradation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP158 Proteasome degradation RO:HOM0000017 wikipathways WP281 Proteasome degradation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP158 Proteasome degradation RO:HOM0000017 wikipathways WP302 Proteasome degradation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP158 Proteasome degradation RO:HOM0000017 wikipathways WP470 Proteasome degradation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP158 Proteasome degradation RO:HOM0000017 wikipathways WP519 Proteasome degradation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1584 Type II diabetes mellitus RO:HOM0000017 wikipathways WP3117 Type II diabetes mellitus lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1591 Heart development RO:HOM0000017 wikipathways WP2067 Heart development lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1591 Heart development RO:HOM0000017 wikipathways WP3280 Heart development lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP160 Glycogen metabolism RO:HOM0000017 wikipathways WP317 Glycogen metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP160 Glycogen metabolism RO:HOM0000017 wikipathways WP436 Glycogen metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP160 Glycogen metabolism RO:HOM0000017 wikipathways WP835 Glycogen metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP160 Glycogen metabolism RO:HOM0000017 wikipathways WP955 Glycogen metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1601 Fluoropyrimidine activity RO:HOM0000017 wikipathways WP3275 Fluoropyrimidine activity lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1604 Codeine and morphine metabolism RO:HOM0000017 wikipathways WP3270 Codeine and morphine metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP161 Small ligand GPCRs RO:HOM0000017 wikipathways WP247 Small ligand GPCRs lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP161 Small ligand GPCRs RO:HOM0000017 wikipathways WP971 Small ligand GPCRs lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP163 Cytoplasmic ribosomal proteins RO:HOM0000017 wikipathways WP210 Cytoplasmic ribosomal proteins lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP163 Cytoplasmic ribosomal proteins RO:HOM0000017 wikipathways WP30 Cytoplasmic ribosomal proteins lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP163 Cytoplasmic ribosomal proteins RO:HOM0000017 wikipathways WP324 Cytoplasmic ribosomal proteins lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP163 Cytoplasmic ribosomal proteins RO:HOM0000017 wikipathways WP477 Cytoplasmic ribosomal proteins lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP163 Cytoplasmic ribosomal proteins RO:HOM0000017 wikipathways WP540 Cytoplasmic ribosomal proteins lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP164 Glutathione metabolism RO:HOM0000017 wikipathways WP3207 Glutathione metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP164 Glutathione metabolism RO:HOM0000017 wikipathways WP469 Glutathione metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP166 Apoptosis modulation by HSP70 RO:HOM0000017 wikipathways WP384 Apoptosis modulation by HSP70 lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP166 Apoptosis modulation by HSP70 RO:HOM0000017 wikipathways WP487 Apoptosis modulation by HSP70 lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP166 Apoptosis modulation by HSP70 RO:HOM0000017 wikipathways WP963 Apoptosis modulation by HSP70 lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP167 Eicosanoid synthesis RO:HOM0000017 wikipathways WP293 Eicosanoid synthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP167 Eicosanoid synthesis RO:HOM0000017 wikipathways WP318 Eicosanoid synthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP167 Eicosanoid synthesis RO:HOM0000017 wikipathways WP854 Eicosanoid synthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP167 Eicosanoid synthesis RO:HOM0000017 wikipathways WP972 Eicosanoid synthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP170 Nuclear receptors RO:HOM0000017 wikipathways WP217 Nuclear receptors lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP170 Nuclear receptors RO:HOM0000017 wikipathways WP509 Nuclear Receptors lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP170 Nuclear receptors RO:HOM0000017 wikipathways WP831 Nuclear receptors lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP170 Nuclear receptors RO:HOM0000017 wikipathways WP950 Nuclear receptors lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP173 Oxidative stress response RO:HOM0000017 wikipathways WP408 Oxidative stress response lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP173 Oxidative stress response RO:HOM0000017 wikipathways WP412 Oxidative stress response lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1742 TP53 network RO:HOM0000017 wikipathways WP3239 TP53 network lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP175 Acetylcholine synthesis RO:HOM0000017 wikipathways WP264 Acetylcholine synthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP175 Acetylcholine synthesis RO:HOM0000017 wikipathways WP360 Acetylcholine synthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP175 Acetylcholine synthesis RO:HOM0000017 wikipathways WP476 Acetylcholine synthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP175 Acetylcholine synthesis RO:HOM0000017 wikipathways WP528 Acetylcholine synthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP177 Eukaryotic transcription initiation RO:HOM0000017 wikipathways WP405 Eukaryotic transcription initiation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP177 Eukaryotic transcription initiation RO:HOM0000017 wikipathways WP425 Eukaryotic transcription initiation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP177 Eukaryotic transcription initiation RO:HOM0000017 wikipathways WP491 Eukaryotic transcription initiation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP177 Eukaryotic transcription initiation RO:HOM0000017 wikipathways WP518 Eukaryotic transcription initiation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP177 Eukaryotic transcription initiation RO:HOM0000017 wikipathways WP567 Eukaryotic transcription initiation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP177 Eukaryotic transcription initiation RO:HOM0000017 wikipathways WP830 Eukaryotic transcription initiation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP177 Eukaryotic transcription initiation RO:HOM0000017 wikipathways WP948 Eukaryotic transcription initiation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1770 One-carbon metabolism and related pathways RO:HOM0000017 wikipathways WP3940 One-carbon metabolism and related pathways lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1772 Apoptosis modulation and signaling RO:HOM0000017 wikipathways WP3148 Apoptosis modulation and signaling lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP179 Cell cycle RO:HOM0000017 wikipathways WP844 Cell cycle lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP179 Cell cycle RO:HOM0000017 wikipathways WP964 Cell cycle lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP18 Heme biosynthesis RO:HOM0000017 wikipathways WP269 Heme biosynthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP18 Heme biosynthesis RO:HOM0000017 wikipathways WP561 Heme biosynthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP18 Heme biosynthesis RO:HOM0000017 wikipathways WP848 Heme biosynthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP18 Heme biosynthesis RO:HOM0000017 wikipathways WP86 Heme biosynthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP18 Heme biosynthesis RO:HOM0000017 wikipathways WP967 Heme biosynthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP183 Proteasome degradation RO:HOM0000017 wikipathways WP281 Proteasome degradation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP183 Proteasome degradation RO:HOM0000017 wikipathways WP302 Proteasome degradation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP183 Proteasome degradation RO:HOM0000017 wikipathways WP470 Proteasome degradation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP183 Proteasome degradation RO:HOM0000017 wikipathways WP519 Proteasome degradation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP185 Integrin-mediated cell adhesion RO:HOM0000017 wikipathways WP6 Integrin-mediated cell adhesion lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP185 Integrin-mediated cell adhesion RO:HOM0000017 wikipathways WP74 Integrin-mediated cell adhesion lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP185 Integrin-mediated cell adhesion RO:HOM0000017 wikipathways WP832 Integrin-mediated cell adhesion lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP185 Integrin-mediated cell adhesion RO:HOM0000017 wikipathways WP951 Integrin-mediated cell adhesion lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP186 Homologous recombination RO:HOM0000017 wikipathways WP804 Homologous recombination lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP186 Homologous recombination RO:HOM0000017 wikipathways WP917 Homologous recombination lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP188 Focal adhesion RO:HOM0000017 wikipathways WP306 Focal adhesion lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP188 Focal adhesion RO:HOM0000017 wikipathways WP3197 Focal adhesion lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP188 Focal adhesion RO:HOM0000017 wikipathways WP85 Focal adhesion lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP189 GPCRs, class A rhodopsin-like RO:HOM0000017 wikipathways WP455 GPCRs, class A rhodopsin-like lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP189 GPCRs, class A rhodopsin-like RO:HOM0000017 wikipathways WP473 GPCRs, class A rhodopsin-like lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP19 TCA cycle RO:HOM0000017 wikipathways WP347 TCA cycle lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP19 TCA cycle RO:HOM0000017 wikipathways WP434 TCA cycle lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP19 TCA cycle RO:HOM0000017 wikipathways WP490 TCA cycle lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP19 TCA cycle RO:HOM0000017 wikipathways WP76 TCA cycle lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP19 TCA cycle RO:HOM0000017 wikipathways WP999 TCA cycle lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP192 DNA replication RO:HOM0000017 wikipathways WP451 DNA replication lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP192 DNA replication RO:HOM0000017 wikipathways WP466 DNA replication lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP192 DNA replication RO:HOM0000017 wikipathways WP484 DNA replication lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP192 DNA replication RO:HOM0000017 wikipathways WP565 DNA replication lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP192 DNA replication RO:HOM0000017 wikipathways WP757 DNA replication lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP192 DNA replication RO:HOM0000017 wikipathways WP865 DNA replication lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP192 DNA replication RO:HOM0000017 wikipathways WP983 DNA replication lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP193 Hepatocyte growth factor receptor signaling RO:HOM0000017 wikipathways WP313 Hepatocyte growth factor receptor signaling lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP193 Hepatocyte growth factor receptor signaling RO:HOM0000017 wikipathways WP444 Hepatocyte growth factor receptor signaling lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP193 Hepatocyte growth factor receptor signaling RO:HOM0000017 wikipathways WP810 Hepatocyte growth factor receptor signaling lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP193 Hepatocyte growth factor receptor signaling RO:HOM0000017 wikipathways WP927 Hepatocyte growth factor receptor signaling lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP193 Hepatocyte growth factor receptor signaling RO:HOM0000017 wikipathways WP94 Hepatocyte growth factor receptor signaling lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1941 Peroxisomal beta-oxidation of tetracosanoyl-CoA RO:HOM0000017 wikipathways WP3146 Peroxisomal beta-oxidation of tetracosanoyl-CoA lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1946 Cori cycle RO:HOM0000017 wikipathways WP3114 Cori cycle lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP195 IL-1 signaling pathway RO:HOM0000017 wikipathways WP3271 IL-1 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP195 IL-1 signaling pathway RO:HOM0000017 wikipathways WP355 IL-1 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP195 IL-1 signaling pathway RO:HOM0000017 wikipathways WP37 IL-1 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1971 Integrated cancer pathway RO:HOM0000017 wikipathways WP3244 Integrated cancer pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1981 Thyroxine (thyroid hormone) production RO:HOM0000017 wikipathways WP3237 Thyroxine (thyroid hormone) production lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1983 Splicing factor NOVA regulated synaptic proteins RO:HOM0000017 wikipathways WP4148 Splicing factor NOVA regulated synaptic proteins lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1984 Integrated breast cancer pathway RO:HOM0000017 wikipathways WP3260 Integrated breast cancer pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP199 Delta-Notch signaling pathway RO:HOM0000017 wikipathways WP265 Delta-Notch signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP199 Delta-Notch signaling pathway RO:HOM0000017 wikipathways WP827 Delta-Notch signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP199 Delta-Notch signaling pathway RO:HOM0000017 wikipathways WP946 Delta-Notch signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP1995 Effects of nitric oxide RO:HOM0000017 wikipathways WP3182 Effects of nitric oxide lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP200 Complement activation, classical pathway RO:HOM0000017 wikipathways WP977 Complement activation, classical pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP2007 Iron metabolism in placenta RO:HOM0000017 wikipathways WP2908 Iron metabolism in placenta lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP201 Ptf1a related regulatory pathway RO:HOM0000017 wikipathways WP4147 PTF1A related regulatory pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP2011 SREBF and miR33 in cholesterol and lipid homeostasis RO:HOM0000017 wikipathways WP2084 SREBF and miR33 in cholesterol and lipid homeostasis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP2011 SREBF and miR33 in cholesterol and lipid homeostasis RO:HOM0000017 wikipathways WP3137 SREBF and miR33 in cholesterol and lipid homeostasis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP202 Hypertrophy model RO:HOM0000017 wikipathways WP442 Hypertrophy model lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP202 Hypertrophy model RO:HOM0000017 wikipathways WP516 Hypertrophy model lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP202 Hypertrophy model RO:HOM0000017 wikipathways WP982 Hypertrophy model lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP2029 Cell differentiation - index RO:HOM0000017 wikipathways WP3202 Cell differentiation - index lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP2032 Thyroid stimulating hormone (TSH) signaling pathway RO:HOM0000017 wikipathways WP3227 Thyroid stimulating hormone (TSH) signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP2034 Leptin signaling pathway RO:HOM0000017 wikipathways WP3274 Leptin signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP2038 Microtubule cytoskeleton regulation RO:HOM0000017 wikipathways WP3177 Microtubule cytoskeleton regulation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP205 IL-7 signaling pathway RO:HOM0000017 wikipathways WP297 IL-7 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP206 Fatty acid omega-oxidation RO:HOM0000017 wikipathways WP33 Fatty acid omega-oxidation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP206 Fatty acid omega-oxidation RO:HOM0000017 wikipathways WP852 Fatty acid omega-oxidation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP206 Fatty acid omega-oxidation RO:HOM0000017 wikipathways WP970 Fatty acid omega-oxidation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP2064 Neural crest differentiation RO:HOM0000017 wikipathways WP2074 Neural crest differentiation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP2064 Neural crest differentiation RO:HOM0000017 wikipathways WP3273 Neural crest differentiation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP2067 Heart development RO:HOM0000017 wikipathways WP3280 Heart development lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP207 Nucleotide GPCRs RO:HOM0000017 wikipathways WP502 Nucleotide GPCRs lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP207 Nucleotide GPCRs RO:HOM0000017 wikipathways WP80 Nucleotide GPCRs lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP2074 Neural crest differentiation RO:HOM0000017 wikipathways WP3273 Neural crest differentiation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP2075 Alzheimer's disease RO:HOM0000017 wikipathways WP5124 Alzheimer's disease lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP2079 Serotonin receptor 2 and STAT3 signaling RO:HOM0000017 wikipathways WP3115 Serotonin receptor 2 and STAT3 signaling lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP2079 Serotonin receptor 2 and STAT3 signaling RO:HOM0000017 wikipathways WP733 Serotonin receptor 2 and STAT3 signaling lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP208 Notch signaling pathway RO:HOM0000017 wikipathways WP29 Notch signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP208 Notch signaling pathway RO:HOM0000017 wikipathways WP517 Notch signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP208 Notch signaling pathway RO:HOM0000017 wikipathways WP798 Notch signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP208 Notch signaling pathway RO:HOM0000017 wikipathways WP912 Notch signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP2084 SREBF and miR33 in cholesterol and lipid homeostasis RO:HOM0000017 wikipathways WP3137 SREBF and miR33 in cholesterol and lipid homeostasis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP210 Cytoplasmic ribosomal proteins RO:HOM0000017 wikipathways WP30 Cytoplasmic ribosomal proteins lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP210 Cytoplasmic ribosomal proteins RO:HOM0000017 wikipathways WP324 Cytoplasmic ribosomal proteins lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP210 Cytoplasmic ribosomal proteins RO:HOM0000017 wikipathways WP477 Cytoplasmic ribosomal proteins lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP210 Cytoplasmic ribosomal proteins RO:HOM0000017 wikipathways WP540 Cytoplasmic ribosomal proteins lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP2112 IL-17 signaling pathway RO:HOM0000017 wikipathways WP3176 IL-17 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP2113 Type III interferon signaling RO:HOM0000017 wikipathways WP3173 Type III interferon signaling lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP2118 Arrhythmogenic right ventricular cardiomyopathy RO:HOM0000017 wikipathways WP3195 Arrhythmogenic right ventricular cardiomyopathy lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP212 Triacylglyceride synthesis RO:HOM0000017 wikipathways WP325 Triacylglyceride synthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP212 Triacylglyceride synthesis RO:HOM0000017 wikipathways WP386 Triacylglyceride synthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP2132 Serotonin and anxiety RO:HOM0000017 wikipathways WP2141 Serotonin and anxiety lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP2132 Serotonin and anxiety RO:HOM0000017 wikipathways WP3947 Serotonin and anxiety lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP2140 Serotonin and anxiety-related events RO:HOM0000017 wikipathways WP3944 Serotonin and anxiety-related events lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP2141 Serotonin and anxiety RO:HOM0000017 wikipathways WP3947 Serotonin and anxiety lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP217 Nuclear receptors RO:HOM0000017 wikipathways WP509 Nuclear Receptors lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP217 Nuclear receptors RO:HOM0000017 wikipathways WP831 Nuclear receptors lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP217 Nuclear receptors RO:HOM0000017 wikipathways WP950 Nuclear receptors lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP2185 Purine metabolism RO:HOM0000017 wikipathways WP4792 Purine metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP2197 Endothelin pathways RO:HOM0000017 wikipathways WP3246 Endothelin pathways lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP22 IL-9 signaling pathway RO:HOM0000017 wikipathways WP8 IL-9 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP22 IL-9 signaling pathway RO:HOM0000017 wikipathways WP974 IL-9 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP222 Cytokines and inflammatory response RO:HOM0000017 wikipathways WP271 Cytokines and inflammatory response lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP222 Cytokines and inflammatory response RO:HOM0000017 wikipathways WP530 Cytokines and inflammatory response lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP222 Cytokines and inflammatory response RO:HOM0000017 wikipathways WP879 Cytokines and inflammatory response lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP222 Cytokines and inflammatory response RO:HOM0000017 wikipathways WP997 Cytokines and inflammatory response lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP2249 Metastatic brain tumor RO:HOM0000017 wikipathways WP3259 Metastatic brain tumor lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP2253 Pilocytic astrocytoma RO:HOM0000017 wikipathways WP3122 Pilocytic astrocytoma lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP2261 Glioblastoma signaling pathways RO:HOM0000017 wikipathways WP3266 Glioblastoma signaling pathways lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP2267 Synaptic vesicle pathway RO:HOM0000017 wikipathways WP3224 Synaptic vesicle pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP227 Osteoblast signaling RO:HOM0000017 wikipathways WP238 Osteoblast signaling lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP227 Osteoblast signaling RO:HOM0000017 wikipathways WP322 Osteoblast signaling lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP227 Osteoblast signaling RO:HOM0000017 wikipathways WP956 Osteoblast signaling lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP2271 Macrophage markers RO:HOM0000017 wikipathways WP4146 Macrophage markers lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP2272 Pathogenic Escherichia coli infection RO:HOM0000017 wikipathways WP3157 Pathogenic Escherichia coli infection lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP2276 Glial cell differentiation RO:HOM0000017 wikipathways WP3203 Glial cell differentiation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP2289 Drug induction of bile acid pathway RO:HOM0000017 wikipathways WP3253 Drug induction of bile acid pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP229 Irinotecan pathway RO:HOM0000017 wikipathways WP475 Irinotecan pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP229 Irinotecan pathway RO:HOM0000017 wikipathways WP961 Irinotecan pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP2290 RalA downstream regulated genes RO:HOM0000017 wikipathways WP3268 RalA downstream regulated genes lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP2291 Deregulation of Rab and Rab effector genes in bladder cancer RO:HOM0000017 wikipathways WP3171 Deregulation of Rab and Rab effector genes in bladder cancer lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP2292 Chemokine signaling pathway RO:HOM0000017 wikipathways WP3929 Chemokine signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP2316 PPAR signaling pathway RO:HOM0000017 wikipathways WP3942 PPAR signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP2316 PPAR signaling pathway RO:HOM0000017 wikipathways WP4020 PPAR signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP2318 Fatty acid oxidation RO:HOM0000017 wikipathways WP91 Fatty acid oxidation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP232 G protein signaling pathways RO:HOM0000017 wikipathways WP35 G protein signaling pathways lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP232 G protein signaling pathways RO:HOM0000017 wikipathways WP73 G protein signaling pathways lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP232 G protein signaling pathways RO:HOM0000017 wikipathways WP813 G protein signaling pathways lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP232 G protein signaling pathways RO:HOM0000017 wikipathways WP931 G protein signaling pathways lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP2324 AGE/RAGE pathway RO:HOM0000017 wikipathways WP3124 AGE/RAGE pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP2332 Interleukin-11 signaling pathway RO:HOM0000017 wikipathways WP3159 Interleukin-11 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP2333 Trans-sulfuration pathway RO:HOM0000017 wikipathways WP3145 Trans-sulfuration pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP2338 miRNA biogenesis RO:HOM0000017 wikipathways WP3140 miRNA biogenesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP235 Wnt signaling RO:HOM0000017 wikipathways WP428 Wnt signaling lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP2359 Parkin-ubiquitin proteasomal system pathway RO:HOM0000017 wikipathways WP3199 Parkin-ubiquitin proteasomal system pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP236 Adipogenesis RO:HOM0000017 wikipathways WP869 Adipogenesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP236 Adipogenesis RO:HOM0000017 wikipathways WP987 Adipogenesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP2361 Gastric cancer network 1 RO:HOM0000017 wikipathways WP3166 Gastric cancer network 1 lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP2363 Gastric cancer network 2 RO:HOM0000017 wikipathways WP3139 Gastric cancer network 2 lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP2366 Butyrate-induced histone acetylation RO:HOM0000017 wikipathways WP3249 Butyrate-induced histone acetylation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP2369 Histone modifications RO:HOM0000017 wikipathways WP300 Histone modifications lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP2369 Histone modifications RO:HOM0000017 wikipathways WP3123 Histone modifications lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP2374 Oncostatin M signaling pathway RO:HOM0000017 wikipathways WP3277 Oncostatin M signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP238 Osteoblast signaling RO:HOM0000017 wikipathways WP322 Osteoblast signaling lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP238 Osteoblast signaling RO:HOM0000017 wikipathways WP956 Osteoblast signaling lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP240 Alanine and aspartate metabolism RO:HOM0000017 wikipathways WP3262 Alanine and aspartate metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP2406 Cardiac progenitor differentiation RO:HOM0000017 wikipathways WP3127 Cardiac progenitor differentiation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP241 One-carbon metabolism RO:HOM0000017 wikipathways WP435 One-carbon metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP241 One-carbon metabolism RO:HOM0000017 wikipathways WP796 One-carbon metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP241 One-carbon metabolism RO:HOM0000017 wikipathways WP909 One-carbon metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP2431 Spinal cord injury RO:HOM0000017 wikipathways WP2432 Spinal cord injury lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP2431 Spinal cord injury RO:HOM0000017 wikipathways WP2433 Spinal cord injury lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP2431 Spinal cord injury RO:HOM0000017 wikipathways WP3186 Spinal cord injury lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP2432 Spinal cord injury RO:HOM0000017 wikipathways WP2433 Spinal cord injury lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP2432 Spinal cord injury RO:HOM0000017 wikipathways WP3186 Spinal cord injury lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP2433 Spinal cord injury RO:HOM0000017 wikipathways WP3186 Spinal cord injury lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP2436 Dopamine metabolism RO:HOM0000017 wikipathways WP3155 Dopamine metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP244 Alpha 6 beta 4 signaling pathway RO:HOM0000017 wikipathways WP985 Alpha 6 beta 4 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP2446 Retinoblastoma gene in cancer RO:HOM0000017 wikipathways WP3206 Retinoblastoma gene in cancer lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP2447 Amyotrophic lateral sclerosis (ALS) RO:HOM0000017 wikipathways WP3243 Amyotrophic lateral sclerosis (ALS) lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP2453 TCA cycle and deficiency of pyruvate dehydrogenase complex (PDHc) RO:HOM0000017 wikipathways WP3149 TCA cycle and deficiency of pyruvate dehydrogenase complex (PDHc) lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP246 TNF-alpha NF-kB signaling pathway RO:HOM0000017 wikipathways WP457 TNF-alpha NF-kB signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP247 Small ligand GPCRs RO:HOM0000017 wikipathways WP971 Small ligand GPCRs lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP2491 Diclofenac metabolic pathway RO:HOM0000017 wikipathways WP3152 Diclofenac metabolic pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP25 Fatty acid beta-oxidation 3 RO:HOM0000017 wikipathways WP499 Fatty acid beta-oxidation 3 lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP251 Mapk cascade RO:HOM0000017 wikipathways WP422 MAPK cascade lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP251 Mapk cascade RO:HOM0000017 wikipathways WP446 Mapk cascade lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP2516 ATM signaling pathway RO:HOM0000017 wikipathways WP3221 ATM signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP2516 ATM signaling pathway RO:HOM0000017 wikipathways WP654 ATM signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP2525 Trans-sulfuration and one-carbon metabolism RO:HOM0000017 wikipathways WP3135 Trans-sulfuration and one-carbon metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP2526 PDGF pathway RO:HOM0000017 wikipathways WP3200 PDGF pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP253 Glycolysis RO:HOM0000017 wikipathways WP2621 Glycolysis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP253 Glycolysis RO:HOM0000017 wikipathways WP2862 Glycolysis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP2533 Glycerophospholipid biosynthetic pathway RO:HOM0000017 wikipathways WP3198 Glycerophospholipid biosynthetic pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP2536 Colchicine metabolic pathway RO:HOM0000017 wikipathways WP3187 Colchicine metabolic pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP254 Apoptosis RO:HOM0000017 wikipathways WP787 Apoptosis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP2541 Sulindac metabolic pathway RO:HOM0000017 wikipathways WP2542 Sulindac metabolic pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP2541 Sulindac metabolic pathway RO:HOM0000017 wikipathways WP3150 Sulindac metabolic pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP2542 Sulindac metabolic pathway RO:HOM0000017 wikipathways WP3150 Sulindac metabolic pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP255 Blood clotting cascade RO:HOM0000017 wikipathways WP272 Blood clotting cascade lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP255 Blood clotting cascade RO:HOM0000017 wikipathways WP3251 Blood clotting cascade lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP255 Blood clotting cascade RO:HOM0000017 wikipathways WP460 Blood clotting cascade lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP255 Blood clotting cascade RO:HOM0000017 wikipathways WP775 Blood clotting cascade lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP255 Blood clotting cascade RO:HOM0000017 wikipathways WP887 Blood clotting cascade lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP2572 Primary focal segmental glomerulosclerosis (FSGS) RO:HOM0000017 wikipathways WP2573 Primary focal segmental glomerulosclerosis (FSGS) lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP2572 Primary focal segmental glomerulosclerosis (FSGS) RO:HOM0000017 wikipathways WP3233 Primary focal segmental glomerulosclerosis (FSGS) lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP2573 Primary focal segmental glomerulosclerosis (FSGS) RO:HOM0000017 wikipathways WP3233 Primary focal segmental glomerulosclerosis (FSGS) lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP2583 T cell receptor and co-stimulatory signaling RO:HOM0000017 wikipathways WP3282 T cell receptor and co-stimulatory signaling lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP2596 Gastric acid production RO:HOM0000017 wikipathways WP3172 Gastric acid production lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP2621 Glycolysis RO:HOM0000017 wikipathways WP2862 Glycolysis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP263 Ovarian infertility RO:HOM0000017 wikipathways WP273 Ovarian infertility lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP263 Ovarian infertility RO:HOM0000017 wikipathways WP3116 Ovarian infertility lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP263 Ovarian infertility RO:HOM0000017 wikipathways WP34 Ovarian infertility lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP263 Ovarian infertility RO:HOM0000017 wikipathways WP885 Ovarian infertility lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP2637 Interleukin-1 (IL-1) structural pathway RO:HOM0000017 wikipathways WP3178 Interleukin-1 (IL-1) structural pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP264 Acetylcholine synthesis RO:HOM0000017 wikipathways WP360 Acetylcholine synthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP264 Acetylcholine synthesis RO:HOM0000017 wikipathways WP476 Acetylcholine synthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP264 Acetylcholine synthesis RO:HOM0000017 wikipathways WP528 Acetylcholine synthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP2643 Nanoparticle-mediated activation of receptor signaling RO:HOM0000017 wikipathways WP3181 Nanoparticle-mediated activation of receptor signaling lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP2646 Lidocaine metabolism RO:HOM0000017 wikipathways WP3254 Lidocaine metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP265 Delta-Notch signaling pathway RO:HOM0000017 wikipathways WP827 Delta-Notch signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP265 Delta-Notch signaling pathway RO:HOM0000017 wikipathways WP946 Delta-Notch signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP269 Heme biosynthesis RO:HOM0000017 wikipathways WP561 Heme biosynthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP269 Heme biosynthesis RO:HOM0000017 wikipathways WP848 Heme biosynthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP269 Heme biosynthesis RO:HOM0000017 wikipathways WP86 Heme biosynthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP269 Heme biosynthesis RO:HOM0000017 wikipathways WP967 Heme biosynthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP270 Tryptophan metabolism RO:HOM0000017 wikipathways WP3248 Tryptophan metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP270 Tryptophan metabolism RO:HOM0000017 wikipathways WP465 Tryptophan metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP270 Tryptophan metabolism RO:HOM0000017 wikipathways WP79 Tryptophan metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP271 Cytokines and inflammatory response RO:HOM0000017 wikipathways WP530 Cytokines and inflammatory response lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP271 Cytokines and inflammatory response RO:HOM0000017 wikipathways WP879 Cytokines and inflammatory response lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP271 Cytokines and inflammatory response RO:HOM0000017 wikipathways WP997 Cytokines and inflammatory response lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP272 Blood clotting cascade RO:HOM0000017 wikipathways WP3251 Blood clotting cascade lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP272 Blood clotting cascade RO:HOM0000017 wikipathways WP460 Blood clotting cascade lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP272 Blood clotting cascade RO:HOM0000017 wikipathways WP775 Blood clotting cascade lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP272 Blood clotting cascade RO:HOM0000017 wikipathways WP887 Blood clotting cascade lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP273 Ovarian infertility RO:HOM0000017 wikipathways WP3116 Ovarian infertility lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP273 Ovarian infertility RO:HOM0000017 wikipathways WP34 Ovarian infertility lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP273 Ovarian infertility RO:HOM0000017 wikipathways WP885 Ovarian infertility lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP276 Monoamine GPCRs RO:HOM0000017 wikipathways WP570 Monoamine GPCRs lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP276 Monoamine GPCRs RO:HOM0000017 wikipathways WP58 Monoamine GPCRs lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP276 Monoamine GPCRs RO:HOM0000017 wikipathways WP839 Monoamine GPCRs lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP276 Monoamine GPCRs RO:HOM0000017 wikipathways WP957 Monoamine GPCRs lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP278 Matrix metalloproteinases RO:HOM0000017 wikipathways WP441 Matrix metalloproteinases lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP278 Matrix metalloproteinases RO:HOM0000017 wikipathways WP823 Matrix metalloproteinases lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP278 Matrix metalloproteinases RO:HOM0000017 wikipathways WP942 Matrix metalloproteinases lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP2795 Cardiac hypertrophic response RO:HOM0000017 wikipathways WP3250 Cardiac hypertrophic response lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP281 Proteasome degradation RO:HOM0000017 wikipathways WP302 Proteasome degradation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP281 Proteasome degradation RO:HOM0000017 wikipathways WP470 Proteasome degradation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP281 Proteasome degradation RO:HOM0000017 wikipathways WP519 Proteasome degradation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP2816 Felbamate metabolism RO:HOM0000017 wikipathways WP3189 Felbamate metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP282 Pentose phosphate pathway RO:HOM0000017 wikipathways WP312 Pentose phosphate pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP282 Pentose phosphate pathway RO:HOM0000017 wikipathways WP369 Pentose phosphate pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP282 Pentose phosphate pathway RO:HOM0000017 wikipathways WP63 Pentose phosphate pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP2828 Bladder cancer RO:HOM0000017 wikipathways WP3129 Bladder cancer lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP2849 Hematopoietic stem cell differentiation RO:HOM0000017 wikipathways WP3174 Hematopoietic stem cell differentiation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP2852 Gene regulatory network modelling somitogenesis RO:HOM0000017 wikipathways WP2854 Gene regulatory network modelling somitogenesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP2852 Gene regulatory network modelling somitogenesis RO:HOM0000017 wikipathways WP3216 Gene regulatory network modelling somitogenesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP2853 Endoderm differentiation RO:HOM0000017 wikipathways WP3240 Endoderm differentiation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP2854 Gene regulatory network modelling somitogenesis RO:HOM0000017 wikipathways WP3216 Gene regulatory network modelling somitogenesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP2855 Dopaminergic neurogenesis RO:HOM0000017 wikipathways WP3196 Dopaminergic neurogenesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP2857 Mesodermal commitment pathway RO:HOM0000017 wikipathways WP3183 Mesodermal commitment pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP2858 Ectoderm differentiation RO:HOM0000017 wikipathways WP3208 Ectoderm differentiation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP286 IL-3 signaling pathway RO:HOM0000017 wikipathways WP319 IL-3 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP286 IL-3 signaling pathway RO:HOM0000017 wikipathways WP373 IL-3 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP2864 Apoptosis-related network due to altered Notch3 in ovarian cancer RO:HOM0000017 wikipathways WP3126 Apoptosis-related network due to altered Notch3 in ovarian cancer lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP2868 TCA cycle nutrient use and invasiveness of ovarian cancer RO:HOM0000017 wikipathways WP3252 TCA cycle nutrient use and invasiveness of ovarian cancer lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP2870 Extracellular vesicle-mediated signaling in recipient cells RO:HOM0000017 wikipathways WP3161 Extracellular vesicle-mediated signaling in recipient cells lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP2872 White fat cell differentiation RO:HOM0000017 wikipathways WP4149 White fat cell differentiation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP2873 Aryl hydrocarbon receptor pathway RO:HOM0000017 wikipathways WP3205 Aryl hydrocarbon receptor pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP2874 Liver X receptor pathway RO:HOM0000017 wikipathways WP3188 Liver X receptor pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP2875 Constitutive androstane receptor pathway RO:HOM0000017 wikipathways WP3131 Constitutive androstane receptor pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP2878 PPAR-alpha pathway RO:HOM0000017 wikipathways WP3258 PPAR-alpha pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP2879 Farnesoid X receptor pathway RO:HOM0000017 wikipathways WP3269 Farnesoid X receptor pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP288 Nod-like receptor (NLR) signaling pathway RO:HOM0000017 wikipathways WP799 Nod-like receptor (NLR) signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP288 Nod-like receptor (NLR) signaling pathway RO:HOM0000017 wikipathways WP914 Nod-like receptor (NLR) signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP2881 Estrogen receptor pathway RO:HOM0000017 wikipathways WP3163 Estrogen receptor pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP2884 NRF2 pathway RO:HOM0000017 wikipathways WP3190 NRF2 pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP2889 Oxytocin signaling RO:HOM0000017 wikipathways WP3222 Oxytocin signaling lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP289 Myometrial relaxation and contraction pathways RO:HOM0000017 wikipathways WP3276 Myometrial relaxation and contraction pathways lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP289 Myometrial relaxation and contraction pathways RO:HOM0000017 wikipathways WP385 Myometrial relaxation and contraction pathways lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP2895 Differentiation of white and brown adipocyte RO:HOM0000017 wikipathways WP3225 Differentiation of white and brown adipocyte lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP29 Notch signaling pathway RO:HOM0000017 wikipathways WP517 Notch signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP29 Notch signaling pathway RO:HOM0000017 wikipathways WP798 Notch signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP29 Notch signaling pathway RO:HOM0000017 wikipathways WP912 Notch signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP2910 Mecp2 and associated Rett syndrome RO:HOM0000017 wikipathways WP3584 MECP2 and associated Rett syndrome lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP2916 Interactome of polycomb repressive complex 2 (PRC2) RO:HOM0000017 wikipathways WP3136 Interactome of polycomb repressive complex 2 (PRC2) lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP2928 miR-222 in exercise-induced cardiac growth RO:HOM0000017 wikipathways WP3938 miR-222 in exercise-induced cardiac growth lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP293 Eicosanoid synthesis RO:HOM0000017 wikipathways WP318 Eicosanoid synthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP293 Eicosanoid synthesis RO:HOM0000017 wikipathways WP854 Eicosanoid synthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP293 Eicosanoid synthesis RO:HOM0000017 wikipathways WP972 Eicosanoid synthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP294 p38 Mapk signaling pathway RO:HOM0000017 wikipathways WP350 p38 Mapk signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP294 p38 Mapk signaling pathway RO:HOM0000017 wikipathways WP400 p38 MAPK signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP294 p38 Mapk signaling pathway RO:HOM0000017 wikipathways WP803 p38 MAPK signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP294 p38 Mapk signaling pathway RO:HOM0000017 wikipathways WP918 p38 MAPK signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP2940 Polar auxin transport RO:HOM0000017 wikipathways WP2941 Polar auxin transport lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP2942 DDX1 as a regulatory component of the Drosha microprocessor RO:HOM0000017 wikipathways WP3241 DDX1 as a regulatory component of the Drosha microprocessor lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP295 Electron transport chain RO:HOM0000017 wikipathways WP542 Electron transport chain lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP295 Electron transport chain RO:HOM0000017 wikipathways WP59 Electron transport chain lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP298 G13 signaling pathway RO:HOM0000017 wikipathways WP520 G13 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP298 G13 signaling pathway RO:HOM0000017 wikipathways WP524 G13 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP298 G13 signaling pathway RO:HOM0000017 wikipathways WP826 G13 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP298 G13 signaling pathway RO:HOM0000017 wikipathways WP945 G13 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP299 Nuclear receptors in lipid metabolism and toxicity RO:HOM0000017 wikipathways WP431 Nuclear receptors in lipid metabolism and toxicity lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP299 Nuclear receptors in lipid metabolism and toxicity RO:HOM0000017 wikipathways WP755 Nuclear receptors in lipid metabolism and toxicity lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP299 Nuclear receptors in lipid metabolism and toxicity RO:HOM0000017 wikipathways WP863 Nuclear receptors in lipid metabolism and toxicity lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP299 Nuclear receptors in lipid metabolism and toxicity RO:HOM0000017 wikipathways WP981 Nuclear receptors in lipid metabolism and toxicity lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP30 Cytoplasmic ribosomal proteins RO:HOM0000017 wikipathways WP324 Cytoplasmic ribosomal proteins lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP30 Cytoplasmic ribosomal proteins RO:HOM0000017 wikipathways WP477 Cytoplasmic ribosomal proteins lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP30 Cytoplasmic ribosomal proteins RO:HOM0000017 wikipathways WP540 Cytoplasmic ribosomal proteins lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP300 Histone modifications RO:HOM0000017 wikipathways WP3123 Histone modifications lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP302 Proteasome degradation RO:HOM0000017 wikipathways WP470 Proteasome degradation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP302 Proteasome degradation RO:HOM0000017 wikipathways WP519 Proteasome degradation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP303 Prostaglandin synthesis and regulation RO:HOM0000017 wikipathways WP374 Prostaglandin synthesis and regulation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP303 Prostaglandin synthesis and regulation RO:HOM0000017 wikipathways WP98 Prostaglandin synthesis and regulation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP303 Prostaglandin synthesis and regulation RO:HOM0000017 wikipathways WP995 Prostaglandin synthesis and regulation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP304 Kit receptor signaling pathway RO:HOM0000017 wikipathways WP407 Kit receptor signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP304 Kit receptor signaling pathway RO:HOM0000017 wikipathways WP774 Kit receptor signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP304 Kit receptor signaling pathway RO:HOM0000017 wikipathways WP886 Kit receptor signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP306 Focal adhesion RO:HOM0000017 wikipathways WP3197 Focal adhesion lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP306 Focal adhesion RO:HOM0000017 wikipathways WP85 Focal adhesion lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP307 Translation factors RO:HOM0000017 wikipathways WP32 Translation factors lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP307 Translation factors RO:HOM0000017 wikipathways WP537 Translation factors lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP307 Translation factors RO:HOM0000017 wikipathways WP965 Translation factors lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP310 mRNA processing RO:HOM0000017 wikipathways WP411 mRNA processing lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP310 mRNA processing RO:HOM0000017 wikipathways WP467 mRNA processing lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP310 mRNA processing RO:HOM0000017 wikipathways WP529 mRNA processing lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP310 mRNA processing RO:HOM0000017 wikipathways WP793 mRNA processing lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP310 mRNA processing RO:HOM0000017 wikipathways WP906 mRNA Processing lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP311 Ketone bodies synthesis and degradation RO:HOM0000017 wikipathways WP427 Ketone bodies synthesis and degradation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP311 Ketone bodies synthesis and degradation RO:HOM0000017 wikipathways WP784 Ketone bodies synthesis and degradation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP311 Ketone bodies synthesis and degradation RO:HOM0000017 wikipathways WP898 Ketone bodies synthesis and degradation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP3115 Serotonin receptor 2 and STAT3 signaling RO:HOM0000017 wikipathways WP733 Serotonin receptor 2 and STAT3 signaling lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP3116 Ovarian infertility RO:HOM0000017 wikipathways WP34 Ovarian infertility lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP3116 Ovarian infertility RO:HOM0000017 wikipathways WP885 Ovarian infertility lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP3118 Monoamine transport RO:HOM0000017 wikipathways WP727 Monoamine transport lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP3119 DNA damage response RO:HOM0000017 wikipathways WP707 DNA damage response lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP312 Pentose phosphate pathway RO:HOM0000017 wikipathways WP369 Pentose phosphate pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP312 Pentose phosphate pathway RO:HOM0000017 wikipathways WP63 Pentose phosphate pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP313 Hepatocyte growth factor receptor signaling RO:HOM0000017 wikipathways WP444 Hepatocyte growth factor receptor signaling lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP313 Hepatocyte growth factor receptor signaling RO:HOM0000017 wikipathways WP810 Hepatocyte growth factor receptor signaling lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP313 Hepatocyte growth factor receptor signaling RO:HOM0000017 wikipathways WP927 Hepatocyte growth factor receptor signaling lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP313 Hepatocyte growth factor receptor signaling RO:HOM0000017 wikipathways WP94 Hepatocyte growth factor receptor signaling lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP3134 Mitochondrial gene expression RO:HOM0000017 wikipathways WP391 Mitochondrial gene expression lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP3143 DNA damage response (only ATM dependent) RO:HOM0000017 wikipathways WP710 DNA damage response (only ATM dependent) lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP316 Striated muscle contraction RO:HOM0000017 wikipathways WP969 Striated muscle contraction lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP3168 Biogenic amine synthesis RO:HOM0000017 wikipathways WP323 Biogenic amine synthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP3168 Biogenic amine synthesis RO:HOM0000017 wikipathways WP522 Biogenic amine synthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP3168 Biogenic amine synthesis RO:HOM0000017 wikipathways WP550 Biogenic amine synthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP317 Glycogen metabolism RO:HOM0000017 wikipathways WP436 Glycogen metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP317 Glycogen metabolism RO:HOM0000017 wikipathways WP835 Glycogen metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP317 Glycogen metabolism RO:HOM0000017 wikipathways WP955 Glycogen metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP318 Eicosanoid synthesis RO:HOM0000017 wikipathways WP854 Eicosanoid synthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP318 Eicosanoid synthesis RO:HOM0000017 wikipathways WP972 Eicosanoid synthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP319 IL-3 signaling pathway RO:HOM0000017 wikipathways WP373 IL-3 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP3197 Focal adhesion RO:HOM0000017 wikipathways WP85 Focal adhesion lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP32 Translation factors RO:HOM0000017 wikipathways WP537 Translation factors lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP32 Translation factors RO:HOM0000017 wikipathways WP965 Translation factors lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP3207 Glutathione metabolism RO:HOM0000017 wikipathways WP469 Glutathione metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP321 Nucleotide metabolism RO:HOM0000017 wikipathways WP3211 Nucleotide metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP321 Nucleotide metabolism RO:HOM0000017 wikipathways WP404 Nucleotide metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP321 Nucleotide metabolism RO:HOM0000017 wikipathways WP87 Nucleotide metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP3210 Glucuronidation RO:HOM0000017 wikipathways WP698 Glucuronidation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP3211 Nucleotide metabolism RO:HOM0000017 wikipathways WP404 Nucleotide metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP3211 Nucleotide metabolism RO:HOM0000017 wikipathways WP87 Nucleotide metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP3213 Interferon type I signaling pathways RO:HOM0000017 wikipathways WP585 Interferon type I signaling pathways lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP322 Osteoblast signaling RO:HOM0000017 wikipathways WP956 Osteoblast signaling lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP3221 ATM signaling pathway RO:HOM0000017 wikipathways WP654 ATM signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP323 Biogenic amine synthesis RO:HOM0000017 wikipathways WP522 Biogenic amine synthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP323 Biogenic amine synthesis RO:HOM0000017 wikipathways WP550 Biogenic amine synthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP3230 Exercise-induced circadian regulation RO:HOM0000017 wikipathways WP410 Exercise-induced circadian regulation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP3230 Exercise-induced circadian regulation RO:HOM0000017 wikipathways WP544 Exercise-induced circadian regulation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP3230 Exercise-induced circadian regulation RO:HOM0000017 wikipathways WP562 Exercise-induced circadian regulation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP3231 Senescence and autophagy in cancer RO:HOM0000017 wikipathways WP615 Senescence and autophagy in cancer lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP3232 Sphingolipid metabolism RO:HOM0000017 wikipathways WP370 Sphingolipid metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP3234 Sulfation biotransformation reaction RO:HOM0000017 wikipathways WP692 Sulfation biotransformation reaction lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP324 Cytoplasmic ribosomal proteins RO:HOM0000017 wikipathways WP477 Cytoplasmic ribosomal proteins lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP324 Cytoplasmic ribosomal proteins RO:HOM0000017 wikipathways WP540 Cytoplasmic ribosomal proteins lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP3245 Urea cycle and metabolism of amino groups RO:HOM0000017 wikipathways WP497 Urea cycle and metabolism of amino groups lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP3247 Aflatoxin B1 metabolism RO:HOM0000017 wikipathways WP699 Aflatoxin B1 metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP3247 Aflatoxin B1 metabolism RO:HOM0000017 wikipathways WP925 Aflatoxin B1 metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP3248 Tryptophan metabolism RO:HOM0000017 wikipathways WP465 Tryptophan metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP3248 Tryptophan metabolism RO:HOM0000017 wikipathways WP79 Tryptophan metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP325 Triacylglyceride synthesis RO:HOM0000017 wikipathways WP386 Triacylglyceride synthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP3251 Blood clotting cascade RO:HOM0000017 wikipathways WP460 Blood clotting cascade lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP3251 Blood clotting cascade RO:HOM0000017 wikipathways WP775 Blood clotting cascade lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP3251 Blood clotting cascade RO:HOM0000017 wikipathways WP887 Blood clotting cascade lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP326 Calcium regulation in cardiac cells RO:HOM0000017 wikipathways WP536 Calcium regulation in cardiac cells lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP326 Calcium regulation in cardiac cells RO:HOM0000017 wikipathways WP553 Calcium regulation in cardiac cells lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP326 Calcium regulation in cardiac cells RO:HOM0000017 wikipathways WP808 Calcium regulation in cardiac cells lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP326 Calcium regulation in cardiac cells RO:HOM0000017 wikipathways WP923 Calcium regulation in cardiac cells lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP3263 Benzo(a)pyrene metabolism RO:HOM0000017 wikipathways WP696 Benzo(a)pyrene metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP3264 Tamoxifen metabolism RO:HOM0000017 wikipathways WP691 Tamoxifen metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP327 GPCRs, class C metabotropic glutamate, pheromone RO:HOM0000017 wikipathways WP42 GPCRs, class C metabotropic glutamate, pheromone lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP327 GPCRs, class C metabotropic glutamate, pheromone RO:HOM0000017 wikipathways WP501 GPCRs, class C metabotropic glutamate, pheromone lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP3271 IL-1 signaling pathway RO:HOM0000017 wikipathways WP355 IL-1 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP3271 IL-1 signaling pathway RO:HOM0000017 wikipathways WP37 IL-1 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP3272 Serotonin receptor 4/6/7 and NR3C signaling RO:HOM0000017 wikipathways WP734 Serotonin receptor 4/6/7 and NR3C signaling lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP3276 Myometrial relaxation and contraction pathways RO:HOM0000017 wikipathways WP385 Myometrial relaxation and contraction pathways lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP3286 Copper homeostasis RO:HOM0000017 wikipathways WP3962 Copper homeostasis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP33 Fatty acid omega-oxidation RO:HOM0000017 wikipathways WP852 Fatty acid omega-oxidation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP33 Fatty acid omega-oxidation RO:HOM0000017 wikipathways WP970 Fatty acid omega-oxidation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP334 GPCRs, class B secretin-like RO:HOM0000017 wikipathways WP378 GPCRs, class B secretin-like lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP334 GPCRs, class B secretin-like RO:HOM0000017 wikipathways WP456 GPCRs, class B secretin-like lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP336 Fatty acid biosynthesis RO:HOM0000017 wikipathways WP357 Fatty acid biosynthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP336 Fatty acid biosynthesis RO:HOM0000017 wikipathways WP38 Fatty acid biosynthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP336 Fatty acid biosynthesis RO:HOM0000017 wikipathways WP504 Fatty acid biosynthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP336 Fatty acid biosynthesis RO:HOM0000017 wikipathways WP568 Fatty acid biosynthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP34 Ovarian infertility RO:HOM0000017 wikipathways WP885 Ovarian infertility lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP347 TCA cycle RO:HOM0000017 wikipathways WP434 TCA cycle lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP347 TCA cycle RO:HOM0000017 wikipathways WP490 TCA cycle lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP347 TCA cycle RO:HOM0000017 wikipathways WP76 TCA cycle lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP347 TCA cycle RO:HOM0000017 wikipathways WP999 TCA cycle lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP348 G1 to S cell cycle control RO:HOM0000017 wikipathways WP413 G1 to S cell cycle control lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP348 G1 to S cell cycle control RO:HOM0000017 wikipathways WP445 G1 to S cell cycle control lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP348 G1 to S cell cycle control RO:HOM0000017 wikipathways WP45 G1 to S cell cycle control lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP348 G1 to S cell cycle control RO:HOM0000017 wikipathways WP840 G1 to S cell cycle control lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP348 G1 to S cell cycle control RO:HOM0000017 wikipathways WP959 G1 to S cell cycle control lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP349 Synthesis and degradation of ketone bodies RO:HOM0000017 wikipathways WP543 Synthesis and degradation of ketone bodies lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP35 G protein signaling pathways RO:HOM0000017 wikipathways WP73 G protein signaling pathways lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP35 G protein signaling pathways RO:HOM0000017 wikipathways WP813 G protein signaling pathways lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP35 G protein signaling pathways RO:HOM0000017 wikipathways WP931 G protein signaling pathways lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP350 p38 Mapk signaling pathway RO:HOM0000017 wikipathways WP400 p38 MAPK signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP350 p38 Mapk signaling pathway RO:HOM0000017 wikipathways WP803 p38 MAPK signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP350 p38 Mapk signaling pathway RO:HOM0000017 wikipathways WP918 p38 MAPK signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP351 Regulation of actin cytoskeleton RO:HOM0000017 wikipathways WP51 Regulation of actin cytoskeleton lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP351 Regulation of actin cytoskeleton RO:HOM0000017 wikipathways WP523 Regulation of actin cytoskeleton lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP351 Regulation of actin cytoskeleton RO:HOM0000017 wikipathways WP824 Regulation of actin cytoskeleton lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP355 IL-1 signaling pathway RO:HOM0000017 wikipathways WP37 IL-1 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP357 Fatty acid biosynthesis RO:HOM0000017 wikipathways WP38 Fatty acid biosynthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP357 Fatty acid biosynthesis RO:HOM0000017 wikipathways WP504 Fatty acid biosynthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP357 Fatty acid biosynthesis RO:HOM0000017 wikipathways WP568 Fatty acid biosynthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP358 MAPK signaling pathway RO:HOM0000017 wikipathways WP382 MAPK signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP358 MAPK signaling pathway RO:HOM0000017 wikipathways WP493 Mapk signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP358 MAPK signaling pathway RO:HOM0000017 wikipathways WP510 MAPK signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP358 MAPK signaling pathway RO:HOM0000017 wikipathways WP769 MAPK signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP358 MAPK signaling pathway RO:HOM0000017 wikipathways WP880 MAPK signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP358 MAPK signaling pathway RO:HOM0000017 wikipathways WP998 MAPK signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP3592 ApoE and miR-146 in inflammation and atherosclerosis RO:HOM0000017 wikipathways WP3926 ApoE and miR-146 in inflammation and atherosclerosis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP360 Acetylcholine synthesis RO:HOM0000017 wikipathways WP476 Acetylcholine synthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP360 Acetylcholine synthesis RO:HOM0000017 wikipathways WP528 Acetylcholine synthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP3624 Lung fibrosis RO:HOM0000017 wikipathways WP3632 Lung fibrosis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP3625 Tyrobp causal network in microglia RO:HOM0000017 wikipathways WP3945 TYROBP causal network in microglia lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP3626 Microglia pathogen phagocytosis pathway RO:HOM0000017 wikipathways WP3937 Microglia pathogen phagocytosis pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP363 Wnt signaling pathway RO:HOM0000017 wikipathways WP403 Wnt signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP363 Wnt signaling pathway RO:HOM0000017 wikipathways WP785 Wnt signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP363 Wnt signaling pathway RO:HOM0000017 wikipathways WP899 Wnt signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP363 Wnt signaling pathway RO:HOM0000017 wikipathways WP97 Wnt signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP364 IL-6 signaling pathway RO:HOM0000017 wikipathways WP387 IL-6 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP364 IL-6 signaling pathway RO:HOM0000017 wikipathways WP976 IL-6 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP3652 EDA signaling in hair follicle development RO:HOM0000017 wikipathways WP3930 EDA signaling in hair follicle development lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP3673 Hfe effect on hepcidin production RO:HOM0000017 wikipathways WP3924 Hfe effect on hepcidin production lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP3675 Factors and pathways affecting insulin-like growth factor (IGF1)-Akt signaling RO:HOM0000017 wikipathways WP3850 Factors and pathways affecting insulin-like growth factor (IGF1)-Akt signaling lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP368 Mitochondrial long chain fatty acid beta-oxidation RO:HOM0000017 wikipathways WP401 Mitochondrial long chain fatty acid beta-oxidation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP368 Mitochondrial long chain fatty acid beta-oxidation RO:HOM0000017 wikipathways WP406 Mitochondrial long chain fatty acid beta-oxidation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP368 Mitochondrial long chain fatty acid beta-oxidation RO:HOM0000017 wikipathways WP448 Mitochondrial long chain fatty acid beta-oxidation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP368 Mitochondrial long chain fatty acid beta-oxidation RO:HOM0000017 wikipathways WP498 Mitochondrial long chain fatty acid beta-oxidation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP368 Mitochondrial long chain fatty acid beta-oxidation RO:HOM0000017 wikipathways WP763 Mitochondrial long chain fatty acid beta-oxidation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP368 Mitochondrial long chain fatty acid beta-oxidation RO:HOM0000017 wikipathways WP989 Mitochondrial long chain fatty acid beta-oxidation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP369 Pentose phosphate pathway RO:HOM0000017 wikipathways WP63 Pentose phosphate pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP372 Beta-oxidation meta-pathway RO:HOM0000017 wikipathways WP443 Beta-oxidation meta-pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP374 Prostaglandin synthesis and regulation RO:HOM0000017 wikipathways WP98 Prostaglandin synthesis and regulation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP374 Prostaglandin synthesis and regulation RO:HOM0000017 wikipathways WP995 Prostaglandin synthesis and regulation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP375 Wnt signaling pathway (NetPath) RO:HOM0000017 wikipathways WP539 Wnt signaling pathway (NetPath) lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP375 Wnt signaling pathway (NetPath) RO:HOM0000017 wikipathways WP980 Wnt signaling pathway (Netpath) lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP378 GPCRs, class B secretin-like RO:HOM0000017 wikipathways WP456 GPCRs, class B secretin-like lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP38 Fatty acid biosynthesis RO:HOM0000017 wikipathways WP504 Fatty acid biosynthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP38 Fatty acid biosynthesis RO:HOM0000017 wikipathways WP568 Fatty acid biosynthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP382 MAPK signaling pathway RO:HOM0000017 wikipathways WP493 Mapk signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP382 MAPK signaling pathway RO:HOM0000017 wikipathways WP510 MAPK signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP382 MAPK signaling pathway RO:HOM0000017 wikipathways WP769 MAPK signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP382 MAPK signaling pathway RO:HOM0000017 wikipathways WP880 MAPK signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP382 MAPK signaling pathway RO:HOM0000017 wikipathways WP998 MAPK signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP3830 Toll, IMD, JAK/STAT pathways for immune response to pathogens RO:HOM0000017 wikipathways WP3856 Toll, IMD, JAK/STAT pathways for immune response to pathogens lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP384 Apoptosis modulation by HSP70 RO:HOM0000017 wikipathways WP487 Apoptosis modulation by HSP70 lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP384 Apoptosis modulation by HSP70 RO:HOM0000017 wikipathways WP963 Apoptosis modulation by HSP70 lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP3843 Vitamin A and carotenoid metabolism RO:HOM0000017 wikipathways WP716 Vitamin A and carotenoid metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP3857 Wnt signaling in kidney disease RO:HOM0000017 wikipathways WP4150 Wnt signaling in kidney disease lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP3864 Robo4 and VEGF signaling pathways crosstalk RO:HOM0000017 wikipathways WP3943 Robo4 and VEGF signaling pathways crosstalk lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP387 IL-6 signaling pathway RO:HOM0000017 wikipathways WP976 IL-6 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP3925 Amino acid metabolism RO:HOM0000017 wikipathways WP662 Amino acid metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP3934 Leptin and adiponectin RO:HOM0000017 wikipathways WP683 Leptin and adiponectin lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP3935 Leptin-insulin signaling overlap RO:HOM0000017 wikipathways WP578 Leptin-insulin signaling overlap lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP3942 PPAR signaling pathway RO:HOM0000017 wikipathways WP4020 PPAR signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP396 ACE inhibitor pathway RO:HOM0000017 wikipathways WP468 ACE inhibitor pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP396 ACE inhibitor pathway RO:HOM0000017 wikipathways WP554 ACE inhibitor pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP396 ACE inhibitor pathway RO:HOM0000017 wikipathways WP557 ACE inhibitor pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP396 ACE inhibitor pathway RO:HOM0000017 wikipathways WP801 ACE inhibitor pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP396 ACE inhibitor pathway RO:HOM0000017 wikipathways WP915 ACE inhibitor pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP397 Id signaling pathway RO:HOM0000017 wikipathways WP512 Id signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP397 Id signaling pathway RO:HOM0000017 wikipathways WP53 ID signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP397 Id signaling pathway RO:HOM0000017 wikipathways WP934 Id signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP399 Wnt signaling pathway and pluripotency RO:HOM0000017 wikipathways WP723 Wnt signaling pathway and pluripotency lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP399 Wnt signaling pathway and pluripotency RO:HOM0000017 wikipathways WP779 Wnt signaling pathway and pluripotency lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP40 Inflammatory response pathway RO:HOM0000017 wikipathways WP453 Inflammatory response pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP40 Inflammatory response pathway RO:HOM0000017 wikipathways WP458 Inflammatory response pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP400 p38 MAPK signaling pathway RO:HOM0000017 wikipathways WP803 p38 MAPK signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP400 p38 MAPK signaling pathway RO:HOM0000017 wikipathways WP918 p38 MAPK signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP401 Mitochondrial long chain fatty acid beta-oxidation RO:HOM0000017 wikipathways WP406 Mitochondrial long chain fatty acid beta-oxidation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP401 Mitochondrial long chain fatty acid beta-oxidation RO:HOM0000017 wikipathways WP448 Mitochondrial long chain fatty acid beta-oxidation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP401 Mitochondrial long chain fatty acid beta-oxidation RO:HOM0000017 wikipathways WP498 Mitochondrial long chain fatty acid beta-oxidation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP401 Mitochondrial long chain fatty acid beta-oxidation RO:HOM0000017 wikipathways WP763 Mitochondrial long chain fatty acid beta-oxidation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP401 Mitochondrial long chain fatty acid beta-oxidation RO:HOM0000017 wikipathways WP989 Mitochondrial long chain fatty acid beta-oxidation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP403 Wnt signaling pathway RO:HOM0000017 wikipathways WP785 Wnt signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP403 Wnt signaling pathway RO:HOM0000017 wikipathways WP899 Wnt signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP403 Wnt signaling pathway RO:HOM0000017 wikipathways WP97 Wnt signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP404 Nucleotide metabolism RO:HOM0000017 wikipathways WP87 Nucleotide metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP405 Eukaryotic transcription initiation RO:HOM0000017 wikipathways WP425 Eukaryotic transcription initiation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP405 Eukaryotic transcription initiation RO:HOM0000017 wikipathways WP491 Eukaryotic transcription initiation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP405 Eukaryotic transcription initiation RO:HOM0000017 wikipathways WP518 Eukaryotic transcription initiation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP405 Eukaryotic transcription initiation RO:HOM0000017 wikipathways WP567 Eukaryotic transcription initiation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP405 Eukaryotic transcription initiation RO:HOM0000017 wikipathways WP830 Eukaryotic transcription initiation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP405 Eukaryotic transcription initiation RO:HOM0000017 wikipathways WP948 Eukaryotic transcription initiation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP406 Mitochondrial long chain fatty acid beta-oxidation RO:HOM0000017 wikipathways WP448 Mitochondrial long chain fatty acid beta-oxidation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP406 Mitochondrial long chain fatty acid beta-oxidation RO:HOM0000017 wikipathways WP498 Mitochondrial long chain fatty acid beta-oxidation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP406 Mitochondrial long chain fatty acid beta-oxidation RO:HOM0000017 wikipathways WP763 Mitochondrial long chain fatty acid beta-oxidation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP406 Mitochondrial long chain fatty acid beta-oxidation RO:HOM0000017 wikipathways WP989 Mitochondrial long chain fatty acid beta-oxidation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP407 Kit receptor signaling pathway RO:HOM0000017 wikipathways WP774 Kit receptor signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP407 Kit receptor signaling pathway RO:HOM0000017 wikipathways WP886 Kit receptor signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP408 Oxidative stress response RO:HOM0000017 wikipathways WP412 Oxidative stress response lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP409 GPCRs, other RO:HOM0000017 wikipathways WP41 GPCRs, other lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP409 GPCRs, other RO:HOM0000017 wikipathways WP990 GPCRs, other lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP41 GPCRs, other RO:HOM0000017 wikipathways WP990 GPCRs, other lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP410 Exercise-induced circadian regulation RO:HOM0000017 wikipathways WP544 Exercise-induced circadian regulation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP410 Exercise-induced circadian regulation RO:HOM0000017 wikipathways WP562 Exercise-induced circadian regulation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP411 mRNA processing RO:HOM0000017 wikipathways WP467 mRNA processing lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP411 mRNA processing RO:HOM0000017 wikipathways WP529 mRNA processing lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP411 mRNA processing RO:HOM0000017 wikipathways WP793 mRNA processing lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP411 mRNA processing RO:HOM0000017 wikipathways WP906 mRNA Processing lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP413 G1 to S cell cycle control RO:HOM0000017 wikipathways WP445 G1 to S cell cycle control lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP413 G1 to S cell cycle control RO:HOM0000017 wikipathways WP45 G1 to S cell cycle control lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP413 G1 to S cell cycle control RO:HOM0000017 wikipathways WP840 G1 to S cell cycle control lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP413 G1 to S cell cycle control RO:HOM0000017 wikipathways WP959 G1 to S cell cycle control lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP4136 Fibrin complement receptor 3 signaling pathway RO:HOM0000017 wikipathways WP5128 Fibrin complement receptor 3 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP418 Beta-oxidation of unsaturated fatty acids RO:HOM0000017 wikipathways WP471 Beta-oxidation of unsaturated fatty acids lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP42 GPCRs, class C metabotropic glutamate, pheromone RO:HOM0000017 wikipathways WP501 GPCRs, class C metabotropic glutamate, pheromone lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP422 MAPK cascade RO:HOM0000017 wikipathways WP446 Mapk cascade lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP4249 Hedgehog signaling pathway RO:HOM0000017 wikipathways WP492 Hedgehog signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP4249 Hedgehog signaling pathway RO:HOM0000017 wikipathways WP574 Hedgehog signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP4249 Hedgehog signaling pathway RO:HOM0000017 wikipathways WP790 Hedgehog signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP4249 Hedgehog signaling pathway RO:HOM0000017 wikipathways WP905 Hedgehog signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP425 Eukaryotic transcription initiation RO:HOM0000017 wikipathways WP491 Eukaryotic transcription initiation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP425 Eukaryotic transcription initiation RO:HOM0000017 wikipathways WP518 Eukaryotic transcription initiation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP425 Eukaryotic transcription initiation RO:HOM0000017 wikipathways WP567 Eukaryotic transcription initiation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP425 Eukaryotic transcription initiation RO:HOM0000017 wikipathways WP830 Eukaryotic transcription initiation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP425 Eukaryotic transcription initiation RO:HOM0000017 wikipathways WP948 Eukaryotic transcription initiation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP4265 Ethanol metabolism resulting in production of ROS by CYP2E1 RO:HOM0000017 wikipathways WP4268 Ethanol metabolism resulting in production of ROS by CYP2E1 lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP427 Ketone bodies synthesis and degradation RO:HOM0000017 wikipathways WP784 Ketone bodies synthesis and degradation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP427 Ketone bodies synthesis and degradation RO:HOM0000017 wikipathways WP898 Ketone bodies synthesis and degradation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP431 Nuclear receptors in lipid metabolism and toxicity RO:HOM0000017 wikipathways WP755 Nuclear receptors in lipid metabolism and toxicity lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP431 Nuclear receptors in lipid metabolism and toxicity RO:HOM0000017 wikipathways WP863 Nuclear receptors in lipid metabolism and toxicity lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP431 Nuclear receptors in lipid metabolism and toxicity RO:HOM0000017 wikipathways WP981 Nuclear receptors in lipid metabolism and toxicity lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP434 TCA cycle RO:HOM0000017 wikipathways WP490 TCA cycle lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP434 TCA cycle RO:HOM0000017 wikipathways WP76 TCA cycle lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP434 TCA cycle RO:HOM0000017 wikipathways WP999 TCA cycle lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP4344 Sphingolipid metabolism overview RO:HOM0000017 wikipathways WP4725 Sphingolipid metabolism overview lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP4345 Glycerolipids and glycerophospholipids RO:HOM0000017 wikipathways WP4722 Glycerolipids and glycerophospholipids lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP4346 Cholesterol metabolism with Bloch and Kandutsch-Russell pathways RO:HOM0000017 wikipathways WP4718 Cholesterol metabolism with Bloch and Kandutsch-Russell pathways lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP4347 Eicosanoid metabolism via cyclooxygenases (COX) RO:HOM0000017 wikipathways WP4719 Eicosanoid metabolism via cyclooxygenases (COX) lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP435 One-carbon metabolism RO:HOM0000017 wikipathways WP796 One-carbon metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP435 One-carbon metabolism RO:HOM0000017 wikipathways WP909 One-carbon metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP4350 Omega-3 / omega-6 fatty acid synthesis RO:HOM0000017 wikipathways WP4723 Omega-3 / omega-6 fatty acid synthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP4351 Omega-9 fatty acid synthesis RO:HOM0000017 wikipathways WP4724 Omega-9 fatty acid synthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP436 Glycogen metabolism RO:HOM0000017 wikipathways WP835 Glycogen metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP436 Glycogen metabolism RO:HOM0000017 wikipathways WP955 Glycogen metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP437 EGF/EGFR signaling pathway RO:HOM0000017 wikipathways WP978 EGF/EGFR signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP438 Non-homologous end joining RO:HOM0000017 wikipathways WP979 Non-homologous end joining lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP439 Insulin signaling RO:HOM0000017 wikipathways WP481 Insulin signaling lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP439 Insulin signaling RO:HOM0000017 wikipathways WP65 Insulin signaling lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP439 Insulin signaling RO:HOM0000017 wikipathways WP743 Insulin signaling lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP439 Insulin signaling RO:HOM0000017 wikipathways WP966 Insulin signaling lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP44 IL-5 signaling pathway RO:HOM0000017 wikipathways WP968 IL-5 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP441 Matrix metalloproteinases RO:HOM0000017 wikipathways WP823 Matrix metalloproteinases lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP441 Matrix metalloproteinases RO:HOM0000017 wikipathways WP942 Matrix metalloproteinases lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP442 Hypertrophy model RO:HOM0000017 wikipathways WP516 Hypertrophy model lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP442 Hypertrophy model RO:HOM0000017 wikipathways WP982 Hypertrophy model lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP444 Hepatocyte growth factor receptor signaling RO:HOM0000017 wikipathways WP810 Hepatocyte growth factor receptor signaling lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP444 Hepatocyte growth factor receptor signaling RO:HOM0000017 wikipathways WP927 Hepatocyte growth factor receptor signaling lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP444 Hepatocyte growth factor receptor signaling RO:HOM0000017 wikipathways WP94 Hepatocyte growth factor receptor signaling lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP445 G1 to S cell cycle control RO:HOM0000017 wikipathways WP45 G1 to S cell cycle control lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP445 G1 to S cell cycle control RO:HOM0000017 wikipathways WP840 G1 to S cell cycle control lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP445 G1 to S cell cycle control RO:HOM0000017 wikipathways WP959 G1 to S cell cycle control lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP448 Mitochondrial long chain fatty acid beta-oxidation RO:HOM0000017 wikipathways WP498 Mitochondrial long chain fatty acid beta-oxidation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP448 Mitochondrial long chain fatty acid beta-oxidation RO:HOM0000017 wikipathways WP763 Mitochondrial long chain fatty acid beta-oxidation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP448 Mitochondrial long chain fatty acid beta-oxidation RO:HOM0000017 wikipathways WP989 Mitochondrial long chain fatty acid beta-oxidation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP45 G1 to S cell cycle control RO:HOM0000017 wikipathways WP840 G1 to S cell cycle control lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP45 G1 to S cell cycle control RO:HOM0000017 wikipathways WP959 G1 to S cell cycle control lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP450 IL-2 signaling pathway RO:HOM0000017 wikipathways WP49 IL-2 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP450 IL-2 signaling pathway RO:HOM0000017 wikipathways WP569 IL-2 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP450 IL-2 signaling pathway RO:HOM0000017 wikipathways WP973 IL-2 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP451 DNA replication RO:HOM0000017 wikipathways WP466 DNA replication lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP451 DNA replication RO:HOM0000017 wikipathways WP484 DNA replication lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP451 DNA replication RO:HOM0000017 wikipathways WP565 DNA replication lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP451 DNA replication RO:HOM0000017 wikipathways WP757 DNA replication lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP451 DNA replication RO:HOM0000017 wikipathways WP865 DNA replication lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP451 DNA replication RO:HOM0000017 wikipathways WP983 DNA replication lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP453 Inflammatory response pathway RO:HOM0000017 wikipathways WP458 Inflammatory response pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP454 Osteoclast signaling RO:HOM0000017 wikipathways WP890 Osteoclast signaling lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP455 GPCRs, class A rhodopsin-like RO:HOM0000017 wikipathways WP473 GPCRs, class A rhodopsin-like lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP460 Blood clotting cascade RO:HOM0000017 wikipathways WP775 Blood clotting cascade lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP460 Blood clotting cascade RO:HOM0000017 wikipathways WP887 Blood clotting cascade lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP461 Cholesterol biosynthesis RO:HOM0000017 wikipathways WP833 Cholesterol biosynthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP461 Cholesterol biosynthesis RO:HOM0000017 wikipathways WP952 Cholesterol biosynthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP465 Tryptophan metabolism RO:HOM0000017 wikipathways WP79 Tryptophan metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP466 DNA replication RO:HOM0000017 wikipathways WP484 DNA replication lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP466 DNA replication RO:HOM0000017 wikipathways WP565 DNA replication lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP466 DNA replication RO:HOM0000017 wikipathways WP757 DNA replication lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP466 DNA replication RO:HOM0000017 wikipathways WP865 DNA replication lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP466 DNA replication RO:HOM0000017 wikipathways WP983 DNA replication lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP467 mRNA processing RO:HOM0000017 wikipathways WP529 mRNA processing lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP467 mRNA processing RO:HOM0000017 wikipathways WP793 mRNA processing lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP467 mRNA processing RO:HOM0000017 wikipathways WP906 mRNA Processing lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP468 ACE inhibitor pathway RO:HOM0000017 wikipathways WP554 ACE inhibitor pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP468 ACE inhibitor pathway RO:HOM0000017 wikipathways WP557 ACE inhibitor pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP468 ACE inhibitor pathway RO:HOM0000017 wikipathways WP801 ACE inhibitor pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP468 ACE inhibitor pathway RO:HOM0000017 wikipathways WP915 ACE inhibitor pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP470 Proteasome degradation RO:HOM0000017 wikipathways WP519 Proteasome degradation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP475 Irinotecan pathway RO:HOM0000017 wikipathways WP961 Irinotecan pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP476 Acetylcholine synthesis RO:HOM0000017 wikipathways WP528 Acetylcholine synthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP477 Cytoplasmic ribosomal proteins RO:HOM0000017 wikipathways WP540 Cytoplasmic ribosomal proteins lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP481 Insulin signaling RO:HOM0000017 wikipathways WP65 Insulin signaling lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP481 Insulin signaling RO:HOM0000017 wikipathways WP743 Insulin signaling lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP481 Insulin signaling RO:HOM0000017 wikipathways WP966 Insulin signaling lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP4820 GDNF/RET signaling axis RO:HOM0000017 wikipathways WP4830 GDNF/RET signaling axis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP4835 Peroxiredoxin 2 induced ovarian failure RO:HOM0000017 wikipathways WP4873 Peroxiredoxin 2 induced ovarian failure lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP484 DNA replication RO:HOM0000017 wikipathways WP565 DNA replication lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP484 DNA replication RO:HOM0000017 wikipathways WP757 DNA replication lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP484 DNA replication RO:HOM0000017 wikipathways WP865 DNA replication lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP484 DNA replication RO:HOM0000017 wikipathways WP983 DNA replication lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP485 Alpha 6 beta 4 integrin signaling pathway RO:HOM0000017 wikipathways WP488 Alpha 6 beta 4 integrin signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP487 Apoptosis modulation by HSP70 RO:HOM0000017 wikipathways WP963 Apoptosis modulation by HSP70 lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP49 IL-2 signaling pathway RO:HOM0000017 wikipathways WP569 IL-2 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP49 IL-2 signaling pathway RO:HOM0000017 wikipathways WP973 IL-2 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP490 TCA cycle RO:HOM0000017 wikipathways WP76 TCA cycle lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP490 TCA cycle RO:HOM0000017 wikipathways WP999 TCA cycle lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP491 Eukaryotic transcription initiation RO:HOM0000017 wikipathways WP518 Eukaryotic transcription initiation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP491 Eukaryotic transcription initiation RO:HOM0000017 wikipathways WP567 Eukaryotic transcription initiation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP491 Eukaryotic transcription initiation RO:HOM0000017 wikipathways WP830 Eukaryotic transcription initiation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP491 Eukaryotic transcription initiation RO:HOM0000017 wikipathways WP948 Eukaryotic transcription initiation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP492 Hedgehog signaling pathway RO:HOM0000017 wikipathways WP574 Hedgehog signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP492 Hedgehog signaling pathway RO:HOM0000017 wikipathways WP790 Hedgehog signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP492 Hedgehog signaling pathway RO:HOM0000017 wikipathways WP905 Hedgehog signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP493 Mapk signaling pathway RO:HOM0000017 wikipathways WP510 MAPK signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP493 Mapk signaling pathway RO:HOM0000017 wikipathways WP769 MAPK signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP493 Mapk signaling pathway RO:HOM0000017 wikipathways WP880 MAPK signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP493 Mapk signaling pathway RO:HOM0000017 wikipathways WP998 MAPK signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP496 Steroid biosynthesis RO:HOM0000017 wikipathways WP55 Steroid biosynthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP496 Steroid biosynthesis RO:HOM0000017 wikipathways WP66 Steroid biosynthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP498 Mitochondrial long chain fatty acid beta-oxidation RO:HOM0000017 wikipathways WP763 Mitochondrial long chain fatty acid beta-oxidation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP498 Mitochondrial long chain fatty acid beta-oxidation RO:HOM0000017 wikipathways WP989 Mitochondrial long chain fatty acid beta-oxidation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP5 EGFR1 signaling pathway RO:HOM0000017 wikipathways WP572 EGFR1 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP5 EGFR1 signaling pathway RO:HOM0000017 wikipathways WP752 EGFR1 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP5 EGFR1 signaling pathway RO:HOM0000017 wikipathways WP860 EGFR1 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP502 Nucleotide GPCRs RO:HOM0000017 wikipathways WP80 Nucleotide GPCRs lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP504 Fatty acid biosynthesis RO:HOM0000017 wikipathways WP568 Fatty acid biosynthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP5055 Burn wound healing RO:HOM0000017 wikipathways WP5056 Burn Wound Healing lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP5055 Burn wound healing RO:HOM0000017 wikipathways WP5057 Burn wound healing lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP5055 Burn wound healing RO:HOM0000017 wikipathways WP5058 Burn Wound Healing lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP5056 Burn Wound Healing RO:HOM0000017 wikipathways WP5057 Burn wound healing lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP5056 Burn Wound Healing RO:HOM0000017 wikipathways WP5058 Burn Wound Healing lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP5057 Burn wound healing RO:HOM0000017 wikipathways WP5058 Burn Wound Healing lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP509 Nuclear Receptors RO:HOM0000017 wikipathways WP831 Nuclear receptors lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP509 Nuclear Receptors RO:HOM0000017 wikipathways WP950 Nuclear receptors lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP51 Regulation of actin cytoskeleton RO:HOM0000017 wikipathways WP523 Regulation of actin cytoskeleton lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP51 Regulation of actin cytoskeleton RO:HOM0000017 wikipathways WP824 Regulation of actin cytoskeleton lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP510 MAPK signaling pathway RO:HOM0000017 wikipathways WP769 MAPK signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP510 MAPK signaling pathway RO:HOM0000017 wikipathways WP880 MAPK signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP510 MAPK signaling pathway RO:HOM0000017 wikipathways WP998 MAPK signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP511 FAS pathway and stress induction of HSP regulation RO:HOM0000017 wikipathways WP571 FAS pathway and stress induction of HSP regulation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP511 FAS pathway and stress induction of HSP regulation RO:HOM0000017 wikipathways WP788 FAS pathway and stress induction of HSP regulation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP511 FAS pathway and stress induction of HSP regulation RO:HOM0000017 wikipathways WP89 FAS pathway and stress induction of HSP regulation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP511 FAS pathway and stress induction of HSP regulation RO:HOM0000017 wikipathways WP902 FAS pathway and stress induction of HSP regulation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP512 Id signaling pathway RO:HOM0000017 wikipathways WP53 ID signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP512 Id signaling pathway RO:HOM0000017 wikipathways WP934 Id signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP515 Glycolysis and gluconeogenesis RO:HOM0000017 wikipathways WP534 Glycolysis and gluconeogenesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP515 Glycolysis and gluconeogenesis RO:HOM0000017 wikipathways WP96 Glycolysis and Gluconeogenesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP516 Hypertrophy model RO:HOM0000017 wikipathways WP982 Hypertrophy model lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP517 Notch signaling pathway RO:HOM0000017 wikipathways WP798 Notch signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP517 Notch signaling pathway RO:HOM0000017 wikipathways WP912 Notch signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP518 Eukaryotic transcription initiation RO:HOM0000017 wikipathways WP567 Eukaryotic transcription initiation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP518 Eukaryotic transcription initiation RO:HOM0000017 wikipathways WP830 Eukaryotic transcription initiation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP518 Eukaryotic transcription initiation RO:HOM0000017 wikipathways WP948 Eukaryotic transcription initiation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP520 G13 signaling pathway RO:HOM0000017 wikipathways WP524 G13 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP520 G13 signaling pathway RO:HOM0000017 wikipathways WP826 G13 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP520 G13 signaling pathway RO:HOM0000017 wikipathways WP945 G13 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP522 Biogenic amine synthesis RO:HOM0000017 wikipathways WP550 Biogenic amine synthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP523 Regulation of actin cytoskeleton RO:HOM0000017 wikipathways WP824 Regulation of actin cytoskeleton lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP524 G13 signaling pathway RO:HOM0000017 wikipathways WP826 G13 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP524 G13 signaling pathway RO:HOM0000017 wikipathways WP945 G13 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP529 mRNA processing RO:HOM0000017 wikipathways WP793 mRNA processing lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP529 mRNA processing RO:HOM0000017 wikipathways WP906 mRNA Processing lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP53 ID signaling pathway RO:HOM0000017 wikipathways WP934 Id signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP530 Cytokines and inflammatory response RO:HOM0000017 wikipathways WP879 Cytokines and inflammatory response lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP530 Cytokines and inflammatory response RO:HOM0000017 wikipathways WP997 Cytokines and inflammatory response lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP534 Glycolysis and gluconeogenesis RO:HOM0000017 wikipathways WP96 Glycolysis and Gluconeogenesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP536 Calcium regulation in cardiac cells RO:HOM0000017 wikipathways WP553 Calcium regulation in cardiac cells lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP536 Calcium regulation in cardiac cells RO:HOM0000017 wikipathways WP808 Calcium regulation in cardiac cells lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP536 Calcium regulation in cardiac cells RO:HOM0000017 wikipathways WP923 Calcium regulation in cardiac cells lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP537 Translation factors RO:HOM0000017 wikipathways WP965 Translation factors lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP539 Wnt signaling pathway (NetPath) RO:HOM0000017 wikipathways WP980 Wnt signaling pathway (Netpath) lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP542 Electron transport chain RO:HOM0000017 wikipathways WP59 Electron transport chain lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP544 Exercise-induced circadian regulation RO:HOM0000017 wikipathways WP562 Exercise-induced circadian regulation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP547 Complement and coagulation cascades RO:HOM0000017 wikipathways WP558 Complement and coagulation cascades lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP55 Steroid biosynthesis RO:HOM0000017 wikipathways WP66 Steroid biosynthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP553 Calcium regulation in cardiac cells RO:HOM0000017 wikipathways WP808 Calcium regulation in cardiac cells lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP553 Calcium regulation in cardiac cells RO:HOM0000017 wikipathways WP923 Calcium regulation in cardiac cells lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP554 ACE inhibitor pathway RO:HOM0000017 wikipathways WP557 ACE inhibitor pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP554 ACE inhibitor pathway RO:HOM0000017 wikipathways WP801 ACE inhibitor pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP554 ACE inhibitor pathway RO:HOM0000017 wikipathways WP915 ACE inhibitor pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP557 ACE inhibitor pathway RO:HOM0000017 wikipathways WP801 ACE inhibitor pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP557 ACE inhibitor pathway RO:HOM0000017 wikipathways WP915 ACE inhibitor pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP561 Heme biosynthesis RO:HOM0000017 wikipathways WP848 Heme biosynthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP561 Heme biosynthesis RO:HOM0000017 wikipathways WP86 Heme biosynthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP561 Heme biosynthesis RO:HOM0000017 wikipathways WP967 Heme biosynthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP565 DNA replication RO:HOM0000017 wikipathways WP757 DNA replication lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP565 DNA replication RO:HOM0000017 wikipathways WP865 DNA replication lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP565 DNA replication RO:HOM0000017 wikipathways WP983 DNA replication lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP567 Eukaryotic transcription initiation RO:HOM0000017 wikipathways WP830 Eukaryotic transcription initiation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP567 Eukaryotic transcription initiation RO:HOM0000017 wikipathways WP948 Eukaryotic transcription initiation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP569 IL-2 signaling pathway RO:HOM0000017 wikipathways WP973 IL-2 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP570 Monoamine GPCRs RO:HOM0000017 wikipathways WP58 Monoamine GPCRs lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP570 Monoamine GPCRs RO:HOM0000017 wikipathways WP839 Monoamine GPCRs lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP570 Monoamine GPCRs RO:HOM0000017 wikipathways WP957 Monoamine GPCRs lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP571 FAS pathway and stress induction of HSP regulation RO:HOM0000017 wikipathways WP788 FAS pathway and stress induction of HSP regulation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP571 FAS pathway and stress induction of HSP regulation RO:HOM0000017 wikipathways WP89 FAS pathway and stress induction of HSP regulation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP571 FAS pathway and stress induction of HSP regulation RO:HOM0000017 wikipathways WP902 FAS pathway and stress induction of HSP regulation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP572 EGFR1 signaling pathway RO:HOM0000017 wikipathways WP752 EGFR1 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP572 EGFR1 signaling pathway RO:HOM0000017 wikipathways WP860 EGFR1 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP574 Hedgehog signaling pathway RO:HOM0000017 wikipathways WP790 Hedgehog signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP574 Hedgehog signaling pathway RO:HOM0000017 wikipathways WP905 Hedgehog signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP58 Monoamine GPCRs RO:HOM0000017 wikipathways WP839 Monoamine GPCRs lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP58 Monoamine GPCRs RO:HOM0000017 wikipathways WP957 Monoamine GPCRs lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP581 EPO receptor signaling RO:HOM0000017 wikipathways WP768 EPO receptor signaling lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP581 EPO receptor signaling RO:HOM0000017 wikipathways WP878 EPO receptor signaling lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP581 EPO receptor signaling RO:HOM0000017 wikipathways WP996 EPO receptor signaling lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP6 Integrin-mediated cell adhesion RO:HOM0000017 wikipathways WP74 Integrin-mediated cell adhesion lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP6 Integrin-mediated cell adhesion RO:HOM0000017 wikipathways WP832 Integrin-mediated cell adhesion lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP6 Integrin-mediated cell adhesion RO:HOM0000017 wikipathways WP951 Integrin-mediated cell adhesion lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP623 Oxidative phosphorylation RO:HOM0000017 wikipathways WP994 Oxidative phosphorylation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP65 Insulin signaling RO:HOM0000017 wikipathways WP743 Insulin signaling lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP65 Insulin signaling RO:HOM0000017 wikipathways WP966 Insulin signaling lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP690 Polyol pathway RO:HOM0000017 wikipathways WP936 Polyol pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP694 Arylamine metabolism RO:HOM0000017 wikipathways WP993 Arylamine metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP699 Aflatoxin B1 metabolism RO:HOM0000017 wikipathways WP925 Aflatoxin B1 metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP704 Methylation pathways RO:HOM0000017 wikipathways WP992 Methylation pathways lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP712 Estrogen signaling pathway RO:HOM0000017 wikipathways WP986 Estrogen signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP723 Wnt signaling pathway and pluripotency RO:HOM0000017 wikipathways WP779 Wnt signaling pathway and pluripotency lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP73 G protein signaling pathways RO:HOM0000017 wikipathways WP813 G protein signaling pathways lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP73 G protein signaling pathways RO:HOM0000017 wikipathways WP931 G protein signaling pathways lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP74 Integrin-mediated cell adhesion RO:HOM0000017 wikipathways WP832 Integrin-mediated cell adhesion lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP74 Integrin-mediated cell adhesion RO:HOM0000017 wikipathways WP951 Integrin-mediated cell adhesion lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP743 Insulin signaling RO:HOM0000017 wikipathways WP966 Insulin signaling lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP752 EGFR1 signaling pathway RO:HOM0000017 wikipathways WP860 EGFR1 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP755 Nuclear receptors in lipid metabolism and toxicity RO:HOM0000017 wikipathways WP863 Nuclear receptors in lipid metabolism and toxicity lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP755 Nuclear receptors in lipid metabolism and toxicity RO:HOM0000017 wikipathways WP981 Nuclear receptors in lipid metabolism and toxicity lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP757 DNA replication RO:HOM0000017 wikipathways WP865 DNA replication lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP757 DNA replication RO:HOM0000017 wikipathways WP983 DNA replication lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP76 TCA cycle RO:HOM0000017 wikipathways WP999 TCA cycle lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP763 Mitochondrial long chain fatty acid beta-oxidation RO:HOM0000017 wikipathways WP989 Mitochondrial long chain fatty acid beta-oxidation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP768 EPO receptor signaling RO:HOM0000017 wikipathways WP878 EPO receptor signaling lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP768 EPO receptor signaling RO:HOM0000017 wikipathways WP996 EPO receptor signaling lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP769 MAPK signaling pathway RO:HOM0000017 wikipathways WP880 MAPK signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP769 MAPK signaling pathway RO:HOM0000017 wikipathways WP998 MAPK signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP774 Kit receptor signaling pathway RO:HOM0000017 wikipathways WP886 Kit receptor signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP775 Blood clotting cascade RO:HOM0000017 wikipathways WP887 Blood clotting cascade lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP784 Ketone bodies synthesis and degradation RO:HOM0000017 wikipathways WP898 Ketone bodies synthesis and degradation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP785 Wnt signaling pathway RO:HOM0000017 wikipathways WP899 Wnt signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP785 Wnt signaling pathway RO:HOM0000017 wikipathways WP97 Wnt signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP788 FAS pathway and stress induction of HSP regulation RO:HOM0000017 wikipathways WP89 FAS pathway and stress induction of HSP regulation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP788 FAS pathway and stress induction of HSP regulation RO:HOM0000017 wikipathways WP902 FAS pathway and stress induction of HSP regulation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP790 Hedgehog signaling pathway RO:HOM0000017 wikipathways WP905 Hedgehog signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP793 mRNA processing RO:HOM0000017 wikipathways WP906 mRNA Processing lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP796 One-carbon metabolism RO:HOM0000017 wikipathways WP909 One-carbon metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP798 Notch signaling pathway RO:HOM0000017 wikipathways WP912 Notch signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP799 Nod-like receptor (NLR) signaling pathway RO:HOM0000017 wikipathways WP914 Nod-like receptor (NLR) signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP8 IL-9 signaling pathway RO:HOM0000017 wikipathways WP974 IL-9 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP801 ACE inhibitor pathway RO:HOM0000017 wikipathways WP915 ACE inhibitor pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP803 p38 MAPK signaling pathway RO:HOM0000017 wikipathways WP918 p38 MAPK signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP804 Homologous recombination RO:HOM0000017 wikipathways WP917 Homologous recombination lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP808 Calcium regulation in cardiac cells RO:HOM0000017 wikipathways WP923 Calcium regulation in cardiac cells lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP810 Hepatocyte growth factor receptor signaling RO:HOM0000017 wikipathways WP927 Hepatocyte growth factor receptor signaling lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP810 Hepatocyte growth factor receptor signaling RO:HOM0000017 wikipathways WP94 Hepatocyte growth factor receptor signaling lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP813 G protein signaling pathways RO:HOM0000017 wikipathways WP931 G protein signaling pathways lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP823 Matrix metalloproteinases RO:HOM0000017 wikipathways WP942 Matrix metalloproteinases lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP826 G13 signaling pathway RO:HOM0000017 wikipathways WP945 G13 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP827 Delta-Notch signaling pathway RO:HOM0000017 wikipathways WP946 Delta-Notch signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP830 Eukaryotic transcription initiation RO:HOM0000017 wikipathways WP948 Eukaryotic transcription initiation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP831 Nuclear receptors RO:HOM0000017 wikipathways WP950 Nuclear receptors lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP832 Integrin-mediated cell adhesion RO:HOM0000017 wikipathways WP951 Integrin-mediated cell adhesion lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP833 Cholesterol biosynthesis RO:HOM0000017 wikipathways WP952 Cholesterol biosynthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP835 Glycogen metabolism RO:HOM0000017 wikipathways WP955 Glycogen metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP839 Monoamine GPCRs RO:HOM0000017 wikipathways WP957 Monoamine GPCRs lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP840 G1 to S cell cycle control RO:HOM0000017 wikipathways WP959 G1 to S cell cycle control lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP844 Cell cycle RO:HOM0000017 wikipathways WP964 Cell cycle lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP848 Heme biosynthesis RO:HOM0000017 wikipathways WP86 Heme biosynthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP848 Heme biosynthesis RO:HOM0000017 wikipathways WP967 Heme biosynthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP852 Fatty acid omega-oxidation RO:HOM0000017 wikipathways WP970 Fatty acid omega-oxidation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP854 Eicosanoid synthesis RO:HOM0000017 wikipathways WP972 Eicosanoid synthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP86 Heme biosynthesis RO:HOM0000017 wikipathways WP967 Heme biosynthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP863 Nuclear receptors in lipid metabolism and toxicity RO:HOM0000017 wikipathways WP981 Nuclear receptors in lipid metabolism and toxicity lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP865 DNA replication RO:HOM0000017 wikipathways WP983 DNA replication lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP869 Adipogenesis RO:HOM0000017 wikipathways WP987 Adipogenesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP878 EPO receptor signaling RO:HOM0000017 wikipathways WP996 EPO receptor signaling lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP879 Cytokines and inflammatory response RO:HOM0000017 wikipathways WP997 Cytokines and inflammatory response lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP880 MAPK signaling pathway RO:HOM0000017 wikipathways WP998 MAPK signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP89 FAS pathway and stress induction of HSP regulation RO:HOM0000017 wikipathways WP902 FAS pathway and stress induction of HSP regulation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP899 Wnt signaling pathway RO:HOM0000017 wikipathways WP97 Wnt signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP927 Hepatocyte growth factor receptor signaling RO:HOM0000017 wikipathways WP94 Hepatocyte growth factor receptor signaling lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +wikipathways WP98 Prostaglandin synthesis and regulation RO:HOM0000017 wikipathways WP995 Prostaglandin synthesis and regulation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py From 2aefd2001712790e798a57a93569aeafc8a24402 Mon Sep 17 00:00:00 2001 From: Charles Tapley Hoyt Date: Thu, 19 Aug 2021 10:59:56 +0200 Subject: [PATCH 2/5] Update generate_wikipathways_orthologs.py --- scripts/generate_wikipathways_orthologs.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/scripts/generate_wikipathways_orthologs.py b/scripts/generate_wikipathways_orthologs.py index dec4c9d1..b209b45e 100644 --- a/scripts/generate_wikipathways_orthologs.py +++ b/scripts/generate_wikipathways_orthologs.py @@ -2,15 +2,15 @@ """Generate orthologous relations between WikiPathways.""" +import itertools as itt from typing import Iterable -import itertools as itt +import pyobo +from gilda.process import normalize from tqdm import tqdm -import pyobo from biomappings.resources import PredictionTuple, append_prediction_tuples from biomappings.utils import get_script_url -from gilda.process import normalize def _lexical_exact_match(name1: str, name2: str) -> bool: From 7448b7c7248de0bd441a053da13a17cf9eed9b7b Mon Sep 17 00:00:00 2001 From: Charles Tapley Hoyt Date: Mon, 23 May 2022 10:36:42 +0200 Subject: [PATCH 3/5] safsa --- src/biomappings/resources/predictions.tsv | 16267 ++++++++++++++++---- 1 file changed, 13171 insertions(+), 3096 deletions(-) diff --git a/src/biomappings/resources/predictions.tsv b/src/biomappings/resources/predictions.tsv index 72c0987b..cfcfaa06 100644 --- a/src/biomappings/resources/predictions.tsv +++ b/src/biomappings/resources/predictions.tsv @@ -1,308 +1,13022 @@ source prefix source identifier source name relation target prefix target identifier target name type confidence source -ccle.cell EFM19_BREAST EFM-19 skos:exactMatch efo 0002175 EFM19 lexical 0.7775716347144919 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell EJM_HAEMATOPOIETIC_AND_LYMPHOID_TISSUE EJM skos:exactMatch efo 0006572 EJM lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell EKVX_LUNG EKVX skos:exactMatch efo 0006786 EKVX lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell EM2_HAEMATOPOIETIC_AND_LYMPHOID_TISSUE EM-2 skos:exactMatch efo 0002176 EM2 lexical 0.7775716347144919 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell ES2_OVARY ES-2 skos:exactMatch cellosaurus CVCL_AX39 ES2 lexical 0.7775716347144919 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell ES2_OVARY ES-2 skos:exactMatch cellosaurus CVCL_C769 ESe009-A lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell EW7476 EW7476 skos:exactMatch cellosaurus CVCL_EQ72 EW 7476 lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell G402_SOFT_TISSUE G-402 skos:exactMatch efo 0002180 G402 lexical 0.7775716347144919 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell GA10_HAEMATOPOIETIC_AND_LYMPHOID_TISSUE GA-10 skos:exactMatch efo 0002181 GA10 lexical 0.7775716347144919 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell GCT_SOFT_TISSUE GCT skos:exactMatch efo 0002182 GCT lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell GDM1_HAEMATOPOIETIC_AND_LYMPHOID_TISSUE GDM-1 skos:exactMatch efo 0002183 GDM1 lexical 0.7775716347144919 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell GP2D_LARGE_INTESTINE GP2d skos:exactMatch efo 0006575 GP2d lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell GRANTA519_HAEMATOPOIETIC_AND_LYMPHOID_TISSUE GRANTA-519 skos:exactMatch efo 0005369 Granta-519 lexical 0.7709750566893424 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell GRM_SKIN GR-M skos:exactMatch cellosaurus CVCL_WL69 GR [Mouse mammary tumor] lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell GRM_SKIN GR-M skos:exactMatch efo 0006577 GR-M lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell H2596 H2596 skos:exactMatch cellosaurus CVCL_A546 NCI-H2596 lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell H4_CENTRAL_NERVOUS_SYSTEM H4 skos:exactMatch cellosaurus CVCL_HA56 Hutt60 lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell H4_CENTRAL_NERVOUS_SYSTEM H4 skos:exactMatch cellosaurus CVCL_JF98 cyfH-4 lexical 0.5553494124922697 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell H4_CENTRAL_NERVOUS_SYSTEM H4 skos:exactMatch efo 0002184 H4 lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell HCT15_LARGE_INTESTINE HCT-15 skos:exactMatch efo 0002188 HCT15 lexical 0.7775716347144919 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell HDMYZ_HAEMATOPOIETIC_AND_LYMPHOID_TISSUE HD-MY-Z skos:exactMatch efo 0002190 HDMYZ lexical 0.7775716347144919 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell HEL_HAEMATOPOIETIC_AND_LYMPHOID_TISSUE HEL skos:exactMatch cellosaurus CVCL_6D72 HEL-30 lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell HEL_HAEMATOPOIETIC_AND_LYMPHOID_TISSUE HEL skos:exactMatch efo 0006579 HEL lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell HGC27_STOMACH HGC-27 skos:exactMatch efo 0006581 HGC-27 lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell HH_HAEMATOPOIETIC_AND_LYMPHOID_TISSUE HH skos:exactMatch efo 0002194 HH lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell HNT34 HNT34 skos:exactMatch cellosaurus CVCL_2071 HNT-34 lexical 0.7775716347144919 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell HNT34 HNT34 skos:exactMatch depmap ACH-000299 nan lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell HNT34 HNT34 skos:exactMatch efo 0006583 HNT-34 lexical 0.7775716347144919 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell HN_UPPER_AERODIGESTIVE_TRACT HN skos:exactMatch efo 1000958 halo nevus lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell HPAFII_PANCREAS HPAF-II skos:exactMatch efo 0002198 HPAFII lexical 0.7775716347144919 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell HS895T_FIBROBLAST Hs 895.T skos:exactMatch efo 0006593 Hs 895.T lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell HS936T_SKIN Hs 936.T skos:exactMatch efo 0006594 Hs 936.T lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell HS940T_FIBROBLAST Hs 940.T skos:exactMatch efo 0006595 Hs 940.T lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell HT1080_SOFT_TISSUE HT-1080 skos:exactMatch efo 0002059 HT1080 lexical 0.7775716347144919 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell HT115_LARGE_INTESTINE HT115 skos:exactMatch efo 0006442 HT115 lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell HT1197_URINARY_TRACT HT-1197 skos:exactMatch efo 0002202 HT1197 lexical 0.7775716347144919 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell HT1376_URINARY_TRACT HT-1376 skos:exactMatch efo 0002203 HT1376 lexical 0.7775716347144919 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell HT144_SKIN HT-144 skos:exactMatch efo 0006443 HT144 lexical 0.7775716347144919 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell HT29_LARGE_INTESTINE HT-29 skos:exactMatch cellosaurus CVCL_A8EZ HT29 lexical 0.7775716347144919 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell HT29_LARGE_INTESTINE HT-29 skos:exactMatch efo 0001193 HT-29 lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell HT55_LARGE_INTESTINE HT55 skos:exactMatch cellosaurus CVCL_A8FJ HT55 lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell HT55_LARGE_INTESTINE HT55 skos:exactMatch efo 0006444 HT55 lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell HTK_HAEMATOPOIETIC_AND_LYMPHOID_TISSUE HTK- skos:exactMatch cellosaurus CVCL_9W65 HTk lexical 0.7431457431457431 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell HTK_HAEMATOPOIETIC_AND_LYMPHOID_TISSUE HTK- skos:exactMatch cellosaurus CVCL_YM13 HTK lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell HT_HAEMATOPOIETIC_AND_LYMPHOID_TISSUE HT skos:exactMatch efo 0002200 HT lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell HUNS1_HAEMATOPOIETIC_AND_LYMPHOID_TISSUE HuNS1 skos:exactMatch efo 0002207 HuNS1 lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell HUPT3_PANCREAS HUP-T3 skos:exactMatch efo 0006596 HuP-T3 lexical 0.7524221809936096 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell HUPT4_PANCREAS HUP-T4 skos:exactMatch efo 0002208 HuPT4 lexical 0.7522160379303237 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell IGR37_SKIN IGR-37 skos:exactMatch efo 0006597 IGR-37 lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell IM95_STOMACH IM95 skos:exactMatch efo 0006446 IM-95 lexical 0.7775716347144919 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell IMR32_AUTONOMIC_GANGLIA IMR-32 skos:exactMatch efo 0001195 IMR-32 lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell IOSE364 IOSE364 skos:exactMatch cellosaurus CVCL_5540 IOSE-364 lexical 0.7775716347144919 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell IOSE397 IOSE397 skos:exactMatch cellosaurus CVCL_5541 IOSE-397 lexical 0.7775716347144919 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell IOSE523 IOSE523 skos:exactMatch cellosaurus CVCL_E234 IOSE-523 lexical 0.7775716347144919 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell IOSE7516SV40 IOSE7516SV40 skos:exactMatch cellosaurus CVCL_EQ74 IOSE-75-16SV40 lexical 0.7775716347144919 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell IPC298_SKIN IPC-298 skos:exactMatch efo 0006447 IPC-298 lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell J82_URINARY_TRACT J82 skos:exactMatch efo 0002210 J82 lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell JEKO1_HAEMATOPOIETIC_AND_LYMPHOID_TISSUE JeKo-1 skos:exactMatch efo 0005387 JeKo-1 lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell JHH1_LIVER JHH-1 skos:exactMatch efo 0006599 JHH-1 lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell JHH2_LIVER JHH-2 skos:exactMatch efo 0006600 JHH-2 lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell JHH4_LIVER JHH-4 skos:exactMatch efo 0006601 JHH-4 lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell JHH5_LIVER JHH-5 skos:exactMatch efo 0006602 JHH-5 lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell JHH7_LIVER JHH-7 skos:exactMatch efo 0006603 JHH-7 lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell JIMT1_BREAST JIMT-1 skos:exactMatch efo 0005388 JIMT-1 lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell JJN3_HAEMATOPOIETIC_AND_LYMPHOID_TISSUE JJN-3 skos:exactMatch efo 0006605 JJN-3 lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell JK1_HAEMATOPOIETIC_AND_LYMPHOID_TISSUE JK-1 skos:exactMatch cellosaurus CVCL_JZ08 JK1 lexical 0.7775716347144919 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell JL1_PLEURA JL-1 skos:exactMatch efo 0006448 JL-1 lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell JM1_HAEMATOPOIETIC_AND_LYMPHOID_TISSUE JM1 skos:exactMatch cellosaurus CVCL_F242 JM1 lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell JM1_HAEMATOPOIETIC_AND_LYMPHOID_TISSUE JM1 skos:exactMatch cellosaurus CVCL_T448 MDCC-JM-1 lexical 0.5553494124922697 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell JM1_HAEMATOPOIETIC_AND_LYMPHOID_TISSUE JM1 skos:exactMatch efo 0002212 JM1 lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell JRT3T35 JRT3T35 skos:exactMatch cellosaurus CVCL_1316 J.RT3-T3.5 lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell JRT3T35 JRT3T35 skos:exactMatch efo 0002213 JRT3T35 lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell JVM2_HAEMATOPOIETIC_AND_LYMPHOID_TISSUE JVM-2 skos:exactMatch efo 0005476 JVM-2 lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell JVM3_HAEMATOPOIETIC_AND_LYMPHOID_TISSUE JVM-3 skos:exactMatch efo 0002214 JVM3 lexical 0.7775716347144919 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell K19 K19 skos:exactMatch cellosaurus CVCL_W796 K19 lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell KARPAS299_HAEMATOPOIETIC_AND_LYMPHOID_TISSUE KARPAS-299 skos:exactMatch efo 0005390 KARPAS 299 lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell KARPAS422_HAEMATOPOIETIC_AND_LYMPHOID_TISSUE KARPAS-422 skos:exactMatch efo 0005719 Karpas 422 lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell KG1_HAEMATOPOIETIC_AND_LYMPHOID_TISSUE KG-1 skos:exactMatch cellosaurus CVCL_1S07 GM10888 lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell KG1_HAEMATOPOIETIC_AND_LYMPHOID_TISSUE KG-1 skos:exactMatch cellosaurus CVCL_2971 KG-1-C lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell KG1_HAEMATOPOIETIC_AND_LYMPHOID_TISSUE KG-1 skos:exactMatch cellosaurus CVCL_UD72 KG1 lexical 0.7775716347144919 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell KHM1B_HAEMATOPOIETIC_AND_LYMPHOID_TISSUE KHM-1B skos:exactMatch efo 0006609 KHM-1B lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell KLE_ENDOMETRIUM KLE skos:exactMatch efo 0002220 KLE lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell KLM1_PANCREAS KLM-1 skos:exactMatch efo 0006610 KLM-1 lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell KM12_LARGE_INTESTINE KM12 skos:exactMatch efo 0006282 KM12 lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell KMH2_HAEMATOPOIETIC_AND_LYMPHOID_TISSUE KM-H2 skos:exactMatch cellosaurus CVCL_S641 KMH-2 lexical 0.7773654916512059 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell KMM1_HAEMATOPOIETIC_AND_LYMPHOID_TISSUE KMM-1 skos:exactMatch efo 0006611 KMM-1 lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell KMS11_HAEMATOPOIETIC_AND_LYMPHOID_TISSUE KMS-11 skos:exactMatch efo 0005694 KMS-11 lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell KMS21BM_HAEMATOPOIETIC_AND_LYMPHOID_TISSUE KMS-21BM skos:exactMatch efo 0006614 KMS-21-BM lexical 0.7775716347144919 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell KMS26_HAEMATOPOIETIC_AND_LYMPHOID_TISSUE KMS-26 skos:exactMatch efo 0006615 KMS-26 lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell KMS27_HAEMATOPOIETIC_AND_LYMPHOID_TISSUE KMS-27 skos:exactMatch efo 0006616 KMS-27 lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell KMS28BM_HAEMATOPOIETIC_AND_LYMPHOID_TISSUE KMS-28BM skos:exactMatch efo 0006617 KMS-28BM lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell KMS34_HAEMATOPOIETIC_AND_LYMPHOID_TISSUE KMS-34 skos:exactMatch efo 0006619 KMS-34 lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell KNS62_LUNG KNS-62 skos:exactMatch efo 0006620 KNS-62 lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell KP2_PANCREAS KP-2 skos:exactMatch efo 0006621 KP-2 lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell KP3_PANCREAS KP-3 skos:exactMatch efo 0006622 KP-3 lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell KP4_PANCREAS KP4 skos:exactMatch efo 0006623 KP-4 lexical 0.7775716347144919 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell KPL1_BREAST KPL-1 skos:exactMatch efo 0002221 KPL1 lexical 0.7775716347144919 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell KS1_CENTRAL_NERVOUS_SYSTEM KS-1 skos:exactMatch cellosaurus CVCL_D284 KS-1 [Human Krukenberg tumour] lexical 0.5553494124922697 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell KU812_HAEMATOPOIETIC_AND_LYMPHOID_TISSUE KU812 skos:exactMatch efo 0002222 KU812 lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell KURAMOCHI_OVARY KURAMOCHI skos:exactMatch efo 0006625 KURAMOCHI lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell KYSE140_OESOPHAGUS KYSE-140 skos:exactMatch efo 0006626 KYSE-140 lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell KYSE150_OESOPHAGUS KYSE-150 skos:exactMatch efo 0006627 KYSE-150 lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell KYSE180_OESOPHAGUS KYSE-180 skos:exactMatch efo 0006628 KYSE-180 lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell KYSE270_OESOPHAGUS KYSE-270 skos:exactMatch efo 0006629 KYSE-270 lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell KYSE30_OESOPHAGUS KYSE-30 skos:exactMatch efo 0002223 KYSE30 lexical 0.7775716347144919 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell KYSE450_OESOPHAGUS KYSE-450 skos:exactMatch efo 0006630 KYSE-450 lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell KYSE510_OESOPHAGUS KYSE-510 skos:exactMatch efo 0006631 KYSE-510 lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell KYSE520_OESOPHAGUS KYSE-520 skos:exactMatch efo 0006632 KYSE-520 lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell KYSE70_OESOPHAGUS KYSE-70 skos:exactMatch efo 0006633 KYSE-70 lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell L363_HAEMATOPOIETIC_AND_LYMPHOID_TISSUE L-363 skos:exactMatch efo 0006450 L-363 lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell L428_HAEMATOPOIETIC_AND_LYMPHOID_TISSUE L-428 skos:exactMatch efo 0002225 L428 lexical 0.7775716347144919 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell LC1F_LUNG LC-1F skos:exactMatch efo 0002827 LC-1F lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell LCLC103H_LUNG LCLC-103H skos:exactMatch efo 0006634 LCLC-103H lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell LCLC97TM1_LUNG LCLC-97TM1 skos:exactMatch efo 0006635 LCLC-97TM1 lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell LK2_LUNG LK-2 skos:exactMatch cellosaurus CVCL_W132 LK2 lexical 0.7775716347144919 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell LK2_LUNG LK-2 skos:exactMatch efo 0003141 LK-2 lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell LN18_CENTRAL_NERVOUS_SYSTEM LN-18 skos:exactMatch efo 0006636 LN-18 lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell LN229_CENTRAL_NERVOUS_SYSTEM LN-229 skos:exactMatch efo 0006637 LN-229 lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell LNCAPCLONEFGC_PROSTATE LNCaP clone FGC skos:exactMatch efo 0005726 LNCaP clone FGC lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell LOUCY_HAEMATOPOIETIC_AND_LYMPHOID_TISSUE Loucy skos:exactMatch efo 0007112 Loucy lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell LOUNH91_LUNG LOU-NH91 skos:exactMatch efo 0006638 LOU-NH91 lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell LOVO_LARGE_INTESTINE LoVo skos:exactMatch efo 0006639 LoVo lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell LOXIMVI_SKIN LOX IMVI skos:exactMatch efo 0006284 LOXIMVI lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell LP1_HAEMATOPOIETIC_AND_LYMPHOID_TISSUE LP-1 skos:exactMatch cellosaurus CVCL_SA54 LPS1 lexical 0.5553494124922697 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell LP1_HAEMATOPOIETIC_AND_LYMPHOID_TISSUE LP-1 skos:exactMatch efo 0003055 LP1 lexical 0.7775716347144919 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell LS1034_LARGE_INTESTINE LS1034 skos:exactMatch efo 0002226 LS1034 lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell LS180_LARGE_INTESTINE LS 180 skos:exactMatch efo 0006640 LS 180 lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell LXF289_LUNG LXF-289 skos:exactMatch efo 0006641 LXF-289 lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell M059K_CENTRAL_NERVOUS_SYSTEM M059K skos:exactMatch efo 0006451 M059K lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell MALME3M_SKIN Malme-3M skos:exactMatch efo 0002243 Malme3M lexical 0.7775716347144919 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell MC116_HAEMATOPOIETIC_AND_LYMPHOID_TISSUE MC116 skos:exactMatch efo 0002228 MC116 lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell MCAS_OVARY MCAS skos:exactMatch efo 0006453 MCAS lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell MCAS_OVARY MCAS skos:exactMatch efo 0009001 Mastocytosis lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell MDAMB134VI_BREAST MDA-MB-134-VI skos:exactMatch efo 0001205 MDAMB134VI lexical 0.7775716347144919 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell MDAMB157_BREAST MDA-MB-157 skos:exactMatch efo 0001206 MDAMB157 lexical 0.7775716347144919 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell MDAMB175VII_BREAST MDA-MB-175-VII skos:exactMatch efo 0001208 MDAMB175VII lexical 0.7775716347144919 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell MDAMB231_BREAST MDA-MB-231 skos:exactMatch efo 0001209 MDAMB231 lexical 0.7775716347144919 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell MDAMB361_BREAST MDA-MB-361 skos:exactMatch efo 0001211 MDAMB361 lexical 0.7775716347144919 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell MDAMB415_BREAST MDA-MB-415 skos:exactMatch efo 0001212 MDAMB415 lexical 0.7775716347144919 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell MDAMB436_BREAST MDA-MB-436 skos:exactMatch efo 0001214 MDAMB436 lexical 0.7775716347144919 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell MDAMB453_BREAST MDA-MB-453 skos:exactMatch efo 0001215 MDAMB453 lexical 0.7775716347144919 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell MDAMB468_BREAST MDA-MB-468 skos:exactMatch efo 0001216 MDAMB468 lexical 0.7775716347144919 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell MDST8_LARGE_INTESTINE MDST8 skos:exactMatch efo 0006644 MDST8 lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell ME1_HAEMATOPOIETIC_AND_LYMPHOID_TISSUE ME-1 skos:exactMatch cellosaurus CVCL_L911 ME1 lexical 0.7775716347144919 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell ME1_HAEMATOPOIETIC_AND_LYMPHOID_TISSUE ME-1 skos:exactMatch efo 0006645 ME-1 lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell MEC1_HAEMATOPOIETIC_AND_LYMPHOID_TISSUE MEC-1 skos:exactMatch cellosaurus CVCL_F939 GM-20 lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell MEC1_HAEMATOPOIETIC_AND_LYMPHOID_TISSUE MEC-1 skos:exactMatch cellosaurus CVCL_VR92 MEC1 lexical 0.7775716347144919 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell MEC1_HAEMATOPOIETIC_AND_LYMPHOID_TISSUE MEC-1 skos:exactMatch efo 0002231 MEC1 lexical 0.7775716347144919 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell MEC2_HAEMATOPOIETIC_AND_LYMPHOID_TISSUE MEC-2 skos:exactMatch cellosaurus CVCL_F940 GM-70 lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell MEC2_HAEMATOPOIETIC_AND_LYMPHOID_TISSUE MEC-2 skos:exactMatch efo 0006285 MEC2 lexical 0.7775716347144919 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell MEG01_HAEMATOPOIETIC_AND_LYMPHOID_TISSUE MEG-01 skos:exactMatch efo 0002232 MEG01 lexical 0.7775716347144919 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell MELHO_SKIN MEL-HO skos:exactMatch efo 0006647 MEL-HO lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell MESSA_SOFT_TISSUE MES-SA skos:exactMatch efo 0002233 MESSA lexical 0.7775716347144919 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell MET2B MET2B skos:exactMatch cellosaurus CVCL_VS57 MET-2B lexical 0.7775716347144919 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell MET2B MET2B skos:exactMatch depmap ACH-002388 MET2B lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell MEWO_SKIN MeWo skos:exactMatch efo 0006648 MeWo lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell MG63_BONE MG-63 skos:exactMatch efo 0002234 MG63 lexical 0.7775716347144919 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell MHHES1_BONE MHH-ES-1 skos:exactMatch efo 0006650 MHH-ES-1 lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell MHHNB11_AUTONOMIC_GANGLIA MHH-NB-11 skos:exactMatch efo 0006651 MHH-NB-11 lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell MIAPACA2_PANCREAS MIA PaCa-2 skos:exactMatch efo 0002236 MIA Paca-2 lexical 0.7524221809936096 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell MINO_HAEMATOPOIETIC_AND_LYMPHOID_TISSUE Mino skos:exactMatch cellosaurus CVCL_UW35 MINO lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell MJ_HAEMATOPOIETIC_AND_LYMPHOID_TISSUE MJ skos:exactMatch efo 0002237 MJ lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell MKL1SUBCLONE2 MKL1SUBCLONE2 skos:exactMatch cellosaurus CVCL_EQ71 MKL-1 subclone 2 lexical 0.5485466914038343 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell MOLM16_HAEMATOPOIETIC_AND_LYMPHOID_TISSUE MOLM-16 skos:exactMatch efo 0006652 MOLM-16 lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell MOLP2_HAEMATOPOIETIC_AND_LYMPHOID_TISSUE MOLP-2 skos:exactMatch efo 0006653 MOLP-2 lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell MOLP8_HAEMATOPOIETIC_AND_LYMPHOID_TISSUE MOLP-8 skos:exactMatch efo 0006654 MOLP-8 lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell MOLT16_HAEMATOPOIETIC_AND_LYMPHOID_TISSUE MOLT-16 skos:exactMatch efo 0002239 MOLT16 lexical 0.7775716347144919 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell MOLT3_HAEMATOPOIETIC_AND_LYMPHOID_TISSUE MOLT-3 skos:exactMatch efo 0005265 MOLT-3 lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell MOLT4_HAEMATOPOIETIC_AND_LYMPHOID_TISSUE MOLT-4 skos:exactMatch efo 0001220 MOLT-4 lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell MONOMAC6_HAEMATOPOIETIC_AND_LYMPHOID_TISSUE MONO-MAC-6 skos:exactMatch efo 0006287 Mono Mac 6 lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell MUTZ3_HAEMATOPOIETIC_AND_LYMPHOID_TISSUE MUTZ-3 skos:exactMatch efo 0005395 MUTZ-3 lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell NALM1_HAEMATOPOIETIC_AND_LYMPHOID_TISSUE NALM-1 skos:exactMatch efo 0002244 NALM1 lexical 0.7775716347144919 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell NALM6_HAEMATOPOIETIC_AND_LYMPHOID_TISSUE NALM-6 skos:exactMatch efo 0002245 NALM6 lexical 0.7775716347144919 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell NAMALWA_HAEMATOPOIETIC_AND_LYMPHOID_TISSUE NAMALWA skos:exactMatch efo 0002246 NAMALWA lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell NB1_AUTONOMIC_GANGLIA NB-1 skos:exactMatch cellosaurus CVCL_8812 SJNB-1 lexical 0.5553494124922697 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell NB1_AUTONOMIC_GANGLIA NB-1 skos:exactMatch cellosaurus CVCL_GZ01 NB-1 lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell NB4_HAEMATOPOIETIC_AND_LYMPHOID_TISSUE NB-4 skos:exactMatch cellosaurus CVCL_8821 SJNB-4 lexical 0.5553494124922697 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell NB4_HAEMATOPOIETIC_AND_LYMPHOID_TISSUE NB-4 skos:exactMatch efo 0002798 NB4 lexical 0.7775716347144919 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell NCIH322_LUNG NCI-H322 skos:exactMatch efo 0006691 NCI-H322T lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell OSA80 OSA80 skos:exactMatch cellosaurus CVCL_EQ73 OSA-80 lexical 0.7775716347144919 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell OUMS23_LARGE_INTESTINE OUMS-23 skos:exactMatch efo 0006717 OUMS-23 lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell OV7_OVARY OV7 skos:exactMatch cellosaurus CVCL_DG86 ACC-OV7 lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell OV90_OVARY OV-90 skos:exactMatch efo 0002311 OV90 lexical 0.7775716347144919 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell OVCA432 OVCA432 skos:exactMatch cellosaurus CVCL_3769 OVCA432 lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell P116 P116 skos:exactMatch cellosaurus CVCL_6429 P116 lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell P116 P116 skos:exactMatch cellosaurus CVCL_JU06 JHU116i lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell P3HR1_HAEMATOPOIETIC_AND_LYMPHOID_TISSUE P3HR-1 skos:exactMatch efo 0002312 P3HR1 lexical 0.7775716347144919 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell PANC1_PANCREAS PANC-1 skos:exactMatch efo 0002713 Panc1 lexical 0.7707689136260565 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell PATU8902_PANCREAS PA-TU-8902 skos:exactMatch efo 0006729 PA-TU-8902 lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell PATU8988S_PANCREAS PA-TU-8988S skos:exactMatch efo 0006730 PA-TU-8988S lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell PC14_LUNG PC-14 skos:exactMatch efo 0002844 PC-14 lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell PC3_PROSTATE PC-3 skos:exactMatch cellosaurus CVCL_4011 MIA PaCa-3 lexical 0.5485466914038343 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell PC3_PROSTATE PC-3 skos:exactMatch cellosaurus CVCL_4055 SK-PC-3 lexical 0.5553494124922697 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell PECAPJ15_UPPER_AERODIGESTIVE_TRACT PE/CA-PJ15 skos:exactMatch efo 0006733 PE/CA-PJ15 lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell PFEIFFER_HAEMATOPOIETIC_AND_LYMPHOID_TISSUE Pfeiffer skos:exactMatch efo 0006472 Pfeiffer lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell PK1_PANCREAS PK-1 skos:exactMatch cellosaurus CVCL_WI10 N2a-PK1 lexical 0.5553494124922697 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell PK45H_PANCREAS PK-45H skos:exactMatch efo 0006734 PK-45H lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell PK59_PANCREAS PK-59 skos:exactMatch efo 0006736 PK-59 lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell PL21_HAEMATOPOIETIC_AND_LYMPHOID_TISSUE PL-21 skos:exactMatch cellosaurus CVCL_JM48 PL21 lexical 0.7775716347144919 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell PLB985_HAEMATOPOIETIC_AND_LYMPHOID_TISSUE PLB-985 skos:exactMatch efo 0002313 PLB985 lexical 0.7775716347144919 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell RCHACV_HAEMATOPOIETIC_AND_LYMPHOID_TISSUE RCH-ACV skos:exactMatch efo 0002314 RCHACV lexical 0.7775716347144919 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell RCM1_LARGE_INTESTINE RCM-1 skos:exactMatch cellosaurus CVCL_C099 RCM-1 [Human ESC] lexical 0.5553494124922697 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell RCM1_LARGE_INTESTINE RCM-1 skos:exactMatch efo 0006476 RCM-1 lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell RDES_BONE RD-ES skos:exactMatch efo 0002316 RDES lexical 0.7775716347144919 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell RD_SOFT_TISSUE RD skos:exactMatch efo 0002315 RD lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell REC1_HAEMATOPOIETIC_AND_LYMPHOID_TISSUE REC-1 skos:exactMatch efo 0002317 REC1 lexical 0.7775716347144919 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell RERFGC1B_STOMACH RERF-GC-1B skos:exactMatch efo 0006743 RERF-GC-1B lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell RERFLCAI_LUNG RERF-LC-AI skos:exactMatch efo 0002850 RERF-LC-AI lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell RERFLCKJ_LUNG RERF-LC-KJ skos:exactMatch efo 0002851 RERF-LC-KJ lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell RERFLCMS_LUNG RERF-LC-MS skos:exactMatch efo 0002852 RERF-LC-MS lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell RH30_SOFT_TISSUE RH-30 skos:exactMatch cellosaurus CVCL_0041 Rh30 lexical 0.7707689136260565 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell RI1_HAEMATOPOIETIC_AND_LYMPHOID_TISSUE RI-1 skos:exactMatch efo 0006477 RI-1 lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell RKN_SOFT_TISSUE RKN skos:exactMatch efo 0006745 RKN lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell RKO_LARGE_INTESTINE RKO skos:exactMatch efo 0001232 RKO lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell RL952_ENDOMETRIUM RL95-2 skos:exactMatch efo 0002320 RL952 lexical 0.7775716347144919 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell RL_HAEMATOPOIETIC_AND_LYMPHOID_TISSUE RL skos:exactMatch efo 0002319 RL lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell RMGI_OVARY RMG-I skos:exactMatch efo 0006746 RMG-I lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell RMUGS_OVARY RMUG-S skos:exactMatch efo 0006747 RMUG-S lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell RT112_URINARY_TRACT RT-112 skos:exactMatch efo 0006479 RT-112 lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell RT4_URINARY_TRACT RT4 skos:exactMatch efo 0006480 RT4 lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell SBC5_LUNG SBC-5 skos:exactMatch efo 0002855 SBC-5 lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell SCABER_URINARY_TRACT SCaBER skos:exactMatch efo 0002325 SCaBER lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell SCC15_UPPER_AERODIGESTIVE_TRACT SCC-15 skos:exactMatch efo 0006482 SCC-15 lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell SCC25_UPPER_AERODIGESTIVE_TRACT SCC-25 skos:exactMatch cellosaurus CVCL_7735 UM-SCC-25 lexical 0.5553494124922697 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell SCC4_UPPER_AERODIGESTIVE_TRACT SCC-4 skos:exactMatch cellosaurus CVCL_7751 UM-SCC-4 lexical 0.5553494124922697 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell SCC9_UPPER_AERODIGESTIVE_TRACT SCC-9 skos:exactMatch cellosaurus CVCL_7793 UM-SCC-9 lexical 0.5553494124922697 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell SCLC21H_LUNG SCLC-21H skos:exactMatch efo 0006749 SCLC-21H lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell SEM_HAEMATOPOIETIC_AND_LYMPHOID_TISSUE SEM skos:exactMatch efo 0002326 SEM lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell SET2_HAEMATOPOIETIC_AND_LYMPHOID_TISSUE Set-2 skos:exactMatch efo 0006486 SET-2 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell SH4_SKIN SH-4 skos:exactMatch cellosaurus CVCL_7702 SH4 lexical 0.7775716347144919 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell SH4_SKIN SH-4 skos:exactMatch cellosaurus CVCL_C724 SSMUe004-A lexical 0.5553494124922697 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell SH4_SKIN SH-4 skos:exactMatch efo 0002327 SH4 lexical 0.7775716347144919 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell SHP77_LUNG SHP-77 skos:exactMatch efo 0002328 SHP77 lexical 0.7775716347144919 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell SHSY5Y_AUTONOMIC_GANGLIA SH-SY5Y skos:exactMatch efo 0002717 SH-SY5Y lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell SIGM5_HAEMATOPOIETIC_AND_LYMPHOID_TISSUE SIG-M5 skos:exactMatch efo 0006751 SIG-M5 lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell SIHA SIHA skos:exactMatch depmap ACH-000556 SIHA lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell SIHA SIHA skos:exactMatch efo 0002379 SiHa lexical 0.7431457431457431 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell SKM1_HAEMATOPOIETIC_AND_LYMPHOID_TISSUE SKM-1 skos:exactMatch efo 0006753 SKM-1 lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell SKNFI_AUTONOMIC_GANGLIA SK-N-FI skos:exactMatch efo 0002338 SKNFI lexical 0.7775716347144919 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell SKNMC_BONE SK-N-MC skos:exactMatch efo 0002860 SK-N-MC lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell SKNSH_AUTONOMIC_GANGLIA SK-N-SH skos:exactMatch efo 0003072 SK-N-SH lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell SNU1_STOMACH SNU-1 skos:exactMatch efo 0002343 SNU1 lexical 0.7775716347144919 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell SNU5_STOMACH SNU-5 skos:exactMatch efo 0002351 SNU5 lexical 0.7775716347144919 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell SNU601_STOMACH SNU-601 skos:exactMatch efo 0006756 SNU-601 lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell SNU620_STOMACH SNU-620 skos:exactMatch efo 0006757 SNU-620 lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell SNU668_STOMACH SNU-668 skos:exactMatch efo 0006759 SNU-668 lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell SNU719_STOMACH SNU-719 skos:exactMatch efo 0006760 SNU-719 lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell SNUC1_LARGE_INTESTINE SNU-C1 skos:exactMatch efo 0006761 SNU-C1 lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell SR786_HAEMATOPOIETIC_AND_LYMPHOID_TISSUE SR-786 skos:exactMatch efo 0006491 SR-786 lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell ST486_HAEMATOPOIETIC_AND_LYMPHOID_TISSUE ST486 skos:exactMatch efo 0002353 ST486 lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell SUDHL1_HAEMATOPOIETIC_AND_LYMPHOID_TISSUE SU-DHL-1 skos:exactMatch efo 0005461 SUDHL1 lexical 0.7775716347144919 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell SUDHL4_HAEMATOPOIETIC_AND_LYMPHOID_TISSUE SU-DHL-4 skos:exactMatch efo 0006492 SU-DHL-4 lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell SUDHL5_HAEMATOPOIETIC_AND_LYMPHOID_TISSUE SU-DHL-5 skos:exactMatch efo 0002356 SUDHL5 lexical 0.7775716347144919 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell SUDHL6_HAEMATOPOIETIC_AND_LYMPHOID_TISSUE SU-DHL-6 skos:exactMatch efo 0002357 SUDHL6 lexical 0.7775716347144919 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell SUDHL8_HAEMATOPOIETIC_AND_LYMPHOID_TISSUE SU-DHL-8 skos:exactMatch efo 0006493 SU-DHL-8 lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell SUPB15_HAEMATOPOIETIC_AND_LYMPHOID_TISSUE SUP-B15 skos:exactMatch efo 0006763 SUP-B15 lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell SW1116_LARGE_INTESTINE SW1116 skos:exactMatch efo 0002359 SW1116 lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell SW1417_LARGE_INTESTINE SW1417 skos:exactMatch efo 0002361 SW1417 lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell SW1463_LARGE_INTESTINE SW1463 skos:exactMatch efo 0002362 SW1463 lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell SW403_LARGE_INTESTINE SW403 skos:exactMatch efo 0002366 SW403 lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell SW480_LARGE_INTESTINE SW480 skos:exactMatch efo 0002083 SW480 lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell SW48_LARGE_INTESTINE SW48 skos:exactMatch efo 0002367 SW48 lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell SW620_LARGE_INTESTINE SW620 skos:exactMatch efo 0002368 SW620 lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell SW837_LARGE_INTESTINE SW837 skos:exactMatch efo 0002372 SW837 lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell SW948_LARGE_INTESTINE SW948 skos:exactMatch efo 0002375 SW948 lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell T24_URINARY_TRACT T24 skos:exactMatch efo 0002864 T24 lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell T3M4_PANCREAS T3M-4 skos:exactMatch efo 0002714 Panc89 lexical 0.5553494124922697 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell T47D_BREAST T-47D skos:exactMatch efo 0001247 T47D lexical 0.7775716347144919 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell T84_LARGE_INTESTINE T84 skos:exactMatch efo 0002084 T84 lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell TC71_BONE TC-71 skos:exactMatch cellosaurus CVCL_S882 TC71 lexical 0.7775716347144919 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell TC71_BONE TC-71 skos:exactMatch efo 0002865 TC71 lexical 0.7775716347144919 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell TCCPAN2_PANCREAS TCC-PAN2 skos:exactMatch efo 0006764 TCC-PAN2 lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell TE15_OESOPHAGUS TE-15 skos:exactMatch cellosaurus CVCL_F780 TE15 lexical 0.7775716347144919 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell THP1_HAEMATOPOIETIC_AND_LYMPHOID_TISSUE THP-1 skos:exactMatch efo 0001253 THP-1 lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell TOLEDO_HAEMATOPOIETIC_AND_LYMPHOID_TISSUE Toledo skos:exactMatch efo 0002383 Toledo lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell TOV112D_OVARY TOV-112D skos:exactMatch efo 0005263 TOV-112D lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell TT_THYROID TT skos:exactMatch efo 0002382 TT lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell TYKNU_OVARY TYK-nu skos:exactMatch efo 0006766 TYK-nu lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell U251MG_CENTRAL_NERVOUS_SYSTEM U-251 MG skos:exactMatch efo 0006498 U-251 MG lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell U266B1_HAEMATOPOIETIC_AND_LYMPHOID_TISSUE U266B1 skos:exactMatch efo 0001254 U266 lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell U87MG_CENTRAL_NERVOUS_SYSTEM U-87 MG skos:exactMatch efo 0005237 U-87 MG lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell U937_HAEMATOPOIETIC_AND_LYMPHOID_TISSUE U-937 skos:exactMatch efo 0001257 U937 lexical 0.7775716347144919 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell UACC257_SKIN UACC-257 skos:exactMatch efo 0005376 UACC-257 lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell UACC62_SKIN UACC-62 skos:exactMatch efo 0005377 UACC-62 lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell UACC812_BREAST UACC-812 skos:exactMatch efo 0001258 UACC812 lexical 0.7775716347144919 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell UACC893_BREAST UACC-893 skos:exactMatch efo 0002385 UACC893 lexical 0.7775716347144919 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell UMUC1_URINARY_TRACT UM-UC-1 skos:exactMatch efo 0006770 UM-UC-1 lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell UMUC3_URINARY_TRACT UM-UC-3 skos:exactMatch efo 0006771 UM-UC-3 lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell VCAP_PROSTATE VCaP skos:exactMatch efo 0007752 VCaP lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell VMRCLCD_LUNG VMRC-LCD skos:exactMatch efo 0006773 VMRC-LCD lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell WM115_SKIN WM-115 skos:exactMatch efo 0002390 WM115 lexical 0.7775716347144919 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell WM2664_SKIN WM-266-4 skos:exactMatch efo 0006774 WM-266-4 lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell WM793_SKIN WM-793 skos:exactMatch efo 0002873 WM793 lexical 0.7775716347144919 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -ccle.cell WSUDLCL2_HAEMATOPOIETIC_AND_LYMPHOID_TISSUE WSU-DLCL2 skos:exactMatch efo 0006775 WSU-DLCL2 lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py -kegg.pathway map01501 beta-Lactam resistance skos:exactMatch mesh D018440 beta-Lactam Resistance lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/8b9e68/scripts/kegg_mappings.py -kegg.pathway map01502 Vancomycin resistance skos:exactMatch mesh D020713 Vancomycin Resistance lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/8b9e68/scripts/kegg_mappings.py -kegg.pathway map04931 Insulin resistance skos:exactMatch mesh D007333 Insulin Resistance lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/8b9e68/scripts/kegg_mappings.py +ccle ES2_OVARY ES-2 skos:exactMatch cellosaurus CVCL_AX39 ES2 lexical 0.7775716347144919 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py +ccle ES2_OVARY ES-2 skos:exactMatch cellosaurus CVCL_C769 ESe009-A lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py +ccle EW7476 EW7476 skos:exactMatch cellosaurus CVCL_EQ72 EW 7476 lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py +ccle GCT_SOFT_TISSUE GCT skos:exactMatch efo 0002182 GCT lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py +ccle GDM1_HAEMATOPOIETIC_AND_LYMPHOID_TISSUE GDM-1 skos:exactMatch efo 0002183 GDM1 lexical 0.7775716347144919 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py +ccle GP2D_LARGE_INTESTINE GP2d skos:exactMatch efo 0006575 GP2d lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py +ccle GRM_SKIN GR-M skos:exactMatch efo 0006577 GR-M lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py +ccle H2596 H2596 skos:exactMatch cellosaurus CVCL_A546 NCI-H2596 lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py +ccle HEL_HAEMATOPOIETIC_AND_LYMPHOID_TISSUE HEL skos:exactMatch cellosaurus CVCL_6D72 HEL-30 lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py +ccle HEL_HAEMATOPOIETIC_AND_LYMPHOID_TISSUE HEL skos:exactMatch efo 0006579 HEL lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py +ccle HH_HAEMATOPOIETIC_AND_LYMPHOID_TISSUE HH skos:exactMatch efo 0002194 HH lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py +ccle HNT34 HNT34 skos:exactMatch cellosaurus CVCL_2071 HNT-34 lexical 0.7775716347144919 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py +ccle HNT34 HNT34 skos:exactMatch depmap ACH-000299 lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py +ccle HNT34 HNT34 skos:exactMatch efo 0006583 HNT-34 lexical 0.7775716347144919 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py +ccle HN_UPPER_AERODIGESTIVE_TRACT HN skos:exactMatch efo 1000958 halo nevus lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py +ccle HPAFII_PANCREAS HPAF-II skos:exactMatch efo 0002198 HPAFII lexical 0.7775716347144919 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py +ccle HS895T_FIBROBLAST Hs 895.T skos:exactMatch efo 0006593 Hs 895.T lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py +ccle HT55_LARGE_INTESTINE HT55 skos:exactMatch cellosaurus CVCL_A8FJ HT55 lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py +ccle HTK_HAEMATOPOIETIC_AND_LYMPHOID_TISSUE HTK- skos:exactMatch cellosaurus CVCL_9W65 HTk lexical 0.7431457431457431 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py +ccle HTK_HAEMATOPOIETIC_AND_LYMPHOID_TISSUE HTK- skos:exactMatch cellosaurus CVCL_YM13 HTK lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py +ccle HT_HAEMATOPOIETIC_AND_LYMPHOID_TISSUE HT skos:exactMatch efo 0002200 HT lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py +ccle IOSE364 IOSE364 skos:exactMatch cellosaurus CVCL_5540 IOSE-364 lexical 0.7775716347144919 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py +ccle IOSE397 IOSE397 skos:exactMatch cellosaurus CVCL_5541 IOSE-397 lexical 0.7775716347144919 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py +ccle IOSE523 IOSE523 skos:exactMatch cellosaurus CVCL_E234 IOSE-523 lexical 0.7775716347144919 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py +ccle IOSE7516SV40 IOSE7516SV40 skos:exactMatch cellosaurus CVCL_EQ74 IOSE-75-16SV40 lexical 0.7775716347144919 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py +ccle JK1_HAEMATOPOIETIC_AND_LYMPHOID_TISSUE JK-1 skos:exactMatch cellosaurus CVCL_JZ08 JK1 lexical 0.7775716347144919 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py +ccle JL1_PLEURA JL-1 skos:exactMatch efo 0006448 JL-1 lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py +ccle JM1_HAEMATOPOIETIC_AND_LYMPHOID_TISSUE JM1 skos:exactMatch cellosaurus CVCL_F242 JM1 lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py +ccle JM1_HAEMATOPOIETIC_AND_LYMPHOID_TISSUE JM1 skos:exactMatch cellosaurus CVCL_T448 MDCC-JM-1 lexical 0.5553494124922697 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py +ccle JM1_HAEMATOPOIETIC_AND_LYMPHOID_TISSUE JM1 skos:exactMatch efo 0002212 JM1 lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py +ccle JRT3T35 JRT3T35 skos:exactMatch cellosaurus CVCL_1316 J.RT3-T3.5 lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py +ccle K19 K19 skos:exactMatch cellosaurus CVCL_W796 K19 lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py +ccle KG1_HAEMATOPOIETIC_AND_LYMPHOID_TISSUE KG-1 skos:exactMatch cellosaurus CVCL_1S07 GM10888 lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py +ccle KG1_HAEMATOPOIETIC_AND_LYMPHOID_TISSUE KG-1 skos:exactMatch cellosaurus CVCL_2971 KG-1-C lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py +ccle KG1_HAEMATOPOIETIC_AND_LYMPHOID_TISSUE KG-1 skos:exactMatch cellosaurus CVCL_UD72 KG1 lexical 0.7775716347144919 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py +ccle KMH2_HAEMATOPOIETIC_AND_LYMPHOID_TISSUE KM-H2 skos:exactMatch cellosaurus CVCL_S641 KMH-2 lexical 0.7773654916512059 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py +ccle KS1_CENTRAL_NERVOUS_SYSTEM KS-1 skos:exactMatch cellosaurus CVCL_D284 KS-1 [Human Krukenberg tumour] lexical 0.5553494124922697 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py +ccle LK2_LUNG LK-2 skos:exactMatch cellosaurus CVCL_W132 LK2 lexical 0.7775716347144919 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py +ccle LK2_LUNG LK-2 skos:exactMatch efo 0003141 LK-2 lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py +ccle LP1_HAEMATOPOIETIC_AND_LYMPHOID_TISSUE LP-1 skos:exactMatch cellosaurus CVCL_SA54 LPS1 lexical 0.5553494124922697 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py +ccle LP1_HAEMATOPOIETIC_AND_LYMPHOID_TISSUE LP-1 skos:exactMatch efo 0003055 LP1 lexical 0.7775716347144919 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py +ccle ME1_HAEMATOPOIETIC_AND_LYMPHOID_TISSUE ME-1 skos:exactMatch cellosaurus CVCL_L911 ME1 lexical 0.7775716347144919 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py +ccle MEC2_HAEMATOPOIETIC_AND_LYMPHOID_TISSUE MEC-2 skos:exactMatch efo 0006285 MEC2 lexical 0.7775716347144919 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py +ccle MEG01_HAEMATOPOIETIC_AND_LYMPHOID_TISSUE MEG-01 skos:exactMatch efo 0002232 MEG01 lexical 0.7775716347144919 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py +ccle MELHO_SKIN MEL-HO skos:exactMatch efo 0006647 MEL-HO lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py +ccle MESSA_SOFT_TISSUE MES-SA skos:exactMatch efo 0002233 MESSA lexical 0.7775716347144919 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py +ccle MET2B MET2B skos:exactMatch cellosaurus CVCL_VS57 MET-2B lexical 0.7775716347144919 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py +ccle MET2B MET2B skos:exactMatch depmap ACH-002388 MET2B lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py +ccle MEWO_SKIN MeWo skos:exactMatch efo 0006648 MeWo lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py +ccle MINO_HAEMATOPOIETIC_AND_LYMPHOID_TISSUE Mino skos:exactMatch cellosaurus CVCL_UW35 MINO lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py +ccle MKL1SUBCLONE2 MKL1SUBCLONE2 skos:exactMatch cellosaurus CVCL_EQ71 MKL-1 subclone 2 lexical 0.5485466914038343 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py +ccle NB1_AUTONOMIC_GANGLIA NB-1 skos:exactMatch cellosaurus CVCL_8812 SJNB-1 lexical 0.5553494124922697 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py +ccle NB1_AUTONOMIC_GANGLIA NB-1 skos:exactMatch cellosaurus CVCL_GZ01 NB-1 lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py +ccle NB4_HAEMATOPOIETIC_AND_LYMPHOID_TISSUE NB-4 skos:exactMatch cellosaurus CVCL_8821 SJNB-4 lexical 0.5553494124922697 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py +ccle NCIH322_LUNG NCI-H322 skos:exactMatch efo 0006691 NCI-H322T lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py +ccle OSA80 OSA80 skos:exactMatch cellosaurus CVCL_EQ73 OSA-80 lexical 0.7775716347144919 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py +ccle OV7_OVARY OV7 skos:exactMatch cellosaurus CVCL_DG86 ACC-OV7 lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py +ccle OV90_OVARY OV-90 skos:exactMatch efo 0002311 OV90 lexical 0.7775716347144919 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py +ccle P116 P116 skos:exactMatch cellosaurus CVCL_6429 P116 lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py +ccle P116 P116 skos:exactMatch cellosaurus CVCL_JU06 JHU116i lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py +ccle P3HR1_HAEMATOPOIETIC_AND_LYMPHOID_TISSUE P3HR-1 skos:exactMatch efo 0002312 P3HR1 lexical 0.7775716347144919 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py +ccle PC14_LUNG PC-14 skos:exactMatch efo 0002844 PC-14 lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py +ccle PC3_PROSTATE PC-3 skos:exactMatch cellosaurus CVCL_4011 MIA PaCa-3 lexical 0.5485466914038343 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py +ccle PC3_PROSTATE PC-3 skos:exactMatch cellosaurus CVCL_4055 SK-PC-3 lexical 0.5553494124922697 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py +ccle PECAPJ15_UPPER_AERODIGESTIVE_TRACT PE/CA-PJ15 skos:exactMatch efo 0006733 PE/CA-PJ15 lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py +ccle PFEIFFER_HAEMATOPOIETIC_AND_LYMPHOID_TISSUE Pfeiffer skos:exactMatch efo 0006472 Pfeiffer lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py +ccle PK1_PANCREAS PK-1 skos:exactMatch cellosaurus CVCL_WI10 N2a-PK1 lexical 0.5553494124922697 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py +ccle PK45H_PANCREAS PK-45H skos:exactMatch efo 0006734 PK-45H lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py +ccle PK59_PANCREAS PK-59 skos:exactMatch efo 0006736 PK-59 lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py +ccle PL21_HAEMATOPOIETIC_AND_LYMPHOID_TISSUE PL-21 skos:exactMatch cellosaurus CVCL_JM48 PL21 lexical 0.7775716347144919 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py +ccle RCHACV_HAEMATOPOIETIC_AND_LYMPHOID_TISSUE RCH-ACV skos:exactMatch efo 0002314 RCHACV lexical 0.7775716347144919 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py +ccle RCM1_LARGE_INTESTINE RCM-1 skos:exactMatch cellosaurus CVCL_C099 RCM-1 [Human ESC] lexical 0.5553494124922697 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py +ccle RCM1_LARGE_INTESTINE RCM-1 skos:exactMatch efo 0006476 RCM-1 lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py +ccle RDES_BONE RD-ES skos:exactMatch efo 0002316 RDES lexical 0.7775716347144919 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py +ccle RD_SOFT_TISSUE RD skos:exactMatch efo 0002315 RD lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py +ccle REC1_HAEMATOPOIETIC_AND_LYMPHOID_TISSUE REC-1 skos:exactMatch efo 0002317 REC1 lexical 0.7775716347144919 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py +ccle RH30_SOFT_TISSUE RH-30 skos:exactMatch cellosaurus CVCL_0041 Rh30 lexical 0.7707689136260565 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py +ccle RI1_HAEMATOPOIETIC_AND_LYMPHOID_TISSUE RI-1 skos:exactMatch efo 0006477 RI-1 lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py +ccle RKN_SOFT_TISSUE RKN skos:exactMatch efo 0006745 RKN lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py +ccle RKO_LARGE_INTESTINE RKO skos:exactMatch efo 0001232 RKO lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py +ccle RL_HAEMATOPOIETIC_AND_LYMPHOID_TISSUE RL skos:exactMatch efo 0002319 RL lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py +ccle RMGI_OVARY RMG-I skos:exactMatch efo 0006746 RMG-I lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py +ccle RT4_URINARY_TRACT RT4 skos:exactMatch efo 0006480 RT4 lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py +ccle SBC5_LUNG SBC-5 skos:exactMatch efo 0002855 SBC-5 lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py +ccle SCC15_UPPER_AERODIGESTIVE_TRACT SCC-15 skos:exactMatch efo 0006482 SCC-15 lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py +ccle SCC25_UPPER_AERODIGESTIVE_TRACT SCC-25 skos:exactMatch cellosaurus CVCL_7735 UM-SCC-25 lexical 0.5553494124922697 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py +ccle SCC4_UPPER_AERODIGESTIVE_TRACT SCC-4 skos:exactMatch cellosaurus CVCL_7751 UM-SCC-4 lexical 0.5553494124922697 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py +ccle SCC9_UPPER_AERODIGESTIVE_TRACT SCC-9 skos:exactMatch cellosaurus CVCL_7793 UM-SCC-9 lexical 0.5553494124922697 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py +ccle SCLC21H_LUNG SCLC-21H skos:exactMatch efo 0006749 SCLC-21H lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py +ccle SEM_HAEMATOPOIETIC_AND_LYMPHOID_TISSUE SEM skos:exactMatch efo 0002326 SEM lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py +ccle SET2_HAEMATOPOIETIC_AND_LYMPHOID_TISSUE Set-2 skos:exactMatch efo 0006486 SET-2 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py +ccle SH4_SKIN SH-4 skos:exactMatch cellosaurus CVCL_7702 SH4 lexical 0.7775716347144919 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py +ccle SH4_SKIN SH-4 skos:exactMatch cellosaurus CVCL_C724 SSMUe004-A lexical 0.5553494124922697 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py +ccle SH4_SKIN SH-4 skos:exactMatch efo 0002327 SH4 lexical 0.7775716347144919 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py +ccle SHP77_LUNG SHP-77 skos:exactMatch efo 0002328 SHP77 lexical 0.7775716347144919 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py +ccle SHSY5Y_AUTONOMIC_GANGLIA SH-SY5Y skos:exactMatch efo 0002717 SH-SY5Y lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py +ccle SIGM5_HAEMATOPOIETIC_AND_LYMPHOID_TISSUE SIG-M5 skos:exactMatch efo 0006751 SIG-M5 lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py +ccle SIHA SIHA skos:exactMatch depmap ACH-000556 SIHA lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py +ccle SIHA SIHA skos:exactMatch efo 0002379 SiHa lexical 0.7431457431457431 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py +ccle SKM1_HAEMATOPOIETIC_AND_LYMPHOID_TISSUE SKM-1 skos:exactMatch efo 0006753 SKM-1 lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py +ccle SKNFI_AUTONOMIC_GANGLIA SK-N-FI skos:exactMatch efo 0002338 SKNFI lexical 0.7775716347144919 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py +ccle SNU1_STOMACH SNU-1 skos:exactMatch efo 0002343 SNU1 lexical 0.7775716347144919 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py +ccle SNU5_STOMACH SNU-5 skos:exactMatch efo 0002351 SNU5 lexical 0.7775716347144919 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py +ccle SNUC1_LARGE_INTESTINE SNU-C1 skos:exactMatch efo 0006761 SNU-C1 lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py +ccle T24_URINARY_TRACT T24 skos:exactMatch efo 0002864 T24 lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py +ccle T3M4_PANCREAS T3M-4 skos:exactMatch efo 0002714 Panc89 lexical 0.5553494124922697 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py +ccle T84_LARGE_INTESTINE T84 skos:exactMatch efo 0002084 T84 lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py +ccle TE15_OESOPHAGUS TE-15 skos:exactMatch cellosaurus CVCL_F780 TE15 lexical 0.7775716347144919 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py +ccle TT_THYROID TT skos:exactMatch efo 0002382 TT lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py +ccle U266B1_HAEMATOPOIETIC_AND_LYMPHOID_TISSUE U266B1 skos:exactMatch efo 0001254 U266 lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py +ccle U87MG_CENTRAL_NERVOUS_SYSTEM U-87 MG skos:exactMatch efo 0005237 U-87 MG lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/0db288/scripts/generate_ccle_mappings.py +chebi CHEBI:10044 Wuweizisu C skos:exactMatch mesh C031409 schizandrin C lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:10057 9H-xanthene skos:exactMatch mesh C002563 xanthan gum lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:101096 ethoxzolamide skos:exactMatch mesh C523270 6-ethoxybenzothiazole-2-sulfonamide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:101854 talarozole skos:exactMatch mesh C406527 R 115866 lexical 0.9 https://github.com/indralab/panacea_indra/blob/master/panacea_indra/make_ctd_tests.py +chebi CHEBI:1019 N-(2-phosphonoethyl)cholamide skos:exactMatch mesh C013886 ciliatocholic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:10333 alpha-Spinasterol skos:exactMatch mesh C031312 spinasterol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:10357 (-)-beta-caryophyllene skos:exactMatch mesh C024714 caryophyllene lexical 0.9 https://github.com/indralab/panacea_indra/blob/master/panacea_indra/make_ctd_tests.py +chebi CHEBI:104234 1-(1,2-diphenylethyl)piperidine skos:exactMatch mesh C000599677 diphenidine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:10556 (-)-trans-epsilon-viniferin skos:exactMatch mesh C091891 epsilon-viniferin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:107635 2,3-diacetyloxybenzoic acid skos:exactMatch mesh C011748 tosiben lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:109543 5,7-dibromo-8-quinolinol skos:exactMatch mesh C002276 broxyquinoline lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:111513 (beta-D-glucopyranosyloxymethyl)deoxyuridine skos:exactMatch mesh C084880 5-((glucopyranosyloxy)methyl)uracil lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:111517 dimethylmalonic acid skos:exactMatch mesh C087784 2,2-dimethylmalonic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:11986 4-fluoro-L-threonine skos:exactMatch mesh C048271 4-fluorothreonine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:12060 5'-deoxy-5'-fluoroadenosine skos:exactMatch mesh C514925 5'-fluoro-5'-deoxyadenosine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:1217 2-methylthio-1,3-benzothiazole skos:exactMatch mesh C008502 2-(methylthio)benzothiazole lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:1220 2-N-Dodecyltetrahydrothiophene skos:exactMatch mesh C056270 2-n-dodecyltetrahydrothiophene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:1221 2-N-Undecyltetrahydrothiophene skos:exactMatch mesh C056269 2-n-undecyltetrahydrothiophene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:125204 4-guanidinobenzoic acid skos:exactMatch mesh C023856 4-guanidinobenzoate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:125497 10-methylphenothiazine skos:exactMatch mesh C045775 N-methylphenothiazine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:127105 tribromosalicylanilide skos:exactMatch mesh C004361 tribromsalan lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:1294 (20R,22R)-20,22-dihydroxycholesterol skos:exactMatch mesh C003563 20,22-dihydroxycholesterol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:130910 (Z)-3-(4-iodophenyl)-2-mercaptoacrylic acid skos:exactMatch mesh C100442 PD 150606 lexical 0.9 https://github.com/indralab/panacea_indra/blob/master/panacea_indra/make_ctd_tests.py +chebi CHEBI:131188 formycin 3',5'-cyclic phosphate skos:exactMatch mesh C032553 formycin cyclic 3',5'-monophosphate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:131351 CGS 15943 skos:exactMatch mesh C052410 9-chloro-2-(2-furyl)-(1,2,4)triazolo(1,5-c)quinazolin-5-imine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:131408 glyoxime skos:exactMatch mesh C018305 glyoxal dioxime lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:131432 2-(3-hydroxyphenyl)propionic acid skos:exactMatch mesh C491266 3-hydroxyphenylpropionic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:131435 ethyl L-methioninate skos:exactMatch mesh C036827 methionine ethyl ester lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:131454 pyridine-2,3-diol skos:exactMatch mesh C035877 2,3-dihydroxypyridine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:131595 3alpha,7alpha-dihydroxy-5beta-cholane-24-sulfonate skos:exactMatch mesh C065714 3,7-dihydroxycholane-24-sulfonate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:131603 sucrose 6(G)-phosphate skos:exactMatch mesh C535046 sucrose-6-phosphate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:13166 Sec-tRNA(Sec) skos:exactMatch mesh C112705 selenocysteinyl-tRNA lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:131661 1-hexadecanoyl-2-(9,10-epoxyoctadecanoyl)-sn-glycero-3-phosphocholine skos:exactMatch mesh C006402 1-palmitoyl-2-(9,10-epoxystearoyl)phosphatidylcholine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:131667 8,11,14-icosatrien-5-ynoic acid skos:exactMatch mesh C025421 eicosa-8,11,14-trien-5-ynoic acid lexical 0.9 https://github.com/indralab/panacea_indra/blob/master/panacea_indra/make_ctd_tests.py +chebi CHEBI:131686 CFTRinh-172 skos:exactMatch mesh C482900 3-((3-trifluoromethyl)phenyl)-5-((3-carboxyphenyl)methylene)-2-thioxo-4-thiazolidinone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:131827 8,5'-cyclo-2'-deoxyadenosine monophosphate skos:exactMatch mesh C047552 8,5'-cyclo(deoxyadenosine 5'-monophosphate) lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:131887 O-heptadecanoylcarnitine skos:exactMatch mesh C000607153 heptadecanoylcarnitine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:131956 (+)-nyasol skos:exactMatch mesh C109393 nyasol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:131968 tyrphostin B42 skos:exactMatch mesh C095512 alpha-cyano-(3,4-dihydroxy)-N-benzylcinnamide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:132051 desmethylranitidine skos:exactMatch mesh C045908 5-desmethylranitidine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:132121 2-glyceryl 14,15-epoxy-(5Z,8Z,11Z)-icosatrienoate skos:exactMatch mesh C519406 2-(14,15-epoxyeicosatrienoyl)glycerol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:132169 2'-deoxy-5,6-dihydroxy-5,6-dihydrocytidine skos:exactMatch mesh C120690 2'-deoxycytidine glycol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:132173 all-trans-7,8-dihydroretinol skos:exactMatch mesh C518302 7,8-dihydroretinol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:132203 6-carboxyfluorescein succinimidyl ester skos:exactMatch mesh C087165 5-(6)-carboxyfluorescein diacetate succinimidyl ester lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:132237 rac-3,4-methylenedioxy-N-ethylamphetamine skos:exactMatch mesh C051800 3,4-methylenedioxyethamphetamine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:132244 (E)-3-(indol-3-yl)acrylic acid skos:exactMatch mesh C001446 indoleacrylic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:132246 all-trans-3,4-didehydroretinol skos:exactMatch mesh C024366 vitamin A2 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:132357 2,3,4,5-tetrachlorophenol skos:exactMatch mesh C039674 2,3,4,5-tetrachlorophenate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:132386 wilformine skos:exactMatch mesh C062678 euonine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:132405 chrysen-3-ol skos:exactMatch mesh C063661 3-hydroxychrysene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:132407 chrysen-6-ol skos:exactMatch mesh C087203 6-hydroxychrysene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:132471 (+)-schisandrin B skos:exactMatch mesh C015499 schizandrin B lexical 0.9 https://github.com/indralab/panacea_indra/blob/master/panacea_indra/make_ctd_tests.py +chebi CHEBI:132497 isoxadifen-ethyl skos:exactMatch mesh C544124 ethyl-4,5-dihydro-5,5-diphenylisoxazol-3-carboxylate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:132583 monooctyl phthalate skos:exactMatch mesh C041260 mono-n-octyl phthalate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:132604 monohexyl phthalate skos:exactMatch mesh C049841 mono-n-hexyl phthalate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:132611 mono(5-carboxy-2-ethylpentyl) phthalate skos:exactMatch mesh C051450 2-ethyl-5-carboxypentyl phthalate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:132708 N-arachidonoyl-L-alanine skos:exactMatch mesh C483476 N-arachidonoylalanine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:132754 dynasore skos:exactMatch mesh C511794 N'-(3,4-dihydroxybenzylidene)-3-hydroxy-2-naphthahydrazide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:132789 oxypaeoniflorin skos:exactMatch mesh C047593 oxypaeoniflora lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:132815 6'-O-acetylpaeoniflorin skos:exactMatch mesh C000625444 6'-acetylpaeoniflorin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:132823 clionasterol skos:exactMatch mesh C025473 gamma-sitosterol lexical 0.9 https://github.com/indralab/panacea_indra/blob/master/panacea_indra/make_ctd_tests.py +chebi CHEBI:132837 (E,E)-hepta-2,4-dienal skos:exactMatch mesh C502503 2,4-heptadienal lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:132852 lespedezol D1 skos:exactMatch mesh C534228 kushenin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:132881 N-benzoylglycyl-N(6)-[2-hydroxy-3-(quinoxalin-2-yl)propyl]lysine skos:exactMatch mesh C509427 N(1)-benzoylglycyl-N(6)-(2-hydroxy-3-quinoxalin-2-ylpropyl)lysine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:132906 (-)-Tau-muurolol skos:exactMatch mesh C499351 T-muurolol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:132928 methyl (+)-pentacycloanammoxate skos:exactMatch mesh C498357 pentacycloanammoxic acid methyl ester lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:132983 3-hydroxydecanoic acid skos:exactMatch mesh C017552 myrmicacin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:133028 gamma-Glu-Trp skos:exactMatch mesh C102867 gamma-glutamyltryptophan lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:133057 tauro-beta-muricholic acid skos:exactMatch mesh C037351 tauromuricholic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:133086 octadecanedioic acid skos:exactMatch mesh C010266 octadecane-1,18-dioic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:133103 (3alpha,5alpha,17beta)-3-hydroxyandrostan-17-yl sulfate skos:exactMatch mesh C056506 androstane-3,17-diol 17-sulfate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:133119 5alpha-pregnane-3beta,20alpha-diol disulfate skos:exactMatch mesh C028636 pregnane-3,20-diol 3,20-disulfate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:133183 N-acetyl-3-methyl-L-histidine skos:exactMatch mesh C018440 N-acetyl-3-methylhistidine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:133197 2-hydroxyibuprofen skos:exactMatch mesh C109994 hydroxyibuprofen lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:133213 alpha-Neu5Ac-(2->8)-alpha-Neu5Ac-(2->3)-beta-D-Gal-(1->4)-beta-D-GlcNAc-(1->3)-beta-D-Gal-(1->4)-D-Glc-(1<->1')-Cer skos:exactMatch mesh C018928 disialosyl paragloboside lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:133343 beta-D-glucosamine 6-sulfate skos:exactMatch mesh C046905 glucosamine 6-O-sulfate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:133351 N-carbamoylglycine skos:exactMatch mesh C011271 hydantoic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:133366 2-(7-aminoheptyl)guanidine skos:exactMatch mesh C100667 N(1)-guanyl-1,7-diaminoheptane lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:133390 beta-(methylenecyclopropyl)pyruvic acid skos:exactMatch mesh C022149 ketohypoglycin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:133435 S-(5-acetamido-2-hydroxyphenyl)-N-acetyl-L-cysteine skos:exactMatch mesh C077937 acetaminophen-mercapturic acid conjugate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:133455 (2E)-dec-2-enal skos:exactMatch mesh C476489 (2E)-decenal lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:133530 tyramine sulfate skos:exactMatch mesh C027957 tyramine O-sulfate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:133565 umbelliferone sulfate skos:exactMatch mesh C052011 7-hydroxycoumarin sulfate ester lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:133677 hexadecanoylcholine skos:exactMatch mesh C032703 palmitoylcholine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:133683 2-isobutylthiazole skos:exactMatch mesh C059127 2-isobutyl-1,3-thiazole lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:133721 rhamnacene skos:exactMatch mesh C000597862 rhamnazin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:133786 mefenpyr-diethyl skos:exactMatch mesh C555731 1-(2, 4-dichlorophenyl)-4, 5-dihydro-5-methyl-1H-pyrazole-3,5-dicarboxylic acid diethyl ester lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:133794 all-trans-3,4-didehydroretinoic acid skos:exactMatch mesh C064742 3,4-didehydroretinoic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:133905 demethoxyaschantin skos:exactMatch mesh C550308 kobusin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:133914 (10Z,12E)-hexadecadienal skos:exactMatch mesh C066482 bombykal lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:134063 1,2,5,6,9,10-hexabromocyclododecane skos:exactMatch mesh C089796 hexabromocyclododecane lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:134126 picrotoxin skos:exactMatch mesh D031605 Cocculus lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:134180 leucomethylene blue skos:exactMatch mesh C011010 hydromethylthionine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:134184 pateamine skos:exactMatch mesh C421324 pateamine A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:134246 (R)-2-hydroxyglutaryl-CoA skos:exactMatch mesh C070412 2-hydroxyglutaryl-1-coenzyme A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:134261 alpha-(methylamino)isobutyric acid skos:exactMatch mesh C017911 2-(methylamino)isobutyric acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:134453 10-HETE skos:exactMatch mesh C095133 10-hydroxyeicosatetraenoic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:134470 5-methyldihydrofolic acid skos:exactMatch mesh C012429 5-methyldihydrofolate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:134485 tridodecylamine skos:exactMatch mesh C044321 tri-n-dodecylamine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:134543 (R)-4-hydroxy-1-methyl-L-proline skos:exactMatch mesh C521986 N-methyl-trans-4-hydroxy-L-proline lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:134703 fluciclovine ((18)F) skos:exactMatch mesh C117460 fluciclovine F-18 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:134725 luseogliflozin skos:exactMatch mesh C549343 1,5-anhydro-1-(5-(4-ethoxybenzyl)-2-methoxy-4-methylphenyl)-1-thioglucitol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:134750 octinoxate skos:exactMatch mesh C118580 octylmethoxycinnamate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:134755 oxymethurea skos:exactMatch mesh C006892 carbamol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:134789 tiliquinol skos:exactMatch mesh C032033 5-methyl-8-hydroxyquinoline lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:134805 sodium hexacyclonate skos:exactMatch mesh C082676 gevilon lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:134808 acexamic acid skos:exactMatch mesh C018802 6-acetylaminocaproic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:134832 aminitrozole skos:exactMatch mesh C004474 nithiamide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:134868 pivhydrazine skos:exactMatch mesh C008928 pivalylbenzhydrazine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:134880 melevodopa skos:exactMatch mesh C035420 levodopa methyl ester lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:134891 sulfacarbamide skos:exactMatch mesh C009348 sulfanilylurea lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:134922 vinylbital skos:exactMatch mesh C013334 butylvinal lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:134950 levofacetoperane skos:exactMatch mesh C010500 levophacetoperane lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:134962 ambazone skos:exactMatch mesh C037931 1,4-benzoquinone guanylhydrazone thiosemicarbazone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:13497 UDP-alpha-D-glucosamine skos:exactMatch mesh C026712 UDP-glucosamine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:135093 sulfiram skos:exactMatch mesh C009822 monosulfiram lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:135144 mebhydrolin skos:exactMatch mesh C005139 mebhydroline lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:135217 cloranolol skos:exactMatch mesh C025725 tobanum lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:135224 amitriptylinoxide skos:exactMatch mesh C006566 amitriptyline N-oxide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:135251 glycyclamide skos:exactMatch mesh C005008 tolcyclamide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:135336 ibuprofen guaiacol ester skos:exactMatch mesh C020176 metoxibutropate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:135338 guggulsterone skos:exactMatch mesh C023617 pregna-4,17-diene-3,16-dione lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:135368 cyclocoumarol skos:exactMatch mesh C100102 cyclocumarol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:135373 mepixanox skos:exactMatch mesh C033221 pimexone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:135383 ditazole skos:exactMatch mesh C084774 ditazol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:135399 tifenamil skos:exactMatch mesh C009488 thiphenamil lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:135448 nitroxazepine skos:exactMatch mesh C100140 sintamil lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:135451 fenetylline skos:exactMatch mesh C004518 fenethylline lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:135456 formebolone skos:exactMatch mesh C002846 formyldienolone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:135459 clorotepine skos:exactMatch mesh C100288 octoclothepine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:135492 butizide skos:exactMatch mesh C009732 buthiazide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:135534 lapyrium chloride skos:exactMatch mesh C041218 lapyrium lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:135616 dimetotiazine skos:exactMatch mesh C100113 fonazine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:135635 pipazetate skos:exactMatch mesh C016064 pipazethate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:135640 bemetizide skos:exactMatch mesh C010100 dehydrosanol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:135672 teclothiazide skos:exactMatch mesh C015526 tetrachlormethiazide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:135701 brovincamine skos:exactMatch mesh C033581 11-bromovincamine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:135745 prednisolone succinate skos:exactMatch mesh C021322 prednisolone hemisuccinate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:135749 cinnoxicam skos:exactMatch mesh C057291 piroxicam cinnamate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:135754 loprazolam skos:exactMatch mesh C020168 triazulenone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:135759 diethylaminoethoxyhexestrol skos:exactMatch mesh C100116 hexestrol bis(diethylaminoethyl ether) lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:135766 tibezonium skos:exactMatch mesh C013715 tibenzonium iodide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:135770 dexamethasone valerate skos:exactMatch mesh C030949 dexamethasone 17-valerate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:135778 clocapramine skos:exactMatch mesh C000449 3-chlorocarpipramine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:135788 riodoxol skos:exactMatch mesh C031970 2,4,6-triiodoresorcinol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:135793 barnidipine skos:exactMatch mesh C050699 mepirodipine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:135812 cefetamet pivoxil skos:exactMatch mesh C047445 cefetamet pivoxyl lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:135816 glucametacin skos:exactMatch mesh C010581 glucametacin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:135817 cefminox skos:exactMatch mesh C046079 cefminox lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:135818 pirozadil skos:exactMatch mesh C015453 pirozadil lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:135820 cortivazol skos:exactMatch mesh C005924 cortivazol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:135822 nafiverine skos:exactMatch mesh C002681 nafiverine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:135824 meproscillarin skos:exactMatch mesh C009079 meproscillarin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:135825 peruvoside skos:exactMatch mesh C100098 cannogenin thevetoside lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:135826 octenidine skos:exactMatch mesh C034213 octenidine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:135827 bufeniode skos:exactMatch mesh C000329 bufeniode lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:135828 phenobutiodil skos:exactMatch mesh C008831 phenobutiodil lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:135829 alatrofloxacin skos:exactMatch mesh C106856 alatrofloxacin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:135832 brovanexine skos:exactMatch mesh C012222 brovanexine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:135838 cytarabine ocfosfate skos:exactMatch mesh C061162 1-arabinofuranosylcytosine-5'-stearylphosphate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:135839 difebarbamate skos:exactMatch mesh C007383 difebarbamate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:135840 hidrosmin skos:exactMatch mesh C071047 hidrosmin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:135841 antrafenine skos:exactMatch mesh C017014 antrafenine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:135842 pentigetide skos:exactMatch mesh C040297 pentigide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:135845 rapacuronium skos:exactMatch mesh C082938 rapacuronium lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:135846 nicofuranose skos:exactMatch mesh C100123 nicofuranose lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:135847 biricodar skos:exactMatch mesh C106077 biricodar lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:135849 manidipine skos:exactMatch mesh C054218 manidipine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:135850 iomeglamic acid skos:exactMatch mesh C002060 iomeglamic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:135852 triamcinolone benetonide skos:exactMatch mesh C016150 triamcinolone benetonide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:135873 glucosaminylmuramyl dipeptide skos:exactMatch mesh C063429 glucosaminylmuramyl-2-alanine-D-isoglutamine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:135880 benzquercin skos:exactMatch mesh C097365 benzquercin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:135884 ioxilan skos:exactMatch mesh C055357 ioxilan lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:135887 solasulfone skos:exactMatch mesh C009799 solasulfone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:135889 sorbinicate skos:exactMatch mesh C015238 glucitol hexanicotinate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:135890 pralmorelin skos:exactMatch mesh C091874 growth hormone-releasing peptide-2 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:135891 etiroxate skos:exactMatch mesh C010150 etiroxate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:135893 iopentol skos:exactMatch mesh C053571 iopentol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:135896 gitoformate skos:exactMatch mesh C008785 pentaformylgitoxin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:135898 lanatoside C skos:exactMatch mesh C018548 lanatoside C lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:135904 teicoplanin aglycone skos:exactMatch mesh C063101 teicoplanin aglycone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:135906 mifamurtide skos:exactMatch mesh C037144 mifamurtide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:135910 ganirelix skos:exactMatch mesh C061018 ganirelix lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:135916 elcatonin skos:exactMatch mesh C012755 elcatonin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:135918 chidamide skos:exactMatch mesh C547816 N-(2-amino-5-fluorobenzyl)-4-(N-(pyridine-3-acrylyl)aminomethyl)benzamide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:135920 fesoterodine skos:exactMatch mesh C526675 fesoterodine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:135922 pramlintide skos:exactMatch mesh C105254 pramlintide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:135930 lercanidipine skos:exactMatch mesh C060343 lercanidipine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:135932 Padimate O skos:exactMatch mesh C041981 padimate-O lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:135934 selenium sulfide skos:exactMatch mesh C025698 selenium disulfide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:135937 enzacamene skos:exactMatch mesh C038939 enzacamene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:135940 olaflur skos:exactMatch mesh C495399 Olaflur lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:135941 4-dimethylaminophenol skos:exactMatch mesh C020292 4-dimethylaminophenol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:135945 pixantrone skos:exactMatch mesh C086548 pixantrone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:135951 pyronaridine skos:exactMatch mesh C027871 pyronaridine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:135952 zucapsaicin skos:exactMatch mesh C117479 zucapsaicin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:135953 bibrocathol skos:exactMatch mesh C006748 bibrocathol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:135954 bilastine skos:exactMatch mesh C445659 bilastine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:135956 vernakalant skos:exactMatch mesh C524581 vernakalant lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:135957 voclosporin skos:exactMatch mesh C484071 voclosporin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:135960 desaspidin skos:exactMatch mesh C004715 desaspidin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:135962 dapoxetine skos:exactMatch mesh C080598 dapoxetine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:135963 clefamide skos:exactMatch mesh C024701 clefamide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:135965 clodantoin skos:exactMatch mesh C010431 chlordantoin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:135968 ceftobiprole medocaril skos:exactMatch mesh C505439 ceftobiprole medocaril lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:135970 diiodohydroxypropane skos:exactMatch mesh C037011 1,3-diiodo-2-propanol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:135978 domiphen skos:exactMatch mesh C007556 domiphen lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:135984 fazadinium skos:exactMatch mesh C084773 fazadinium lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:135985 ferric hydroxide skos:exactMatch mesh C021024 ferric hydroxide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:135987 flumedroxone skos:exactMatch mesh C007732 flumedroxone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:135990 gepirone skos:exactMatch mesh C039979 gepirone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:135992 guanoclor skos:exactMatch mesh C012340 guanoclor lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:135993 nomegestrol skos:exactMatch mesh C047637 nomegestrol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:135996 ibacitabine skos:exactMatch mesh C011288 ibacitabine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:135999 ioglicic acid skos:exactMatch mesh C016525 ioglicic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:136005 mannosulfan skos:exactMatch mesh C100121 mannosulfan lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:136006 diethylamino hydroxybenzoyl hexyl benzoate skos:exactMatch mesh C000597744 diethylamino hydroxybenzoyl hexyl benzoate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:136007 methylnaltrexone skos:exactMatch mesh C032257 methylnaltrexone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:136010 dipyrithione skos:exactMatch mesh C032196 dipyrithione lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:136011 Padimate A skos:exactMatch mesh C014334 padimate A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:136012 octyltriethoxysilane skos:exactMatch mesh C514699 octyltriethoxysilane lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:136014 diazolidinylurea skos:exactMatch mesh C044982 diazolidinylurea lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:136018 morniflumate skos:exactMatch mesh C027859 morniflumate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:136026 ticlatone skos:exactMatch mesh C000409 ticlatone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:136027 trimegestone skos:exactMatch mesh C050319 trimegestone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:136036 cridanimod skos:exactMatch mesh C026430 10-carboxymethyl-9-acridanone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:136038 mebicar skos:exactMatch mesh C015979 mebikar lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:136039 phenibut skos:exactMatch mesh C008842 4-amino-3-phenylbutyric acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:136043 anagliptin skos:exactMatch mesh C583175 anagliptin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:136044 fimasartan skos:exactMatch mesh C558933 fimasartan lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:136047 vaniprevir skos:exactMatch mesh C540393 vaniprevir lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:136049 mirodenafil skos:exactMatch mesh C528396 mirodenafil lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:136050 ozenoxacin skos:exactMatch mesh C000592413 ozenoxacin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:136052 lobeglitazone skos:exactMatch mesh C546215 lobeglitazone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:136053 nemonoxacin skos:exactMatch mesh C543520 nemonoxacin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:136054 arterolane skos:exactMatch mesh C489136 arterolane lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:136185 VX nerve agent skos:exactMatch mesh C009680 VX lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:136271 bicyclopyrone skos:exactMatch mesh C000607401 bicyclopyrone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:136421 riddelliine N-oxide skos:exactMatch mesh C068583 riddelliine N-oxide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:136426 S-[(2-phenylethyl)carbamothioyl]glutathione skos:exactMatch mesh C082754 S-(N-phenylethylthiocarbamoyl)glutathione lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:136462 erucifoline skos:exactMatch mesh C459639 erucifoline lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:136467 otosenine skos:exactMatch mesh C432462 otosenine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:136492 N-(2,6-diethylphenyl)-2-chloroacetamide skos:exactMatch mesh C093872 2-chloro-N-(2,6-diethylphenyl)acetamide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:136511 manganese dioxide skos:exactMatch mesh C016552 manganese dioxide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:136519 n-butyl isocyanate skos:exactMatch mesh C002509 butyl isocyanate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:136531 13-oxo-9,11-octadecadienoic acid skos:exactMatch mesh C064441 13-oxo-9,11-octadecadienoic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:136532 8-azahypoxanthine skos:exactMatch mesh C000149 8-azahypoxanthine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:136604 cyclohexyl isocyanate skos:exactMatch mesh C000536 cyclohexylisocyanate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:136609 theaflavin skos:exactMatch mesh C056068 theaflavin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:136611 Theasinensin C skos:exactMatch mesh C000597883 theasinensin C lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:136638 9-hydroxyoctadecanoic acid skos:exactMatch mesh C070375 9-hydroxystearic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:1367 3,3',4,4'-tetrachlorobiphenyl skos:exactMatch mesh C028451 3,4,3',4'-tetrachlorobiphenyl lexical 0.9 https://github.com/indralab/panacea_indra/blob/master/panacea_indra/make_ctd_tests.py +chebi CHEBI:136769 alpha-D-galactopyranosyl-(1->2)-alpha-D-glucopyranosyl-(1->3)-1,2-diacyl-sn-glycerol skos:exactMatch mesh C025142 diglucosyl diacylglycerol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:136775 1-naphthyl beta-D-glucoside skos:exactMatch mesh C037277 1-naphthylglucoside lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:136785 kaempferol 3-beta-gentiobioside skos:exactMatch mesh C442435 kaempferol 3-gentiobioside lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:136805 3-methoxybenzaldehyde skos:exactMatch mesh C520102 3-methoxybenzaldehyde lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:136818 N-isovaleryl-L-alanine skos:exactMatch mesh C039949 N-isovalerylalanine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:136824 mandelamide skos:exactMatch mesh C010413 mandelamide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:136827 octadecenedioic acid skos:exactMatch mesh C528535 octadecenedioic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:136847 AP20187 skos:exactMatch mesh C463061 AP20187 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:136917 N-isovalerylsarcosine skos:exactMatch mesh C039948 N-isovalerylsarcosine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:136972 4-methoxyestrone skos:exactMatch mesh C035538 4-hydroxyestrone-4-methyl ether lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:136975 4-methoxy-17beta-estradiol skos:exactMatch mesh C045018 4-methoxyestradiol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:137031 19-hydroxy-5alpha-dihydrotestosterone skos:exactMatch mesh C012355 17-hydroxyandrostan-19-ol-3-one lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:137056 cholic acid glucuronide skos:exactMatch mesh C046161 cholic acid glucuronide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:137057 cholesta-5,7-dien-3beta,25-diol skos:exactMatch mesh C587259 25-hydroxy-7-dehydrocholesterol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:137064 LY-2157299 skos:exactMatch mesh C557799 LY-2157299 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:137136 Ecalcidene skos:exactMatch mesh C519578 ecalcidene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:137163 Chamuvaritin skos:exactMatch mesh C022798 chamuvaritin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:137227 Porrigenin A skos:exactMatch mesh C109388 porrigenin A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:137230 4,7,10,13-hexadecatetraenoic acid skos:exactMatch mesh C562199 hexadeca-4,7,10,13-tetraenoic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:137245 Asp-Pro skos:exactMatch mesh C070752 aspartyl-proline lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:137252 Glu-Asp-Leu skos:exactMatch mesh C000600952 glutamyl-aspartyl-leucine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:137271 methiin skos:exactMatch mesh C008389 methiin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:137344 7-HETE skos:exactMatch mesh C095132 7-hydroxyeicosatetraenoic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:137359 5-methoxysalicylaldehyde skos:exactMatch mesh C561526 2-hydroxy-5-methoxybenzaldehyde lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:137369 2-hydroxy-1-naphthaldehyde skos:exactMatch mesh C062247 2-hydroxy-1-naphthaldehyde lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:137370 20-hydroxyprostaglandin E2 skos:exactMatch mesh C048824 20-hydroxyprostaglandin E2 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:137371 5-formylsalicylic acid skos:exactMatch mesh C075234 5-fluorosalicylic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:137374 aclonifen skos:exactMatch mesh C106872 aclonifen lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:137378 1,2-naphthoquinone-4-sulfonic acid skos:exactMatch mesh C505589 1,2-naphthoquinone-4-sulfonic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:137384 3-acetylcoumarin skos:exactMatch mesh C094809 3-acetylcoumarin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:1374 3,4-dihydro-7-methoxy-2-methylene-3-oxo-2H-1,4-benzoxazine-5-carboxylic acid skos:exactMatch mesh C069646 3,4-dihydro-7-methoxy-2-methylene-3-oxo-2H-1,4-benzoxazine-5-carboxylic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:137400 4'-adenylkanamycin A skos:exactMatch mesh C425063 4'-(adenosine-5'-phosphoryl)-kanamycin A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:137404 5-hydroxybenzimidazole skos:exactMatch mesh C036435 5-hydroxybenzimidazole lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:137426 dehydroacetic acid skos:exactMatch mesh C027493 dehydroacetic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:137439 homocysteine sulfinic acid skos:exactMatch mesh C010982 homocysteinesulfinic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:137443 furanochromone skos:exactMatch mesh C477662 furanochromone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:137452 Engeletin skos:exactMatch mesh C522936 engeletin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:137472 tetrahydroxy-1,4-benzoquinone skos:exactMatch mesh C105931 tetrahydroxy-1,4-benzoquinone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:137499 Rosarin skos:exactMatch mesh C529149 rosarin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:137501 salicortin skos:exactMatch mesh C113068 salicortin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:137526 20-hydroxyprostaglandin E1 skos:exactMatch mesh C048825 20-hydroxyprostaglandin E1 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:137685 glycolonitrile skos:exactMatch mesh C035740 glycolonitrile lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:137693 rhosin skos:exactMatch mesh C586690 rhosin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:137700 3-carboxy-3-hydroxypropanoyl-CoA skos:exactMatch mesh C042519 malyl-coenzyme A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:137747 ciliobrevin D skos:exactMatch mesh C000595851 ciliobrevin D lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:137749 (6E,8Z,10E,12S,14Z)-12-hydroxy-5-oxoicosatetraenoic acid skos:exactMatch mesh C117169 5-oxo-12-hydroxy-6,8,11,13-eicosatetraenoic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:137773 Derricin skos:exactMatch mesh C000604275 derricin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:137775 ethylcyclohexane skos:exactMatch mesh C030813 ethylcyclohexane lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:137781 Penaresidin B skos:exactMatch mesh C000604648 penaresidin B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:137783 Serratamic acid skos:exactMatch mesh C076850 serratamic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:137796 2,5,6-triamino-4-hydroxypyrimidine skos:exactMatch mesh C001429 6-hydroxy-2,4,5-triaminopyrimidine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:137803 2,4,6-octatrienal skos:exactMatch mesh C489161 2,4,6-octatrienal lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:137827 alpha-tocopheronolactone skos:exactMatch mesh C034599 tocopheronolactone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:137832 Cacalol skos:exactMatch mesh C497192 cacalol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:137833 Clavepictine B skos:exactMatch mesh C519347 clavepictine B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:137944 tetrahydrofurfuryl alcohol skos:exactMatch mesh C018675 tetrahydrofurfuryl alcohol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:137978 1,3-dichloropropane skos:exactMatch mesh C067434 1,3-dichloropropane lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:138013 Z-DEVD-FMK skos:exactMatch mesh C110772 benzoylcarbonyl-aspartyl-glutamyl-valyl-aspartyl-fluoromethyl ketone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:138016 5-(N-methyl-N-propyl)amiloride skos:exactMatch mesh C084633 5-(N-methyl-N-propyl)amiloride lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:138033 dotarizine skos:exactMatch mesh C083946 dotarizine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:138048 stellata-2,6,19-triene skos:exactMatch mesh C000603891 stellata-2,6,19-triene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:138105 (S)-6-acetamido-3-aminohexanoic acid skos:exactMatch mesh C075812 N'-acetyl-beta-lysine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:138166 nezukol skos:exactMatch mesh C000622322 nezukol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:138170 sulfanegen skos:exactMatch mesh C572639 2,5-dihydroxy-1,4-dithiane-2,5-dicarboxylic acid lexical 0.9 https://github.com/indralab/panacea_indra/blob/master/panacea_indra/make_ctd_tests.py +chebi CHEBI:138196 19-hydroxyleukotriene B4 skos:exactMatch mesh C059045 5,12,19-trihydroxy-6,8,10,14-eicosatetraenoic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:138212 1-octadecanoyl-2-hexanoyl-sn-glycero-3-phosphocholine skos:exactMatch mesh C059534 1-stearoyl-2-caproyl-sn-glycero-3-phosphocholine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:138224 (13R)-epi-8,13-epoxylabd-14-ene skos:exactMatch mesh C423905 ent-13-epi-manoyl oxide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:138236 oridonin skos:exactMatch mesh C011959 oridonin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:138249 (7R,14S)-dihydroxy-(4Z,8E,10E,12Z,16Z,19Z)-docosahexaenoic acid skos:exactMatch mesh C535211 7,14-dihydroxydocosa-4,8,10,12,16,19-hexaenoic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:138303 alpha-onocerin skos:exactMatch mesh C409888 alpha-onocerin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:138308 kahweol skos:exactMatch mesh C053401 kahweol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:138314 S-allylsulfenic acid skos:exactMatch mesh C547385 2-propenesulfenic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:138358 4-sulfanylbutanoate skos:exactMatch mesh C067656 4-mercaptobutyrate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:138368 N-acetylasparagine skos:exactMatch mesh C026988 N-acetylasparagine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:138389 7,12-dioxolithocholic acid skos:exactMatch mesh C031929 3-hydroxy-7,12-diketocholanoic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:138409 N-\{[3-(2-benzamido-4-methyl-1,3-thiazol-5-yl)-pyrazol-5-yl]carbonyl\}-G-dR-G-dD-dD-dD-NH2 skos:exactMatch mesh C000711730 Compound 21 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:138415 N,N'-dibutylthiourea skos:exactMatch mesh C034546 1,3-dibutyl-2-thiourea lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:138417 flucarbazone skos:exactMatch mesh C513426 flucarbazone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:138435 bis(7)-tacrine skos:exactMatch mesh C122128 1,7-N-heptylene-bis-9,9'-amino-1,2,3,4-tetrahydroacridine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:138477 resolvin E3 skos:exactMatch mesh C583424 17,18-dihydroxyeicosapentaenoic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:138487 paullone skos:exactMatch mesh C547599 paullone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:138488 alsterpaullone skos:exactMatch mesh C120793 alsterpaullone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:138493 3-nitro-2-pentanol skos:exactMatch mesh C539264 3-nitro-2-pentanol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:138515 Gly-Hyp skos:exactMatch mesh C043938 glycyl-4-hydroxyproline lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:138579 Bactobolin skos:exactMatch mesh C025268 bactobolin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:138589 pneumocysterol skos:exactMatch mesh C102334 pneumocysterol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:138599 4,4'-diapolycopen-4-al skos:exactMatch mesh C011750 4,4'-diapolycopen-4-al lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:138645 resolvin D5 skos:exactMatch mesh C572765 resolvin D5 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:138648 resolvin D3 skos:exactMatch mesh C583088 resolvin D3 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:138649 resolvin D4 skos:exactMatch mesh C000627730 resolvin D4 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:138650 CBL0137 skos:exactMatch mesh C000600493 CBLC137 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:138656 rhizathalene A skos:exactMatch mesh C586007 rhizathalene A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:138667 piscidic acid skos:exactMatch mesh C030971 piscidic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:138727 17beta-estradiol 3-O-carboxymethyl ether skos:exactMatch mesh C058989 estradiol-3-O-carboxymethyl ether lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:138729 heparin disaccharide skos:exactMatch mesh C464536 heparin disaccharide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:138732 3',5'-dimethoxyflavone skos:exactMatch mesh C503867 3',5'-dimethoxyflavone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:138742 cholesteryl hemisuccinate skos:exactMatch mesh C013440 cholesteryl succinate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:138746 tetrahydrothiophene 1-oxide skos:exactMatch mesh C038166 tetramethylene sulfoxide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:138763 Zedoarondiol skos:exactMatch mesh C546347 zedoarondiol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:138773 Hostmaniane skos:exactMatch mesh C494628 hostmaniane lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:138785 2,4-dihydroxyheptadec-16-enyl acetate skos:exactMatch mesh C447839 2,4-dihydroxyheptadec-16-enyl acetate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:138800 1-isothiocyanato-7-(methylsulfinyl)heptane skos:exactMatch mesh C416762 7-methylsulfinylheptyl isothiocyanate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:138816 Obtusol skos:exactMatch mesh C000611956 obtusol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:138822 Ascorbyl stearate skos:exactMatch mesh C036225 ascorbyl monostearate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:138829 Ignavine skos:exactMatch mesh C035745 ignavine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:138830 4-Nitrosobiphenyl skos:exactMatch mesh C072328 4-nitrosobiphenyl lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:138834 Clematichinenoside A skos:exactMatch mesh C094229 clematichinenoside A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:138846 2,3-epoxymenaquinone skos:exactMatch mesh C024854 2,3-epoxymenaquinone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:138853 Satratoxin H skos:exactMatch mesh C014184 satratoxin H lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:138855 7-Benzylidenenaltrexone skos:exactMatch mesh C077358 7-benzylidenenaltrexone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:138859 NBMPR skos:exactMatch mesh C001789 4-nitrobenzylthioinosine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:138862 Paspalinine skos:exactMatch mesh C048223 paspalinine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:138863 Terpendole E skos:exactMatch mesh C477863 terpendole E lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:138866 Scytophycin C skos:exactMatch mesh C449042 scytophycin C lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:138868 Eriojaposide B skos:exactMatch mesh C433556 eriojaposide B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:138870 Gonyautoxin 5 skos:exactMatch mesh C042155 gonyautoxin V lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:138871 Lasonolide A skos:exactMatch mesh C450700 lasonolide A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:138885 prinomastat skos:exactMatch mesh C113282 prinomastat lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:138919 meso-zeaxanthin skos:exactMatch mesh C584722 meso-zeaxanthin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:138921 EC 6.3.5.5 [carbamoyl-phosphate synthase (glutamine-hydrolysing)] inhibitor skos:exactMatch mesh C109664 caspase-activated DNase inhibitor lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:138937 D-xylulose 1,5-bisphosphate skos:exactMatch mesh C036130 xylulose 1,5-bisphosphate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:138945 maniladiol skos:exactMatch mesh C068534 maniladiol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:138955 daturadiol skos:exactMatch mesh C007218 daturadiol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:138961 sugiol skos:exactMatch mesh C501333 sugiol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:1390 3,4-Dihydroxystyrene skos:exactMatch mesh C042750 3,4-dihydroxystyrene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:139037 golgicide A skos:exactMatch mesh C539165 golgicide A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:139043 carbocyclic thromboxane A2 skos:exactMatch mesh C024587 thromboxane A2, carbocyclic lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:139047 GSK2656157 skos:exactMatch mesh C000597302 GSK2656157 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:139134 12-ketolithocholic acid skos:exactMatch mesh C031930 12-ketolithocholic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:139138 taurohyodeoxycholic acid skos:exactMatch mesh C083510 taurohyodeoxycholic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:139162 oleuropein aglycone skos:exactMatch mesh C000625725 oleuropein aglycone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:139177 bryostatin 2 skos:exactMatch mesh C054557 bryostatin 2 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:139215 cochalic acid skos:exactMatch mesh C013891 cochalic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:139241 Salirepin skos:exactMatch mesh C525285 salirepin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:139245 benzylpenilloic acid skos:exactMatch mesh C017609 penilloic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:139271 6beta-hydroxycortisol skos:exactMatch mesh C001380 6 beta-hydroxycortisol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:139330 N-(6-hydroxyindol-3-ylacetyl)-valine skos:exactMatch mesh C523338 N-(6-hydroxyindol-3-ylacetyl)-valine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:139334 nepicastat skos:exactMatch mesh C109487 nepicastat lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:139346 all-trans-4-hydroxyretinal skos:exactMatch mesh C057180 4-hydroxyretinal lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:139380 galactopinitol A skos:exactMatch mesh C119541 galactopinitol A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:139382 3,4-dihydroxybenzylamine skos:exactMatch mesh C022133 3,4-dihydroxybenzylamine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:139383 2-nitro-1-propanol skos:exactMatch mesh C496417 2-nitropropanol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:139389 thiocitrulline skos:exactMatch mesh C086715 thiocitrulline lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:1394 3,5-Di-O-galloyl-4-O-digalloylquinic acid skos:exactMatch mesh C061725 3,5-di-O-galloyl-4-O-digalloylquinic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:139449 Gaultherin skos:exactMatch mesh C508713 2-((6-O-beta-D-Xylopyranosyl-beta-D-glucopyranosyl)oxy) benzoic acid methyl ester lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:139463 Farnesiferol A skos:exactMatch mesh C579605 farnesiferol A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:139502 calcium titanate skos:exactMatch mesh C000592180 calcium titanate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:139505 baeocystin skos:exactMatch mesh C013827 baeocystin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:139518 (5R)-5,6-dihydro-5-(thymidin-7-yl)thymidine dimer(2-) residue skos:exactMatch mesh C009484 5-thyminyl-5,6-dihydrothymine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:139523 Rosavin skos:exactMatch mesh C529148 rosavin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:139545 maradolipid skos:exactMatch mesh C568414 maradolipid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:139558 1-O-(5,6-epoxyretinoyl)-beta-D-glucuronic acid skos:exactMatch mesh C034828 5,6-epoxyretinoyl glucuronide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:139608 sepantronium bromide skos:exactMatch mesh C523798 YM 155 lexical 0.9 https://github.com/indralab/panacea_indra/blob/master/panacea_indra/make_ctd_tests.py +chebi CHEBI:13997 citramalate(2-) skos:exactMatch mesh C011729 citramalate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:140078 Eruberin A skos:exactMatch mesh C000607823 eruberin A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:140081 5,4'-dihydroxy-3,3'-dimethoxy-6,7-methylenedioxyflavone skos:exactMatch mesh C448741 5,4'-dihydroxy-3,3'-dimethoxy-6,7-methylenedioxyflavone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:140086 6,7-dichloro-L-tryptophan skos:exactMatch mesh C533763 6,7-dichlorotryptophan lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:140104 Salvianolic acid C skos:exactMatch mesh C000597819 salvianolic acid C lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:140105 Euphornin skos:exactMatch mesh C530235 euphornin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:140111 Sumarotene skos:exactMatch mesh C069613 sumarotene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:140124 Carpelastofuran skos:exactMatch mesh C452808 carpelastofuran lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:140126 cassiaoccidentalin A skos:exactMatch mesh C000592379 cassiaoccidentalin A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:140134 artoindonesianin A skos:exactMatch mesh C119457 artoindonesianin A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:140148 rubrolone skos:exactMatch mesh C019082 rubrolone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:140163 cyclosporin A metabolite M16 skos:exactMatch mesh C060329 EM 16 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:140175 cyclosporin A metabolite M18 skos:exactMatch mesh C051528 cyclosporine metabolite M18 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:14027 corydaline skos:exactMatch mesh C452799 corydaline lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:140274 Delta(12)-prostaglandin J3 skos:exactMatch mesh C570766 delta12-prostaglandin J3 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:140296 quinaprilat skos:exactMatch mesh C054501 quinaprilat lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:140318 tefuryltrione skos:exactMatch mesh C000619648 tefuryltrione lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:140376 cefiderocol skos:exactMatch mesh C000612166 cefiderocol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:140421 betrixaban skos:exactMatch mesh C543086 betrixaban lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:140429 N-ethylmaleamic acid skos:exactMatch mesh C526533 N-ethylmaleamic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:140443 viridicatin skos:exactMatch mesh C009673 viridicatin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:140492 19-hydroxy-PGB2 skos:exactMatch mesh C056827 19-hydroxyprostaglandin B2 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:140503 kaolin skos:exactMatch mesh D007616 Kaolin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:140528 6-methylthioguanine skos:exactMatch mesh C035366 6-methylthioguanine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:140628 secnidazole skos:exactMatch mesh C016724 secnidazole lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:140672 dihydrochelerythrine skos:exactMatch mesh C524982 dihydrochelerythrine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:140685 cis-9,10-methylenehexadecanoic acid skos:exactMatch mesh C008438 cis-9,10-methylenehexadecanoic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:140724 3-mercaptolactate-cysteine disulfide skos:exactMatch mesh C001705 beta-mercaptolactate cysteine disulfide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:140761 6-methylquinoline skos:exactMatch mesh C081445 6-methylquinoline lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:140768 ascorbyl palmitate skos:exactMatch mesh C031226 6-O-palmitoylascorbic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:140771 6-desmethoxyhormothamnione skos:exactMatch mesh C060394 6-desmethoxyhormothamnione lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:140850 (E)-2,3,5,4'-tetrahydroxystilbene-2-O-beta-D-glucoside skos:exactMatch mesh C489707 2',3',4',5'-tetrahydroxystilbene-2-O-beta-D-glucoside lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:140905 N-\{2-[4-methoxy-3-(2-phenylethoxy)phenyl]ethyl\}-N-propylpropan-1-amine hydrochloride skos:exactMatch mesh C083832 N,N-dipropyl-2-(4-methoxy-3-(2-phenylethoxy)phenyl)ethylamine monohydrochloride lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:140936 1-(1-methylindol-5-yl)-3-(3-methyl-1,2-thiazol-5-yl)urea skos:exactMatch mesh C092756 N-(1-methyl-5-indolyl)-N'-(3-methyl-5-isothiazolyl)urea lexical 0.9 https://github.com/indralab/panacea_indra/blob/master/panacea_indra/make_ctd_tests.py +chebi CHEBI:141030 N-phenylacetylphenylalanine skos:exactMatch mesh C041465 N-phenylacetylphenylalanine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:141051 tetramic acid skos:exactMatch mesh C009435 tetramic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:141057 validoxylamine B skos:exactMatch mesh C052533 validoxylamine B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:141063 rubimaillin skos:exactMatch mesh C046245 rubimaillin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:141126 polymatin B skos:exactMatch mesh C000605835 polymatin B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:141145 grandiflorolic acid skos:exactMatch mesh C528608 grandiflorolic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:141155 dimetridazole skos:exactMatch mesh C578119 1,2-dimethyl-5-nitroimidazole lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:141178 alpha-Neu4Ac5Gc-(2->3)-beta-D-Galp-(1->4)-beta-D-Glcp-(1<->1')-Cer skos:exactMatch mesh C049665 4-O-acetyl-N-glycolylneuraminyl lactosylceramide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:141204 cholestane-3,7,12,25-tetrol-3-glucuronide skos:exactMatch mesh C028298 cholestane-3,7,12,25-tetrol-3-glucuronide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:141213 isoxaflutole skos:exactMatch mesh C415327 isoxaflutole lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:141214 2-cyano-3-cyclopropyl-1-(2-mesyl-4-trifluoromethylphenyl)propan-1,3-dione skos:exactMatch mesh C486641 diketonitrile lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:141217 3,5-dimethoxytoluene skos:exactMatch mesh C465201 3,5-dimethoxytoluene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:141221 elemol skos:exactMatch mesh C033011 elemol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:141284 3-acetylbenzamide skos:exactMatch mesh C000629298 3-acetylbenzamide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:141319 metam skos:exactMatch mesh C008435 methyldithiocarbamate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:141335 4-hydroxymellein skos:exactMatch mesh C000600633 4-hydroxymellein lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:141337 botrallin skos:exactMatch mesh C000598261 botrallin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:141338 sporothriolide skos:exactMatch mesh C086157 sporothriolide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:141345 (R)-3-hydroxybutanenitrile skos:exactMatch mesh C000593286 (R)-3-hydroxybutanonitrile lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:141354 5-hydroxy-8-methoxy-4-phenylisoquinolin-1(2H)-one skos:exactMatch mesh C000619396 5-hydroxy-8-methoxy-4-phenylisoquinolin-1(2H)-one lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:141359 fusarithioamide A skos:exactMatch mesh C000620294 fusarithioamide A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:141360 helvolic acid methyl ester skos:exactMatch mesh C000617377 helvolic acid methyl ester lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:141361 aigialone skos:exactMatch mesh C484838 aigialone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:141362 N-methylhippuric acid skos:exactMatch mesh C015356 N-methylhippuric acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:141363 isoaigialone B skos:exactMatch mesh C000622349 isoaigialone B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:141364 hexahydrohippurate skos:exactMatch mesh C015261 hexahydrohippurate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:141365 sclerodol B skos:exactMatch mesh C000611250 sclerodol B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:141367 VM 44857 skos:exactMatch mesh C066129 VM 44857 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:141368 VM 44864 skos:exactMatch mesh C066128 VM 44864 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:141369 VM 44865 skos:exactMatch mesh C066127 VM 44865 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:141370 VM 44866 skos:exactMatch mesh C066126 VM 44866 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:141378 staphcoccomycin skos:exactMatch mesh C023522 staphcoccomycin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:141379 conglobatin skos:exactMatch mesh C022800 conglobatin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:141380 indanomycin skos:exactMatch mesh C114124 indanomycin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:141382 ekatetrone skos:exactMatch mesh C018055 ekatetrone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:141383 4,5-dihydroxyisophthalic acid skos:exactMatch mesh C015820 4,5-dihydroxyisophthalic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:141397 anthecotulide skos:exactMatch mesh C499300 anthecotulide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:141419 Arg-Pro skos:exactMatch mesh C039357 arginylproline lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:141449 Trp-Pro skos:exactMatch mesh C113296 tryptophyl-proline lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:141456 Tyr-Pro skos:exactMatch mesh C120594 tyrosyl-proline lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:141464 lyso-GM2 skos:exactMatch mesh C048941 lysoganglioside G(M2) lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:141491 N-tert-butyl-N'-(2,6-diisopropyl-4-phenoxyphenyl)methanediimine skos:exactMatch mesh C087660 CGA 140408 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:141506 6-bromo-5,9-hexacosadienoic acid skos:exactMatch mesh C090295 6-bromo-5,9-hexacosadienoic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:141524 ochratoxin B skos:exactMatch mesh C045354 ochratoxin B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:141525 ochratoxin C skos:exactMatch mesh C042554 ochratoxin C lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:141530 delanzomib skos:exactMatch mesh C527966 delanzomib lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:141540 Myricanone skos:exactMatch mesh C041795 myricanone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:141557 2,2-dimethylpropanal skos:exactMatch mesh C001058 pivaldehyde lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:141560 2,3-dimethylbutane skos:exactMatch mesh C094658 2,3-dimethylbutane lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:141565 2-ethylfuran skos:exactMatch mesh C000609805 2-ethylfuran lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:14158 dihydromonacolin L skos:exactMatch mesh C045373 dihydromonacolin L lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:141613 hapalindole U skos:exactMatch mesh C518617 hapalindole U lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:141614 hapalindole G skos:exactMatch mesh C568208 hapalindole G lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:141619 fischerindole alkaloid skos:exactMatch mesh C491991 fischerindole lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:141700 3-methoxycatechol skos:exactMatch mesh C066344 3-methoxycatechol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:141872 cadambine skos:exactMatch mesh C000598492 cadambine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:141877 Akagerine skos:exactMatch mesh C551516 akagerine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:141888 Conopharyngine skos:exactMatch mesh C007113 conopharyngine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:141890 Corynantheidol skos:exactMatch mesh C007137 corynantheidol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:141892 Corynantheol skos:exactMatch mesh C570571 corynantheol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:141897 dregamine skos:exactMatch mesh C000617031 dregamine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:141898 Echitamidine skos:exactMatch mesh C085228 echitamidine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:141900 Ervatamine skos:exactMatch mesh C017291 ervatamine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:141902 Geissolaevine skos:exactMatch mesh C000621470 geissolaevine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:141904 Goniomedine A skos:exactMatch mesh C576310 goniomedine A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:141905 Goniomedine B skos:exactMatch mesh C576311 goniomedine B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:141908 Goniomitine skos:exactMatch mesh C526621 goniomitine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:141909 Grandilodine B skos:exactMatch mesh C560042 grandilodine B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:141916 Isosungucine skos:exactMatch mesh C464957 isosungucine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:141917 Lanciferine skos:exactMatch mesh C000614946 lanciferine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:141918 Leuconolam skos:exactMatch mesh C062173 leuconolam lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:141920 Lundurine A skos:exactMatch mesh C000597197 lundurine A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:141923 Methuenine skos:exactMatch mesh C042118 methuenine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:141924 Methyl reserpate skos:exactMatch mesh C051349 methyl reserpate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:141931 O-methylgeissolaevine skos:exactMatch mesh C000621471 O-methylgeissolaevine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:141936 Pericyclivine skos:exactMatch mesh C031498 pericyclivine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:141939 Pleiocarpamine skos:exactMatch mesh C114765 pleiocarpamine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:141944 Pleiokomenine A skos:exactMatch mesh C000633304 pleiokomenine A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:141948 Polyneuridine skos:exactMatch mesh C518014 polyneuridine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:141950 Quebrachidine skos:exactMatch mesh C010318 quebrachidine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:141953 Strychnofoline skos:exactMatch mesh C471685 strychnofoline lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:141955 Strychnohexamine skos:exactMatch mesh C472945 strychnohexamine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:141956 Strychnopentamine skos:exactMatch mesh C045110 strychnopentamine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:141958 Sungucine skos:exactMatch mesh C464946 sungucine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:141960 Tubotaiwine skos:exactMatch mesh C404563 tubotaiwine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:141961 Villalstonine skos:exactMatch mesh C009663 villalstonine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:141963 Vincosamide skos:exactMatch mesh C000598491 vincosamide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:141964 vindolinine skos:exactMatch mesh C009668 vindolinine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:141966 (-)-voacangine skos:exactMatch mesh C012098 voacangine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:141967 voachalotine skos:exactMatch mesh C568718 voachalotine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:141968 caracurine VII skos:exactMatch mesh C006890 caracurine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:142161 biotripyrrin-a skos:exactMatch mesh C099842 biotripyrrin a lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:142162 biotripyrrin-b skos:exactMatch mesh C099843 biotripyrrin b lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:142183 (2S)-1-(6-chloro-5-fluoroindol-1-yl)-propan-2-amine skos:exactMatch mesh C103848 Ro 60-0175 lexical 0.9 https://github.com/indralab/panacea_indra/blob/master/panacea_indra/make_ctd_tests.py +chebi CHEBI:142230 2,5,7-trihydroxy-2-(4-hydroxyphenyl)-2,3-dihydro-4H-chromen-4-one skos:exactMatch mesh C000625625 2-hydroxynaringenin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:142241 (3E)-3-hexadecenoic acid skos:exactMatch mesh C070982 delta(3)-hexadecenoic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:142258 Ganoderic acid F skos:exactMatch mesh C515006 ganoderic acid F lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:142267 methyl N-methylanthranilate skos:exactMatch mesh C412492 methyl N-methylanthranilate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:142276 Soyacerebroside I skos:exactMatch mesh C068190 soya-cerebroside I lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:142282 4-chloro-3-methylcatechol skos:exactMatch mesh C499987 4-chloro-3-methylcatechol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:142284 3-chloro-4-methylcatechol skos:exactMatch mesh C499986 3-chloro-4-methylcatechol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:142391 gevotroline skos:exactMatch mesh C069280 gevotroline lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:142397 pectenotoxin-11 skos:exactMatch mesh C556578 pectenotoxin 11 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:142406 omega-conotoxin MVIIA skos:exactMatch mesh C078452 ziconotide lexical 0.9 https://github.com/indralab/panacea_indra/blob/master/panacea_indra/make_ctd_tests.py +chebi CHEBI:142415 3-hydroxy-L-valine skos:exactMatch mesh C002623 beta-hydroxy-L-valine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:142430 lificiguat skos:exactMatch mesh C090937 3-(5'-hydroxymethyl-2'-furyl)-1-benzylindazole lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:142431 praliciguat skos:exactMatch mesh C000631485 praliciguat lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:142432 vericiguat skos:exactMatch mesh C000603960 vericiguat lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:142440 S-(1,2-dicarboxyethyl)glutathione skos:exactMatch mesh C041581 S-(1,2-dicarboxyethyl)glutathione lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:142447 octadec-17-ynoic acid skos:exactMatch mesh C047008 17-octadecynoic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:142451 bisphenol F diglycidyl ether skos:exactMatch mesh C423722 bisphenol F diglycidyl ether lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:142452 dabuzalgron skos:exactMatch mesh C481520 dabuzalgron lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:142468 1,2-dichloropropane skos:exactMatch mesh C004765 propylene dichloride lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:142492 rac-gamma-pentachlorocyclohexene skos:exactMatch mesh C524862 2,3,4,5,6-pentachlorocyclohexene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:142494 laminarihexaose skos:exactMatch mesh C086571 laminarihexaose lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:142509 sulfinoacetaldehyde skos:exactMatch mesh C028910 sulfinoacetaldehyde lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:142538 lycopaoctaene skos:exactMatch mesh C002965 lycopersene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:14261 feruloyl-CoA skos:exactMatch mesh C119167 feruloyl-CoA lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:142623 spiroiminodihydantoin skos:exactMatch mesh C408822 spiroiminodihydantoin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:142625 (2E,4E)-2,4-hexadien-1-ol skos:exactMatch mesh C065785 sorbyl alcohol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:142648 alloy skos:exactMatch mesh D000497 Alloys lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:142649 platinum-iridium alloy skos:exactMatch mesh C077763 platinum-iridium alloy lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:142685 3-deoxy-keto-D-fructose skos:exactMatch mesh C068286 3-deoxyhexulose lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:142698 CE(22:4(7Z,10Z,13Z,16Z)) skos:exactMatch mesh C089195 cholesteryl adrenate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:14272 fluoroacetaldehyde skos:exactMatch mesh C075898 fluoroacetaldehyde lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:142774 nitryl chloride skos:exactMatch mesh C445660 nitryl chloride lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:142784 pyrifluquinazon skos:exactMatch mesh C581681 1,1,3,4-tetrahydro-6-(1,2,2,2-tetrafluoro-1-(trifluoromethyl)ethyl)quinazolin-2,4-dione lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:142799 nectriapyrone D skos:exactMatch mesh C000600346 gulypyrone B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:142824 saflufenacil skos:exactMatch mesh C552482 N'-(2-chloro-4-fluoro-5-(3-methyl-2,6-dioxo-4(trifluoromethyl)-3,6-dihydro-1(2H)-pyrimidinyl)benzoyl)-N-isopropyl-N-methylsulfamide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:142841 spectinabilin skos:exactMatch mesh C508401 spectinabilin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:142915 cycloeucalenone skos:exactMatch mesh C472599 cycloeucalenone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:142968 Lipomannan skos:exactMatch mesh C064351 lipomannan lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:142990 cyclolaudenol skos:exactMatch mesh C024016 cyclolaudenol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:143030 3-(phenethylamino)-butan-2-one skos:exactMatch mesh C000655019 schleiferon A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:143036 Isochlorogenic acid skos:exactMatch mesh C469310 isochlorogenic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:143045 Acoric acid skos:exactMatch mesh C016201 acoric acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:143059 Annuionone B skos:exactMatch mesh C527915 annuionone B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:143063 Dehydrotomatine skos:exactMatch mesh C484752 dehydrotomatine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:143082 mycocerosic acid skos:exactMatch mesh C032992 mycocerosic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:143085 phthiocerol dimycocerosate skos:exactMatch mesh C008901 phthiocerol dimycocerosate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:143095 10-hydroxyoctadecanoic acid skos:exactMatch mesh C070376 10-hydroxystearic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:143101 N-(2,3-dihydroxybenzoyl)serine skos:exactMatch mesh C031920 2,3-dihydroxybenzoylserine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:143108 4-acetamidotoluene skos:exactMatch mesh C578124 4-methylacetanilide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:143114 CCT251545 skos:exactMatch mesh C000606523 CCT251545 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:143117 lorlatinib skos:exactMatch mesh C000590786 lorlatinib lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:143141 N,N',N''-triacetylchitotriose skos:exactMatch mesh C019117 N,N',N''-triacetylchitotriose lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:143152 cloquintocet-mexyl skos:exactMatch mesh C514515 cloquintocet-mexyl lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:143195 5,6-didehydrosparteine skos:exactMatch mesh C044693 5-dehydrosparteine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:143197 culmorin skos:exactMatch mesh C013900 culmorin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:143205 2,3,3,3-tetrafluoro-2-(heptafluoropropoxy)propanoic acid skos:exactMatch mesh C000608800 2,3,3,3-tetrafluoro-2-(heptafluoropropoxy)propanoic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:143212 thienopyrimidine skos:exactMatch mesh C476003 thienopyrimidine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:143225 azumolene skos:exactMatch mesh C061387 azumolene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:143240 3-amino-5-morpholinomethyl-2-oxazolidinone skos:exactMatch mesh C504349 3-amino-5-morpholinomethyl-2-oxazolidinone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:143242 adhumulone skos:exactMatch mesh C442488 adhumulone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:143243 cysteineglutathione disulfide skos:exactMatch mesh C031586 cysteine-glutathione disulfide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:143244 alpha-aminosuberic acid skos:exactMatch mesh C019146 2-aminosuberic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:143246 1-(hydroxymethyl)-5,5-dimethylhydantoin skos:exactMatch mesh C056060 1-monomethylol-5,5-dimethylhydantoin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:143268 N-(2-hydroxyethyl)iminodiacetic acid skos:exactMatch mesh C008021 N-(2-hydroxyethyl)iminodiacetic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:143288 7-Hydroxyamoxapine skos:exactMatch mesh C041917 7-hydroxyamoxapine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:143289 8-Hydroxyamoxapine skos:exactMatch mesh C035234 8-hydroxyamoxapine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:143291 4-Hydroxysulfinpyrazone skos:exactMatch mesh C025186 4-hydroxysulfinpyrazone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:143298 4-chlorobenzenesulfonamide skos:exactMatch mesh C047440 4-chlorobenzenesulfonamide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:143311 N-desmethylnizatidine skos:exactMatch mesh C066301 N-desmethylnizatidine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:143344 7-Aminoclonazepam skos:exactMatch mesh C020860 7-aminoclonazepam lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:143374 N-Desmethylzopiclone skos:exactMatch mesh C053229 N-desmethylzopiclone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:143378 3-Hydroxyglibenclamide skos:exactMatch mesh C070072 3-hydroxyglibenclamide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:143382 5-hydroxyindapamide skos:exactMatch mesh C064096 5-hydroxyindapamide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:143429 8-hydroxymirtazapine skos:exactMatch mesh C415843 8-hydroxymirtazapine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:143430 Mirtazapine-N-oxide skos:exactMatch mesh C517417 mirtazapine-N-oxide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:143437 hydroxyethylflurazepam skos:exactMatch mesh C041538 hydroxyethylflurazepam lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:143460 hydroxyitraconazole skos:exactMatch mesh C084794 hydroxyitraconazole lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:143467 N4-Acetylsulfaphenazole skos:exactMatch mesh C068642 N4-acetylsulfaphenazole lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:143473 3-O-methyltolcapone skos:exactMatch mesh C108735 3-O-methyltolcapone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:143509 N-Desmethyllevomepromazine skos:exactMatch mesh C044467 N-desmethyllevomepromazine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:143513 halauxifen-methyl skos:exactMatch mesh C000611439 Arylex active lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:143539 2-Imidazolidone-4-carboxylic acid skos:exactMatch mesh C560753 2-imidazolidone-4-carboxylic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:143579 methyl myristoleate skos:exactMatch mesh C000609422 methyl myristoleate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:143611 sodorifen skos:exactMatch mesh C549933 1,2,4,5,6,7,8-heptamethyl-3-methylenebicyclo(3.2.1)oct-6-ene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:143768 neopentyl glycol skos:exactMatch mesh C048799 2,2-dimethyl-1,3-propanediol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:143769 5,10,15,20-tetra(4-pyridyl)-21H,23H-porphine skos:exactMatch mesh C540152 5,10,15,20-tetra(4-pyridyl)porphyrin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:143825 ravuconazole skos:exactMatch mesh C104066 ER 30346 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:143848 3-methylhexane skos:exactMatch mesh C000604282 3-methylhexane lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:143858 decane-1,2-diol skos:exactMatch mesh C000617955 1,2-decanediol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:143863 butafenacil skos:exactMatch mesh C487162 butafenacil lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:143889 galactosaminogalactan skos:exactMatch mesh C062157 galactosaminogalactan lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:143911 (-)-antofine skos:exactMatch mesh C473343 antofine lexical 0.9 https://github.com/indralab/panacea_indra/blob/master/panacea_indra/make_ctd_tests.py +chebi CHEBI:144046 diflomotecan skos:exactMatch mesh C424962 diflomotecan lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:144050 3-methylpiperazine-2,5-dione skos:exactMatch mesh C092789 cyclo(alanyl-glycyl) lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:144069 lobarin skos:exactMatch mesh C581171 lobarin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:144078 dihydroartemisinic acid skos:exactMatch mesh C520462 dihydroartemisinic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:144086 spongotine A skos:exactMatch mesh C525418 spongotine A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:144087 bromodeoxytopsentin skos:exactMatch mesh C000598719 bromodeoxytopsentin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:144096 5-hydroxy-3,3',4',7-tetramethoxyflavone(1-) skos:exactMatch mesh C000622038 5-hydroxy-3,7,3',4'-tetramethoxyflavone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:144113 Argopsin skos:exactMatch mesh C058444 argopsin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:144115 Aspicilin skos:exactMatch mesh C418323 aspicilin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:144118 Atranol skos:exactMatch mesh C493895 atranol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:144121 Baeomycesic acid skos:exactMatch mesh C496299 baeomycesic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:144123 Barbatic acid skos:exactMatch mesh C509225 barbatic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:144132 Caperatic acid skos:exactMatch mesh C012802 caperatic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:144138 Chloroatranorin skos:exactMatch mesh C543235 chloroatranorin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:144140 Confluentic acid skos:exactMatch mesh C089056 confluentic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:144147 Divaricatic acid skos:exactMatch mesh C000627593 divaricatic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:144154 3-Hydroxyphysodic acid skos:exactMatch mesh C501217 3-hydroxyphysodic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:144157 Fumarprotocetraric acid skos:exactMatch mesh C026307 fumarprotocetraric acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:144159 Gyrophoric acid skos:exactMatch mesh C120727 gyrophoric acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:144175 Murolic acid skos:exactMatch mesh C420980 murolic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:144179 Norstictic acid skos:exactMatch mesh C553078 norstictic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:144183 Olivetoric acid skos:exactMatch mesh C514585 olivetoric acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:144187 Perlatolic acid skos:exactMatch mesh C522034 perlatolic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:144192 Anziaic acid skos:exactMatch mesh C584125 anziaic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:144195 Pinastric acid skos:exactMatch mesh C012495 pinastric acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:144197 Polyporic acid skos:exactMatch mesh C118527 polyporic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:144201 Portentol skos:exactMatch mesh C571246 portentol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:144203 Protocetraric acid skos:exactMatch mesh C578352 protocetraric acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:144204 Bourgeanic acid skos:exactMatch mesh C544845 bourgeanic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:144206 Buellin skos:exactMatch mesh C546368 buellin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:144209 Pulvinic acid skos:exactMatch mesh C492654 pulvinic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:144210 Canarione skos:exactMatch mesh C548221 canarione lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:144213 Rhizocarpic acid skos:exactMatch mesh C466066 rhizocarpic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:144220 Salazinic acid skos:exactMatch mesh C116675 salazinic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:144229 Sphaerophorin skos:exactMatch mesh C518876 sphaerophorin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:144233 Tenuiorin skos:exactMatch mesh C472105 tenuiorin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:144238 Thelephoric acid skos:exactMatch mesh C000589783 thelephoric acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:144250 Vulpinic acid skos:exactMatch mesh C077134 vulpinic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:144259 Imbricaric acid skos:exactMatch mesh C000588767 imbricaric acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:144278 Nephrosteranic acid skos:exactMatch mesh C456480 nephrosteranic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:144283 Obtusatic acid skos:exactMatch mesh C411222 obtusatic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:144295 Roccellaric acid skos:exactMatch mesh C428504 roccellaric acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:144311 skyrin skos:exactMatch mesh C009274 skyrin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:144317 altenuene skos:exactMatch mesh C040005 altenuene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:144323 zinc dibutyldithiocarbamate skos:exactMatch mesh C017801 zinc dibutyldithiocarbamate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:144330 3-methylglutaconic acid skos:exactMatch mesh C022034 3-methylglutaconic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:144357 carba mix skos:exactMatch mesh C057051 carbamix lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:144367 3PO skos:exactMatch mesh C527590 3-(3-pyridinyl)-1-(4-pyridinyl)-2-propen-1-one lexical 0.9 https://github.com/indralab/panacea_indra/blob/master/panacea_indra/make_ctd_tests.py +chebi CHEBI:144380 4-(sulfooxy)-cinnamic acid skos:exactMatch mesh C503399 zosteric acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:144389 Eleutheroside E skos:exactMatch mesh C421885 eleutheroside E lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:144390 Lolicine B skos:exactMatch mesh C518046 lolicine B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:144392 Cytochalasin A skos:exactMatch mesh C031218 cytochalasin A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:144394 Acanthifolicin skos:exactMatch mesh C065560 acanthifolicin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:144404 Gymnodimine skos:exactMatch mesh C407350 gymnodimine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:144405 Contignasterol skos:exactMatch mesh C091550 contignasterol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:144406 Enanthotoxin skos:exactMatch mesh C010719 enanthotoxin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:144410 terpendole C skos:exactMatch mesh C092163 terpendole C lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:144424 Bupicomide skos:exactMatch mesh C002659 bupicomide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:144441 triacsin C skos:exactMatch mesh C034613 triacsin C lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:144514 mefentrifluconazole skos:exactMatch mesh C000654324 mefentrifluconazole lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:144586 4-hydroxy-2-oxobutanal skos:exactMatch mesh C001401 4-hydroxy-2-ketobutyraldehyde lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:144672 PF-956980 skos:exactMatch mesh C554945 PF 956980 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:14469 isomethyleugenol skos:exactMatch mesh C031050 isomethyleugenol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:144786 profoxydim skos:exactMatch mesh C425983 profoxydim lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:144833 L-beta-ethynylserine skos:exactMatch mesh C048274 3-ethynylserine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:144845 (2E)-3-methylhex-2-enoic acid skos:exactMatch mesh C004807 trans-3-methyl-2-hexenoic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:145018 rebaudioside E skos:exactMatch mesh C000607842 rebaudioside E lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:145021 rubusoside skos:exactMatch mesh C056177 rubusoside lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:145022 rebaudioside D skos:exactMatch mesh C586824 rebaudioside D lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:145029 steviolmonoside skos:exactMatch mesh C044523 glucosilsteviol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:145105 asperphenamate skos:exactMatch mesh C014343 asperphenamate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:145107 N-benzoyl-L-phenylalaninol skos:exactMatch mesh C014358 N-benzoyl-L-phenylalaninol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:145108 bassianolide skos:exactMatch mesh C035050 bassianolide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:145109 (+)-isoepoxydon skos:exactMatch mesh C022243 isoepoxydon lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:145111 isopatulin skos:exactMatch mesh C552375 isopatulin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:145112 (E)-ascladiol skos:exactMatch mesh C038422 ascladiol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:145155 Azaspiracid-2 skos:exactMatch mesh C520447 azaspiracid-2 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:145156 Azaspiracid-3 skos:exactMatch mesh C520446 azaspiracid-3 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:145170 13-desmethylspirolide C skos:exactMatch mesh C517170 13-desmethylspirolide C lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:145172 Gambierone skos:exactMatch mesh C000601927 gambierone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:145174 Silenoside A skos:exactMatch mesh C120208 silenoside A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:145176 momordicoside A skos:exactMatch mesh C478919 momordicoside A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:145215 5-hydroxy-6-methoxyindole glucuronide skos:exactMatch mesh C030222 5-hydroxy-6-methoxyindole glucuronide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:145228 triiodothyronine glucuronide skos:exactMatch mesh C054786 triiodothyronine glucuronide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:145236 2-acetylpyrazine skos:exactMatch mesh C000706871 2-acetylpyrazine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:145256 6,7-dihydroxy-4-methylcoumarin skos:exactMatch mesh C570020 4-methylesculetin lexical 0.9 https://github.com/indralab/panacea_indra/blob/master/panacea_indra/make_ctd_tests.py +chebi CHEBI:145349 2-penten-1-ol skos:exactMatch mesh C549877 2-penten-1-ol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:145365 crenolanib skos:exactMatch mesh C577197 crenolanib lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:145371 binimetinib skos:exactMatch mesh C581313 binimetinib lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:145372 gilteritinib skos:exactMatch mesh C000609080 gilteritinib lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:145373 pexidartinib skos:exactMatch mesh C000600259 pexidartinib lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:145374 enasidenib skos:exactMatch mesh C000605269 enasidenib lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:145407 sulfaethoxypyridazine skos:exactMatch mesh C009345 sulfaethoxypyridazine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:145417 rigosertib skos:exactMatch mesh C507134 ON 01910 lexical 0.9 https://github.com/indralab/panacea_indra/blob/master/panacea_indra/make_ctd_tests.py +chebi CHEBI:145428 glasdegib skos:exactMatch mesh C000592580 glasdegib lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:145429 sapacitabine skos:exactMatch mesh C117959 sapacitabine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:145430 ivosidenib skos:exactMatch mesh C000627630 ivosidenib lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:145431 indisulam skos:exactMatch mesh C439829 N-(3-chloro-7-indolyl)-1,4-benzenedisulphonamide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:145517 1-methyl-3-propyl-7H-xanthine skos:exactMatch mesh C058491 1-methyl-3-propylxanthine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:145535 pevonedistat skos:exactMatch mesh C539933 pevonedistat lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:145553 ethametsulfuron-methyl skos:exactMatch mesh C413983 methyl 2-(((((4-ethoxy-6-(methylamino)-1,3,5-triazin-2-yl)amino)carbonyl)amino)sulfonyl)benzoate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:145560 MANT-GTP skos:exactMatch mesh C063981 2'(3')-O-(N-methyl)anthraniloylguanosine 5'-triphosphate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:145593 beta-D-Galp-(1->3)-alpha-D-GlcpNAc skos:exactMatch mesh C033398 galactosyl-1,3-N-acetylglucosamine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:145653 carpronium skos:exactMatch mesh C001817 carpronium lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:145656 galactoxylomannan skos:exactMatch mesh C043689 galactoxylomannan lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:145673 tandospirone skos:exactMatch mesh C055267 tandospirone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:145682 6-hydroxydeoxybrevianamide E skos:exactMatch mesh C569086 6-hydroxydeoxybrevianamide E lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:145683 notoamide S skos:exactMatch mesh C000596573 notoamide S lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:145684 notoamide E skos:exactMatch mesh C541224 notoamide E lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:145698 amezinium skos:exactMatch mesh C027784 amezinium lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:145705 prednisolone phosphate skos:exactMatch mesh C009022 prednisolone phosphate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:145715 hex-3-en-1-ol skos:exactMatch mesh C051918 3-hexen-1-ol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:145723 trifluoroacetamide skos:exactMatch mesh C030688 trifluoroacetamide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:145736 9-methylhypoxanthine skos:exactMatch mesh C513119 9-methylhypoxanthine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:145754 alpha-Neu5Ac-(2->3)-beta-D-Gal-(1->4)-[alpha-L-Fuc-(1->3)]-beta-D-GlcNAc6S-(1->3)-beta-D-Gal-(1->4)-beta-D-Glc-(1<->1')-Cer(d18:1/18:0) skos:exactMatch mesh C000626784 6-sulfo sialyl Lewis X lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:145761 indolylacryloylglycine skos:exactMatch mesh C001807 indolylacryloylglycine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:145762 19-hydroxydeoxycorticosterone skos:exactMatch mesh C027855 19-hydroxydeoxycorticosterone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:145778 sesaminol skos:exactMatch mesh C066016 sesaminol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:145792 2-hydroxymelatonin skos:exactMatch mesh C487380 N-(2-(5-methoxy-2-oxo-2,3-dihydro-1H-indol-3-yl)ethyl)acetamide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:145800 AS1842856 skos:exactMatch mesh C553926 5-amino-7-(cyclohexylamino)-1-ethyl-6-fluoro-4-oxo-1,4-dihydroquinoline-3-carboxylic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:145829 trilobatin skos:exactMatch mesh C000598619 trilobatin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:145892 4-iodophenylalanine skos:exactMatch mesh C049181 4-iodophenylalanine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:145922 monapinone A skos:exactMatch mesh C560369 monapinone A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:145923 dinapinone A skos:exactMatch mesh C560368 dinapinone A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:145950 nigerone skos:exactMatch mesh C518566 nigerone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:145970 13,16-docosadienoic acid skos:exactMatch mesh C078401 13,16-docosadienoic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:145999 cinanserin skos:exactMatch mesh D002928 Cinanserin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:146151 marinobufagenin skos:exactMatch mesh C093896 marinobufagenin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:146171 fumigatin skos:exactMatch mesh C018067 fumigatin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:146174 benzyl cinnamate skos:exactMatch mesh C526327 benzyl cinnamate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:146175 (Z)-hexadec-11-enal skos:exactMatch mesh C061128 11-hexadecenal lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:146187 N-(15Z-tetracosenoyl)ethanolamine skos:exactMatch mesh C000613946 nervonoyl ethanolamide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:146206 N-oleoyltaurine skos:exactMatch mesh C581016 N-oleoyl taurine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:146207 palytoxin skos:exactMatch mesh C010272 palytoxin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:146227 halicin skos:exactMatch mesh C540182 5-(5-nitrothiazol-2-ylthio)-1,3,4-thiadiazol-2-amine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:146233 cyclo[18]carbon skos:exactMatch mesh C000615238 Carbon-18 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:146243 JWH-133 skos:exactMatch mesh C432747 1,1-dimethylbutyl-1-deoxy-Delta(9)-THC lexical 0.9 https://github.com/indralab/panacea_indra/blob/master/panacea_indra/make_ctd_tests.py +chebi CHEBI:146245 SR 144528 skos:exactMatch mesh C110630 SR 144528 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:146256 10-hydroxycoronaridine skos:exactMatch mesh C407862 10-hydroxycoronaridine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:146372 3-methylorsellinate skos:exactMatch mesh C008478 3-methylorsellinate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:146784 8beta-epoxyangeloyloxy-9alpha-ethoxy-14-oxo-acanthospermolide skos:exactMatch mesh C527218 8beta-epoxyangeloyloxy-9alpha-ethoxy-14-oxo-acanthospermolide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:146785 polymatin A skos:exactMatch mesh C587733 polymatin A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:146848 selaginose skos:exactMatch mesh C505610 selaginose lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:147043 alpha-D-Glcp-(1->2)-beta-D-Glcp-(1->2)-D-Glcp skos:exactMatch mesh C105478 kojitriose lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:147280 uvedalin skos:exactMatch mesh C000605836 uvedalin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:147302 CGP-42112A skos:exactMatch mesh C060894 CGP 42112A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:147305 2,3,5-tricaffeoylaltraric acid skos:exactMatch mesh C514547 2,3,5-tricaffeoylaltraric acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:147308 triarachidonin skos:exactMatch mesh C055297 Triarachidonin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:147331 2-propylphenol skos:exactMatch mesh C080638 2-propylphenol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:147332 3-propylcatechol skos:exactMatch mesh C080639 3-propylcatechol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:147347 tilorone skos:exactMatch mesh D013994 Tilorone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:147358 R-29148 skos:exactMatch mesh C092143 3-(dichloroacetyl)-2,2,5-trimethyl-1,3-oxazolidine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:147397 thyrsiferyl 23-acetate skos:exactMatch mesh C091148 thyrsiferyl 23-acetate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:147398 tideglusib skos:exactMatch mesh C520571 NP 031112 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:147400 ma'ilione skos:exactMatch mesh C428925 8-bromo-9-hydroxy-7,7-dimethyl-11-methylenespiro(5.5)undec-1-en-3-one lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:147402 ammonium thiosulfate skos:exactMatch mesh C035309 ammonium thiosulfate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:147425 glutathione sulfonate skos:exactMatch mesh C040136 glutathione sulfonate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:14750 acetylacetone skos:exactMatch mesh C008790 acetylacetone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:147553 beta-D-GlcpNAc-(1->3)-D-Gal-OH skos:exactMatch mesh C034788 2-acetamido-2-deoxyglucosylgalactitol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:147787 isofloridoside skos:exactMatch mesh C025100 isofloridoside lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:149384 beta-D-GlcpNAc-(1->6)-D-GlcpNAc skos:exactMatch mesh C098470 2-acetamido-6-O-(2-acetamido-2-deoxyglucopyranosyl)-2-deoxyglucopyranose lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:149427 ammonium magnesium phosphate hexahydrate skos:exactMatch mesh D000069877 Struvite lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:149433 mannotetraose skos:exactMatch mesh C039922 mannotetraose lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:149463 2-phenylpropanal skos:exactMatch mesh C013026 hydratropic aldehyde lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:149478 2-(3-benzoylphenyl)-3,5,7-trihydroxychromen-4-one skos:exactMatch mesh C470026 2-(3-benzoylphenyl)-3,5,7-trihydroxychromen-4-one lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:149489 5,5-dimethyl-1-pyrroline N-oxide skos:exactMatch mesh C017245 5,5-dimethyl-1-pyrroline-1-oxide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:149493 neurotensin (1-8) skos:exactMatch mesh C041968 neurotensin (1-8) lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:149501 kinetensin (1-8) skos:exactMatch mesh C080963 histamine-releasing peptide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:149521 NOC-5 skos:exactMatch mesh C114535 1-hydroxy-2-oxo-3-(3-aminopropyl)-3-isopropyl-1-triazene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:149547 (2E,4E)-deca-2,4-dienal skos:exactMatch mesh C057349 2,4-decadienal lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:149584 hawkinsin skos:exactMatch mesh C014578 hawkinsin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:149585 ligstroside skos:exactMatch mesh C445380 ligstroside lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:149610 (+)-catechin-3'-methyl ether skos:exactMatch mesh C480347 3'-O-methylcatechin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:149634 dehydroemetine skos:exactMatch mesh C086742 dehydroemetine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:149636 cenicriviroc skos:exactMatch mesh C506967 cenicriviroc lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:149641 neocasomorphin skos:exactMatch mesh C400131 tyrosyl-prolyl-valyl-glutamyl-prolyl-phenylalanine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:149651 10,13-dimethyltetradecanoic acid skos:exactMatch mesh C411203 10,13-dimethyltetradecanoic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:149667 14-deacetyl astellolide A skos:exactMatch mesh C000608012 14-deacetyl astellolide A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:149668 14-deacetyl astellolide B skos:exactMatch mesh C000608011 14-deacetyl astellolide B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:149669 apelin-12 skos:exactMatch mesh C495200 apelin-12 peptide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:149696 10058-F4 skos:exactMatch mesh C524814 5-(4-ethylbenzylidene)-2-thioxothiazolidin-4-one lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:149761 zolasartan skos:exactMatch mesh C078790 GR 117289 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:149772 4-aminopyridine-3-methanol skos:exactMatch mesh C548134 4-aminopyridine-3-methanol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:149785 nelociguat skos:exactMatch mesh C569640 BAY 60-4552 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:149786 5-Bromoisatin skos:exactMatch mesh C044414 5-bromoisatin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:149837 Alisporivir skos:exactMatch mesh C499715 alisporivir lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:149838 Cryptotanshinone skos:exactMatch mesh C037886 cryptotanshinone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:149903 5-Iodoisatin skos:exactMatch mesh C520157 5-iodoisatin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:149906 Tanshinone I skos:exactMatch mesh C021751 tanshinone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:149955 Betulonic acid skos:exactMatch mesh C118308 betulonic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:149956 Pinusolidic acid skos:exactMatch mesh C111016 pinusolidic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:150016 atrochrysone skos:exactMatch mesh C543415 atrochrysone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:150326 isomalt skos:exactMatch mesh C016640 Palatinit lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:150867 (+)-geodin skos:exactMatch mesh C052047 geodin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:151115 2,3-dimethylpentane skos:exactMatch mesh C521368 2,3-dimethylpentane lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:151253 Cellotetraitol skos:exactMatch mesh C074087 cellotetraitol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:152395 cellobiotol skos:exactMatch mesh C039135 cellobiotol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:152570 butremycin skos:exactMatch mesh C000591703 butremycin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:152898 isomaltitol skos:exactMatch mesh C008187 isomaltitol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:153306 Lacto-N-biose II skos:exactMatch mesh C040456 lacto-N-biose II lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:15334 N(alpha)-methyl-L-tryptophan skos:exactMatch mesh C496492 abrine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:153397 N-Acetylchondrosine skos:exactMatch mesh C033269 N-acetylchondrosine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:15344 acetoacetic acid skos:exactMatch mesh C016635 acetoacetic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:15348 2-hydroxy-2-methylpropanenitrile skos:exactMatch mesh C010833 acetone cyanohydrin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:15349 acetone oxime skos:exactMatch mesh C035911 acetoxime lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:153518 N-Acetylneuraminlactose sulfate skos:exactMatch mesh C045014 N-acetylneuraminoyllactose sulfate ester lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:15367 all-trans-retinoic acid skos:exactMatch mesh D012160 Retina lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:15371 3-oxopristanoyl-CoA skos:exactMatch mesh C107694 3-oxopristanoyl-coenzyme A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:15374 4a-hydroxytetrahydrobiopterin skos:exactMatch mesh C093282 4a-hydroxytetrahydrobiopterin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:153874 Bemisiose skos:exactMatch mesh C086804 bemisiose lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:15401 (+)-dihydrokaempferol skos:exactMatch mesh C080220 aromadedrin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:15435 protoporphyrinogen skos:exactMatch mesh C011539 protoporphyrinogen lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:15441 (S)-2,3-epoxysqualene skos:exactMatch mesh C520393 oxidosqualene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:154635 Isomaltotetraose skos:exactMatch mesh C047512 isomaltotetraose lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:15465 (R)-methylmalonyl-CoA skos:exactMatch mesh C015357 methylmalonyl-coenzyme A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:1547 3-hydroxykynurenine skos:exactMatch mesh C005045 3-hydroxykynurenine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:15472 anthraniloyl-CoA skos:exactMatch mesh C403069 2-aminobenzoyl-coenzyme A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:15475 2-hydroxyphytanoyl-CoA skos:exactMatch mesh C095966 hydroxyphytanoyl-coenzyme A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:15476 2-methylacetoacetyl-CoA skos:exactMatch mesh C037766 2-methylacetoacetyl-coenzyme A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:15478 2-methylcrotonoyl-CoA skos:exactMatch mesh C033618 tiglyl-coenzyme A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:15484 3-hydroxybenzoyl-CoA skos:exactMatch mesh C082323 3-hydroxybenzoyl-coenzyme A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:15487 isovaleryl-CoA skos:exactMatch mesh C017447 isovaleryl-coenzyme A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:15500 4-hydroxybenzoyl-CoA skos:exactMatch mesh C058482 4-hydroxybenzoyl-coenzyme A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:15504 pimeloyl-CoA skos:exactMatch mesh C019527 pimeloyl-coenzyme A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:15513 acryloyl-CoA skos:exactMatch mesh C047011 acryloyl-coenzyme A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:15515 benzoyl-CoA skos:exactMatch mesh C037817 benzoyl-coenzyme A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:15517 butyryl-CoA skos:exactMatch mesh C024343 butyryl-coenzyme A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:15521 lauroyl-CoA skos:exactMatch mesh C050466 lauroyl-coenzyme A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:15522 formyl-CoA skos:exactMatch mesh C106238 formyl-coenzyme A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:15524 glutaryl-CoA skos:exactMatch mesh C015901 glutaryl-coenzyme A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:15532 myristoyl-CoA skos:exactMatch mesh C040349 S-tetradecanoyl-coenzyme A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:15535 oxalyl-CoA skos:exactMatch mesh C523110 oxalyl-coenzyme A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:15536 pentanoyl-CoA skos:exactMatch mesh C044180 valeryl-coenzyme A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:15537 phenylacetyl-CoA skos:exactMatch mesh C037816 phenylacetyl-coenzyme A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:15539 propionyl-CoA skos:exactMatch mesh C009061 propionyl-coenzyme A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:15545 prostaglandin A1 skos:exactMatch mesh C100573 prostaglandin A1 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:155507 Laminariheptaose skos:exactMatch mesh C092781 laminariheptaose lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:15553 prostaglandin F2alpha skos:exactMatch mesh C053914 cyclohexyl methylphosphonofluoridate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:15554 prostaglandin H2 skos:exactMatch mesh D019796 15-Hydroxy-11 alpha,9 alpha-(epoxymethano)prosta-5,13-dienoic Acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:15559 15-oxo-ETE skos:exactMatch mesh C054992 15-keto-5,8,11,13-eicosatetraenoic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:15560 (15Z)-12-oxophyto-10,15-dienoic acid skos:exactMatch mesh C025999 12-oxophytodienoic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:15571 hydrazine skos:exactMatch mesh C000279 diazan lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:15578 (25S)-5beta-spirostan-3beta-ol skos:exactMatch mesh C046297 sarsasapogenin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:15581 juvenile hormone II skos:exactMatch mesh C055442 juvenile hormone II lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:155839 6-deoxyaltrose skos:exactMatch mesh C053979 6-deoxyaltrose lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:155863 2,4-dihydroxy-6-methylbenzaldehyde skos:exactMatch mesh C514789 o-orsellinaldehyde lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:155876 glycylsarcosine skos:exactMatch mesh C004194 glycylsarcosine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:155879 Ala-Pro-Gly skos:exactMatch mesh C545237 alanyl-prolyl-glycine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:155880 Gly-Gly-Pro skos:exactMatch mesh C061903 glycyl-glycyl-proline lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:155895 phenguignardic acid skos:exactMatch mesh C575777 phenguignardic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:155900 4-quinolone skos:exactMatch mesh D042462 4-Quinolones lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:155903 copper(II) phthalocyanine skos:exactMatch mesh C015445 copper phthalocyanine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:155904 (+)-albicanol skos:exactMatch mesh C438910 albicanol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:155905 crinosterol skos:exactMatch mesh C467539 crinosterol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:156071 S-acetamidomethylcysteine skos:exactMatch mesh C079740 (S-acetamidomethyl)cysteine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:15610 gibberellin A12 aldehyde skos:exactMatch mesh C048463 gibberellin A12 aldehyde lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:156139 N-acetyl-L-thialysine skos:exactMatch mesh C028077 epsilon-N-acetylthialysine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:156153 1,25-Dihydroxyvitamin D3-26,23-lactone skos:exactMatch mesh C026947 1,25-dihydroxyvitamin D3-26,23-lactone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:156181 22-Hydroxyvitamin D3 skos:exactMatch mesh C053469 22-hydroxycholecalciferol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:156186 1,25-Dihydroxy-24-oxo-16-ene-vitamin D3 skos:exactMatch mesh C090785 1,25-dihydroxy-24-oxo-16-ene-vitamin D3 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:156193 serratol skos:exactMatch mesh C000618142 serratol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:156204 amrubicinol skos:exactMatch mesh C116173 amrubicinol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:156219 ascochlorin skos:exactMatch mesh C415745 ascochlorin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:156224 (-)-cubenol skos:exactMatch mesh C445365 cubenol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:156228 viridiflorol skos:exactMatch mesh C552080 viridiflorol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:156258 enrasentan skos:exactMatch mesh C098288 enrasentan lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:156259 PD-166866 skos:exactMatch mesh C113399 PD 166866 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:156273 galabiose skos:exactMatch mesh C032103 4-O-alpha-D-galactopyranosyl-D-galactose lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:156274 DEAE-cellulose skos:exactMatch mesh D003636 DEAE-Cellulose lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:156276 fagopyritol A1 skos:exactMatch mesh C424842 fagopyritol A1 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:156287 CX-5461 skos:exactMatch mesh C557717 CX 5461 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:156291 oviedomycin skos:exactMatch mesh C461780 oviedomycin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:156293 tilimycin skos:exactMatch mesh C000706649 tilimycin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:156298 aurafuron A skos:exactMatch mesh C502099 aurafuron A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:156300 legioliulin skos:exactMatch mesh C493787 legioliulin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:156301 auricin skos:exactMatch mesh C505282 auricin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:156303 colibactin skos:exactMatch mesh C569566 colibactin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:156304 siccayne skos:exactMatch mesh C031784 siccayne lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:156308 4-cyanobenzaldehyde skos:exactMatch mesh C488327 4-cyanobenzaldehyde lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:156309 4-(trifluoromethyl)benzaldehyde skos:exactMatch mesh C028384 4-(trifluoromethyl)benzaldehyde lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:156310 4-(trifluoromethyl)benzyl alcohol skos:exactMatch mesh C028385 4-(trifluoromethyl)benzyl alcohol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:156318 alternapyrone skos:exactMatch mesh C508257 3,5-dimethyl-4-hydroxy-6-(1,3,5,7,11,13-hexamethyl-3,5,11-pentadecatrienyl)pyran-2-one lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:156320 mangicol A skos:exactMatch mesh C414808 mangicol A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:156321 diazepinomicin skos:exactMatch mesh C492422 diazepinomicin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:156322 luminmycin A skos:exactMatch mesh C577387 luminmycin A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:156327 pectolinarin skos:exactMatch mesh C052786 pectolinarin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:156336 ddhCTP skos:exactMatch mesh C000629696 3'-deoxy-3',4'-didehydro-CTP lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:156351 gougerotin skos:exactMatch mesh C004942 gougerotin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:156357 salinipyrone A skos:exactMatch mesh C529466 salinipyrone A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:156362 3,7-dihydroxytropolone skos:exactMatch mesh C057099 3,7-dihydroxytropolone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:15637 10-formyltetrahydrofolic acid skos:exactMatch mesh C010161 10-formyltetrahydropteroylglutamic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:156374 Glu-Asp-Arg skos:exactMatch mesh C570174 pinealon lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:156385 shanorellin skos:exactMatch mesh C003042 shanorellin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:156387 aspyrone skos:exactMatch mesh C097479 aspyrone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:156388 streptazone E skos:exactMatch mesh C582408 streptazone E lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:15640 5-formyltetrahydrofolic acid skos:exactMatch mesh C120486 10-formyl-7,8-dihydrofolic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:156408 monascorubrin skos:exactMatch mesh C522768 monascorubrin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:156413 verruculide A skos:exactMatch mesh C000606401 verruculide A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:156420 chrodrimanin B skos:exactMatch mesh C000604274 chrodrimanin B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:156421 celesticetin skos:exactMatch mesh C004650 celesticetin A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:156424 cryptomaldamide skos:exactMatch mesh C000622197 cryptomaldamide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:156429 tabtoxin skos:exactMatch mesh C003854 tabtoxin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:156430 tabtoxinine beta-lactam skos:exactMatch mesh C051368 tabtoxinine beta-lactam lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:156448 loline skos:exactMatch mesh C059478 loline lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:156451 holomycin skos:exactMatch mesh C015265 holomycin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:156453 pyoluteorin skos:exactMatch mesh C095503 pyoluteorin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:156455 tropodithietic acid skos:exactMatch mesh C527336 tropodithietic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:156456 sevadicin skos:exactMatch mesh C000590643 sevadicin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:156460 novofumigatonin skos:exactMatch mesh C527912 novofumigatonin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:156470 tetrahydropentoxyline skos:exactMatch mesh C087650 tetrahydropentoxyline lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:156473 cyclobutanes skos:exactMatch mesh D003503 Cyclobutanes lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:156497 novolactone skos:exactMatch mesh C000601548 novolactone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:156498 rohitukine skos:exactMatch mesh C573233 5,7-dihydroxy-2-methyl-8-(4-(3-hydroxy-1-methyl)-piperidinyl)-4H-1-benzopyran-4-one lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:156511 poacic acid skos:exactMatch mesh C000598562 poacic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:15652 5'-xanthylic acid skos:exactMatch mesh C011141 xanthosine monophosphate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:156531 ficellomycin skos:exactMatch mesh C013532 ficellomycin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:156545 glyceryl monothioglycolate skos:exactMatch mesh C033769 glyceryl monothioglycolate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:156546 terreic acid skos:exactMatch mesh C009400 terreic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:156550 pyrrolomycin A skos:exactMatch mesh C032959 pyrrolomycin A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:156556 resorcinol monobenzoate skos:exactMatch mesh C088024 resorcinol monobenzoate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:156571 azodicarbonamide skos:exactMatch mesh C004525 azodicarbonamide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:15668 (1E)-4-oxobut-1-ene-1,2,4-tricarboxylic acid skos:exactMatch mesh C037955 4-oxalmesaconic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:156688 alpha-D-Glcp-(1<->1)-alpha-D-Xylp skos:exactMatch mesh C048281 alpha-glucopyranosyl alpha-xylopyranoside lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:15694 (R)-S-lactoylglutathione skos:exactMatch mesh C013585 S-lactoylglutathione lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:15700 dTDP-alpha-D-glucose skos:exactMatch mesh C103522 deoxythymidine diphosphate-glucose lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:15709 xanthotoxol skos:exactMatch mesh C021768 xanthotoxol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:15711 1D-1-O-(indol-3-yl)acetyl-myo-inositol skos:exactMatch mesh C037008 indol-3-ylacetylinositol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:15725 trimethylenediamine skos:exactMatch mesh C009475 trimethylenediamine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:15728 4-guanidinobutanoic acid skos:exactMatch mesh C001317 gamma-guanidinobutyric acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:15733 N-methylaniline skos:exactMatch mesh C021313 methylaniline lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:15753 2-oxoadipic acid skos:exactMatch mesh C001918 alpha-ketoadipic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:15756 hexadecanoic acid skos:exactMatch mesh D010169 Palmitic Acids lexical 0.9 https://github.com/indralab/panacea_indra/blob/master/panacea_indra/make_ctd_tests.py +chebi CHEBI:15757 (S)-4-amino-5-oxopentanoic acid skos:exactMatch mesh C057794 glutamate-1-semialdehyde lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:157608 isotrichodermin skos:exactMatch mesh C063750 isotrichodermin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:157665 cholest-4,6-dien-3-one skos:exactMatch mesh C030311 4,6-cholestadien-3-one lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:157671 AN11736 skos:exactMatch mesh C000625879 AN11736 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:157681 tomaymycin skos:exactMatch mesh C003619 tomaymycin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:157682 vanchrobactin skos:exactMatch mesh C529766 vanchrobactin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:157683 althiomycin skos:exactMatch mesh C010018 althiomycin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:157713 Dihydrokavain skos:exactMatch mesh C113859 dihydrokavain lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:157717 Dihydro-5,6-dehydrokawain skos:exactMatch mesh C052296 7,8-dihydro-5,6-dehydrokawain lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:157718 flavokawain C skos:exactMatch mesh C000609150 flavokawain C lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:157725 Flavokawain A skos:exactMatch mesh C500809 flavokawain A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:157726 Pipermethystine skos:exactMatch mesh C448623 pipermethystine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:157727 Mosloflavone skos:exactMatch mesh C521856 mosloflavone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:157733 Bornyl cinnamate skos:exactMatch mesh C000600595 bornyl cinnamate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:157745 delta(17)-6-ketoprostaglandin F1alpha skos:exactMatch mesh C077778 delta(17)-6-ketoprostaglandin F1alpha lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:157748 Lipoxin A5 skos:exactMatch mesh C044354 lipoxin A5 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:157783 S-Methylpenicillamine skos:exactMatch mesh C036070 S-methylpenicillamine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:157784 s-Phenylmercapturic acid skos:exactMatch mesh C053003 S-phenyl-N-acetylcysteine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:157819 Cys-Tyr skos:exactMatch mesh C072331 cysteinyltyrosine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:157862 Ile-Cys skos:exactMatch mesh C054633 isoleucylcysteine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:157899 Trp-His skos:exactMatch mesh C509582 tryptophyl-histidine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:1579 3-methoxyapigenin skos:exactMatch mesh C511208 isokaempferide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:15793 3-hydroxyanthranilic acid skos:exactMatch mesh C008740 3-oxyanthranilic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:15805 D-octopine skos:exactMatch mesh C005394 octopine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:1581 3-Methoxytropolone skos:exactMatch mesh C049333 3-methoxytropolone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:158137 Ala-Glu-Asp skos:exactMatch mesh C572340 alanyl-glutamyl-aspartic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:15815 quinolin-4-ol skos:exactMatch mesh C034010 4-hydroxyquinoline lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:158184 Ala-Gly-Gly skos:exactMatch mesh C516501 alanyl-glycyl-glycine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:15819 N(6)-(dimethylallyl)adenosine 5'-monophosphate skos:exactMatch mesh C008196 N(6)-(delta(2)-isopentenyl)adenosine 5'-monophosphate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:1582 3-methoxytyramine skos:exactMatch mesh C001746 3-methoxytyramine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:158218 Ala-His-His skos:exactMatch mesh C000626374 Ala-His-His lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:15829 L-serine O-sulfate skos:exactMatch mesh C036040 serine O-sulfate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:15834 1-O-galloyl-beta-D-glucose skos:exactMatch mesh C060474 glucogallin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:158403 Ala-Phe-Ala skos:exactMatch mesh C507335 Ala-Phe-Ala lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:15842 orotidine 5'-phosphate skos:exactMatch mesh C005417 orotidylic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:158477 Ala-Pro-Tyr skos:exactMatch mesh C417685 alanyl-prolyl-tyrosine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:158495 Ala-Ser-Gly skos:exactMatch mesh C039036 alanyl-seryl-glycine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:15851 3-(uracil-1-yl)-L-alanine skos:exactMatch mesh C002872 willardiine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:158561 Ala-Trp-Ala skos:exactMatch mesh C104257 alanyl-tryptophyl-alanine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:158601 Ala-Tyr-Ala skos:exactMatch mesh C521154 alanyl-tyrosyl-alanine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:15871 o-orsellinate depside skos:exactMatch mesh C008263 lecanoric acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:158716 Ile-Pro-Pro skos:exactMatch mesh C489032 isoleucyl-prolyl-proline lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:15873 alpha-D-glucosamine 6-phosphate skos:exactMatch mesh C001293 glucosamine 6-phosphate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:158741 Arg-Arg-Leu skos:exactMatch mesh C573336 arginyl-arginyl-leucine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:15883 P(1),P(4)-bis(5'-guanosyl) tetraphosphate skos:exactMatch mesh C015138 diguanosine tetraphosphate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:158838 Arg-Asp-Val skos:exactMatch mesh C071841 RDV peptide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:15885 L-2-amino-4-chloropent-4-enoic acid skos:exactMatch mesh C053078 2-amino-4-chloro-4-pentenoic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:158922 Arg-Glu-Arg skos:exactMatch mesh C521328 arginyl-glutamyl-arginine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:158925 Ile-Val-Tyr skos:exactMatch mesh C409454 isoleucyl-valyl-tyrosine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:158932 Arg-Glu-Glu skos:exactMatch mesh C000611756 arginyl-glutamyl-glutamic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:158951 Leu-Ala-Phe skos:exactMatch mesh C427444 leucyl-alanyl-phenylalanine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:158966 Arg-Gly-Asp skos:exactMatch mesh C047981 arginyl-glycyl-aspartic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:158972 Arg-Gly-Glu skos:exactMatch mesh C112658 arginyl-glycyl-glutamic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:158987 Arg-Gly-Pro skos:exactMatch mesh C000608939 arginyl-glycyl-proline lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:158989 Arg-Gly-Ser skos:exactMatch mesh C097755 arginyl-glycyl-serine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:158999 Leu-Arg-Trp skos:exactMatch mesh C512930 leucinyl-arginyl-tryptophan lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:15901 5,6-dihydrouracil skos:exactMatch mesh C007419 dihydrouracil lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:15905 (R)-4'-phosphopantothenic acid skos:exactMatch mesh C011988 phosphopantothenic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:159071 Leu-Asp-Val skos:exactMatch mesh C090763 leucyl-aspartyl-valine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:159074 Arg-Ile-Tyr skos:exactMatch mesh C514605 arginyl-isoleucyl-tyrosine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:159093 Arg-Leu-Gly skos:exactMatch mesh C094047 arginyl-leucyl-glycine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:159131 Arg-Lys-Glu skos:exactMatch mesh C051920 splenotritin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:15916 serine phosphoethanolamine skos:exactMatch mesh C013249 serine ethanolamine phosphate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:159214 Leu-Gly-Phe skos:exactMatch mesh C427445 leucyl-glycyl-phenylalanine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:159266 Arg-Pro-Pro skos:exactMatch mesh C079001 arginyl-prolyl-proline lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:15927 N-ribosylnicotinamide skos:exactMatch mesh C018613 nicotinamide-beta-riboside lexical 0.9 https://github.com/indralab/panacea_indra/blob/master/panacea_indra/make_ctd_tests.py +chebi CHEBI:159301 Leu-Ile-Tyr skos:exactMatch mesh C405645 acein-2 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:159320 Arg-Thr-Arg skos:exactMatch mesh C531560 arginyl-threonyl-arginine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:159344 Arg-Thr-Phe skos:exactMatch mesh C035496 arginyl-threonyl-phenylalanine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:159357 Leu-Lys-Pro skos:exactMatch mesh C000597540 leucyl-lysyl-proline lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:159360 Arg-Trp-Arg skos:exactMatch mesh C092608 arginyl-tryptophyl-arginine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:159365 Leu-Lys-Tyr skos:exactMatch mesh C543181 leucyl-lysyl-tyrosine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:159401 Arg-Tyr-Asp skos:exactMatch mesh C078264 arginyl-tyrosyl-aspartic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:159440 Leu-Phe-Val skos:exactMatch mesh C419884 leucyl-phenylalanyl-valine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:159460 Arg-Val-Phe skos:exactMatch mesh C000595224 RVF peptide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:159471 Leu-Pro-Pro skos:exactMatch mesh C535179 leucyl-prolyl-proline lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:15949 diphthamide skos:exactMatch mesh C027527 diphthamide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:15968 3-guanidinopropanoic acid skos:exactMatch mesh C005775 guanidinopropionic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:159751 Lys-Asn-Asp skos:exactMatch mesh C000604001 Lys-Asn-Asp lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:159756 Asn-Gly-Arg skos:exactMatch mesh C526428 NGR peptide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:15977 cyclohex-2-enone skos:exactMatch mesh C028215 2-cyclohexen-1-one lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:159909 Lys-Glu-Asp skos:exactMatch mesh C533570 lysyl-glutamyl-aspartic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:159934 Lys-Glu-Trp skos:exactMatch mesh C000596362 lysyl-glutamyl-tryptophan lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:15998 (2-amino-4-hydroxy-7,8-dihydropteridin-6-yl)methyl trihydrogen diphosphate skos:exactMatch mesh C018820 2-amino-4-hydroxy-6-pyrophosphoryl-methylpteridine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:160036 Asn-Pro-Ala skos:exactMatch mesh C550288 asparagine-proline-alanine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:16007 methanethiol skos:exactMatch mesh C005231 methylmercaptan lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:16008 salicylaldehyde skos:exactMatch mesh C538871 o-hydroxybenzaldehyde lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:160129 7,8-dichloro-1,2,3,4-tetrahydroisoquinoline skos:exactMatch mesh C012153 7,8-dichloro-1,2,3,4-tetrahydroisoquinoline lexical 0.9 https://github.com/indralab/panacea_indra/blob/master/panacea_indra/make_ctd_tests.py +chebi CHEBI:16019 prenol skos:exactMatch mesh C009034 prenol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:160198 Lys-Phe-Lys skos:exactMatch mesh C079731 lysyl-phenylalanyl-lysine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:1602 3-methylgalangin skos:exactMatch mesh C438064 3-methylgalangin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:160247 Lys-Pro-Thr skos:exactMatch mesh C056932 interleukin 1beta (193-195) lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:160254 Lys-Pro-Val skos:exactMatch mesh C043156 MSH (11-13) lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:16027 adenosine 5'-monophosphate skos:exactMatch mesh D000249 Adenosine Monophosphate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:16031 indole-3-acetamide skos:exactMatch mesh C015950 indoleacetamide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:160356 Lys-Trp-Lys skos:exactMatch mesh C029535 lysyl-tryptophyl-alpha-lysine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:160394 Lys-Tyr-Lys skos:exactMatch mesh C074312 lysyl-tyrosyl-lysine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:160478 Met-Ala-Ser skos:exactMatch mesh C540170 methionyl-alanyl-serine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:16050 N-acetylisatin skos:exactMatch mesh C414384 1-acetylisatin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:160522 Met-Arg-Trp skos:exactMatch mesh C530457 rubimetide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:160580 Met-Asp-Gly skos:exactMatch mesh C000602142 methionyl-aspartyl-glycine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:16067 1D-myo-inositol 1,4,5,6-tetrakisphosphate skos:exactMatch mesh C490693 D-myo-inositol 1,4,5,6-tetrakisphosphate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:16070 1,5-anhydro-D-glucitol skos:exactMatch mesh C006584 1,5-anhydroglucitol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:160802 Asp-Phe-Gly skos:exactMatch mesh C553185 DFG peptide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:16085 UDP-alpha-D-galacturonic acid skos:exactMatch mesh C050306 UDP-galacturonic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:160871 Met-Leu-Phe skos:exactMatch mesh C042205 methionyl-leucyl-phenylalanine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:16089 6-deoxyerythronolide B skos:exactMatch mesh C034277 6-deoxyerythronolide B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:160914 Met-Lys-Pro skos:exactMatch mesh C000622058 methionyl-lysyl-proline lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:160950 Met-Met-Met skos:exactMatch mesh C022877 trimethionine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:16104 3-(2-hydroxyphenyl)propanoic acid skos:exactMatch mesh C514152 melilotic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:16108 dihydroxyacetone phosphate skos:exactMatch mesh D004099 Dihydroxyacetone Phosphate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:16109 propane-1,3-diol skos:exactMatch mesh C041787 1,3-propanediol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:16110 1,2-diacyl-sn-glycero-3-phosphocholine(1+) skos:exactMatch mesh D054709 Lecithins lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:16116 3-hydroxy-4-methylanthranilic acid skos:exactMatch mesh C034508 4-methyl-3-hydroxyanthranilic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:161185 Met-Tyr-Lys skos:exactMatch mesh C026545 methionyl-tyrosyl-lysine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:161262 Phe-Ala-Lys skos:exactMatch mesh C080261 phenylalanyl-alanyl-lysine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:161280 Phe-Arg-Arg skos:exactMatch mesh C082640 phenylalanyl-arginyl-arginine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:161304 Phe-Arg-Phe skos:exactMatch mesh C077523 phenylalanyl-arginyl-phenylalanine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:16138 2-deoxy-D-gluconic acid skos:exactMatch mesh C045553 2-deoxygluconic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:161488 Phe-Glu-Gly skos:exactMatch mesh C114891 tripeptide FEG lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:16151 3,4-dihydrocoumarin skos:exactMatch mesh C507378 melilotol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:16161 CoA-disulfide skos:exactMatch mesh C017145 coenzyme A disulfide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:161670 Phe-Leu-Val skos:exactMatch mesh C000615816 phenylalanyl-leucyl-valine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:16174 dADP skos:exactMatch mesh C018891 deoxyadenosine diphosphate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:161765 Phe-Phe-Gly skos:exactMatch mesh C044920 phenylalanyl-phenylalanyl-glycine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:161777 Phe-Phe-Phe skos:exactMatch mesh C041142 phenylalanyl-phenylalanyl-phenylalanine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:16178 phosphomannan skos:exactMatch mesh C005437 phosphomannan lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:16179 retinyl ester skos:exactMatch mesh D000084562 Retinyl Esters lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:161791 Phe-Pro-Ala skos:exactMatch mesh C062655 phenylalanyl-prolyl-alanine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:161793 Phe-Pro-Arg skos:exactMatch mesh C077952 phenylalanyl-prolyl-arginine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:16200 questin skos:exactMatch mesh C048944 questin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:16205 biphenyl-2,3-diol skos:exactMatch mesh C454813 2,3-dihydroxybiphenyl lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:16220 coniferin skos:exactMatch mesh C016316 coniferin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:162311 Pro-Gly-Gly skos:exactMatch mesh C049251 prolyl-glycyl-glycine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:162325 Pro-Gly-Pro skos:exactMatch mesh C113164 prolyl-glycyl-proline lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:16234 hydroxide skos:exactMatch mesh C031356 hydroxide ion lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:16237 4-chlorophenylacetate skos:exactMatch mesh C029716 4-chlorophenylacetic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:16241 aldehydo-D-arabinose 5-phosphate skos:exactMatch mesh C028055 arabinose 5-phosphate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:162419 Pro-Leu-Arg skos:exactMatch mesh C093201 prolyl-leucyl-arginine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:162431 Pro-Leu-Gly skos:exactMatch mesh C055207 prolyl-leucyl-glycine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:162578 Pro-Pro-Ala skos:exactMatch mesh C027789 prolyl-prolyl-alanine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:162592 Pro-Pro-Gly skos:exactMatch mesh C044555 prolyl-prolyl-glycine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:162596 Pro-Pro-Ile skos:exactMatch mesh C488808 prolyl-prolylisoleucine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:16267 (R)-4-hydroxymandelonitrile beta-D-glucoside skos:exactMatch mesh C011360 taxiphyllin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:162718 Glu-Arg-Pro skos:exactMatch mesh C088345 glutamyl-arginyl-proline lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:162770 Glu-Asp-Ala skos:exactMatch mesh C000605986 glutamyl-aspartyl-alanine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:162780 Glu-Asp-Gly skos:exactMatch mesh C026740 glutamyl-aspartyl-glycine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:162790 Glu-Asp-Pro skos:exactMatch mesh C000605987 glutamyl-aspartyl-proline lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:162802 Glu-Cys-Ala skos:exactMatch mesh C523572 glutamyl-cysteinyl-alanine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:162821 Glu-Cys-Lys skos:exactMatch mesh C522713 glutamyl-cysteinyl-lysine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:16284 dATP skos:exactMatch mesh C026600 2'-deoxyadenosine triphosphate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:16290 5alpha-cholesta-7,24-dien-3beta-ol skos:exactMatch mesh C007040 cholesta-7,24-dien-3-ol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:162920 Glu-Gly-Gly skos:exactMatch mesh C048439 gamma-glutamyl-glycyl-glycine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:16300 alpha-D-ribose 1-phosphate skos:exactMatch mesh C031154 ribose 1-phosphate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:16311 dCTP skos:exactMatch mesh C024107 2'-deoxycytidine 5'-triphosphate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:16312 3alpha,7alpha-dihydroxy-12-oxo-5beta-cholanic acid skos:exactMatch mesh C025576 3,7-dihydroxy-12-oxocholanoic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:16314 N-formylmethanofuran skos:exactMatch mesh C050842 formylmethanofuran lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:163262 Ser-Lys-Asp skos:exactMatch mesh C060784 seryl-lysyl-aspartic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:163276 Ser-Lys-Leu skos:exactMatch mesh C088449 seryl-lysyl-leucine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:163384 Glu-Val-Gly skos:exactMatch mesh C576321 glutamyl-valyl-glycine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:163396 Glu-Val-Phe skos:exactMatch mesh C073546 glutamyl-valyl-phenylalanine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:163424 Gly-Ala-Ile skos:exactMatch mesh C070224 glycyl-alanyl-isoleucine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:163426 Gly-Ala-Leu skos:exactMatch mesh C070223 glycyl-alanyl-leucine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:163432 Gly-Ala-Phe skos:exactMatch mesh C061038 glycyl-alanyl-phenylalanine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:163444 Gly-Ala-Val skos:exactMatch mesh C070222 glycyl-alanyl-valine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:163498 Gly-Asn-Gly skos:exactMatch mesh C053566 glycyl-asparaginyl-glycine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:163537 Gly-Asp-Gly skos:exactMatch mesh C053567 glycyl-aspartyl-glycine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:16354 N-methylhydantoin skos:exactMatch mesh C032067 1-methylhydantoin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:163569 Gly-Cys-Asp skos:exactMatch mesh C509808 glycyl-cystinyl-aspartic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:16365 quinolin-2-ol skos:exactMatch mesh C107724 2-hydroxyquinoline lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:16368 6-hydroxymellein skos:exactMatch mesh C070622 6-hydroxymellein lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:163682 Gly-Gly-Arg skos:exactMatch mesh C031918 glycyl-glycyl-argininal lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:163688 Gly-Gly-Cys skos:exactMatch mesh C044514 glycyl-glycyl-cysteine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:163695 Gly-Gly-His skos:exactMatch mesh C037026 diglycyl-histidine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:163707 Gly-Gly-Tyr skos:exactMatch mesh C108401 glycyl-glycyl-tyrosine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:163709 Gly-Gly-Val skos:exactMatch mesh C080939 glycyl-glycyl-valine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:163712 Gly-His-Arg skos:exactMatch mesh C035023 glycyl-histidyl-arginine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:163724 Gly-His-Gly skos:exactMatch mesh C098153 glycyl-histidyl-glycine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:163738 Gly-His-Ser skos:exactMatch mesh C000589228 glycyl-histidyl-serine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:163762 Thr-Asp-Tyr skos:exactMatch mesh C097918 threonyl-aspartyl-tyrosine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:163814 Gly-Leu-Phe skos:exactMatch mesh C062537 glycyl-leucyl-phenylalanine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:163824 Gly-Leu-Tyr skos:exactMatch mesh C104293 glycyl-leucyl-tyrosine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:16384 trans-5-O-caffeoyl-D-quinic acid skos:exactMatch mesh C473200 5'-O-caffeoylquinic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:163924 Gly-Phe-Gly skos:exactMatch mesh C530098 glycyl-phenylalanyl-glycine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:163949 Gly-Pro-Arg skos:exactMatch mesh C035024 glycyl-prolyl-arginine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:163960 Gly-Pro-Glu skos:exactMatch mesh C062053 glycyl-prolyl-glutamic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:163987 Gly-Ser-Ala skos:exactMatch mesh C061117 glycyl-seryl-alanine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:164013 Gly-Ser-Phe skos:exactMatch mesh C039037 glycyl-seryl-phenylalanine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:164059 Thr-Lys-Glu skos:exactMatch mesh C062986 threonyl-lysyl-glutamic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:164075 Thr-Lys-Pro skos:exactMatch mesh C045468 threonyl-lysyl-proline lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:164091 Gly-Trp-Met skos:exactMatch mesh C102204 glycyl-tryptophyl-methionine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:164107 Gly-Tyr-Ala skos:exactMatch mesh C078139 glycyl-tyrosyl-alanine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:164121 Gly-Tyr-Gly skos:exactMatch mesh C078834 glycyl-tyrosyl-glycine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:164129 Gly-Tyr-Lys skos:exactMatch mesh C093210 glycyl-tyrosyl-lysine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:164197 His-Ala-Gln skos:exactMatch mesh C000613969 histidyl-alanyl-glutamine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:164227 Thr-Ser-Lys skos:exactMatch mesh C026068 threonyl-seryl-lysine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:16423 (9Z)-octadec-9-en-12-ynoic acid skos:exactMatch mesh C047148 crepenynic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:16428 4-coumaroylshikimic acid skos:exactMatch mesh C548291 4-coumaroylshikimic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:16430 precorrin-4 skos:exactMatch mesh C107384 precorrin 4 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:16434 N-hydroxy-4-acetylaminobiphenyl skos:exactMatch mesh C001365 N-hydroxy-4-acetylaminobiphenyl lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:16441 linamarin skos:exactMatch mesh C005091 linamarin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:164481 His-Gly-Glu skos:exactMatch mesh C000625524 histidyl-glycyl-glutamic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:164584 Trp-Cys-Ser skos:exactMatch mesh C522909 tryptophyl-cysteinyl-serine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:16459 pentanamide skos:exactMatch mesh C055998 valeramide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:16464 salicyl alcohol skos:exactMatch mesh C010631 salicyl alcohol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:16466 3alpha,7alpha,12alpha-trihydroxy-5beta-cholestan-26-al skos:exactMatch mesh C029097 3,7,12-trihydroxycholestan-26-al lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:164680 Trp-Gly-Gly skos:exactMatch mesh C061592 tryptophyl-glycyl-glycine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:16470 glyceollin skos:exactMatch mesh C017343 glyceollin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:16471 (dimethylsulfonio)acetate skos:exactMatch mesh C483727 sulfobetaine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:164739 Trp-Leu-Glu skos:exactMatch mesh C056552 tryptophyl-leucyl-glutamic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:16480 nitric oxide skos:exactMatch mesh D045462 Endothelium-Dependent Relaxing Factors lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:16487 benzyl cetraxate skos:exactMatch mesh C063344 cetraxate benzyl ester lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:164936 Tyr-Ala-Cys skos:exactMatch mesh C000598977 tyrosyl-alanyl-cysteine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:164939 Tyr-Ala-Gly skos:exactMatch mesh C037841 tyrosyl-alanyl-glycine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:16503 selane skos:exactMatch mesh C026372 hydrogen selenide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:16504 monodehydro-L-ascorbic acid skos:exactMatch mesh C000820 semidehydroascorbic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:165069 Tyr-Glu-Trp skos:exactMatch mesh C509063 tyrosyl-glutamyl-tryptophan lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:16513 hydroxymalonic acid skos:exactMatch mesh C032973 tartronic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:165131 Tyr-Leu-Ala skos:exactMatch mesh C000605450 tyrosyl-leucyl-alanine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:16517 cyclotriphosphoric acid skos:exactMatch mesh C009293 trimetaphosphoric acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:165175 N-Methylnicotinium skos:exactMatch mesh C047661 N-methylnicotinium lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:165180 Calystegine C1 skos:exactMatch mesh C110566 calystegine C1 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:165184 2-Aminohippuric acid skos:exactMatch mesh C033412 2-aminohippuric acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:165186 Epinephrine glucuronide skos:exactMatch mesh C046911 epinephrine glucuronide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:165189 Carboxytolbutamide skos:exactMatch mesh C006913 carboxytolbutamide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:165194 Ketoprofen glucuronide skos:exactMatch mesh C044223 ketoprofen glucuronide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:165198 Bisphenol Z skos:exactMatch mesh C517113 1,1-bis(4-hydroxyphenyl)cyclohexane lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:165202 Fluvoxamino acid skos:exactMatch mesh C477448 fluvoxamino acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:165211 Benzyl salicylate skos:exactMatch mesh C039672 benzyl salicylate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:165217 2,4,6-Trihydroxybenzoic acid skos:exactMatch mesh C470931 2,4,6-trihydroxybenzoic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:165221 O-Desmethyltramadol skos:exactMatch mesh C080580 O-demethyltramadol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:165230 alpha-Hydroxymetoprolol skos:exactMatch mesh C029504 alpha-hydroxymetoprolol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:165233 3,4-Dehydrochlorambucil skos:exactMatch mesh C026365 3,4-dehydrochlorambucil lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:165235 N-Acetylgalactosamine 6-sulfate skos:exactMatch mesh C046736 N-acetylgalactosamine 6-sulfate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:165243 N-Acetyl-9-O-lactoylneuraminic acid skos:exactMatch mesh C082761 9-O-lactoyl-N-acetylneuraminic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:165279 11-HpETE skos:exactMatch mesh C024135 11-hydroperoxyeicosa-5,8,12,14-tetraenoic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:165283 5,6-DiHETE skos:exactMatch mesh C048698 5,6-dihydroxy-7,9,11,14-eicosatetraenoic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:165286 8,15-DiHPETE skos:exactMatch mesh C053262 8,15-diHPETE lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:165297 20-HeDE skos:exactMatch mesh C494667 20-hydroxyeicosa-6(Z),15(Z)-dienoic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:165302 11-Deoxy-PGF1alpha skos:exactMatch mesh C025568 11-deoxyprostaglandin F1alpha lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:165335 PGF1beta skos:exactMatch mesh C033761 prostaglandin F1beta lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:165336 PGF2alpha isopropyl ester skos:exactMatch mesh C041158 prostaglandin F2 isopropyl ester lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:165344 Tetranor-PGE1 skos:exactMatch mesh C054932 tetranorprostaglandin E1 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:165346 11-Dehydro-2,3-dinor-TXB2 skos:exactMatch mesh C081960 11-dehydro-2,3-dinor-thromboxane B2 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:165347 11-Dehydro-TXB3 skos:exactMatch mesh C101180 11-dehydrothromboxane B3 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:165348 2,3-Dinor-TXB1 skos:exactMatch mesh C089757 2,3-dinorthromboxane B1 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:165349 TXA3 skos:exactMatch mesh C039903 thromboxane A3 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:16535 piperazine-2,5-dione skos:exactMatch mesh C010939 2,5-dioxopiperazine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:165356 2,4-Dimethyl-tetradecanoic acid skos:exactMatch mesh C102748 2,4-dimethyltetradecanoic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:165373 Aleprolic acid skos:exactMatch mesh C013393 aleprolic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:165374 Dihydrosterculic acid skos:exactMatch mesh C029355 dihydrosterculic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:165375 Majusculoic acid skos:exactMatch mesh C501145 majusculoic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:165393 Dimethyl succinate skos:exactMatch mesh C056451 dimethyl succinate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:165396 9,10-Dibromo-stearic acid skos:exactMatch mesh C060803 9,10-dibromostearic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:165404 2-Ethyl-2-hydroxy-butyric acid skos:exactMatch mesh C089728 2-ethyl-2-hydroxybutyric acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:165421 Lesquerolic acid skos:exactMatch mesh C105775 lesquerolic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:165425 2-Methylglutaconic acid skos:exactMatch mesh C032770 2-methylglutaconic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:16543 N(2)-acetyl-L-ornithine skos:exactMatch mesh C021951 N(delta)-acetylornithine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:16545 5-valerolactone skos:exactMatch mesh C052207 delta-valerolactone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:165489 9,12-Hexadecadienoic acid skos:exactMatch mesh C080021 9,12-hexadecadienoic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:165495 Ximenynic acid skos:exactMatch mesh C053760 ximenynic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:165515 Gummiferol skos:exactMatch mesh C097940 gummiferol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:165524 Adipamide skos:exactMatch mesh C027486 adipamide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:165561 N-Palmitoyl tyrosine skos:exactMatch mesh C534125 N-palmitoyl tyrosine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:165618 Salicyl-CoA skos:exactMatch mesh C412606 salicyl-coenzyme A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:165649 Dodecyl acetate skos:exactMatch mesh C044215 lauryl acetate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:165678 Mayolene-16 skos:exactMatch mesh C470898 mayolene-16 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:165679 Mayolene-18 skos:exactMatch mesh C470899 mayolene-18 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:165773 Avenoleic acid skos:exactMatch mesh C112379 avenoleic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:165801 9,10-Dioxo-octadecanoic acid skos:exactMatch mesh C000625202 9,10-dioxooctadecanoic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:165807 dApdA skos:exactMatch mesh C020269 2'-deoxyadenylyl-(3'-5')-2'-deoxyadenosine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:165830 UpG skos:exactMatch mesh C042008 uridylyl-(3'-5')-guanosine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:165834 3'-O-Methyladenosine skos:exactMatch mesh C031038 3'-O-methyladenosine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:165836 1,7-Dimethylguanosine skos:exactMatch mesh C031003 1,7-dimethylguanosine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:165838 N-Allyladenosine skos:exactMatch mesh C074254 N-allyladenosine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:165840 Furafylline skos:exactMatch mesh C050131 furafylline lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:165841 5-Hydroxymethyluridine skos:exactMatch mesh C012367 5-hydroxymethyluridine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:165846 Diethyl aminomalonate skos:exactMatch mesh C057214 diethyl aminomalonate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:165850 3-Phenylpropionylglycine skos:exactMatch mesh C057466 3-phenylpropionylglycine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:165854 Benzylmercapturic acid skos:exactMatch mesh C029319 S-benzyl-N-acetyl-L-cysteine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:165858 Ethiin skos:exactMatch mesh C406690 ethiin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:165859 Galactosylhydroxylysine skos:exactMatch mesh C007817 galactosylhydroxylysine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:165863 Homoisoleucine skos:exactMatch mesh C013558 homoisoleucine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:165866 Isoputreanine skos:exactMatch mesh C035160 isoputreanine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:165871 N-AcetylCilastatin skos:exactMatch mesh C061295 N-acetylcilastatin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:165872 N-Acetylmethionine sulfoxide skos:exactMatch mesh C035120 N-acetylmethionine sulfoxide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:165873 N-Acetyl-proline skos:exactMatch mesh C055247 N-acetylproline lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:165877 N-Acetyl-S-(2-carbamoyl-2-hydroxyethyl)-L-cysteine skos:exactMatch mesh C000625513 N-acetyl-S-(2-carbamoyl-2-hydroxyethyl)-L-cysteine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:165878 N-Acetyl-S-(2-carbamoylethyl)-cysteine skos:exactMatch mesh C569465 N-acetyl-S-(2-carbamoylethyl)cysteine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:165879 N-Acetyl-S-(2-cyanoethyl)-cysteine skos:exactMatch mesh C025645 N-acetyl-S-(2-cyanoethyl)cysteine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:165885 N-Acetyl-S-(3-oxo-3-carboxy-n-propyl)cysteine skos:exactMatch mesh C110306 N-acetyl-S-(3-oxo-3-carboxy-n-propyl)cysteine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:165889 N-Acetyl-S-(trichlorovinyl)-cysteine skos:exactMatch mesh C053445 S-trichlorovinyl-N-acetylcysteine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:165891 N-Isobutylglycine skos:exactMatch mesh C119042 N-isobutylglycine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:165896 Phenylbutyrylglutamine skos:exactMatch mesh C463300 phenylbutyrylglutamine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:16591 all-trans-undecaprenol skos:exactMatch mesh C017788 undecaprenol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:165936 Tyr-Pro-Arg skos:exactMatch mesh C061174 tyrosyl-prolyl-arginine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:166028 Tyr-Tyr-Phe skos:exactMatch mesh C067117 tyrosyl-tyrosyl-phenylalanine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:16607 4-aminoimidazole skos:exactMatch mesh C098330 4-aminoimidazole lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:16608 5alpha-cholest-8-en-3beta-ol skos:exactMatch mesh C056855 zymostenol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:16615 biotin amide skos:exactMatch mesh C093086 biotinamide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:16616 2-methylpropanal O-methyloxime skos:exactMatch mesh C022245 isobutyraldoxime O-methyl ether lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:166345 Val-Pro-Leu skos:exactMatch mesh C041446 diprotin B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:166351 Val-Pro-Tyr skos:exactMatch mesh C576277 VPY tripeptide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:166453 5-S-Cysteinyldopamine skos:exactMatch mesh C047408 5-S-cysteinyldopamine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:166464 Diethyldithiophosphate skos:exactMatch mesh C000654497 diethyldithiophosphate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:166474 Dimethylphosphate skos:exactMatch mesh C007477 dimethyl phosphate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:166478 2-Aminopropanol skos:exactMatch mesh C034448 2-aminopropanol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:166479 N-Acetyltranylcypromine skos:exactMatch mesh C030066 N-acetyl-tranylcypromine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:166481 Decylamine skos:exactMatch mesh C004744 decylamine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:166483 Propionylcholine skos:exactMatch mesh C009062 propionylcholine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:166487 Hydroxybupropion skos:exactMatch mesh C580748 hydroxybupropion lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:166491 Inositol 4-phosphate skos:exactMatch mesh C045537 inositol 4-phosphate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:166492 1-Cyano-2-hydroxy-3-butene skos:exactMatch mesh C055903 1-cyano-2-hydroxy-3-butene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:166495 4-Hydroxy-3-methylacetophenone skos:exactMatch mesh C504550 4-hydroxy-3-methylacetophenone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:166496 Repandiol skos:exactMatch mesh C080187 repandiol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:166501 3-Acetylpyridine skos:exactMatch mesh C010835 3-acetylpyridine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:166503 5-Acetyl-4-methylthiazole skos:exactMatch mesh C025062 5-acetyl-4-methylthiazole lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:166504 Oxoamide skos:exactMatch mesh C034960 oxoamide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:166506 5-Hydroxytryptophol glucuronide skos:exactMatch mesh C500750 5-hydroxytryptophol glucuronide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:166507 6-Deoxyglucitol skos:exactMatch mesh C044742 6-deoxyglucitol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:166508 Galacto-hexodialdose skos:exactMatch mesh C468551 galactose dialdehyde lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:166509 Palmitoyl glucuronide skos:exactMatch mesh C065782 1-O-palmitylglucuronic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:166514 Desethylchloroquine skos:exactMatch mesh C007278 desethylchloroquine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:166515 1-Carboxymethylmetronidazole skos:exactMatch mesh C020921 2-methyl-5-nitroimidazol-1-ylacetic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:166518 Omeprazole sulfone skos:exactMatch mesh C040450 omeprazole sulfone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:166519 Dictyoquinazol C skos:exactMatch mesh C473160 dictyoquinazol C lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:166520 3,4-Methylenedioxyamphetamine skos:exactMatch mesh D015104 3,4-Methylenedioxyamphetamine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:16653 cycloeucalenol skos:exactMatch mesh C007198 cycloleucalenol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:166532 1,4-Ipomeadiol skos:exactMatch mesh C008162 1,4-ipomeadiol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:166533 7-Acetamidonitrazepam skos:exactMatch mesh C043576 7-acetamidonitrazepam lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:166534 7-Aminonitrazepam skos:exactMatch mesh C043577 7-aminonitrazepam lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:166535 alpha-Hydroxytriazolam skos:exactMatch mesh C028638 alpha-hydroxytriazolam lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:166536 2-Furanmethanethiol skos:exactMatch mesh C455106 furfuryl mercaptan lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:166540 5-(3,4-Dihydroxy-1,5-cyclohexadien-1-yl)-5-phenylhydantoin skos:exactMatch mesh C027363 5-(3,4-dihydroxy-1,5-cyclohexadien-1-yl)-5-phenylhydantoin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:166544 Adrenochrome skos:exactMatch mesh D000323 Adrenochrome lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:16656 tropinone skos:exactMatch mesh C016808 3-tropinone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:166561 1-Methylpiperazine skos:exactMatch mesh C048073 1-methylpiperazine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:166564 N-methyl-1-deoxynojirimycin skos:exactMatch mesh C033424 N-methyldeoxynojirimycin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:166565 7-Hydroxymethotrexate skos:exactMatch mesh C011864 7-hydroxymethotrexate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:166571 5-Hydroxypyrazinamide skos:exactMatch mesh C032191 5-hydroxypyrazinamide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:166572 2-Hydroxynicotinic acid skos:exactMatch mesh C011866 2-hydroxynicotinic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:166573 Thiazopyr skos:exactMatch mesh C091707 thiazopyr lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:166575 Ginkgotoxin skos:exactMatch mesh C406624 4'-O-methylpyridoxine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:166580 Nequinate skos:exactMatch mesh C057040 nequinate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:166583 Cotarnine skos:exactMatch mesh C004697 cotarnine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:166587 Selenocystamine skos:exactMatch mesh C014807 selenocystamine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:166593 1,9-Nonanedithiol skos:exactMatch mesh C528480 1,9-nonanedithiol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:166594 Pyrromycin skos:exactMatch mesh C021736 pyrromycin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:166595 Yessotoxin skos:exactMatch mesh C066632 yessotoxin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:166596 Nitecapone skos:exactMatch mesh C057364 nitecapone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:166598 Albanol B skos:exactMatch mesh C000628696 albanol B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:166604 Rubone skos:exactMatch mesh C000594178 2'-hydroxy-2,4,4',5,6'-pentamethylchalcone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:166605 7-Methylcoumarin skos:exactMatch mesh C580890 7-methylcoumarin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:166606 Urolithin B skos:exactMatch mesh C000595064 urolithin B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:166612 Hesperetin 5-O-glucoside skos:exactMatch mesh C069231 hesperetin 5-O-glucoside lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:166631 Karanjin skos:exactMatch mesh C052068 karanjin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:166646 Dihydrorotenone skos:exactMatch mesh C044985 1',2'-dihydrorotenone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:166650 Millettosin skos:exactMatch mesh C480850 millettosin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:166657 3-Phenylbutyric acid skos:exactMatch mesh C036032 3-phenylbutyric acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:166659 Fukiic acid skos:exactMatch mesh C116091 fukiic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:16666 prephenic acid skos:exactMatch mesh C005550 prephenic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:166662 Norpropoxyphene skos:exactMatch mesh C002756 norpropoxyphene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:166663 Emblicanin A skos:exactMatch mesh C467022 emblicanin A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:16667 (4-hydroxyphenyl)acetonitrile skos:exactMatch mesh C026914 4-hydroxybenzylcyanide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:166670 Allo-Aromadendrene skos:exactMatch mesh C419726 alloaromadendrene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:166671 Aromadendrene skos:exactMatch mesh C510134 aromadendrene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:166676 Valerenal skos:exactMatch mesh C030653 valerenal lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:166677 Grayanotoxin II skos:exactMatch mesh C020750 grayanotoxin II lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:166679 Retapamulin skos:exactMatch mesh C508887 retapamulin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:166687 7,8-Didehydroastaxanthin skos:exactMatch mesh C541232 7,8-didehydroastaxanthin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:166690 Pyrrhoxanthin skos:exactMatch mesh C520451 pyrrhoxanthin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:166732 Glycohyodeoxycholic acid skos:exactMatch mesh C043888 glycohyodeoxycholic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:166749 1-Hydroxyvitamin D3 3-D-glucopyranoside skos:exactMatch mesh C042201 1-hydroxyvitamin D3 3-D-glucopyranoside lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:166751 25-Hydroxy-26,27-dimethylvitamin D3 skos:exactMatch mesh C056746 25-hydroxy-26,27-dimethylvitamin D3 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:166754 Vitamin D2 3-glucuronide skos:exactMatch mesh C036286 vitamin D2 glucosiduronate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:166755 Vitamin D3 glucosiduronate skos:exactMatch mesh C027963 vitamin D3 glucosiduronate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:166756 ZK 168281 skos:exactMatch mesh C417690 ZK 168281 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:166758 Physalin L skos:exactMatch mesh C574203 physalin L lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:166759 15-Hydroxynorandrostene-3,17-dione glucuronide skos:exactMatch mesh C067735 15-hydroxynorandrostene-3,17-dione glucuronide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:166760 4-Hydroxyandrostenedione glucuronide skos:exactMatch mesh C048728 4-hydroxy-4-androstene-3,17-dione glucuronide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:166762 Cholesterol glucuronide skos:exactMatch mesh C035843 cholesterol glucuronide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:166766 11-Hydroxyandrostenedione skos:exactMatch mesh C003582 11-hydroxyandrostenedione lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:166768 4-Chloromethandienone skos:exactMatch mesh C000430 D-4-chloro-17 beta-hydroxy-3-oxo-17 alpha-methylandrosta-1,4-diene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:166774 16-Hydroxyprogesterone skos:exactMatch mesh C018975 16-hydroxyprogesterone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:166791 Cholesta-3,5-diene skos:exactMatch mesh C076149 cholesterylene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:166797 Gorgosterol skos:exactMatch mesh C021689 gorgosterol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:166800 19-Hydroxycholesterol skos:exactMatch mesh C102577 19-hydroxycholesterol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:166802 22-Hydroxycholesterol skos:exactMatch mesh C003585 22-hydroxycholesterol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:166806 32-Hydroxylanosterol skos:exactMatch mesh C053902 32-hydroxylanosterol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:166811 Cholestan-6-oxo-3,5-diol skos:exactMatch mesh C551154 cholestan-6-oxo-3,5-diol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:166813 Secosterol-B skos:exactMatch mesh C000654668 secosterol-B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:166814 Demissidine skos:exactMatch mesh C015108 demissidine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:166817 Clerosterol skos:exactMatch mesh C583592 clerosterol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:166825 pentamethonium skos:exactMatch mesh C014147 pentamethonium lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:166826 colforsin daropate skos:exactMatch mesh C122001 colforsin daropate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:166852 3-iodobenzoic acid skos:exactMatch mesh C038262 3-iodobenzoic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:166857 3-acetylpyridine adenine dinucleotide skos:exactMatch mesh C005941 3-acetylpyridine adenine dinucleotide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:166870 aminoethyl nitrate skos:exactMatch mesh C546031 aminoethyl nitrate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:166873 chrysogine skos:exactMatch mesh C005537 chrysogine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:166883 3-methylvaleric acid skos:exactMatch mesh C042993 3-methylvaleric acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:166887 glutenin skos:exactMatch mesh C037302 glutenin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:166889 delta7-stigmasterol skos:exactMatch mesh C059013 7-dehydrostigmasterol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:16689 D-apiose skos:exactMatch mesh C004983 apiose lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:166895 procyanidin skos:exactMatch mesh C017674 procyanidin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:166925 Allylmalonic acid skos:exactMatch mesh C409212 allylmalonic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:16697 indan-1-ol skos:exactMatch mesh C016515 1-indanol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:166992 calliterpenone skos:exactMatch mesh C583665 calliterpenone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:166993 callicarpenal skos:exactMatch mesh C523653 callicarpenal lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:16700 indican skos:exactMatch mesh C066596 indican, plant lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:167002 komodoquinone B skos:exactMatch mesh C481242 komodoquinone B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:167003 komodoquinone A skos:exactMatch mesh C481241 komodoquinone A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:167004 fostriecin skos:exactMatch mesh C040313 fostriecin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:16705 6-aminopenicillanic acid skos:exactMatch mesh C004408 aminopenicillanic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:16706 2-iodophenol skos:exactMatch mesh C011289 2-iodophenol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:167064 Bis(methylthio)methane skos:exactMatch mesh C474468 bis(methylthio)methane lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:167069 Ethynylbenzene skos:exactMatch mesh C044736 phenylacetylene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:167074 2-Methyl-3-furanthiol skos:exactMatch mesh C443400 2-methyl-3-furanthiol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:167089 1,9-Nonanediol skos:exactMatch mesh C079909 1,9-nonanediol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:167092 1,2,4-Trimethoxybenzene skos:exactMatch mesh C508108 1,2,4-trimethoxybenzene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:167111 ustiloxin B skos:exactMatch mesh C089077 ustiloxin B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:16713 2-aminopteridine-4,7-diol skos:exactMatch mesh C008217 isoxanthopterin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:16716 benzene skos:exactMatch mesh C004544 naphtha lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:167215 2-naphthyl sulfate skos:exactMatch mesh C064313 2-naphthyl sulfate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:16732 CDP-ethanolamine skos:exactMatch mesh C006933 CDP ethanolamine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:167321 leuvalin skos:exactMatch mesh C555048 leuvalin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:167345 Cedrene skos:exactMatch mesh C000393 cedrene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:167399 Verbenol skos:exactMatch mesh C009951 verbenol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:167406 3,4-Dimethylbenzaldehyde skos:exactMatch mesh C476925 3,4-dimethylbenzaldehyde lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:167407 Cuparene skos:exactMatch mesh C483527 cuparene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:167408 p-Cymen-8-ol skos:exactMatch mesh C000614639 4-cymen-8-ol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:167414 2,3,5-Trimethoxytoluene skos:exactMatch mesh C017775 2,3,5-trimethoxytoluene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:167426 Kaurene skos:exactMatch mesh C002627 kaurene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:167444 1,24(S)-dihydroxyvitamin D2 skos:exactMatch mesh C063087 1,24-dihydroxyvitamin D2 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:167450 monomethyl fumarate skos:exactMatch mesh C509058 methyl hydrogen fumarate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:167482 glutaric anhydride skos:exactMatch mesh C079643 glutaric anhydride lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:167489 avenanthramide B skos:exactMatch mesh C546196 avenanthramide B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:167505 5-Dihydrocortisol skos:exactMatch mesh C018921 5-dihydrocortisol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:167506 2,3-Dimethylsuccinic acid skos:exactMatch mesh C033831 2,3-dimethylsuccinic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:167508 2-Amino-2-norbornanecarboxylic acid skos:exactMatch mesh C000633610 2-amino-2-norbornanecarboxylic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:167561 neosaxitoxin skos:exactMatch mesh C034902 neosaxitoxin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:167574 semaglutide skos:exactMatch mesh C000591245 semaglutide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:167600 delgocitinib skos:exactMatch mesh C000621572 delgocitinib lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:167605 1,8-dihydroxynaphthalene-melanin skos:exactMatch mesh C423455 1,8-dihydroxynaphthalene melanin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:167622 zwittermicin A skos:exactMatch mesh C088290 zwittermicin A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:167625 dithiadene skos:exactMatch mesh C100170 dithiadene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:167626 2-hydroxyethyl octadecanoate skos:exactMatch mesh C000709705 2-hydroxyethyl stearate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:16764 2'-deoxy-5-methyl-5'-cytidylic acid skos:exactMatch mesh C007261 deoxy-5-methylcytidylic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:167642 1,3,5,2,4,6-triazatriphosphinine skos:exactMatch mesh C068226 cyclotriphosphazene ester lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:167644 2-methylvaleric acid skos:exactMatch mesh C033617 2-methylvaleric acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:16765 tryptamine skos:exactMatch mesh C030820 tryptamine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:167654 BAYu9773 skos:exactMatch mesh C071435 BAY u9773 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:167657 CHIR-98014 skos:exactMatch mesh C473710 Chir 98014 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:167660 LB42908 skos:exactMatch mesh C448382 LB42908 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:167672 TAK-580 skos:exactMatch mesh C000626518 MLN 2480 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:167686 brivanib skos:exactMatch mesh C509922 brivanib lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:16769 2-oxoglutaramate skos:exactMatch mesh C008230 alpha-ketoglutaramate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:167695 Punicalagin skos:exactMatch mesh C115642 punicalagin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:167696 Punicalin skos:exactMatch mesh C115643 punicalin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:167697 Granatin B skos:exactMatch mesh C553162 granatin B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:167707 acalabrutinib skos:exactMatch mesh C000604908 acalabrutinib lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:167709 myceliothermophin E skos:exactMatch mesh C000598016 myceliothermophin E lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:167725 Docosahexaenoic acid methyl ester skos:exactMatch mesh C059579 methyl docosahexaenoate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:167729 Methanandamide skos:exactMatch mesh C088155 methanandamide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:167730 Asperulosidic acid skos:exactMatch mesh C432744 asperulosidic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:167739 2-hydroxy-4-(4-hydroxyphenyl)butanoic acid skos:exactMatch mesh C000624298 2-hydroxy-4-(4-hydroxyphenyl)butanoic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:167740 Perillartine skos:exactMatch mesh C024527 perillartine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:167768 Oregonin skos:exactMatch mesh C409456 oregonin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:167777 Ingliforib skos:exactMatch mesh C483083 ingliforib lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:167779 Cycloolivil skos:exactMatch mesh C542655 cycloolivil lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:16778 apigenin 7-O-beta-D-glucoside skos:exactMatch mesh C057792 apigetrin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:167807 5-methoxyindole skos:exactMatch mesh C487413 5-methoxyindole lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:167815 4-dimethylaminocinnamaldehyde skos:exactMatch mesh C018523 4-dimethylaminocinnamaldehyde lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:167816 10-propoxydecanoic acid skos:exactMatch mesh C060254 10-propoxydecanoic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:167823 7-aminonimetazepam skos:exactMatch mesh C582339 7-aminonimetazepam lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:16783 1D-myo-inositol 1,3,4,5-tetrakisphosphate skos:exactMatch mesh C081655 inositol-1,3,4,5-tetrakisphosphate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:167830 Isorhapontigenin skos:exactMatch mesh C432307 isorhapontigenin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:167836 Sorbicillin skos:exactMatch mesh C473616 sorbicillin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:16785 diisopropyl hydrogen phosphate skos:exactMatch mesh C002226 diisopropylphosphate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:167850 Senkyunolide h skos:exactMatch mesh C584604 senkyunolide H lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:167855 Docosahexaenoic acid ethyl ester skos:exactMatch mesh C067518 4,7,10,13,16,19-docosahexaenoic acid ethyl ester lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:16786 vestitone skos:exactMatch mesh C089075 vestitone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:167860 Muscone skos:exactMatch mesh C031021 muscone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:167861 Terpestacin skos:exactMatch mesh C080890 terpestacin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:167873 Erythro-dihydrosphingosine skos:exactMatch mesh C458141 erythro-dihydrosphingosine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:167874 Hydroxyglutamic acid skos:exactMatch mesh C011859 hydroxyglutamic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:167877 Indoline-2-carboxylate skos:exactMatch mesh C000596456 indoline-2-carboxylate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:167893 SID 26681509 skos:exactMatch mesh C576116 SID 26681509 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:167899 mefuparib hydrochloride skos:exactMatch mesh C000626298 mefuparib hydrochloride lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:167957 Aegelinol skos:exactMatch mesh C547463 aegelinol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:167964 Penmacric acid skos:exactMatch mesh C480950 penmacric acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:16797 1-methylnicotinamide skos:exactMatch mesh C024058 N(1)-methylnicotinamide lexical 0.9 https://github.com/indralab/panacea_indra/blob/master/panacea_indra/make_ctd_tests.py +chebi CHEBI:167972 Bassic acid skos:exactMatch mesh C071476 bassic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:167977 Medicagenic acid skos:exactMatch mesh C005982 medicagenic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:167981 O-Ureidohomoserine skos:exactMatch mesh C009623 O-ureidohomoserine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:167987 Simmondsin skos:exactMatch mesh C089377 simmondsin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:167994 Physapubenolide skos:exactMatch mesh C000623234 physapubenolide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:168003 Starch acetate skos:exactMatch mesh C050766 starch acetate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:168044 Gnaphaliin skos:exactMatch mesh C121845 gnaphalin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:168067 Acetyl tributyl citrate skos:exactMatch mesh C014953 2-acetyltributylcitrate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:168069 Garcimangosone D skos:exactMatch mesh C435264 garcimangosone D lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:168077 Harmalan skos:exactMatch mesh C045323 harmalan lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:168083 Macrocarpal I skos:exactMatch mesh C102710 macrocarpal I lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:168092 Noroxycodone skos:exactMatch mesh C077256 noroxycodone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:168103 Ustiloxin D skos:exactMatch mesh C089079 ustiloxin D lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:168122 Cyrneine A skos:exactMatch mesh C514905 cyrneine A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:168130 HECOGENIN ACETATE skos:exactMatch mesh C505698 hecogenin acetate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:168138 2-amino-14,16-dimethyloctadecan-3-ol skos:exactMatch mesh C507616 2-amino-14,16-dimethyloctadecan-3-ol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:168185 Gingerglycolipid A skos:exactMatch mesh C089057 gingerglycolipid A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:168200 Thysanone skos:exactMatch mesh C000592476 thysanone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:16821 4-oxo-L-proline skos:exactMatch mesh C036784 4-ketoproline lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:168210 Geranylcitronellol skos:exactMatch mesh C017337 geranylcitronellol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:168219 Amorphaquinone skos:exactMatch mesh C569897 amorphaquinone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:168243 Valproic acid glucuronide skos:exactMatch mesh C041285 valproic acid glucuronide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:168247 Creatine riboside skos:exactMatch mesh C000590396 2-(2-(3,4-dihydroxy-5-(hydroxymethyl)oxolan-2-yl)-1-methylcarbamimidamido)acetic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:168250 Procurcumenol skos:exactMatch mesh C438916 procurcumenol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:168256 Blumenol C glucoside skos:exactMatch mesh C549752 9-hydroxymegastigman-4-en-3-one 9-O-beta-D-glucopyranoside lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:168262 Ganoderic acid A skos:exactMatch mesh C515005 ganoderic acid A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:168283 DIBOA-Glc skos:exactMatch mesh C533012 (2R)-2-O-beta-D-glucopyranosyl-4-hydroxy-2H-1,4-benzoxazin-3(4H)-one lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:168291 Fasciculic acid B skos:exactMatch mesh C063645 fasciculic acid B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:168298 Ganoderic acid C2 skos:exactMatch mesh C557338 ganoderic acid C2 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:168310 Norcholic acid skos:exactMatch mesh C036933 norcholic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:168325 Ganosporeric acid A skos:exactMatch mesh C071822 ganosporeric acid A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:168336 Persin skos:exactMatch mesh C098164 persin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:16837 alpha-ribazole 5'-phosphate skos:exactMatch mesh C087731 N(1)-(5-phosphoribosyl)-5,6-dimethylbenzimidazole lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:168378 FISSINOLIDE skos:exactMatch mesh C554990 fissinolide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:168398 Ethyl cellulose skos:exactMatch mesh C013517 ethyl cellulose lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:168426 Triethyl citrate skos:exactMatch mesh C023001 ethyl citrate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:168433 Cassiaside skos:exactMatch mesh C119594 cassiaside lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:168465 Stoloniferone G skos:exactMatch mesh C471283 stoloniferone G lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:168467 3-(4-methoxyphenyl)propan-1-ol skos:exactMatch mesh C000622305 3-(4-methoxyphenyl)propan-1-ol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:168472 Tyramine glucuronide skos:exactMatch mesh C015565 tyramine glucuronide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:168474 Lamivudine sulfoxide skos:exactMatch mesh C104840 lamivudine sulfoxide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:168477 Withangulatin A skos:exactMatch mesh C059043 withangulatin A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:168485 Methyl 2-octynoate skos:exactMatch mesh C023027 methyl heptine carbonate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:16850 1,2-dihydro-alpha-santonin skos:exactMatch mesh C032735 1,2-dihydro-alpha-santonin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:168507 Avocadyne skos:exactMatch mesh C000709181 avocadyne lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:168523 3-O-fucopyranosyl-2-acetamido-2-deoxyglucopyranose skos:exactMatch mesh C106531 3-O-fucopyranosyl-2-acetamido-2-deoxyglucopyranose lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:168591 Lycoperdic acid skos:exactMatch mesh C526725 lycoperdic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:168599 1-O-Galloylglycerol skos:exactMatch mesh C000656221 1-o-galloylglycerol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:16860 3',4',5,7-tetrahydroxy-3-methoxyflavone skos:exactMatch mesh C047368 3-methylquercetin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:168619 Hydroxyhexamide skos:exactMatch mesh C020362 hydroxyhexamide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:168622 gamma-Glutamyl-S-methylcysteine skos:exactMatch mesh C531026 gamma-glutamyl-S-methylcysteine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:168630 Chlorin E6 skos:exactMatch mesh C062985 phytochlorin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:168632 5,6-Dimethoxysterigmatocystin skos:exactMatch mesh C043241 5,6-dimethoxysterigmatocystin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:168639 5-Hydroxythalidomide skos:exactMatch mesh C544471 5-hydroxythalidomide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:168653 Eriojaposide A skos:exactMatch mesh C433555 eriojaposide A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:168654 Oxazepam glucuronide skos:exactMatch mesh C026256 oxazepam glucuronide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:168658 2',5'-Dihydroxychalcone skos:exactMatch mesh C107497 2',5'-dihydroxychalcone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:16866 alizarin skos:exactMatch mesh C010078 alizarin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:168663 Ganoderic acid B skos:exactMatch mesh C476673 ganoderic acid B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:168666 Diphylloside B skos:exactMatch mesh C470265 diphylloside B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:168693 Melanostatin skos:exactMatch mesh D009075 MSH Release-Inhibiting Hormone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:168715 Quinolacetic acid skos:exactMatch mesh C038893 quinolacetic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:168719 Cassitoroside skos:exactMatch mesh C000609684 cassitoroside lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:168721 Ethylene brassylate skos:exactMatch mesh C519611 ethylene brassylate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:168744 Ecklonialactone A skos:exactMatch mesh C086784 ecklonialactone A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:168749 Corchoionoside B skos:exactMatch mesh C105664 corchoionoside B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:168763 Multiflorin A skos:exactMatch mesh C087918 multiflorin A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:168764 Dodecanal dimethyl acetal skos:exactMatch mesh C000628575 dodecanal dimethyl acetal lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:168766 Tolmetin glucuronide skos:exactMatch mesh C056583 tolmetin glucuronide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:168784 Armillaripin skos:exactMatch mesh C067210 armillaripin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:168806 1-Hexylglycerol skos:exactMatch mesh C046701 1-hexylglycerol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:168812 EB 1213 skos:exactMatch mesh C103435 EB 1213 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:168818 Glucosylisomaltol skos:exactMatch mesh C470212 glucosylisomaltol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:168822 oleoside 11-methyl ester skos:exactMatch mesh C445381 methyloleoside lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:168849 4-Acetyl-1-methylcyclohexene skos:exactMatch mesh C525009 4-acetyl-1-methylcyclohexene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:168857 Botryodiplodin skos:exactMatch mesh C006789 botryodiplodin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:168876 Muscomin skos:exactMatch mesh C103700 muscomin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:168902 dehydronifedipine skos:exactMatch mesh C117802 dehydronifedipine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:168909 Retrofractamide A skos:exactMatch mesh C454279 retrofractamide A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:168920 alpha-hydroxysalmeterol skos:exactMatch mesh C101433 alpha-hydroxysalmeterol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:168947 Nigellicine skos:exactMatch mesh C508400 nigellicine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:16895 S-methyl-5-thio-D-ribose skos:exactMatch mesh C001955 5-methylthioribose lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:168986 Dioctyl hexanedioate skos:exactMatch mesh C426841 dioctyl hexanedioate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:169008 7-Ethoxy-4-methyl-2H-1-benzopyran-2-one skos:exactMatch mesh C115983 4-methyl-7-ethoxycoumarin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:169025 3-Ethylpyridine skos:exactMatch mesh C039675 3-ethylpyridine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:169029 Coumaperine skos:exactMatch mesh C412962 coumaperine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:169037 Armillaric acid skos:exactMatch mesh C064497 armillaric acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:169040 Caffeoylmalic acid skos:exactMatch mesh C099798 caffeoylmalic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:169048 Epimedin B skos:exactMatch mesh C106053 epimedin B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:16905 keto-D-fructose 1,6-bisphosphate skos:exactMatch mesh C029063 fructose-1,6-diphosphate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:169068 8-Hydroxy-5,6-octadienoic acid skos:exactMatch mesh C106986 8-hydroxy-5,6-octadienoic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:169074 Atrovirisidone skos:exactMatch mesh C435807 atrovirisidone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:169084 N-Nitroethylenediamine skos:exactMatch mesh C033450 N-nitroethylenediamine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:169087 Panaxatriol skos:exactMatch mesh C004563 panaxatriol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:169088 Phytal skos:exactMatch mesh C586672 3,7,11,15-tetramethylhexadec-2-enal lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:169093 Sandoricin skos:exactMatch mesh C069232 sandoricin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:169105 Ethyl maltol skos:exactMatch mesh C052408 ethyl maltol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:169172 Fumonisin B3 skos:exactMatch mesh C073063 fumonisin B3 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:169177 Leonoside B skos:exactMatch mesh C072842 leonoside B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:169181 Monomenthyl succinate skos:exactMatch mesh C487587 monomenthyl succinate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:169226 6-Hydroxy-5-methoxyindole glucuronide skos:exactMatch mesh C030221 6-hydroxy-5-methoxyindole glucuronide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:169231 Amifloxacin skos:exactMatch mesh C040691 amifloxacin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:169234 Garcimangosone C skos:exactMatch mesh C435263 garcimangosone C lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:169236 4-Deacetylneosolaniol skos:exactMatch mesh C070178 4-deacetylneosolaniol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:169242 3-Hepten-2-one skos:exactMatch mesh C027251 3-hepten-2-one lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:169260 3-Methyl-2-butene-1-thiol skos:exactMatch mesh C512562 3-methyl-2-butene-1-thiol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:169303 N-Desmethyldiltiazem skos:exactMatch mesh C052825 N-monodemethyldiltiazem lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:169319 Stoloniferone E skos:exactMatch mesh C471281 stoloniferone E lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:169320 Orciprenaline-3-O-sulfate skos:exactMatch mesh C040021 metaproterenol-3-O-sulfate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:169338 Diethyl tartrate skos:exactMatch mesh C064501 diethyl tartrate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:169352 Astrasikokioside I skos:exactMatch mesh C410745 astrasikokioside I lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:169371 Ethyl levulinate skos:exactMatch mesh C542586 ethyl levulinate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:169377 2-Heptanethiol skos:exactMatch mesh C482407 2-heptanethiol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:16938 6-O-phosphono-D-glucono-1,5-lactone skos:exactMatch mesh C048956 6-phosphonoglucono-delta-lactone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:169382 2-hydroxymethylolanzapine skos:exactMatch mesh C517415 2-hydroxymethylolanzapine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:169409 Ganoderic acid S skos:exactMatch mesh C572163 ganoderic acid S lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:169434 Lindleyin skos:exactMatch mesh C018585 lindleyin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:169504 Sophoraisoflavanone D skos:exactMatch mesh C441783 sophoraisoflavanone D lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:169507 Diethyl succinate skos:exactMatch mesh C052819 diethyl succinate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:169524 Allithiamine skos:exactMatch mesh C012710 allithiamine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:169526 7-Formyldehydrothalicsimidine skos:exactMatch mesh C117117 7-formyl-dehydrothalicsimidine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:169528 Benzyl gentiobioside skos:exactMatch mesh C100522 benzyl gentiobioside lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:169541 Mauritianin skos:exactMatch mesh C069907 mauritianin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:169561 1,4-Dimethoxyglucobrassicin skos:exactMatch mesh C428966 1,4-dimethoxyindol-3-ylmethylglucosinolate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:169566 Dipropyl sulfide skos:exactMatch mesh C087894 dipropyl sulfide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:169569 Chlorophyll c skos:exactMatch mesh C064041 chlorophyll c lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:16958 beta-alanine skos:exactMatch mesh C062977 4-bromobenzoyl-(alpha-aminoisobutyric acid)(5)-leucyl-(alpha-aminoisobutyric acid)(2)-methoxy lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:169597 Physalin H skos:exactMatch mesh C475936 physalin H lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:169599 ortho-hydroxyatorvastatin skos:exactMatch mesh C518963 2-hydroxyatorvastatin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:169606 Lavandulifolioside skos:exactMatch mesh C424543 lavandulifolioside lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:169657 Lepidimoic acid skos:exactMatch mesh C110298 lepidimoic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:169661 Salviaflaside skos:exactMatch mesh C111701 salviaflaside lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:169691 Brassilexin skos:exactMatch mesh C430121 brassilexin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:169705 Dibutyl sulfide skos:exactMatch mesh C034081 dibutyl sulfide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:169709 Momilactone B skos:exactMatch mesh C477203 momilactone B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:169725 2-Methoxystypandrone skos:exactMatch mesh C447630 2-Methoxystypandrone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:169727 Iophendylate skos:exactMatch mesh D007481 Iophendylate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:169739 1-Hydroxypyrene glucuronide skos:exactMatch mesh C093851 1-hydroxypyrene-glucuronide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:169763 Aureol skos:exactMatch mesh C455540 aureol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:169764 Dictyoquinazol A skos:exactMatch mesh C473161 dictyoquinazol A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:169767 4-Hydroxyatomoxetine skos:exactMatch mesh C454679 4-hydroxyatomoxetine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:169773 Eruberin C skos:exactMatch mesh C556940 eruberin C lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:169782 Pisumoside A skos:exactMatch mesh C422345 pisumoside A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:169799 Stoloniferone F skos:exactMatch mesh C471282 stoloniferone F lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:169833 Deacetyldiltiazem skos:exactMatch mesh C037769 deacetyldiltiazem lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:16984 N-acetylimidazole skos:exactMatch mesh C012160 N-acetylimidazole lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:169840 Harderoporphyrin skos:exactMatch mesh C040589 harderoporphyrin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:169864 Sphingofungin E skos:exactMatch mesh C078943 sphingofungin E lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:169869 Cycloartobiloxanthone skos:exactMatch mesh C000627997 cycloartobiloxanthone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:169876 Norendoxifen skos:exactMatch mesh C574385 N,N-didesmethyl-4-hydroxytamoxifen lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:169885 Melleolide M skos:exactMatch mesh C408305 melleolide M lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:169891 Janthitrem C skos:exactMatch mesh C048673 janthitrem C lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:169893 Clozapine N-oxide skos:exactMatch mesh C079149 clozapine N-oxide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:169904 Tiazuril skos:exactMatch mesh C016149 tiazuril lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:169907 gamma-Glutamylaspartic acid skos:exactMatch mesh C021030 gamma-glutamylaspartic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:169918 N-desmethyltoremifene skos:exactMatch mesh C062264 N-desmethyltoremifene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:16992 2-hydroxy-3-oxopropanoic acid skos:exactMatch mesh C027028 tartronate semialdehyde lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:169925 4-hydroxytriazolam skos:exactMatch mesh C028637 4-hydroxytriazolam lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:16993 2-(carboxymethyl)-5-oxo-2,5-dihydro-2-furoic acid skos:exactMatch mesh C005968 carboxymuconolactone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:169951 YM-216391 skos:exactMatch mesh C499972 YM 216391 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:169983 Diglycolic acid skos:exactMatch mesh C571256 diglycolic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:169984 3-Hydroxypicolinamide skos:exactMatch mesh C070035 3-hydroxypicolinamide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:169988 2-Phenoxypropionic acid skos:exactMatch mesh C447201 2-phenoxypropionic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:169989 3-Phenoxypropionic acid skos:exactMatch mesh C511657 3-phenoxypropionic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:169990 Indole-2-carboxylic acid skos:exactMatch mesh C058980 indole-2-carboxylic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:169991 Indoxyl acetate skos:exactMatch mesh C053640 indoxyl acetate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:169992 6-Hydroxypicolinic acid skos:exactMatch mesh C477454 6-hydroxypicolinic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:169995 5-Hydroxynicotinic acid skos:exactMatch mesh C106692 5-hydroxynicotinic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:169997 3-Phenylserine skos:exactMatch mesh C467259 phenylserine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:169999 stellatic acid skos:exactMatch mesh C000603890 stellatic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:170017 Triisopropanolamine skos:exactMatch mesh C056255 triisopropanolamine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:170038 Norbutorphanol skos:exactMatch mesh C040803 norbutorphanol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:17006 beta-D-galactosyl-(1->4)-N-acetyl-beta-D-glucosaminyl-(1->3)-beta-D-galactosyl-(1->4)-beta-D-glucosylceramide skos:exactMatch mesh C036363 paragloboside lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:170060 3,5-di-tert-Butyl-4-hydroxybenzaldehyde skos:exactMatch mesh C513957 3,5-di-tert-butyl-4-hydroxybenzaldehyde lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:170109 Oryzalexin S skos:exactMatch mesh C488969 oryzalexin S lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:170112 Copalic acid skos:exactMatch mesh C556511 copalic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:170125 Grifolin skos:exactMatch mesh C058858 grifolin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:170126 Neogrifolin skos:exactMatch mesh C000605323 4-farnesyl-5-methylresorcinol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:17032 2-dehydro-3-deoxy-D-gluconic acid skos:exactMatch mesh C002957 2-keto-3-deoxygluconate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:17036 dibenzo[1,4]dioxine-2,3-dione skos:exactMatch mesh C003873 diphenylene dioxide 2,3-quinone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:17038 fecosterol skos:exactMatch mesh C039241 fecosterol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:17064 4-nitroaniline skos:exactMatch mesh C019498 4-nitroaniline lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:170869 Asitrilobin C skos:exactMatch mesh C417193 asitrilobin C lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:170871 Asitrilobin D skos:exactMatch mesh C417194 asitrilobin D lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:170873 Annoglacin A skos:exactMatch mesh C118551 annoglacin A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:170877 Annomutacin skos:exactMatch mesh C096950 annomutacin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:170879 Rollinecin A skos:exactMatch mesh C100863 rollinecin A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:170910 Sorbitan palmitate skos:exactMatch mesh C061705 sorbitan monopalmitate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:17119 fMet-tRNA(fMet) skos:exactMatch mesh C089238 fMet-tRNA(fMet) lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:17123 2-aminoacrylic acid skos:exactMatch mesh C015102 dehydroalanine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:17137 hydrogensulfite skos:exactMatch mesh C042345 hydrogen sulfite lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:17142 5-formyl-2-hydroxyhepta-2,4-dienedioic acid skos:exactMatch mesh C015930 2-hydroxy-5-carboxymethylmuconate semialdehyde lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:17160 17alpha-estradiol skos:exactMatch mesh C519808 alfatradiol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:171656 3-methylarginine skos:exactMatch mesh C532871 3-methylarginine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:171658 promysalin skos:exactMatch mesh C571083 promysalin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:171659 quinolobactin skos:exactMatch mesh C404845 quinolobactin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:171660 inuloxin A skos:exactMatch mesh C000605023 inuloxin A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:171673 dutomycin skos:exactMatch mesh C079476 dutomycin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:171675 Tanabalin skos:exactMatch mesh C000632128 tanabalin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:171676 Armillarin skos:exactMatch mesh C043544 armillarin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:171679 13-Hydroxy-9-methoxy-10-oxo-11-octadecenoic acid skos:exactMatch mesh C082487 13-hydroxy-9-methoxy-10-oxo-11-octadecenoic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:17168 5alpha-cholest-7-en-3beta-ol skos:exactMatch mesh C001521 lathosterol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:171682 Rigin skos:exactMatch mesh C031491 rigin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:171685 Mosinone A skos:exactMatch mesh C107771 mosinone A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:171721 Kentsin skos:exactMatch mesh C017147 kentsin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:171726 Orange B skos:exactMatch mesh C098605 orange B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:171730 Koenoline skos:exactMatch mesh C522710 koenoline lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:17177 cinnamyl alcohol skos:exactMatch mesh C020722 cinnamyl alcohol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:171772 5,8-Tetradecadienoic acid skos:exactMatch mesh C108157 5,8-tetradecadienoic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:171776 Linalyl isobutyrate skos:exactMatch mesh C475599 3,7-dimethyl-1,6-octadien-3-yl isobutyrate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:171782 Linalyl butyrate skos:exactMatch mesh C475595 3,7-dimethyl-1,6-octadien-3-yl butyrate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:171794 Coniferan skos:exactMatch mesh C067963 coniferan lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:171796 Epoxybergamottin skos:exactMatch mesh C475527 epoxybergamottin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:171798 Isoxanthohumol skos:exactMatch mesh C512910 isoxanthohumol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:17184 chlordecone alcohol skos:exactMatch mesh C029713 chlordecone alcohol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:171852 Squamone skos:exactMatch mesh C064336 squamone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:171858 Mosin C skos:exactMatch mesh C107770 mosin C lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:171865 Mammeigin skos:exactMatch mesh C520180 (5-hydroxy-8,8-dimethyl-6-(3-methylbutanoyl)-4-phenyl-2H,8H-pyrano(2,3-f)chromen-2-one) lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:171874 Garcinone B skos:exactMatch mesh C509049 Garcinone B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:171886 Purpurenin skos:exactMatch mesh C112711 purpurenin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:171888 Rollimusin skos:exactMatch mesh C404383 rollimusin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:17189 2,5-dihydroxybenzoic acid skos:exactMatch mesh C010925 2,5-dihydroxybenzoic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:171890 Epi-coprostanol skos:exactMatch mesh C523170 epicoprostanol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:171897 5-hydroxypropafenone skos:exactMatch mesh C044307 5-hydroxypropafenone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:171913 Dehydrolinalool skos:exactMatch mesh C534304 3,7-dimethyloct-6-en-1-yn-3-ol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:17192 3,5-dibromo-4-hydroxybenzonitrile skos:exactMatch mesh C006826 bromoxynil lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:171922 Carvotanacetone skos:exactMatch mesh C000618431 carvotanacetone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:171930 Junionone skos:exactMatch mesh C527654 junionone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:171939 4-Hydroperoxy-2-nonenal skos:exactMatch mesh C547259 4-hydroperoxy-2-nonenal lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:17194 bromochloromethane skos:exactMatch mesh C006811 bromochloromethane lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:171949 Anethofuran skos:exactMatch mesh C077702 anethofuran lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:17195 thiomorpholine-3-carboxylic acid skos:exactMatch mesh C060165 1,4-thiomorpholine-3-carboxylic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:171990 Cholestane-3,7,12,25-tetrol skos:exactMatch mesh C010556 cholestane-3,7,12,25-tetrol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:172004 Ginsenoside Rh3 skos:exactMatch mesh C055306 ginsenoside Rh3 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:172011 Ursonic acid skos:exactMatch mesh C000657350 ursonic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:172023 Masticadienonic acid skos:exactMatch mesh C459620 masticadienonic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:172025 beta-Elemonic acid skos:exactMatch mesh C000709525 beta-elemonic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:172032 Conferone skos:exactMatch mesh C513235 conferone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:172034 Ganoderiol F skos:exactMatch mesh C513307 ganoderiol F lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:172035 Ganoderic acid Y skos:exactMatch mesh C000590175 ganoderic acid Y lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:172038 4-Hydroxy-alprenolol skos:exactMatch mesh C048019 4-hydroxyalprenolol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:172081 Hydralazine acetone hydrazone skos:exactMatch mesh C034601 hydralazine acetone hydrazone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:172086 Umbelliprenin skos:exactMatch mesh C003744 umbelliprenin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:172098 Heptyl octanoate skos:exactMatch mesh C068799 heptyl octanoate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:172099 Diethyl decanedioate skos:exactMatch mesh C029410 ethyl sebacate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:172108 Perilloside C skos:exactMatch mesh C095161 perilloside C lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:172123 Cholestane-3,7,12,24,25-pentol skos:exactMatch mesh C012832 cholestane-3,7,12,24,25-pentol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:172129 Momordicin II skos:exactMatch mesh C000605971 momordicin II lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:17213 D-lysopine skos:exactMatch mesh C015333 lysopine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:172142 Acetylvalerenolic acid skos:exactMatch mesh C037135 acetylvalerenolic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:17215 methyl L-tyrosinate skos:exactMatch mesh C040444 tyrosine methyl ester lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:17221 beta-myrcene skos:exactMatch mesh C509595 myrcene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:17225 salutaridine skos:exactMatch mesh C009270 salutaridine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:17228 taurocyamine skos:exactMatch mesh C009558 taurocyamine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:172315 Norbuprenorphine skos:exactMatch mesh C043585 norbuprenorphine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:172319 1,8-Octanedithiol skos:exactMatch mesh C516316 1,8-octanedithiol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:172322 Undecanoylcarnitine skos:exactMatch mesh C084116 undecanoylcarnitine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:172332 Laurolactam skos:exactMatch mesh C474694 laurolactam lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:172333 HET0016 skos:exactMatch mesh C000708209 HET0016 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:172336 2,2'-Methylenebis(4-methyl-6-tert-butylphenol) skos:exactMatch mesh C008437 2,2'-methylenebis(4-methyl-6-tert-butylphenol) lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:172338 N-Desmethyltramadol skos:exactMatch mesh C080579 N-demethyltramadol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:172341 Luotonin A skos:exactMatch mesh C480761 luotonin A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:17237 (E)-4-(trimethylammonio)but-2-enoate skos:exactMatch mesh C025237 crotonic acid betaine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:172375 pantocin A skos:exactMatch mesh C482694 pantocin A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:17241 1H-pyrazole skos:exactMatch mesh C031280 pyrazole lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:172424 3-Acetyl-2,7-naphthyridine skos:exactMatch mesh C024947 naphthyridylmethylketone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:172429 Pyrocoll skos:exactMatch mesh C477903 Pyrocoll lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:17243 mono(2-ethylhexyl) phthalate skos:exactMatch mesh C016599 mono-(2-ethylhexyl)phthalate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:172441 Spermine dialdehyde skos:exactMatch mesh C050864 N,N'-bis(3-propionaldehyde)-1,4-diaminobutane lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:172444 Daucic acid skos:exactMatch mesh C486984 daucic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:172453 3-Methoxytyrosine skos:exactMatch mesh C008404 3-methoxytyrosine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:172466 Allixin skos:exactMatch mesh C070727 allixin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:172467 Metyrapol skos:exactMatch mesh C002196 metyrapol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:17249 D-nopaline skos:exactMatch mesh C008666 nopaline lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:172501 Linalyl benzoate skos:exactMatch mesh C475594 3,7-dimethyl-1,6-octadien-3-yl benzoate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:172520 Avocadene skos:exactMatch mesh C000709253 avocadene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:172537 Obtusilactone A skos:exactMatch mesh C551476 obtusilactone A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:172565 N-desmethylrosiglitazone skos:exactMatch mesh C480687 N-desmethylrosiglitazone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:172573 R-138727 skos:exactMatch mesh C510685 R-138727 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:172576 Xanthohumol C skos:exactMatch mesh C531135 xanthohumol C lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:172581 Xanthoxylol skos:exactMatch mesh C108246 xanthoxylol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:172595 6-O-Acetylaustroinulin skos:exactMatch mesh C000590668 6-O-acetyl-austroinulin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:172596 Nifursol skos:exactMatch mesh C032119 nifursol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:172601 Linusitamarin skos:exactMatch mesh C085401 linusitamarin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:172602 Veranisatin C skos:exactMatch mesh C102410 veranisatin C lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:172620 Shoyuflavone A skos:exactMatch mesh C114900 shoyuflavone A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:172638 5-Hydroxyflavone skos:exactMatch mesh C062711 5-hydroxyflavone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:17264 phosphatidylglycerol phosphate skos:exactMatch mesh C034358 phosphatidylglycerophosphate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:172641 Shoyuflavone B skos:exactMatch mesh C114901 shoyuflavone B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:172647 Nervonoylacetone skos:exactMatch mesh C416662 nervonoylacetone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:172654 Desacetylcefotaxime skos:exactMatch mesh C029281 desacetylcefotaxime lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:172655 Ptelatoside A skos:exactMatch mesh C049737 ptelatoside A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:172665 6-Hydroxymelatonin glucuronide skos:exactMatch mesh C052132 6-hydroxymelatonin glucuronide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:172670 Sorbitan oleate skos:exactMatch mesh C018665 sorbitan monooleate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:172673 Artobiloxanthone skos:exactMatch mesh C477220 artobiloxanthone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:172677 Pangamic acid skos:exactMatch mesh C105565 pangamic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:172690 Lucidenic acid A skos:exactMatch mesh C481150 lucidenic acid A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:172692 Mangostenone B skos:exactMatch mesh C461722 mangostenone B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:172693 Dolichosterone skos:exactMatch mesh C505218 dolichosterone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:172699 3,17-Androstanediol glucuronide skos:exactMatch mesh C028895 androstane-3,17-diol glucuronide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:17270 glycerol 2-phosphate skos:exactMatch mesh C031463 beta-glycerophosphoric acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:172708 3'-Hydroxy-T2 Toxin skos:exactMatch mesh C049149 3'-hydroxy-T-2 toxin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:172721 Fasciculol C skos:exactMatch mesh C048024 fasciculol C lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:172727 Menthol propylene glycol carbonate skos:exactMatch mesh C576878 menthol propylene glycol carbonate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:172737 Physalin E skos:exactMatch mesh C553897 physalin E lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:172745 Hericenone C skos:exactMatch mesh C532216 hericenone C lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:172757 Kuwanon Y skos:exactMatch mesh C000608189 kuwanon Y lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:172764 Tuberoside skos:exactMatch mesh C436828 tuberoside lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:172768 Hericenone D skos:exactMatch mesh C532217 hericenone D lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:17278 5beta-cholestane-3alpha,7alpha,12alpha,26-tetrol skos:exactMatch mesh C020262 cholestane-3,7,12,26-tetrol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:172785 Pentasine skos:exactMatch mesh C052219 pentasine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:172793 Lucyoside R skos:exactMatch mesh C442158 lucyoside R lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:172798 Gingerglycolipid C skos:exactMatch mesh C089059 gingerglycolipid C lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:172809 Fasciculol F skos:exactMatch mesh C039732 fasciculol F lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:172811 Cerebroside B skos:exactMatch mesh C504961 cerebroside B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:172845 Spinorphin skos:exactMatch mesh C082392 spinorphin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:172847 alpha-Solamarine skos:exactMatch mesh C026608 alpha-solamargine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:172917 Glucoselysine-6-phosphate skos:exactMatch mesh C508070 2-epsilon-lysino-2-deoxy-6-phosphoglucose lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:17292 beta-D-Gal-(1->3)-beta-D-GlcNAc-(1->3)-beta-D-Gal-(1->4)-beta-D-Glc-(1<->1')-Cer skos:exactMatch mesh C458510 lactotetraosylceramide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:172926 alpha-acoradiene skos:exactMatch mesh C493624 1,8-dimethyl-4-(1-methylethenyl)spiro(4.5)dec-7-ene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:17293 2-aminophenoxazin-3-one skos:exactMatch mesh C005512 3-aminophenoxazone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:172936 longiborneol skos:exactMatch mesh C412581 longiborneol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:172943 bictegravir skos:exactMatch mesh C000620396 bictegravir lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:172944 cabotegravir skos:exactMatch mesh C584914 cabotegravir lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:172946 3-methylfuran skos:exactMatch mesh C039851 3-methylfuran lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:173072 5H-furo[3,2-g]chromen-5-one skos:exactMatch mesh C063951 5H-furo(3,2-g)(1)benzopyran-5-one lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:173077 copanlisib skos:exactMatch mesh C000589253 copanlisib lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:173086 ferrostatin-1 skos:exactMatch mesh C573944 ferrostatin-1 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:173101 Coixol skos:exactMatch mesh C031896 6-methoxybenzoxazolinone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:173104 narlaprevir skos:exactMatch mesh C552043 narlaprevir lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:173105 talaroconvolutin A skos:exactMatch mesh C496115 talaroconvolutin A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:173120 (6R,7S)-himachala-9,11-diene skos:exactMatch mesh C000609685 (6R,7S)-himachala-9,11-diene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:17313 7,8-dihydroxycoumarin skos:exactMatch mesh C039952 daphnetin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:173140 6,9,12,15,18,21-Tetracosahexaenoic acid skos:exactMatch mesh C100600 6,9,12,15,18,21-tetracosahexaenoic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:173141 Glyyunnansapogenin B skos:exactMatch mesh C068183 glyyunnansapogenin B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:173148 Trametenolic acid B skos:exactMatch mesh C586576 trametenolic acid B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:173179 Diferuloylputrescine skos:exactMatch mesh C449540 diferuloylputrescine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:173208 Carbacyclin skos:exactMatch mesh C026678 carboprostacyclin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:173209 Annosquamosin B skos:exactMatch mesh C100909 annosquamosin B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:17327 phytol skos:exactMatch mesh C494251 trans-phytol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:173271 1-Methoxyphaseollin skos:exactMatch mesh C401291 1-methoxyphaseollin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:173297 Pubescenol skos:exactMatch mesh C487256 pubescenol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:173301 endo-1,4-beta-Xylanase skos:exactMatch mesh D043364 Endo-1,4-beta Xylanases lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:173302 Donhexocin skos:exactMatch mesh C115311 donhexocin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:173313 Ethyl nitrite skos:exactMatch mesh C032712 ethyl nitrite lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:173320 3-Amino-2-oxazolidone skos:exactMatch mesh C000209 3-amino-2-oxazolidinone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:173325 Isopropyl formate skos:exactMatch mesh C546536 isopropyl formate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:173335 4-Hydroxybenzylamine skos:exactMatch mesh C048829 4-hydroxybenzylamine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:173338 3-Methylbutyrolactone skos:exactMatch mesh C030033 3-methylbutyrolactone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:173340 Isopropenyl acetate skos:exactMatch mesh C555950 isopropenyl acetate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:173350 3-Hydroxy-2-pentanone skos:exactMatch mesh C004395 acetylethylcarbinol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:173359 N-Lactoyl ethanolamine skos:exactMatch mesh C510961 N-lactoylethanolamine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:173360 Butyl nitrite skos:exactMatch mesh C024225 n-butyl nitrite lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:173365 Ethoxyacetic acid skos:exactMatch mesh C034096 ethoxyacetic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:173370 4-Carboxypyrazole skos:exactMatch mesh C573189 4-carboxypyrazole lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:173373 3-Methyl-1,2-cyclopentanedione skos:exactMatch mesh C471838 3-methyl-1,2-cyclopentanedione lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:173421 Ethyl pyruvate skos:exactMatch mesh C046522 ethyl pyruvate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:173425 Nicotine imine skos:exactMatch mesh C034629 nicotine imine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:173436 Dimethylamphetamine skos:exactMatch mesh C003714 dimethylamphetamine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:173474 2-Acetylthiazole skos:exactMatch mesh C000706870 2-acetylthiazole lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:173496 alpha-Methylphenylalanine skos:exactMatch mesh C012436 alpha-methylphenylalanine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:173521 Methyl levulinate skos:exactMatch mesh C119867 methyl levulinate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:173536 p-hydroxymexiletine skos:exactMatch mesh C045808 4-hydroxymexiletine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:173545 1-Hydroxy-3-methyl-9H-carbazole skos:exactMatch mesh C533653 1-hydroxy-3-methyl-9H-carbazole lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:173550 N-(5-Methyl-3-oxohexyl)alanine skos:exactMatch mesh C100509 N-(5-methyl-3-oxohexyl)alanine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:173569 Sinalexin skos:exactMatch mesh C430120 sinalexin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:173575 2-Methoxy-1,4-benzoquinone skos:exactMatch mesh C438643 2-methoxy-1,4-benzoquinone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:173586 2-Methoxybenzenethiol skos:exactMatch mesh C033509 thioguaiacol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:173600 2-Phenoxyethyl isobutyrate skos:exactMatch mesh C577734 2-phenoxyethyl isobutyrate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:173601 Isoamyl salicylate skos:exactMatch mesh C010203 isoamyl salicylate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:173603 3-Hydroxyadipic acid 3,6-lactone skos:exactMatch mesh C060196 3-hydroxyadipic acid 3,6-lactone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:173633 Brassitin skos:exactMatch mesh C524085 brassitin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:173638 1,6-Hexanedithiol skos:exactMatch mesh C501433 1,6-hexanedithiol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:17364 D-aspartic acid skos:exactMatch mesh C025953 amsonic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:173654 Methyl propyl trisulfide skos:exactMatch mesh C000629103 methyl propyl trisulfide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:173662 4-Phenylpyridine skos:exactMatch mesh C051448 4-phenylpyridine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:173678 Rotundine B skos:exactMatch mesh C411207 rotundine B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:173688 2-Naphthalenethiol skos:exactMatch mesh C401958 2-naphthalenethiol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:173701 Ethyl 2-hydroxy-4-methylpentanoate skos:exactMatch mesh C517080 ethyl 2-hydroxy-4-methylpentanoate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:173703 2,6-Di-tert-butyl-4-hydroxymethylphenol skos:exactMatch mesh C010915 2,6-di-tert-butyl-4-hydroxymethylphenol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:173708 Epilubimin skos:exactMatch mesh C448762 epilubimin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:173719 Curcumol skos:exactMatch mesh C022801 curcumol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:173721 Davanone skos:exactMatch mesh C520072 davanone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:173732 Noradrenochrome skos:exactMatch mesh C088462 noradrenochrome lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:173739 Norsalsolinol skos:exactMatch mesh C020784 norsalsolinol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:173742 Dioscoretine skos:exactMatch mesh C064385 dioscoretine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:173743 1-Phenyl-6,7-dihydroxy-isochroman skos:exactMatch mesh C477354 1-phenyl-6,7-dihydroxy-isochroman lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:173744 Phenethyl salicylate skos:exactMatch mesh C526490 phenethyl salicylate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:173748 3,4-Dihydroxyphenylacetone skos:exactMatch mesh C112295 3,4-Dihydroxyphenylacetone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:173750 Ipomeanine skos:exactMatch mesh C008163 ipomeanine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:173764 4-Ipomeanol skos:exactMatch mesh C001470 4-ipomeanol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:173765 1-Ipomeanol skos:exactMatch mesh C008164 1-ipomeanol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:173774 Desmethylnortriptyline skos:exactMatch mesh C038440 desmethylnortriptyline lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:173779 Herierin III skos:exactMatch mesh C068184 herierin III lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:173780 Herierin IV skos:exactMatch mesh C068185 herierin IV lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:173784 8,11-Heptadecadienal skos:exactMatch mesh C524589 8,11-heptadecadienal lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:173802 Clausine L skos:exactMatch mesh C531182 clausine L lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:173803 Berteroin skos:exactMatch mesh C000599329 berteroin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:173804 Mukonine skos:exactMatch mesh C522709 mukonine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:173815 Cycloalliin skos:exactMatch mesh C015094 cycloalliin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:173817 Tetrahydroneopterin skos:exactMatch mesh C023455 tetrahydroneopterin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:17385 3-(4-hydroxyphenyl)lactic acid skos:exactMatch mesh C001418 4-hydroxyphenyllactic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:173865 Dipropyl trisulfide skos:exactMatch mesh C513796 di-n-propyl trisulfide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:173875 8-Hydroxythioguanine skos:exactMatch mesh C400279 8-hydroxythioguanine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:173893 2-Tetradecylcyclobutanone skos:exactMatch mesh C485436 2-tetradecylcyclobutanone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:173905 Glycerol-phosphate skos:exactMatch mesh D005994 Glycerophosphates lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:173919 8-Hydroxy-7-methoxy-2H-1-benzopyran-2-one skos:exactMatch mesh C479064 8-hydroxy-7-methoxy-2H-1-benzopyran-2-one lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:173921 Allyl phenoxyacetate skos:exactMatch mesh C032791 allyl phenoxyacetate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:173936 Piperonyl acetate skos:exactMatch mesh C026426 piperonyl acetate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:173939 Linalyl phenylacetate skos:exactMatch mesh C475602 3,7-dimethyl-1,6-octadien-3-yl phenylacetate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:173947 Isobutyl salicylate skos:exactMatch mesh C526486 isobutyl salicylate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:173949 Butyl salicylate skos:exactMatch mesh C493238 butyl salicylate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:173965 4,5-Dihydropiperlonguminine skos:exactMatch mesh C521746 4,5-dihydropiperlonguminine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:173985 Cycloclausenamide skos:exactMatch mesh C481911 cycloclausenamide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:173986 Homoclausenamide skos:exactMatch mesh C543053 homoclausenamide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:173992 1-Methoxyspirobrassinin skos:exactMatch mesh C497735 1-methoxyspirobrassinin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:173993 Sinalbin A skos:exactMatch mesh C419328 sinalbin A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:173997 Dihydropanaxacol skos:exactMatch mesh C065781 dihydropanaxacol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:174041 Nordihydrocodeine skos:exactMatch mesh C109998 nordihydrocodeine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:174062 Linalyl propionate skos:exactMatch mesh C475603 3,7-dimethyl-1,6-octadien-3-yl propionate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:17407 2-trans,6-trans-farnesyl diphosphate skos:exactMatch mesh C004808 farnesyl pyrophosphate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:174071 Isobornyl propionate skos:exactMatch mesh C000614740 isobornyl propionate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:174079 4-Hydroxyxanthone skos:exactMatch mesh C000591001 4-hydroxyxanthone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:174084 beta-(2-Methoxyphenoxy)-lactic acid skos:exactMatch mesh C002270 beta-(2-methoxyphenoxy)lactic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:174090 Fusarochromanone skos:exactMatch mesh C054523 fusarochromanone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:174100 N-Acetyl-3-hydroxyprocainamide skos:exactMatch mesh C030899 N-acetyl-3-hydroxyprocainamide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:174101 Nordihydrocapsaicin skos:exactMatch mesh C517386 nordihydrocapsaicin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:174102 Diphenyl disulfide skos:exactMatch mesh C053871 diphenyl disulfide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:174128 5,5',6,6'-tetrahydroxy-3,3'-biindolyl skos:exactMatch mesh C444648 5,5',6,6'-tetrahydroxy-3,3'-biindolyl lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:174138 Piperonyl isobutyrate skos:exactMatch mesh C026427 piperonyl isobutyrate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:174154 Isoacoramone skos:exactMatch mesh C486666 isoacoramone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:174162 Dinitolmide skos:exactMatch mesh D004135 Dinitolmide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:174178 Coriandrin skos:exactMatch mesh C063218 coriandrin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:17418 valeric acid skos:exactMatch mesh C038780 n-pentanoic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:174182 Pondaplin skos:exactMatch mesh C486108 pondaplin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:174189 3-Pentadecylphenol skos:exactMatch mesh C538777 3-pentadecylphenol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:174193 Cyclobrassinin skos:exactMatch mesh C581768 cyclobrassinin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:174211 Austdiol skos:exactMatch mesh C474729 austdiol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:174214 Eremopetasidione skos:exactMatch mesh C431987 eremopetasidione lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:174216 3-Hydroxy-carbofuran skos:exactMatch mesh C028403 3-hydroxycarbofuran lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:174220 Atherosperminine skos:exactMatch mesh C017998 atherospermine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:174226 Cystathionine sulfoxide skos:exactMatch mesh C010094 cystathionine sulfoxide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:174231 Cinnamyl benzoate skos:exactMatch mesh C526330 cinnamyl benzoate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:174232 4'-Methoxychalcone skos:exactMatch mesh C097470 4'-methoxychalcone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:174235 Moracin C skos:exactMatch mesh C475758 moracin C lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:174251 Moracin M skos:exactMatch mesh C568020 moracin M lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:174255 Urolithin C skos:exactMatch mesh C588364 urolithin C lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:174287 7-Dehydropregnenolone skos:exactMatch mesh C480635 7-dehydropregnenolone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:174288 4-Nerolidylcatechol skos:exactMatch mesh C110583 4-nerolidylcatechol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:17429 3-ketosucrose skos:exactMatch mesh C059956 3-ketosucrose lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:174299 Heliannuol D skos:exactMatch mesh C476206 heliannuol D lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:174304 Valerenolic acid skos:exactMatch mesh C037134 valerenolic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:174308 Heliannuol A skos:exactMatch mesh C476207 heliannuol A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:174313 Pandamarilactonine A skos:exactMatch mesh C438418 pandamarilactonine A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:174314 Pandanamine skos:exactMatch mesh C544252 pandanamine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:17433 queuine skos:exactMatch mesh C019549 queuine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:174336 Apotrichodiol skos:exactMatch mesh C054185 apotrichodiol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:174342 Toxin FS2 skos:exactMatch mesh C093284 toxin FS2 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:174343 Urodiolenone skos:exactMatch mesh C044615 urodiolenone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:174366 Atroviridin skos:exactMatch mesh C560830 atroviridin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:174368 Hexyl decanoate skos:exactMatch mesh C515404 hexyl decanoate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:174371 Octyl octanoate skos:exactMatch mesh C084308 octyl octanoate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:174376 Rhapontigenin skos:exactMatch mesh C431126 rhapontigenin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:174390 Urolithin D skos:exactMatch mesh C000595063 urolithin D lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:174395 Americanin A skos:exactMatch mesh C055021 americanin A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:174397 Isoamericanin A skos:exactMatch mesh C055022 isoamericanin A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:174398 4'-Hydroxyflurbiprofen skos:exactMatch mesh C065522 4'-hydroxyflurbiprofen lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:1744 4,5,6,7-Tetrachloro-2-trifluoromethylbenzimidazole skos:exactMatch mesh C005817 4,5,6,7-tetrachloro-2-trifluoromethylbenzimidazole lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:17440 4-nitrophenyl phosphate skos:exactMatch mesh C008644 nitrophenylphosphate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:174418 Dictyoquinazol B skos:exactMatch mesh C473159 dictyoquinazol B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:174420 7-Hydroxy-5-isopropyl-2-methoxy-3-methyl-1,4-naphthoquinone skos:exactMatch mesh C451542 7-hydroxy-5-isopropyl-2-methoxy-3-methyl-1,4-naphthoquinone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:174428 5-Geranyloxy-7-methoxycoumarin skos:exactMatch mesh C442483 5-geranyloxy-7-methoxycoumarin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:174441 N-desethyloxybutynin skos:exactMatch mesh C032681 desethyloxybutynin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:174442 Carbadox skos:exactMatch mesh D002218 Carbadox lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:174443 5-Hydroxydantrolene skos:exactMatch mesh C034271 5-hydroxydantrolene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:174444 Aflatoxin M2 skos:exactMatch mesh C030379 aflatoxin M2 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:174446 Demethoxysudachitin skos:exactMatch mesh C078367 demethoxysudachitin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:174470 Heliespirone A skos:exactMatch mesh C552388 heliespirone A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:174471 Curcolonol skos:exactMatch mesh C522383 curcolonol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:174474 Thellungianin G skos:exactMatch mesh C471105 thellungianin G lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:174481 Istanbulin A skos:exactMatch mesh C056597 istanbulin A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:174488 Piperolactam A skos:exactMatch mesh C457227 piperolactam A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:174491 3-Phenylpropyl cinnamate skos:exactMatch mesh C571596 3-phenylpropyl cinnamate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:174517 7-Hydroxytrichodermol skos:exactMatch mesh C047728 7-hydroxytrichodermol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:174540 8-Hydroxydaidzein skos:exactMatch mesh C498104 8-hydroxydaidzein lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:174541 Licochalcone A skos:exactMatch mesh C070840 licochalcone A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:174546 Rheinanthrone skos:exactMatch mesh C055876 rhein-9-anthrone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:174552 3,5-Dimethoxy-2,7-phenanthrenediol skos:exactMatch mesh C000709449 2,7-dihydroxy-4,6-dimethoxyphenanthrene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:174566 Dehydropipernonaline skos:exactMatch mesh C051966 dehydropipernonaline lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:17457 14'-apo-beta-carotenal skos:exactMatch mesh C071311 beta-apo-14'-carotenal lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:174576 Morachalcone A skos:exactMatch mesh C587519 morachalcone A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:17458 N-methyltyramine skos:exactMatch mesh C036244 methyl-4-tyramine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:174589 Decarbamoylneosaxitoxin skos:exactMatch mesh C076432 decarbamoylneosaxitoxin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:17459 D-iditol skos:exactMatch mesh C030337 diisethionyl-3,3'-dithiobispropionimidate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:174598 Pipernonaline skos:exactMatch mesh C419151 pipernonaline lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:174606 2,3-Epoxysesamone skos:exactMatch mesh C447010 2,3-epoxysesamone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:174608 Hydroxysesamone skos:exactMatch mesh C447009 hydroxysesamone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:174613 Glutamyl-Gamma-glutamate skos:exactMatch mesh C433403 glutamyl-gamma-glutamate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:174638 Thymidine glycol skos:exactMatch mesh C029390 thymidine glycol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:174649 Noralfentanil skos:exactMatch mesh C047303 noralfentanil lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:174650 19-Oxo-deoxycorticosterone skos:exactMatch mesh C033576 19-oxo-deoxycorticosterone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:174651 Isovalerylglucuronide skos:exactMatch mesh C039947 isovalerylglucuronide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:174658 Rosmaricine skos:exactMatch mesh C087746 rosmaricine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:174659 Panaxacol skos:exactMatch mesh C065780 panaxacol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:174680 Cochliophilin A skos:exactMatch mesh C494663 cochliophilin A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:174719 Uralenneoside skos:exactMatch mesh C077605 uralenneoside lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:174733 Licochalcone B skos:exactMatch mesh C541528 licochalcone B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:17474 estrone 3-sulfate skos:exactMatch mesh C017296 estrone sulfate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:174754 Papaveraldine skos:exactMatch mesh C039655 papaveraldine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:174757 3-Hydroxyphloretin skos:exactMatch mesh C521865 3-hydroxyphloretin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:174760 Cartorimine skos:exactMatch mesh C414696 cartorimine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:174777 Coriandrone A skos:exactMatch mesh C587838 coriandrone A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:174778 Coriandrone B skos:exactMatch mesh C587839 coriandrone B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:174780 Wasalexin A skos:exactMatch mesh C401941 wasalexin A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:174795 Nordihydrocapsiate skos:exactMatch mesh C000619851 nordihydrocapsiate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:174806 Nor-ketotifen skos:exactMatch mesh C578473 norketotifen lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:174827 19-Oic-deoxycorticosterone skos:exactMatch mesh C033577 deoxycorticosterone-19-oic lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:174833 3,8-Dihydroxy-1-methylanthraquinone-2-carboxylic acid skos:exactMatch mesh C099619 3,8-dihydroxy-1-methylanthraquinone-2-carboxylic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:174837 Isotrifoliol skos:exactMatch mesh C420347 isotrifoliol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:174847 Annosquamosin A skos:exactMatch mesh C100908 annosquamosin A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:174861 Heliannone B skos:exactMatch mesh C428607 heliannone B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:174862 Heliannone A skos:exactMatch mesh C428608 heliannone A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:174867 Sativanone skos:exactMatch mesh C000607319 sativanone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:174873 Myrigalone A skos:exactMatch mesh C571989 myrigalone A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:174876 Sageone skos:exactMatch mesh C000619558 sageone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:174887 Blumeatin skos:exactMatch mesh C084491 blumeatin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:174920 Deoxyfructosazine skos:exactMatch mesh C069873 deoxyfructosazine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:174924 Cepharadione A skos:exactMatch mesh C488889 cepharadione A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:174947 Azacridone A skos:exactMatch mesh C508467 azacridone A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:174949 Diplodiatoxin skos:exactMatch mesh C456848 diplodiatoxin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:174956 Scutigeral skos:exactMatch mesh C119453 scutigeral lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:174975 Caftaric acid skos:exactMatch mesh C515101 caftaric acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:174977 Quinacridone skos:exactMatch mesh C484590 quinacridone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:174979 Cabreuvin skos:exactMatch mesh C120347 cabreuvin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:174981 4',5,7-Trimethoxyflavone skos:exactMatch mesh C103112 5,7,4'-trimethylapigenin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:174984 3',4',5'-Trimethoxyflavone skos:exactMatch mesh C441202 3',4',5'-trimethoxyflavone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:175043 T2 Triol skos:exactMatch mesh C038854 scirpentriol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:175044 Perilloside A skos:exactMatch mesh C095160 perilloside A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:175045 Oblongine skos:exactMatch mesh C081049 oblongine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:175056 Armillarivin skos:exactMatch mesh C071426 armillarivin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:175090 Oleacein skos:exactMatch mesh C578055 oleacein lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:175111 Berberrubine skos:exactMatch mesh C115958 berberrubine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:175112 Glabrene skos:exactMatch mesh C439678 glabrene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:175117 Shinflavanone skos:exactMatch mesh C120093 shinflavanone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:175120 Bakkenolide B skos:exactMatch mesh C551157 bakkenolide B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:175141 3-Acetoxyscirpene-4,15-diol skos:exactMatch mesh C019233 3-acetoxyscirpene-4,15-diol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:175143 4-Acetoxyscirpene-3,15-diol skos:exactMatch mesh C431246 4-acetoxyscirpene-3,15-diol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:175144 Monoacetoxyscirpenol skos:exactMatch mesh C045747 monoacetoxyscirpenol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:175160 Moracin O skos:exactMatch mesh C540981 moracin O lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:175161 Moracin P skos:exactMatch mesh C540980 moracin P lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:175163 1,5-Bis(4-hydroxy-3-methoxyphenyl)-1,4-pentadien-3-one skos:exactMatch mesh C000597748 hylin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:175176 Laurotetanine skos:exactMatch mesh C008256 laurotetanine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:175181 Galbanic acid skos:exactMatch mesh C048972 galbanic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:175189 7-hydroxygranisetron skos:exactMatch mesh C092106 7-hydroxygranisetron lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:175202 Armillaritin skos:exactMatch mesh C071425 armillaritin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:175211 Americanol A skos:exactMatch mesh C074373 americanol A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:175212 Isoamericanol A skos:exactMatch mesh C074374 isoamericanol A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:175220 Hericenone A skos:exactMatch mesh C000613362 hericenone A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:175256 Hovenitin I skos:exactMatch mesh C105698 hovenitin I lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:175260 Gancaonin Q skos:exactMatch mesh C571268 gancaonin Q lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:175262 Lipoyllysine skos:exactMatch mesh C067769 lipoyllysine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:175290 3-Isomangostin skos:exactMatch mesh C114655 3-isomangostin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:175291 Tipredane skos:exactMatch mesh C051756 tipredane lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:175302 Acetyldeoxynivalenol skos:exactMatch mesh C038972 acetyldeoxynivalenol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:175304 Dodecyl gallate skos:exactMatch mesh C008259 lauryl gallate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:175308 Garcinone C skos:exactMatch mesh C000596092 garcinone C lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:175322 Zapotin skos:exactMatch mesh C517807 zapotin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:17533 N-acetyl-L-glutamic acid skos:exactMatch mesh C016195 N-acetylglutamic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:175335 Apo-8'-lycopenal skos:exactMatch mesh C572536 apo-8'-lycopenal lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:175337 Asteltoxin skos:exactMatch mesh C030923 asteltoxin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:175343 Veranisatin A skos:exactMatch mesh C084322 veranisatin A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:175345 Myzodendrone skos:exactMatch mesh C508700 myzodendrone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:175358 Diosbulbin B skos:exactMatch mesh C569454 diosbulbin B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:175387 Isoangustone A skos:exactMatch mesh C551631 isoangustone A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:175399 Glisoflavanone skos:exactMatch mesh C420348 glisoflavanone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:17540 methyl beta-D-galactoside skos:exactMatch mesh C031552 methyl beta-galactoside lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:175403 Isorosmanol skos:exactMatch mesh C000627642 isorosmanol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:175411 19-Noraldosterone skos:exactMatch mesh C027514 19-noraldosterone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:175413 5'-Hydroxypiroxicam skos:exactMatch mesh C051024 5'-hydroxypiroxicam lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:175443 Cohumulone skos:exactMatch mesh C442487 cohumulone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:175445 29-Methylisofucosterol skos:exactMatch mesh C002248 29-methylisofucosterol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:175487 Armillarilin skos:exactMatch mesh C064712 armillarilin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:175496 Erinacine E skos:exactMatch mesh C116931 erinacine E lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:175499 Erinacine A skos:exactMatch mesh C000595639 erinacine A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:175500 Erinacine B skos:exactMatch mesh C518057 erinacine B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:175502 Cycloartocarpesin skos:exactMatch mesh C000604029 cycloartocarpesin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:175515 Gancaonin A skos:exactMatch mesh C507552 gancaonin A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:175531 Morusinol skos:exactMatch mesh C576719 morusinol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:175537 Artocarpesin skos:exactMatch mesh C531017 artocarpesin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:175554 1-Methoxyphaseollidin skos:exactMatch mesh C401292 1-methoxyphaseollidin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:175562 Muzanzagenin skos:exactMatch mesh C109392 muzanzagenin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:175566 desmethylastemizole skos:exactMatch mesh C040463 desmethylastemizole lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:175569 Veranisatin B skos:exactMatch mesh C084323 veranisatin B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:175570 Licoagrodione skos:exactMatch mesh C532794 licoagrodione lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:175572 Licofuranone skos:exactMatch mesh C071086 licofuranone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:175575 Kinobeon A skos:exactMatch mesh C477467 kinobeon A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:175585 Xanthoplanine skos:exactMatch mesh C000709020 xanthoplanine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:17559 3alpha(S)-strictosidine skos:exactMatch mesh C021093 strictosidine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:175592 Cyanidin 3-galactoside skos:exactMatch mesh C546035 cyanidin 3-galactoside lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:175602 4'-Hydroxy-5,6,7,8-tetramethoxyflavone skos:exactMatch mesh C559374 4'-hydroxy-5,6,7,8-tetramethoxyflavone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:175603 2-Phenylaminoadenosine skos:exactMatch mesh C026708 2-phenylaminoadenosine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:175605 Glicophenone skos:exactMatch mesh C419231 glicophenone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:175607 6-Gingesulfonic acid skos:exactMatch mesh C077820 6-gingesulfonic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:175610 Jaceidin skos:exactMatch mesh C548020 jaceidin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:175611 Sudachitin skos:exactMatch mesh C513626 sudachitin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:175620 Edulisin IV skos:exactMatch mesh C089695 edulisin IV lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:175627 Withanolide B skos:exactMatch mesh C000630668 withanolide B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:175636 Macrocarpal C skos:exactMatch mesh C518773 macrocarpal C lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:175649 Hydroxyisonobilin skos:exactMatch mesh C032659 hydroxyisonobilin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:17566 indole-3-acetonitrile skos:exactMatch mesh C518704 3-indolylacetonitrile lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:175666 8-Pentanoylneosolaniol skos:exactMatch mesh C073624 8-pentanoylneosolaniol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:175669 N-Desmethylrosuvastatin skos:exactMatch mesh C551067 N-desmethylrosuvastatin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:175682 18-Hydroxy-11-dehydrotetrahydrocorticosterone skos:exactMatch mesh C027925 18-hydroxy-11-dehydrotetrahydrocorticosterone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:175684 Methyl lucidenate F skos:exactMatch mesh C437029 methyl lucidenate F lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:175704 Macrocarpal B skos:exactMatch mesh C518772 macrocarpal B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:175710 Macrocarpal H skos:exactMatch mesh C102709 macrocarpal H lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:175728 27-Hydroxyisomangiferolic acid skos:exactMatch mesh C000622965 27-hydroxyisomangiferolic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:175729 Glicoricone skos:exactMatch mesh C071085 glicoricone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:175742 Lucidenic acid B skos:exactMatch mesh C527145 lucidenic acid B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:175749 Lucidenic acid C skos:exactMatch mesh C527146 lucidenic acid C lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:175751 Sesamolin skos:exactMatch mesh C054124 sesamolin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:175757 Neouralenol skos:exactMatch mesh C069534 neouralenol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:175758 Uralenol skos:exactMatch mesh C069533 uralenol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:175768 8-Hexanoylneosolaniol skos:exactMatch mesh C073623 8-hexanoylneosolaniol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:175789 6',7'-Dihydroxybergamottin skos:exactMatch mesh C104774 6',7'-dihydroxybergamottin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:175802 Hymenoxin skos:exactMatch mesh C068785 hymenoxin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:175805 3-O-Methylrosmarinic acid skos:exactMatch mesh C487180 3-O-methylrosmarinic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:175806 8-Hydroxypinoresinol skos:exactMatch mesh C542293 8-hydroxypinoresinol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:175814 Fragransin C1 skos:exactMatch mesh C000626856 fragransin C1 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:175825 Cinnatriacetin A skos:exactMatch mesh C121126 cinnatriacetin A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:175839 Withaperuvin E skos:exactMatch mesh C101560 withaperuvin E lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:175844 Cycloheterophyllin skos:exactMatch mesh C107099 cycloheterophyllin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:175846 Artonin B skos:exactMatch mesh C523558 artonin B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:175864 Sugetriol triacetate skos:exactMatch mesh C541831 sugetriol triacetate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:175865 Neokestose skos:exactMatch mesh C072434 neokestose lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:175877 Nephritogenoside skos:exactMatch mesh C015382 nephritogenoside lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:175882 Olsalazine-O-sulfate skos:exactMatch mesh C058659 olsalazine-O-sulfate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:175895 Licofuranocoumarin skos:exactMatch mesh C420346 licofuranocoumarin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:175896 Licopyranocoumarin skos:exactMatch mesh C063348 licopyranocoumarin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:175907 Uralene skos:exactMatch mesh C082049 uralene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:175912 Tetrahydropersin skos:exactMatch mesh C000625521 tetrahydropersin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:175921 Corchoroside B skos:exactMatch mesh C000509 corchoroside B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:17593 maltooligosaccharide skos:exactMatch mesh C021705 maltooligosaccharides lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:175930 Artemetin skos:exactMatch mesh C054132 artemetin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:175936 8-Epidiosbulbin E acetate skos:exactMatch mesh C534602 8-epidiosbulbin E acetate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:175938 Edulisin III skos:exactMatch mesh C089694 edulisin III lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:17597 4-hydroxybenzaldehyde skos:exactMatch mesh C011483 4-hydroxybenzaldehyde lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:17600 hexadecanal skos:exactMatch mesh C001647 hexadecanal lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:17601 6,7-dimethyl-8-(1-D-ribityl)lumazine skos:exactMatch mesh C001061 6,7-dimethyl-8-ribityllumazine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:176023 Furohyperforin skos:exactMatch mesh C000622178 furohyperforin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:176040 Ganoderic acid Me skos:exactMatch mesh C534033 ganoderic acid Me lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:176049 Ustiloxin C skos:exactMatch mesh C089078 ustiloxin C lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:176052 gamma-Chaconine skos:exactMatch mesh C110290 gamma-chaconine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:176066 cis-Solamin skos:exactMatch mesh C519987 cis-solamin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:17609 cortisol 21-acetate skos:exactMatch mesh C021650 hydrocortisone acetate lexical 0.9 https://github.com/indralab/panacea_indra/blob/master/panacea_indra/make_ctd_tests.py +chebi CHEBI:176139 Murisolin skos:exactMatch mesh C507543 murisolin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:176140 Muricin H skos:exactMatch mesh C455169 muricin H lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:17615 1,2-diacyl-3-beta-D-galactosyl-sn-glycerol skos:exactMatch mesh C009909 monogalactosyldiacylglycerol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:176156 25-Hydroxyvitamin D2-25-glucuronide skos:exactMatch mesh C028862 25-hydroxyvitamin D2-25-glucuronide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:176179 Didymin skos:exactMatch mesh C552234 didymin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:17618 bis-D-fructose 2',1:2,1'-dianhydride skos:exactMatch mesh C036365 difructose anhydride I lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:176180 Postin skos:exactMatch mesh C063740 cystatin C, N-terminal tetrapeptide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:176186 Cavipetin B skos:exactMatch mesh C487916 cavipetin B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:176190 Parviflorin skos:exactMatch mesh C113058 parviflorin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:176193 Atemoyacin B skos:exactMatch mesh C407886 atemoyacin B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:176204 1,4-Di-O-caffeoylquinic acid skos:exactMatch mesh C512731 1,4-di-O-caffeoylquinic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:176213 Rollidecin D skos:exactMatch mesh C110003 rollidecin D lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:176227 Muricatenol skos:exactMatch mesh C451543 muricatenol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:176229 Ganoderic acid H skos:exactMatch mesh C515007 ganoderic acid H lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:176233 Tocophersolan skos:exactMatch mesh C014225 tocophersolan lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:176252 Fasciculic acid A skos:exactMatch mesh C063644 fasciculic acid A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:176255 Ginsenoside Rh4 skos:exactMatch mesh C101280 ginsenoside Rh4 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:176257 Neferine skos:exactMatch mesh C057222 neferine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:176258 Ponasteroside A skos:exactMatch mesh C539787 ponasteroside A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:176265 Momordicoside L skos:exactMatch mesh C522769 momordicoside L lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:176276 Momordicoside K skos:exactMatch mesh C522770 momordicoside K lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:176279 Lucyoside N skos:exactMatch mesh C071083 lucyoside N lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:17628 2-aminoacetaldehyde skos:exactMatch mesh C015662 2-aminoacetaldehyde lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:176284 alpha-Amyrin palmitate skos:exactMatch mesh C476167 alpha-amyrin palmitate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:176296 Ramontoside skos:exactMatch mesh C070689 ramontoside lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:176297 Convalloside skos:exactMatch mesh C086957 convalloside lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:176312 Ginsenoside Rg6 skos:exactMatch mesh C586219 ginsenoside Rg6 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:176314 Notoginsenoside R2 skos:exactMatch mesh C487685 notoginsenoside R2 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:176315 Ginsenoside F3 skos:exactMatch mesh C407884 ginsenoside F3 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:176318 Fumonisin FP2 skos:exactMatch mesh C102485 fumonisin FP2 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:176319 Fumonisin FP3 skos:exactMatch mesh C102486 fumonisin FP3 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:176324 Centellasaponin B skos:exactMatch mesh C450647 centellasaponin B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:176326 Hovenidulcioside A1 skos:exactMatch mesh C093742 hovenidulcioside A1 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:176330 Pisumsaponin II skos:exactMatch mesh C422342 pisumsaponin II lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:176335 SP2509 skos:exactMatch mesh C000594309 SP2509 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:17639 3-oxo-5beta-cholanic acid skos:exactMatch mesh C046230 3-oxocholan-24-oic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:176432 jenamidine B skos:exactMatch mesh C479697 jenamidine B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:176433 Jenamidine A skos:exactMatch mesh C479696 jenamidine A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:176434 Jenamidine C skos:exactMatch mesh C479698 jenamidine C lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:17644 putidaredoxin skos:exactMatch mesh C100137 putidaredoxin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:176440 4-Fluorocinnamic acid skos:exactMatch mesh C042046 4-fluorocinnamic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:176449 4-Hydroxylidocaine skos:exactMatch mesh C000629689 4-hydroxylidocaine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:176450 Pyroglutamylleucine skos:exactMatch mesh C041765 pyroglutamylleucine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:176451 Agaridoxin skos:exactMatch mesh C012171 agaridoxin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:176455 4-Methylglutamic acid skos:exactMatch mesh C046105 4-methylglutamic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:176457 Aldosine skos:exactMatch mesh C092672 aldosine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:176463 Urothion skos:exactMatch mesh C036390 urothion lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:176471 Pyridosine skos:exactMatch mesh C019068 pyridosine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:176473 S-propylcysteine skos:exactMatch mesh C028742 S-propylcysteine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:176481 Galactose 6-sulfate skos:exactMatch mesh C086947 galactose 6-sulfate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:176517 dimethyl diselenide skos:exactMatch mesh C037445 dimethyldiselenide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:17655 4-hydroxy-2-oxopentanoic acid skos:exactMatch mesh C018972 4-hydroxy-2-oxovalerate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:176565 methyl 3-(4-hydroxyphenyl)propionate skos:exactMatch mesh C535177 methyl 3-(4-hydroxyphenyl)propionate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:176566 calcium-43 atom skos:exactMatch mesh C000615349 Calcium-43 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:176573 selenium-82 atom skos:exactMatch mesh C000615454 Selenium-82 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:176574 zinc-66 atom skos:exactMatch mesh C000615414 Zinc-66 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:176575 nickel-60 atom skos:exactMatch mesh C000615396 Nickel-60 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:176578 cobalt-59 atom skos:exactMatch mesh D003035 Cobalt lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:17660 N(6)-dimethylallyladenine skos:exactMatch mesh C001478 N(6)-(delta(2)-isopentenyl)adenine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:17661 GDP-6-deoxy-alpha-D-mannose skos:exactMatch mesh C422949 GDP-rhamnose lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:176653 1,7-bis(4-hydroxy-3-methoxyphenyl)-1,4,6-heptatrien-3-one skos:exactMatch mesh C471106 1,7-bis(4-hydroxy-3-methoxyphenyl)-1,4,6-heptatrien-3-one lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:176668 1,7-Bis(4-hydroxyphenyl)-1-heptene-3,5-dione skos:exactMatch mesh C470147 1,7-bis(4-hydroxyphenyl)-1-heptene-3,5-dione lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:176669 5,7-Dihydroxy-4-methylcoumarin skos:exactMatch mesh C506459 5,7-dihydroxy-4-methylcoumarin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:176702 Emblicanin B skos:exactMatch mesh C467023 emblicanin B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:176731 3-Hydroxy-3'-oxo-beta,epsilon-carotene skos:exactMatch mesh C051820 3'-oxolutein lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:176744 11-deoxyprostaglandin E1 skos:exactMatch mesh C034008 11-deoxyprostaglandin E1 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:176780 dihydroactinidiolide skos:exactMatch mesh C010711 dihydroactinidiolide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:176782 isodomoic acid A skos:exactMatch mesh C524833 isodomoic acid A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:176788 dizocilpine maleate skos:exactMatch mesh D016291 Dizocilpine Maleate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:176789 iron tetraphenylporphyrin skos:exactMatch mesh C032547 iron tetraphenylporphyrin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:176795 pyridinium chlorochromate skos:exactMatch mesh C111019 pyridinium chlorochromate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:176796 pyridinium dichromate skos:exactMatch mesh C061685 pyridinium dichromate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:176806 carboxymethyl-pachyman skos:exactMatch mesh C568908 carboxymethylpachymaran lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:176817 Cyclo(Tyr-Pro) skos:exactMatch mesh C118541 cyclo(tyrosyl-prolyl) lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:176825 Tributyl citrate skos:exactMatch mesh C039783 tributyl citrate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:176844 niraparib skos:exactMatch mesh C545685 niraparib lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:176869 aloenin skos:exactMatch mesh C033526 aloenin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:17689 sphingosine-1-phosphocholine skos:exactMatch mesh C005356 sphingosine phosphorylcholine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:176919 N-Hydroxy-IQ skos:exactMatch mesh C032012 2-hydroxyamino-3-methylimidazolo(4,5-f)quinoline lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:176920 AG 2034 skos:exactMatch mesh C105066 AG 2034 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:176923 Mycolactone F skos:exactMatch mesh C515306 mycolactone F lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:176925 Tolytoxin skos:exactMatch mesh C068527 tolytoxin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:176926 Azatyrosine skos:exactMatch mesh C011870 beta-(5-hydroxy-2-pyridyl)alanine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:176928 Gomisin D skos:exactMatch mesh C082092 gomisin D lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:176945 Hemibrevetoxin B skos:exactMatch mesh C409729 hemibrevetoxin B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:176949 Pumiliotoxin A skos:exactMatch mesh C035482 pumiliotoxin A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:176957 Terpendole B skos:exactMatch mesh C092162 terpendole B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:17696 isocyanuric acid skos:exactMatch mesh C509473 isocyanuric acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:176962 presqualene alcohol skos:exactMatch mesh C003209 presqualene alcohol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:17697 N-acetylserotonin skos:exactMatch mesh C006389 N-acetylserotonin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:176975 KP1339 skos:exactMatch mesh C000600110 NKP-1339 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:17700 undecan-2-one skos:exactMatch mesh C526928 undecan-2-one lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:177003 methylheptenone skos:exactMatch mesh C029750 methylheptenone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:177019 5,9-hexacosadienoic acid skos:exactMatch mesh C046761 5,9-hexacosadienoic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:177037 Benzoylcholine skos:exactMatch mesh D001588 Benzoylcholine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:177042 3-Hydroxy-beta-lapachone skos:exactMatch mesh C106995 3-hydroxylapachone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:177044 Claussequinone skos:exactMatch mesh C088068 claussequinone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:177046 Prothioconazole-desthio skos:exactMatch mesh C000656708 prothioconazole-desthio lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:177047 Velutin skos:exactMatch mesh C577620 5,4'-dihydroxy-7,3'-dimethoxyflavone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:177073 Syringetin-3-O-galactoside skos:exactMatch mesh C553080 syringetin-3-O-galactoside lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:177080 1,2-dicaproyl-3-stearoylglycerol skos:exactMatch mesh C539095 1,2-dicaproyl-3-stearoylglycerol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:177122 3-Hydroxystigmast-5-en-7-one skos:exactMatch mesh C071711 3-hydroxystigmast-5-en-7-one lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:17715 quinoline-2,8-diol skos:exactMatch mesh C049535 2,8-dihydroxyquinoline lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:177197 L-803087 skos:exactMatch mesh C429628 L803087 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:17724 N,N-dimethylglycine skos:exactMatch mesh C025138 dimethylglycine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:17725 alpha-N-acetylneuraminyl-(2->6)-beta-D-galactosyl-(1->4)-N-acetyl-beta-D-glucosamine skos:exactMatch mesh C062923 N-acetylneuraminosyl(alpha2-6)lactosamine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:177264 hesperetin-7-O-glucuronide skos:exactMatch mesh C587870 hesperetin-7-O-glucuronide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:17733 aldehydo-D-galactose 6-phosphate skos:exactMatch mesh C038269 galactose-6-phosphate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:17735 N,N-dimethylaniline N-oxide skos:exactMatch mesh C005141 dimethylaniline N-oxide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:177375 Diendiol skos:exactMatch mesh C010443 diendiol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:177378 3-oxo-alpha-ionol skos:exactMatch mesh C525367 3-oxo-alpha-ionol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:177384 hotrienol skos:exactMatch mesh C476493 3,7-dimethyl-1,5(E),7-octatrien-3-ol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:177386 3-(4-azidobenzyl)-4-hydroxycoumarin skos:exactMatch mesh C067803 3-(4-azidobenzyl)-4-hydroxycoumarin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:177387 brequinar skos:exactMatch mesh C046943 brequinar lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:177389 butanethiol skos:exactMatch mesh C025540 n-butyl mercaptan lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:177391 Ceronapril skos:exactMatch mesh C054518 ceronapril lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:177393 Izonsteride skos:exactMatch mesh C407322 Izonsteride lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:177399 Umirolimus skos:exactMatch mesh C518022 umirolimus lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:177401 Almorexant skos:exactMatch mesh C519150 almorexant lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:177403 8-Hydroxyclomipramine skos:exactMatch mesh C053390 8-hydroxyclomipramine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:177405 5-(8,11,14-pentadecatrienyl)resorcinol skos:exactMatch mesh C088114 5-(8,11,14-pentadecatrienyl)resorcinol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:177406 Bardoxolone methyl skos:exactMatch mesh C445068 methyl 2-cyano-3,12-dioxoolean-1,9-dien-28-oate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:177408 4-tert-Butylphenyl Salicylate skos:exactMatch mesh C000618316 4-tert-butylphenyl salicylate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:177411 boxidine skos:exactMatch mesh C100055 boxidine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:177414 Meclorisone dibutyrate skos:exactMatch mesh C003656 meclorisone dibutyrate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:177416 Pexacerfont skos:exactMatch mesh C542342 pexacerfont lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:177418 carzenide skos:exactMatch mesh C001910 carzenide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:17742 4-hydroxy-2-oxoglutarate(2-) skos:exactMatch mesh C018989 2-keto-4-hydroxyglutarate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:177426 Chloramphenicol stearate skos:exactMatch mesh C032008 chloramphenicol stearate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:177432 2,2-Bis(hydroxymethyl)propionic acid skos:exactMatch mesh C110034 2,2-bis(hydroxymethyl)-propionic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:177433 actodigin skos:exactMatch mesh C006277 actodigin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:177435 3-Hydroxytridecanoic acid skos:exactMatch mesh C504652 3-hydroxytridecanoic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:177436 4-hydroxy-4-(indol-3-ylmethyl)glutamic acid skos:exactMatch mesh C414924 4-hydroxy-4-(indol-3-ylmethyl)glutamic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:177438 Nelotanserin skos:exactMatch mesh C546600 nelotanserin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:177440 naltriben skos:exactMatch mesh C068868 naltrindole benzofuran lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:177442 Ancriviroc skos:exactMatch mesh C438583 Ancriviroc lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:177444 Valorphin skos:exactMatch mesh C045483 valorphin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:177448 Epelsiban skos:exactMatch mesh C571185 epelsiban lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:17745 coniferol skos:exactMatch mesh C010559 coniferyl alcohol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:177453 Elagolix skos:exactMatch mesh C539351 elagolix lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:177455 kansuinin B skos:exactMatch mesh C470413 kansuinin B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:177459 Golotimod skos:exactMatch mesh C470075 golotimod lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:177467 Opiorphin skos:exactMatch mesh C517879 glutaminyl-arginyl-phenylalanyl-seryl-arginine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:177469 perphenazine decanoate skos:exactMatch mesh C047342 perphenazine decanoate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:177470 Cloprostenol skos:exactMatch mesh D003008 Cloprostenol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:177480 Monatepil skos:exactMatch mesh C067818 monatepil lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:177487 4-Acetylaminobiphenyl skos:exactMatch mesh C020853 4-acetylaminobiphenyl lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:177492 cositecan skos:exactMatch mesh C406143 cositecan lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:177494 Tozadenant skos:exactMatch mesh C000593256 tozadenant lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:177496 pinadoline skos:exactMatch mesh C051983 pinadoline lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:177500 calceolarioside A skos:exactMatch mesh C083066 calceolarioside A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:177504 Butylphthalide skos:exactMatch mesh C027125 3-n-butylphthalide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:177507 treloxinate skos:exactMatch mesh C002236 treloxinate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:177512 Sagopilone skos:exactMatch mesh C530494 sagopilone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:177515 arteflene skos:exactMatch mesh C090720 arteflene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:177517 Bifeprunox skos:exactMatch mesh C509981 bifeprunox lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:177518 Crolibulin skos:exactMatch mesh C000598757 crolibulin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:17752 N(6)-acetyl-L-lysine skos:exactMatch mesh C016949 N-epsilon-acetyllysine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:177520 Apratastat skos:exactMatch mesh C484302 apratastat lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:177532 Diphenyl sulfoxide skos:exactMatch mesh C048860 diphenyl sulfoxide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:177536 Galeterone skos:exactMatch mesh C500627 3-hydroxy-17-(1H-benzimidazole-1-yl)androsta-5,16-diene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:177541 remogliflozin etabonate skos:exactMatch mesh C532127 remogliflozin etabonate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:177543 terrein skos:exactMatch mesh C439087 terrein lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:177546 arildone skos:exactMatch mesh C020706 arildone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:177549 palinavir skos:exactMatch mesh C107199 palinavir lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:177558 Apaziquone skos:exactMatch mesh C060817 apaziquone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:177559 Adhyperforin skos:exactMatch mesh C423123 adhyperforin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:177562 Selamectin skos:exactMatch mesh C414354 selamectin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:177564 irdabisant skos:exactMatch mesh C561238 6-(4-(3-(2-methylpyrrolidin-1-yl)propoxy)phenyl)-2H-pyridazin-3-one lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:177569 14,18-Dihydroxy-12-oxo-9,13,15-octadecatrienoic acid skos:exactMatch mesh C099800 cibaric acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:177570 Deslorelin skos:exactMatch mesh C066438 deslorelin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:177572 Nisterime acetate skos:exactMatch mesh C016943 nisterime acetate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:177573 Suritozole skos:exactMatch mesh C065324 suritozole lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:177577 Fenestrel skos:exactMatch mesh C004381 fenestrel lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:177579 lergotrile skos:exactMatch mesh C031875 lergotrile lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:177582 Jujuboside A skos:exactMatch mesh C087808 jujuboside A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:177583 Hydroxyhaloperidol skos:exactMatch mesh C040692 4-(4-(4-chlorophenyl)-4-hydroxy-1-piperidinyl)-1-(4-fluorophenyl)-1-butanol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:177586 Pancopride skos:exactMatch mesh C078370 pancopride lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:177588 beloxamide skos:exactMatch mesh C003105 beloxamide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:177589 Anhydrovitamin A skos:exactMatch mesh C031469 anhydrovitamin A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:177592 Salvinorin B skos:exactMatch mesh C508456 salvinorin B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:177593 libenzapril skos:exactMatch mesh C052134 libenzapril lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:177596 Fukinolic acid skos:exactMatch mesh C116090 fukinolic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:177597 Fispemifene skos:exactMatch mesh C532124 fispemifene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:177600 Hemorphin-4 skos:exactMatch mesh C049857 hemorphin 4 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:177602 Rifamexil skos:exactMatch mesh C063797 rifamexil lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:177603 Icotidine skos:exactMatch mesh C043465 icotidine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:177605 Samidorphan skos:exactMatch mesh C000606131 3-carboxamido-4-hydroxynaltrexone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:177607 Taranabant skos:exactMatch mesh C521311 N-(3-(4-chlorophenyl)-2-(3-cyanophenyl)-1-methylpropyl)-2-methyl-2-((5-(trifluoromethyl)pyridin-2-yl)oxy)propanamide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:177608 Aglepristone skos:exactMatch mesh C419063 aglepristone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:177609 Tariquidar skos:exactMatch mesh C402343 tariquidar lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:177610 Dinsed skos:exactMatch mesh C015168 dinsed lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:177613 Diadinoxanthin skos:exactMatch mesh C033808 diadinoxanthin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:177618 spinacine skos:exactMatch mesh C055336 spinacine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:177626 Ciprostene skos:exactMatch mesh C045329 ciprostene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:17763 4-methylumbelliferyl acetate skos:exactMatch mesh C032078 4-methylumbelliferyl acetate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:177631 Ulipristal skos:exactMatch mesh C094854 ulipristal lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:177640 Mycalolide B skos:exactMatch mesh C080978 mycalolide B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:177641 Elsibucol skos:exactMatch mesh C487958 elsibucol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:177643 AL 8810 skos:exactMatch mesh C121227 AL 8810 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:177644 Jujuboside B skos:exactMatch mesh C540008 jujuboside B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:177645 benurestat skos:exactMatch mesh C009851 benurestat lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:177647 Rolofylline skos:exactMatch mesh C073525 rolofylline lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:177649 Anecortave skos:exactMatch mesh C108424 Anecortave lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:177651 lactide skos:exactMatch mesh C091880 dilactide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:177653 ATEE skos:exactMatch mesh C007651 ethyl N-alpha-acetyl-tyrosinate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:177654 timobesone acetate skos:exactMatch mesh C059452 timobesone acetate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:177658 Ganaxolone skos:exactMatch mesh C105051 ganaxolone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:17766 cyclohexane-1,3-dione skos:exactMatch mesh C004636 1,3-cyclohexanedione lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:177661 lifarizine skos:exactMatch mesh C067927 lifarizine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:177663 quazolast skos:exactMatch mesh C046483 quazolast lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:177665 Stizolobic acid skos:exactMatch mesh C013261 stizolobic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:177666 Isocoproporphyrin skos:exactMatch mesh C005524 isocoproporphyrin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:177667 Sibrafiban skos:exactMatch mesh C100917 sibrafiban lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:177671 Ilepcimide skos:exactMatch mesh C037547 ilepcimide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:177676 terlakiren skos:exactMatch mesh C076964 terlakiren lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:177680 onjisaponin B skos:exactMatch mesh C474233 onjisaponin B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:177683 nivazol skos:exactMatch mesh C041704 nivazol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:177685 Tiodazosin skos:exactMatch mesh C019578 tiodazosin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:177696 minalrestat skos:exactMatch mesh C473212 minalrestat lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:177698 skimmin skos:exactMatch mesh C581268 skimmin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:177705 Birinapant skos:exactMatch mesh C582429 birinapant lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:177706 davunetide skos:exactMatch mesh C425904 davunetide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:177708 Eptapirone skos:exactMatch mesh C115127 eptapirone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:177716 tioxacin skos:exactMatch mesh C012064 tioxic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:177717 sucrose acetate isobutyrate skos:exactMatch mesh C002885 sucrose acetate isobutyrate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:177719 Avasimibe skos:exactMatch mesh C423185 avasimibe lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:17772 (S)-tetrahydrocolumbamine skos:exactMatch mesh C000589018 isocorypalmine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:177725 Ulimorelin skos:exactMatch mesh C528884 ulimorelin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:177726 flordipine skos:exactMatch mesh C042357 flordipine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:177727 moiramide B skos:exactMatch mesh C487819 moiramide B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:177728 sufotidine skos:exactMatch mesh C062101 sufotidine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:177731 Sabeluzole skos:exactMatch mesh C055163 sabeluzole lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:177733 Adaprolol skos:exactMatch mesh C068416 adaprolol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:177736 Telotristat skos:exactMatch mesh C000592493 telotristat lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:177737 lamifiban skos:exactMatch mesh C084062 lamifiban lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:177740 Iosimenol skos:exactMatch mesh C450045 iosmin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:177741 Morphiceptin skos:exactMatch mesh C028889 morphiceptin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:177743 aspoquinolone A skos:exactMatch mesh C522533 aspoquinolone A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:177744 fluanisone skos:exactMatch mesh C005014 fluanisone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:177751 aurofusarin skos:exactMatch mesh C083578 aurofusarin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:177758 Omadacycline skos:exactMatch mesh C000591640 omadacycline lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:177759 Dithizone skos:exactMatch mesh D004230 Dithizone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:177760 terbogrel skos:exactMatch mesh C112331 terbogrel lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:177762 Alovudine skos:exactMatch mesh C002854 alovudine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:177766 zuclomifene skos:exactMatch mesh D064696 Zuclomiphene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:177767 Dermorphin skos:exactMatch mesh C030058 dermorphin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:177777 cipamfylline skos:exactMatch mesh C466758 cipamfylline lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:177783 eniluracil skos:exactMatch mesh C073482 eniluracil lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:177789 Carnidazole skos:exactMatch mesh C014394 carnidazole lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:177790 biclotymol skos:exactMatch mesh C533149 2,2-methylenebis(4-chloro-3-methyl-isopropylphenol) lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:177800 artilide skos:exactMatch mesh C095507 artilide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:177801 Laninamivir skos:exactMatch mesh C546918 laninamivir lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:177804 Eravacycline skos:exactMatch mesh C571179 eravacycline lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:177805 5-Phenyl-2-pyridinamine skos:exactMatch mesh C044515 5-phenyl-2-pyridinamine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:17781 lumichrome skos:exactMatch mesh C001559 7,8-dimethylalloxazine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:177810 Succinobucol skos:exactMatch mesh C471047 succinobucol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:177812 Trecetilide skos:exactMatch mesh C117132 trecetilide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:177813 Triacetonamine skos:exactMatch mesh C002273 tempidon lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:177815 Flumezapine skos:exactMatch mesh C045983 flumezapine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:177824 terameprocol skos:exactMatch mesh C076852 terameprocol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:177833 cilengitide skos:exactMatch mesh C422910 Cilengitide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:177835 2-Methoxynaphthalene skos:exactMatch mesh C082155 2-methoxynaphthalene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:177844 avitriptan skos:exactMatch mesh C103231 avitriptan lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:177845 terikalant skos:exactMatch mesh C063899 terikalant lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:177848 1,12-Dihydroxy-1,6,12,17-tetraazacyclodocosane-2,5,13,16-tetrone skos:exactMatch mesh C054842 bisucaberin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:177849 bremelanotide skos:exactMatch mesh C476721 bremelanotide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:177851 Glabrol skos:exactMatch mesh C420863 glabrol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:177853 danegaptide skos:exactMatch mesh C000619914 danegaptide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:177856 fertirelin skos:exactMatch mesh C009936 fertirelin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:177858 gosogliptin skos:exactMatch mesh C558848 gosogliptin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:17786 N-acetyl-L-leucine skos:exactMatch mesh C088117 acetylleucine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:177872 N-trans-cinnamoyltyramine skos:exactMatch mesh C479307 N-cinnamoyltyramine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:177873 grasshopper ketone skos:exactMatch mesh C000589724 grasshopper ketone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:17791 obtusifoliol skos:exactMatch mesh C008693 obtusifoliol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:177911 D-Glycero-D-gulo-Heptose skos:exactMatch mesh C413546 glycero-gulo-heptose lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:17793 calycosin skos:exactMatch mesh C121707 7,3'-dihydroxy-4'-methoxyisoflavone lexical 0.9 https://github.com/indralab/panacea_indra/blob/master/panacea_indra/make_ctd_tests.py +chebi CHEBI:177934 Glucoobtusifolin skos:exactMatch mesh C546708 gluco-obtusifolin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:177943 Glucodistylin skos:exactMatch mesh C561199 glucodistylin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:17795 dihydroxyfumarate(2-) skos:exactMatch mesh C005998 dihydroxyfumarate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:177985 5,8,11,14-octadecatetraenoic acid skos:exactMatch mesh C064300 5,8,11,14-octadecatetraenoic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:178009 pavettamine skos:exactMatch mesh C462301 pavetamine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:178012 FR900359 skos:exactMatch mesh C000607068 FR900359 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:178084 20beta-hydroxycortisone skos:exactMatch mesh C005674 4-pregnene-17 alpha,20 beta,21-triol-3,11-dione lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:178091 3-Methylpseudouridine skos:exactMatch mesh C034686 3-methylpseudouridine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:178092 8-Methyladenosine skos:exactMatch mesh C070330 8-methyladenosine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:17810 1-O-(alk-1-enyl)-2-O-acyl-sn-glycero-3-phosphocholine skos:exactMatch mesh C032459 choline plasmalogens lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:178109 leucopterin (enol form) skos:exactMatch mesh C102417 leucopterin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:178117 4-Methyleneproline skos:exactMatch mesh C083252 4-methyleneproline lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:178134 4-Carboxyphenylglycine skos:exactMatch mesh C079693 4-carboxyphenylglycine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:178135 4-Hydroxybenzyl isothiocyanate skos:exactMatch mesh C031364 4-hydroxybenzyl isothiocyanate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:178136 4-Hydroxyclonidine skos:exactMatch mesh C060689 4-hydroxyclonidine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:17814 salicin skos:exactMatch mesh C005696 salicin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:178143 Chalcomoracin skos:exactMatch mesh C550211 chalcomoracin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:178144 Clitocine skos:exactMatch mesh C055433 clitocine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:17815 1,2-diacyl-sn-glycerol skos:exactMatch mesh C011439 1,2-diacylglycerol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:178150 Ephedrannin A skos:exactMatch mesh C556561 ephedrannin A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:178151 Gemcitabine triphosphate skos:exactMatch mesh C533693 gemcitabine triphosphate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:178153 Guavin B skos:exactMatch mesh C044572 guavin B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:17816 1D-myo-inositol 1,4-bisphosphate skos:exactMatch mesh C044259 inositol 1,4-bis(phosphate) lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:178161 Mangostenol skos:exactMatch mesh C461720 mangostenol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:178166 Mumefural skos:exactMatch mesh C412144 mumefural lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:178181 Roquefortine skos:exactMatch mesh C012536 roquefortine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:178184 Silidianin skos:exactMatch mesh C015505 silydianin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:178196 oncrasin-1 skos:exactMatch mesh C532252 oncrasin-1 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:178199 sotorasib skos:exactMatch mesh C000706028 sotorasib lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:17820 2-hydroxy-6-oxo-6-phenylhexa-2,4-dienoic acid skos:exactMatch mesh C018971 2-hydroxy-6-oxo-6-phenyl-2,4-hexadienoic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:178204 4-Vinylaniline skos:exactMatch mesh C512132 4-vinylaniline lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:17821 thymine skos:exactMatch mesh D013946 Thymopoietins lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:178226 Domesticine skos:exactMatch mesh C454302 domesticine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:178244 Baohuosu skos:exactMatch mesh C060987 baohuosu lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:178256 Isobutylparaben skos:exactMatch mesh C471067 isobutylparaben lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:178325 Calythropsin skos:exactMatch mesh C085139 calythropsin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:178326 Kukulkanin B skos:exactMatch mesh C061637 kukulkanin B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:178332 Helichrysetin skos:exactMatch mesh C061023 helichrysetin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:178388 3,5,5-Trimethyl-1-hexanol skos:exactMatch mesh C553983 3,5,5-trimethyl-1-hexanol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:17840 indoxyl skos:exactMatch mesh C034082 indoxyl lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:178404 1,1-Dimethoxyethane skos:exactMatch mesh C059033 1,1-dimethoxyethane lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:17844 2-amino-3-oxobutanoic acid skos:exactMatch mesh C079776 2-amino-3-ketobutyrate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:178482 Litebamine skos:exactMatch mesh C109134 litebamine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:178484 Diacetylspermine skos:exactMatch mesh C029453 N',N''-diacetylspermine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:178537 KH 1049 skos:exactMatch mesh C097628 KH 1049 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:178562 Calophyllic acid skos:exactMatch mesh C580626 calophyllic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:178564 Auriculasin skos:exactMatch mesh C516713 auriculasin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:178572 Ulexin D skos:exactMatch mesh C451305 ulexin D lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:178579 Australone A skos:exactMatch mesh C109390 australone A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:178585 Norcocaine skos:exactMatch mesh C008671 norcocaine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:178593 1,25-Dihydroxy-23-oxo-vitamin D3 skos:exactMatch mesh C034392 1,25-dihydroxy-23-oxo-vitamin D3 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:17861 4-chlorobenzoate skos:exactMatch mesh C040768 4-chlorobenzoic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:17863 cellobiono-1,5-lactone skos:exactMatch mesh C089182 cellobionolactone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:178678 Pantothenamide skos:exactMatch mesh C000710254 pantothenamide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:17868 1-palmitoylglycerone 3-phosphate skos:exactMatch mesh C003037 palmitoyl dihydroxyacetone phosphate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:178686 N,N,N-trimethyl-sphingosine skos:exactMatch mesh C071600 N,N,N-trimethylsphingosine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:178699 Ethanolamine Oleate skos:exactMatch mesh C033343 ethanolamine oleate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:178725 Ethylene carbonate skos:exactMatch mesh C031133 ethylene carbonate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:17877 FADH2 skos:exactMatch mesh C058805 1,5-dihydro-FAD lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:17883 hydrogen chloride skos:exactMatch mesh D007943 Leukemia, Hairy Cell lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:17890 tryptophol skos:exactMatch mesh C069544 tryptophanol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:17892 L-rhamnulose 1-phosphate skos:exactMatch mesh C010419 rhamnulose 1-phosphate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:178978 1,2-Dehydrosalsolinol skos:exactMatch mesh C051345 1,2-dehydrosalsolinol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:17899 7alpha-hydroxycholest-4-en-3-one skos:exactMatch mesh C002656 7 alpha-hydroxy-4-cholesten-3-one lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:17901 6-O-acetyl-D-glucose skos:exactMatch mesh C110050 6-O-acetyl-D-glucose lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:179046 Hydroxycitronellol skos:exactMatch mesh C534313 3,7-dimethyloctane-1,7-diol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:179061 Enigmol skos:exactMatch mesh C559817 2-amino-3,5-dihydroxyoctadecane lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:179066 Bauerenyl acetate skos:exactMatch mesh C477171 bauerenyl acetate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:179101 2-Benzylmalic acid skos:exactMatch mesh C042373 2-benzylmalic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:17913 streptidine 6-phosphate skos:exactMatch mesh C044688 streptidine-6-phosphate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:179145 Tricetinidin skos:exactMatch mesh C000629124 tricetinidin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:179169 Asebotin skos:exactMatch mesh C002548 asebotin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:179171 Methyl hexyl ether skos:exactMatch mesh C056646 methyl hexyl ether lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:179179 Pramanicin skos:exactMatch mesh C432807 pramanicin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:179232 12-oxo-octadecanoic acid skos:exactMatch mesh C098204 12-oxooctadecanoic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:179261 1,4-Dimethoxybenzene skos:exactMatch mesh C031200 1,4-dimethoxybenzene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:17927 N(1)-acetylspermidine skos:exactMatch mesh C017988 N(1)-acetylspermidine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:179276 Aciculatin skos:exactMatch mesh C074400 aciculatin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:179298 N-Mononitrosopiperazine skos:exactMatch mesh C014711 1-nitrosopiperazine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:179319 2'-Hydroxyflavone skos:exactMatch mesh C056011 2'-hydroxyflavone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:179326 12-Methyl-13-tridecanolide skos:exactMatch mesh C583578 12-methyl-13-tridecanolide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:179370 Entadamide A skos:exactMatch mesh C061600 entadamide A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:179377 8-methyl-decanoic acid skos:exactMatch mesh C553445 8-methyldecanoic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:179391 ethyl 4-methyl-octanoate skos:exactMatch mesh C103470 ethyl 4-methyloctanoate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:179443 1,2,6-Hexanetriol skos:exactMatch mesh C400265 1,2,6-hexanetriol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:179448 Quindoxin skos:exactMatch mesh C003282 quindoxin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:17947 3-dehydroquinic acid skos:exactMatch mesh C498112 5-dehydroquinic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:17948 (+)-taxifolin skos:exactMatch mesh C003377 taxifolin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:179480 9-tetradecenal skos:exactMatch mesh C576523 9-tetradecenal lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:179508 Glucovanillin skos:exactMatch mesh C443341 glucovanillin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:179533 1,1-Diethoxyethane skos:exactMatch mesh C000603996 1,1-diethoxyethane lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:179551 4-Ethyloctanoic acid skos:exactMatch mesh C481384 4-ethyloctanoic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:17957 5-(2-hydroxyethyl)-4-methylthiazole skos:exactMatch mesh C012572 2-(4-methyl-1,3-thiazol-5-yl)ethanol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:179576 N-Nitroso-3-hydroxypyrrolidine skos:exactMatch mesh C013565 3-hydroxy-1-nitrosopyrrolidine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:179577 Juzirine skos:exactMatch mesh C417577 juzirine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:179581 1,4-Dithiane-2,5-diol skos:exactMatch mesh C000606160 1,4-dithiane-2,5-diol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:179632 2,8-Dihydroxyadenine skos:exactMatch mesh C002993 2,8-dihydroxyadenine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:179640 Lettowianthine skos:exactMatch mesh C412066 lettowianthine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:179641 Norsanguinarine skos:exactMatch mesh C483650 norsanguinarine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:17965 isoorientin skos:exactMatch mesh C057912 homoorientin lexical 0.9 https://github.com/indralab/panacea_indra/blob/master/panacea_indra/make_ctd_tests.py +chebi CHEBI:17966 cyclohexyl isocyanide skos:exactMatch mesh C534427 isocyanocyclohexane lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:179673 2-Dodecylcyclobutanone skos:exactMatch mesh C063381 2-dodecylcyclobutanone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:179687 9-hexadecenal skos:exactMatch mesh C587835 9-hexadecenal lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:179696 2-Methyl-2-buten-1-ol skos:exactMatch mesh C029025 2-methyl-2-buten-1-ol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:179725 Dorsmanin C skos:exactMatch mesh C478608 dorsmanin C lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:17973 alpha-D-galactose 1-phosphate skos:exactMatch mesh C029973 galactose-1-phosphate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:179819 Vittatalactone skos:exactMatch mesh C497413 vittatalactone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:179841 2-Acetylthiophene skos:exactMatch mesh C508419 2-acetylthiophene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:179868 Marein skos:exactMatch mesh C550306 marein lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:179879 4-methyl-octanoic acid skos:exactMatch mesh C521814 4-methyloctanoic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:17989 daphnin skos:exactMatch mesh C575582 daphnin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:179916 Senkyunolide skos:exactMatch mesh C045855 3-N-butyl-4,5-dihydrophthalide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:17992 sucrose skos:exactMatch mesh D019422 Dietary Sucrose lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:179932 Heptyl formate skos:exactMatch mesh C546744 heptyl formate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:179970 Pentadecyl acetate skos:exactMatch mesh C541426 pentadecyl acetate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:179977 12-methyl-hexadecanoic acid skos:exactMatch mesh C055720 12-methylhexadecanoic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:179978 3-methyl-hexadecanoic acid skos:exactMatch mesh C034840 3-methylhexadecanoic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:17998 4-methylpentanal skos:exactMatch mesh C018575 isocaproaldehyde lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:179997 5-methyl-hexanoic acid skos:exactMatch mesh C481311 5-methylhexanoic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:180001 4-methyl-hexanoic acid skos:exactMatch mesh C083378 4-methylhexanoic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:180037 2,4-dimethyl-2-eicosenoic acid skos:exactMatch mesh C091212 2,4-dimethyl-2-eicosenoic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:18010 3',4',5-trihydroxy-3,7-dimethoxyflavone skos:exactMatch mesh C524639 3,7-O-dimethylquercetin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:180130 Erucin skos:exactMatch mesh C073539 erucin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:180131 Sambutoxin skos:exactMatch mesh C091237 sambutoxin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:180149 Neovestitol skos:exactMatch mesh C000627678 neovestitol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:18016 3',4',5-trihydroxy-3,6,7-trimethoxyflavone skos:exactMatch mesh C568008 chrysosplenol D lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:180160 Uvangoletin skos:exactMatch mesh C000611553 uvangoletin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:180171 Catalpic acid skos:exactMatch mesh C534730 catalpic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:180172 5,9,12-octadecatrienoic acid skos:exactMatch mesh C034302 5,9,12-octadecatrienoic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:180192 4-hydroxy-valeric acid skos:exactMatch mesh C469548 4-hydroxyvaleric acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:180195 calicoferol D skos:exactMatch mesh C096519 calicoferol D lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:180202 3-Methyl-2,4-nonanedione skos:exactMatch mesh C475572 3-methyl-2,4-nonanedione lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:180237 1-Octen-3-yl acetate skos:exactMatch mesh C000705727 1-octen-3-yl acetate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:180250 Lanceolatin A skos:exactMatch mesh C000595290 lanceolatin A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:180259 Oaxacacin skos:exactMatch mesh C448638 oaxacacin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:180298 4-hydroxy-2-octenal skos:exactMatch mesh C046538 4-hydroxy-2-octenal lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:180306 3-Methyleneheptanoic acid skos:exactMatch mesh C526218 3-methylene-heptanoic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:180307 7-octenoic acid skos:exactMatch mesh C440449 7-octenoic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:18034 4-fumarylacetoacetate(2-) skos:exactMatch mesh C105171 fumarylacetoacetate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:180363 4,7,10-hexadecatrienoic acid skos:exactMatch mesh C094145 4,7,10-hexadecatrienoic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:180365 7,10,13-hexadecatrienoic acid skos:exactMatch mesh C553093 7,10,13-hexadecatrienoic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:180368 5-Keto-D-gluconate skos:exactMatch mesh C000614856 5-keto-d-gluconate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:180385 4-hydroxyhexenal skos:exactMatch mesh C063409 4-hydroxyhexenal lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:180404 Isoegomaketone skos:exactMatch mesh C568138 isoegomaketone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:180411 Ethyl phenylacetate skos:exactMatch mesh C521816 ethyl phenylacetate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:180441 (2-Hydroxymethyl-cyclohexyl)-acetic acid lactone skos:exactMatch mesh C075891 (2-hydroxymethylcyclohexyl)acetic acid lactone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:180454 9-Carboxymethoxymethylguanine skos:exactMatch mesh C035400 9-carboxymethoxymethylguanine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:18047 dihydrolipoic acid skos:exactMatch mesh C015144 dihydrolipoic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:180480 amperozide skos:exactMatch mesh C049058 amperozide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:180482 1,2,4-triazole-3-carboxamide skos:exactMatch mesh C017957 1,2,4-triazole-3-carboxamide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:180486 3,3-diethyl-2-pyrrolidinone skos:exactMatch mesh C113196 3,3-diethyl-2-pyrrolidinone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:180534 7-Hydroxywarfarin skos:exactMatch mesh C087837 7-hydroxywarfarin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:180535 2-Chloroamphetamine skos:exactMatch mesh C032179 2-chloroamphetamine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:180548 alpha-pyrrolidinopropiophenone skos:exactMatch mesh C487966 alpha-pyrrolidinopropiophenone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:180551 Gatratet skos:exactMatch mesh C001936 gatratet lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:180557 2,6-Dimethylphenol skos:exactMatch mesh C036531 2,6-xylenol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:180567 4-Chromanone skos:exactMatch mesh C068514 4-chromanone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:180569 4-Hydroxyphenobarbital skos:exactMatch mesh C017414 4-hydroxyphenobarbital lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:180596 Nicotinamide arabinoside adenine dinucleotide skos:exactMatch mesh C053851 nicotinamide arabinoside adenine dinucleotide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:180609 2-Deoxy-2,3-didehydro-N-glycoloylneuraminic acid skos:exactMatch mesh C046917 2-deoxy-2,3-didehydro-N-glycoloylneuraminic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:180617 Tiaprost skos:exactMatch mesh C039967 tiaprost lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:180619 3-Aminopentanoic acid skos:exactMatch mesh C449752 3-aminopentanoic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:18062 4-guanidinobutanamide skos:exactMatch mesh C001316 tiformin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:180623 Dehydrofelodipine skos:exactMatch mesh C081790 dehydrofelodipine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:180630 2-(1,3-benzoxazol-2-yl)phenol skos:exactMatch mesh C433838 2-(2'-hydroxyphenyl)benzoxazole lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:180639 Hovenidulcioside A2 skos:exactMatch mesh C093877 hovenidulcioside A2 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:180644 Periandrin V skos:exactMatch mesh C084143 periandrin V lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:1808 (4-chlorophenoxy)acetic acid skos:exactMatch mesh C007017 4-chlorophenoxyacetic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:18082 1,2,3,4,6-pentakis-O-galloyl-beta-D-glucose skos:exactMatch mesh C435084 pentagalloylglucose lexical 0.9 https://github.com/indralab/panacea_indra/blob/master/panacea_indra/make_ctd_tests.py +chebi CHEBI:18084 testololactone skos:exactMatch mesh C018155 testololactone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:18090 3-aminopropanal skos:exactMatch mesh C050862 3-aminopropionaldehyde lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:18091 asparagusic acid skos:exactMatch mesh C010035 1,2-dithiolane-4-carboxylic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:18093 17,21-dihydroxy-5beta-pregnane-3,11,20-trione skos:exactMatch mesh C045993 5-dihydrocortisone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:18095 trans-4-hydroxy-L-proline skos:exactMatch mesh C077454 Hy-pro lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:18098 CMP-N-glycoloyl-beta-neuraminic acid skos:exactMatch mesh C060603 cytidine monophosphate-N-glycoloylneuraminic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:18101 4-hydroxyphenylacetic acid skos:exactMatch mesh C008070 4-hydroxyphenylacetic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:18112 2-aminophenol skos:exactMatch mesh C027667 2-aminophenol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:18115 4-hydroxymandelonitrile skos:exactMatch mesh C014601 4-hydroxymandelonitrile lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:18123 N-methylnicotinate skos:exactMatch mesh C009560 trigonelline lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:18124 phosphonoacetaldehyde skos:exactMatch mesh C003126 phosphonoacetaldehyde lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:18144 all-trans-nonaprenyl diphosphate skos:exactMatch mesh C063778 solanesyl pyrophosphate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:18153 ethene skos:exactMatch mesh C036216 ethylene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:18176 2-coumaric acid skos:exactMatch mesh C085894 2-hydroxycinnamic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:18204 16,17-didehydroprogesterone skos:exactMatch mesh C028106 16-dehydroprogesterone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:18215 syringetin skos:exactMatch mesh C546494 syringetin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:18225 myo-inositol 1,3-bisphosphate skos:exactMatch mesh C051853 inositol 1,3-bisphosphate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:18228 1D-myo-inositol 1,3,4-trisphosphate skos:exactMatch mesh C058097 inositol 1,3,4-trisphosphate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:18231 arsenic acid skos:exactMatch mesh C025657 arsenic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:18243 dopamine skos:exactMatch mesh D003846 Deoxyepinephrine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:18285 (S)-stylopine skos:exactMatch mesh C014212 stylopine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:18298 3-hydroxy-2-methyl-3-phytyl-2,3-dihydro-1,4-naphthoquinone skos:exactMatch mesh C045267 3-hydroxy-2-methyl-3-phytyl-2,3-dihydronaphthoquinone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:18304 deamido-NAD(+) skos:exactMatch mesh C018348 nicotinic acid adenine dinucleotide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:18307 UDP-D-galactose skos:exactMatch mesh D014531 Uridine Diphosphate Galactose lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:18311 quinoline-4-carboxylic acid skos:exactMatch mesh C059924 quinoline-4-carboxylic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:18316 4-ethylamino-6-isopropylamino-1,3,5-triazin-2-ol skos:exactMatch mesh C027881 2-hydroxyatrazine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:18319 SAICAR skos:exactMatch mesh C020635 SAICAR lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:18330 isovitexin skos:exactMatch mesh C049772 isovitexin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:18335 pyridoxamine 5'-phosphate skos:exactMatch mesh C010627 pyridoxamine phosphate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:18355 2-hydroxypenta-2,4-dienoic acid skos:exactMatch mesh C061660 2-hydroxy-2,4-pentadienoic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:18364 14-demethyllanosterol skos:exactMatch mesh C013499 4,4-dimethyl-5-alpha-cholesta-(8,24)-dien-3-beta-ol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:18368 D-glucosyl-N-acylsphingosine skos:exactMatch mesh D005963 Glucosylceramides lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:18378 4alpha-methyl-5alpha-cholest-7-en-3beta-ol skos:exactMatch mesh C008421 4-methylcholest-7-en-3-ol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:18381 5-formamido-1-(5-phospho-D-ribosyl)imidazole-4-carboxamide skos:exactMatch mesh C062030 5-formamidoimidazole-4-carboxamide ribotide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:18383 3-aminoalanine skos:exactMatch mesh C011757 2,3-diaminopropionic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:18400 2-hydroxy-1,4-benzoquinone skos:exactMatch mesh C054093 2-hydroxy-1,4-benzoquinone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:18402 3alpha,7alpha,12alpha-trihydroxy-5beta-cholestan-26-oic acid skos:exactMatch mesh C022069 3,7,12-trihydroxycholestan-26-oic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:18404 3-methylcatechol skos:exactMatch mesh C558946 3-methylbenzene-1,2-diol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:18411 laminarabiose skos:exactMatch mesh C014637 laminaribiose lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:18415 N-formimidoylglycine skos:exactMatch mesh C037697 formiminoglycine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:18418 (RS)-norcoclaurine skos:exactMatch mesh C012348 higenamine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:18425 2-C-methyl-D-erythritol 2,4-cyclic diphosphate skos:exactMatch mesh C075747 3-methyl-1,2,3,4-tetrahydroxybutane-1,3-cyclic bisphosphate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:18426 1D-myo-inositol 1,2-cyclic phosphate skos:exactMatch mesh C010199 inositol cyclic phosphate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:18531 (24R)-11alpha,20,24-trihydroxyecdysone skos:exactMatch mesh C412202 11,20,24-trihydroxyecdysone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:18534 campest-4-en-3-one skos:exactMatch mesh C524615 campest-4-en-3-one lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:18719 3-bromopropane-1,2-diol skos:exactMatch mesh C006818 alpha-bromohydrin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:1879 2-(4-hydroxyphenyl)ethanol skos:exactMatch mesh C011867 4-hydroxyphenylethanol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:18855 1,2,3,4-tetrachlorobenzene skos:exactMatch mesh C030386 1,2,3,4-tetrachlorobenzene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:1887 4-Ketocyclophosphamide skos:exactMatch mesh C008226 4-ketocyclophosphamide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:18918 1,3-dichloropropene skos:exactMatch mesh C023891 1,3-dichloro-1-propene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:19032 1-bromo-2-chloroethane skos:exactMatch mesh C039590 1-bromo-2-chloroethane lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:190358 azobenzene skos:exactMatch mesh C009850 azobenzene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:1905 4-methylumbelliferone sulfate skos:exactMatch mesh C019492 4-methylumbelliferyl sulfate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:19065 1-methylinosine skos:exactMatch mesh C012433 1-methylinosine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:19068 1-methylpseudouridine skos:exactMatch mesh C013608 1-methylpseudouridine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:19092 1-pyrroline skos:exactMatch mesh C025565 delta(1)-pyrroline lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:1911 4-nitroanisole skos:exactMatch mesh C005306 4-nitroanisole lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:19144 12-oxo-trans-10-dodecenoic acid skos:exactMatch mesh C092125 traumatin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:19226 2'-O-methyl-5-methyluridine skos:exactMatch mesh C024142 2'-O-methylribothymidine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:19228 2'-O-methylcytidine skos:exactMatch mesh C052203 2'-O-methylcytidine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:19229 2'-O-methylguanosine skos:exactMatch mesh C024900 2'-O-methylguanosine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:19274 2'-deoxymugineic acid skos:exactMatch mesh C052864 2'-deoxymugineic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:19279 2,2',6,6'-tetranitro-4,4'-azoxytoluene skos:exactMatch mesh C097194 2,2',6,6'-tetranitro-4,4'-azoxytoluene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:19310 2,3-dibromo-1-propanol skos:exactMatch mesh C016369 2,3-dibromopropanol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:19332 2,4,6-triaminotoluene skos:exactMatch mesh C113141 2,4,6-triaminotoluene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:19342 2,4-diamino-6-nitrotoluene skos:exactMatch mesh C046358 2,4-diamino-6-nitrotoluene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:19389 2,6-diamino-4-nitrotoluene skos:exactMatch mesh C070022 2,6-diamino-4-nitrotoluene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:19391 2,6-dibromophenol skos:exactMatch mesh C038964 2,6-dibromophenol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:19508 2-chloroethyl methanesulfonate skos:exactMatch mesh C097006 2-chloroethyl methanesulfonate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:19543 2-dehydro-L-idonic acid skos:exactMatch mesh C011491 provitamin C lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:19544 2-dehydroecdysone skos:exactMatch mesh C054761 2-dehydroecdysone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:19564 2-deoxyribose 1-phosphate skos:exactMatch mesh C031302 2-deoxyribose 1-phosphate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:19565 2-deoxyribose 5-phosphate skos:exactMatch mesh C058245 2-deoxyribose 5-phosphate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:19567 2-deoxyecdysone 22-phosphate skos:exactMatch mesh C038792 2-deoxyecdysone-22-phosphate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:19577 2-fluorobenzoic acid skos:exactMatch mesh C022894 2-fluorobenzoic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:19591 2-hexenal skos:exactMatch mesh C051750 2-hexenal lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:1963 guanosine 5'-[beta,gamma-methylene]triphosphate skos:exactMatch mesh C004805 5'-guanylylmethylenebisphosphonate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:19643 2-hydroxyisophthalic acid skos:exactMatch mesh C492390 2-hydroxyisophthalic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:19644 2-hydroxylamino-4,6-dinitrotoluene skos:exactMatch mesh C085952 2-hydroxylamino-4,6-dinitrotoluene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:19654 2-hydroxyphenylacetaldehyde skos:exactMatch mesh C070647 2-hydroxyphenylacetaldehyde lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:19688 2-methyladenosine skos:exactMatch mesh C031088 2-methyladenosine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:19780 2-thiocytidine skos:exactMatch mesh C002908 2-thiocytidine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:19793 20,26-dihydroxyecdysone skos:exactMatch mesh C021997 20,26-dihydroxyecdysone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:19799 20-hydroxyecdysone 22-phosphate skos:exactMatch mesh C038794 20-hydroxyecdysone-22-phosphate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:19804 22-deoxy-20,21-dihydroxyecdysone skos:exactMatch mesh C119868 22-deoxy-20,21-dihydroxyecdysone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:19812 24-methylenecholesterol skos:exactMatch mesh C002537 24-methylenecholesterol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:19814 25-deoxyecdysone skos:exactMatch mesh C079152 25-deoxyecdysone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:19904 3,5-dichloroaniline skos:exactMatch mesh C037267 3,5-dichloroaniline lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:19929 3-hydroxy-3-phenylpropionic acid skos:exactMatch mesh C031579 beta-hydroxyphenylpropionic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:1995 5,6-Dehydrokawain skos:exactMatch mesh C052297 5,6-dehydrokawain lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:19982 3-chloroacrylic acid skos:exactMatch mesh C071773 3-chloroacrylic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:20021 3-fluorobenzoic acid skos:exactMatch mesh C022895 3-fluorobenzoic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:20030 3-hexenal skos:exactMatch mesh C586688 3-hexenal lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:2007 5,7-Dihydroxychromone skos:exactMatch mesh C080094 5,7-dihydroxychromone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:20106 vanillylmandelic acid skos:exactMatch mesh C475474 3-methoxy-4-hydroxymandelic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:20129 3-methylcytidine skos:exactMatch mesh C043208 3-methylcytidine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:20140 3-methylquinoline skos:exactMatch mesh C081194 3-methylquinoline lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:20141 3-methylsalicylic acid skos:exactMatch mesh C503864 3-methylsalicylic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:20198 3-pyrroline skos:exactMatch mesh C000604325 2,5-dihydro-1H-pyrrole lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:20251 4-(L-tryptophan-2-yl)-L-tryptophyl quinone group skos:exactMatch mesh C070569 tryptophan tryptophylquinone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:20260 4,4',6,6'-tetranitro-2,2'-azoxytoluene skos:exactMatch mesh C097193 4,4',6,6'-tetranitro-2,2'-azoxytoluene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:20265 lanostane skos:exactMatch mesh C060443 4,4,14-trimethylcholestane lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:20386 4-hydroxy-8-sphingenine skos:exactMatch mesh C577618 4-hydroxy-8-sphingenine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:20400 4-hydroxybutanal skos:exactMatch mesh C553731 4-hydroxybutanal lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:20408 4-hydroxylamino-2,6-dinitrotoluene skos:exactMatch mesh C085951 4-hydroxylamino-2,6-dinitrotoluene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:20435 p-mercuribenzoate skos:exactMatch mesh C043407 4-mercuribenzoate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:20450 4-methylsalicylic acid skos:exactMatch mesh C582189 2-hydroxy-p-toluic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:20469 4-phenanthrol skos:exactMatch mesh C092103 4-hydroxyphenanthrene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:20530 5-(carboxyhydroxymethyl)uridine skos:exactMatch mesh C025321 5-(carboxyhydroxymethyl)uridine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:20553 5-bromouridine skos:exactMatch mesh C006824 5-bromouridine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:20582 5-hydroxyferulic acid skos:exactMatch mesh C071744 5-hydroxyferulic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:20597 5-methoxycarbonylmethyl-2-thiouridine skos:exactMatch mesh C011701 5-carbomethoxymethyl-2-thiouridine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:20601 5-methoxyuridine skos:exactMatch mesh C016562 5-methoxyuridine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:20602 5-methyl-2-thiouridine skos:exactMatch mesh C022856 2-thioribothymidine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:20605 5-methylaminomethyluridine skos:exactMatch mesh C099620 5-methylaminomethyluridine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:20689 6-O-methylguanine skos:exactMatch mesh C008449 O-(6)-methylguanine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:20700 6-aminonaphthalene-2-sulfonic acid skos:exactMatch mesh C050850 6-aminonaphthalene-2-sulfonic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:20712 6-deoxocastasterone skos:exactMatch mesh C437447 6-deoxocastasterone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:20714 6-deoxycathasterone skos:exactMatch mesh C437446 6-deoxocathasterone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:20741 6-O-methyl-D-glucose skos:exactMatch mesh C033884 6-O-methylglucose lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:20747 6-oxocampestanol skos:exactMatch mesh C411123 6-oxocampestanol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:20787 7-bromomethyl-12-methyltetraphene skos:exactMatch mesh C002876 7-bromomethyl-12-methylbenzanthracene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:2082 5-hydroxyxanthotoxin skos:exactMatch mesh C541895 5-hydroxy-8-methoxypsoralen lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:20857 C-glycosyl compound skos:exactMatch mesh C438934 C-glycoside lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:2091 5-methyl-2-furaldehyde skos:exactMatch mesh C048065 5-methyl-2-furfural lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:2110 5-O-Methylvisamminol skos:exactMatch mesh C000613355 5-O-methylvisamminol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:21183 ICR-170 skos:exactMatch mesh C091910 acridine mustard lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:21184 Janus Green B chloride skos:exactMatch mesh C005086 Janus Green B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:2124 5-pyridoxolactone skos:exactMatch mesh C107259 5-pyridoxic acid lactone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:213323 1,2,3,4-tetrahydroquinoline skos:exactMatch mesh C542964 1,2,3,4-tetrahydroquinoline lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:21337 idonic acid skos:exactMatch mesh C113317 idonic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:21354 methyl L-lysinate skos:exactMatch mesh C015331 L-lysine methyl ester lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:21371 L-phenylalanine amide skos:exactMatch mesh C020457 phenylalanine amide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:21374 L-prolinamide skos:exactMatch mesh C056291 prolinamide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:21412 L-tyrosinamide skos:exactMatch mesh C036387 tyrosinamide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:21457 N-[(9-beta-D-ribofuranosyl-2-methylthiopurin-6-yl)carbamoyl]threonine skos:exactMatch mesh C515568 2-methylthio-N6-threonylcarbamoyladenosine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:21484 N-(indole-3-acetyl)-L-aspartic acid skos:exactMatch mesh C026984 indolyl-3-aspartic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:2156 6,8-diprenylnaringenin skos:exactMatch mesh C068505 senegalensin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:21560 N-acetyl-L-proline skos:exactMatch mesh C586914 N-acetyl-L-proline lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:21609 N-acetylglutathione skos:exactMatch mesh C084569 N-acetylglutathione lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:2161 6-(3,3-dimethylallyl)chrysin skos:exactMatch mesh C502336 6-prenylchrysin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:2165 6-acetamido-3-oxohexanoic acid skos:exactMatch mesh C023595 3-keto-6-acetamidohexanoate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:2168 6-Acetylmorphine skos:exactMatch mesh C026979 6-O-monoacetylmorphine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:21740 N-isopropylacetanilide skos:exactMatch mesh C433444 N-isopropylacetanilide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:21742 N-isopropylaniline skos:exactMatch mesh C071474 N-isopropylaniline lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:21803 1-methylguanine skos:exactMatch mesh C017515 1-methylguanine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:21818 N(2)-methylguanine skos:exactMatch mesh C008450 7-methylguanine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:2183 6-Deoxyjacareubin skos:exactMatch mesh C438127 5,10-dihydroxy-2,2-dimethylpyrano(3,2-b)xanthen-6(2H)-one lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:21884 N(6)-formyl-L-lysine skos:exactMatch mesh C020334 N(epsilon)-formyllysine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:21891 N(6)-methyladenosine skos:exactMatch mesh C010223 N6-methyladenosine (m6A) lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:2195 6-Hydroxykynurenic acid skos:exactMatch mesh C428563 6-hydroxykynurenic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:2196 6-Hydroxyl-1,6-dihydropurine ribonucleoside skos:exactMatch mesh C071282 6-hydroxyl-1,6-dihydropurine ribonucleoside lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:2202 6-Hydroxytremetone skos:exactMatch mesh C097022 6-hydroxytremetone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:22046 S-geranylgeranyl-L-cysteine skos:exactMatch mesh C065977 geranylgeranylcysteine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:22063 sulfoxide skos:exactMatch mesh C005746 sulfoxide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:22066 S-phospho-L-cysteine skos:exactMatch mesh C057779 S-phosphocysteine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:22070 S-pyruvylglutathione skos:exactMatch mesh C050368 S-pyruvylglutathione lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:22151 (+)-abscisic acid beta-D-glucopyranosyl ester skos:exactMatch mesh C488692 abscisic acid-beta-D-glucopyranosyl ester lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:22154 acenaphthene skos:exactMatch mesh C042552 acenaphthene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:223404 3'-hydroxy-4'-methoxydiclofenac skos:exactMatch mesh C058953 3'-hydroxy-4'-methoxydiclofenac lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:22456 alpha-ionylideneacetic acid skos:exactMatch mesh C425560 alpha-ionylideneacetic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:22465 alpha-oxyprotohemin IX skos:exactMatch mesh C047197 alpha-oxyprotohemin IX lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:22542 androstane-3,17-dione skos:exactMatch mesh C006576 androstane-3,17-dione lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:2255 7beta-aminocephalosporanic acid skos:exactMatch mesh C030735 7-aminocephalosporanic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:22590 arabinan skos:exactMatch mesh C030080 araban lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:22605 arabinitol skos:exactMatch mesh C014999 arabitol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:22680 azide skos:exactMatch mesh D001386 Azides lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:22689 bafilomycin A1 skos:exactMatch mesh C040929 bafilomycin A1 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:22918 branched-chain amino acid skos:exactMatch mesh D000597 Amino Acids, Branched-Chain lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:22927 bromine atom skos:exactMatch mesh D031724 Bromus lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:230243 verrucarin A skos:exactMatch mesh C005348 muconomycin A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:23046 carveol skos:exactMatch mesh C075856 carveol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:2305 8-(3,3-dimethylallyl)chrysin skos:exactMatch mesh C423345 8-(3,3-dimethylallyl)chrysin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:23051 castasterone skos:exactMatch mesh C083545 castasterone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:2310 8-Azaadenosine skos:exactMatch mesh C002155 8-azaadenosine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:23104 chitooligosaccharide skos:exactMatch mesh C493484 oligochitosan lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:2312 8-Bromoadenosine skos:exactMatch mesh C036038 8-bromoadenosine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:2314 8-Epideoxyloganic acid skos:exactMatch mesh C404985 8-epideoxyloganic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:2323 4-hydroxy-8-methoxyquinaldic acid skos:exactMatch mesh C023664 xanthurenic acid 8-methyl ether lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:23234 dichromic acid skos:exactMatch mesh C034944 chromic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:23246 cinnamamide skos:exactMatch mesh C411088 cinnamamide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:23316 citral skos:exactMatch mesh C007076 citral lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:23325 clavicipitic acid skos:exactMatch mesh C524935 clavicipitic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:23345 cobyric acid skos:exactMatch mesh C012851 cobyric acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:23360 colitose skos:exactMatch mesh C025141 colitose lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:23362 colominic acid skos:exactMatch mesh C014420 colominic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:2340 docebenone skos:exactMatch mesh C036837 2,3,5-trimethyl-6-(12-hydroxy-5,10-dodecadiynyl)-1,4-benzoquinone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:2341 AACOCF3 skos:exactMatch mesh C081565 arachidonyltrifluoromethane lexical 0.9 https://github.com/indralab/panacea_indra/blob/master/panacea_indra/make_ctd_tests.py +chebi CHEBI:23436 cyanogenic glycoside skos:exactMatch mesh C007173 cyanogenic glycosides lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:23500 cyclopropanecarboxylic acid skos:exactMatch mesh C015766 cyclopropanecarboxylic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:23530 cytokinin skos:exactMatch mesh D003583 Cytokinins lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:2366 absinthin skos:exactMatch mesh C075877 absynthin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:2368 abyssinone V skos:exactMatch mesh C056679 abyssinone V lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:23681 dibenzothiophene skos:exactMatch mesh C016366 dibenzothiophene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:23705 1,2:7,8-diepoxyoctane skos:exactMatch mesh C012896 1,2,7,8-diepoxyoctane lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:23716 difluoroacetic acid skos:exactMatch mesh C027495 difluoroacetic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:2375 (-)-syringaresinol O,O'-bis(beta-D-glucoside) skos:exactMatch mesh C528660 acanthoside D lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:23774 dihydrouridine skos:exactMatch mesh C010922 5,6-dihydrouridine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:23776 dihydroxyacetophenone skos:exactMatch mesh C019339 2,6-dihydroxyacetophenone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:23808 dimethylarsinous acid skos:exactMatch mesh C472511 dimethylarsinous acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:23816 dimethylsilanediol skos:exactMatch mesh C412583 dimethylsilanediol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:23821 dinitroglycerol skos:exactMatch mesh C014509 dinitroglycerol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:23838 diphenylstannane skos:exactMatch mesh C063612 diphenyltin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:23842 dipyrrolylmethanemethyl-L-cysteine residue skos:exactMatch mesh C056776 dipyrromethane cofactor lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:23853 dithiol skos:exactMatch mesh C004848 dithiol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:23869 dodecenoyl-CoA skos:exactMatch mesh C029426 dodecenoyl+2-dodecenoyl lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:238698 bevantolol skos:exactMatch mesh C021148 bevantolol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:23888 drug skos:exactMatch mesh D008511 Medicine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:23890 ecdysone 25-O-D-glucopyranoside skos:exactMatch mesh C054738 ecdysone 25-O-glucopyranoside lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:23909 ellagitannin skos:exactMatch mesh C013515 ellagitannin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:23929 episterol skos:exactMatch mesh C060242 episterol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:23958 erythrulose skos:exactMatch mesh C100073 erythrulose lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:23984 ethoxybenzoic acid skos:exactMatch mesh C015199 ethoxybenzoic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:24008 etiohemin I skos:exactMatch mesh C060484 etiohemin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:24009 eumelanin skos:exactMatch mesh C041877 eumelanin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:240107 bromfenac skos:exactMatch mesh C053083 bromfenac lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:24012 farnesal skos:exactMatch mesh C084519 farnesal lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:24109 fructosyllysine skos:exactMatch mesh C033186 fructosyl-lysine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:24129 furans skos:exactMatch mesh D005663 Furans lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:24144 galactoglucomannan skos:exactMatch mesh C443804 galactoglucomannan lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:24149 galactonic acid skos:exactMatch mesh C012991 galactonic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:24150 galactonolactone skos:exactMatch mesh C007813 galactonolactone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:24158 galactosaminoglycan skos:exactMatch mesh C007815 galactosaminoglycan lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:24193 gamma-glutamyl-glutathione skos:exactMatch mesh C050159 gamma-glutamyl-glutathione lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:24233 geranylhydroquinone skos:exactMatch mesh C026301 geranylhydroquinone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:24301 glucuronolactone skos:exactMatch mesh C004940 glucuronolactone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:24311 glutaconyl-CoA skos:exactMatch mesh C032423 glutaconyl-coenzyme A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:24326 glutaramic acid skos:exactMatch mesh C057563 glutaramic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:24339 glutathionylcobalamin skos:exactMatch mesh C064617 glutathionylcobalamin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:24340 glutathionyldopa skos:exactMatch mesh C033574 glutathionyldopa lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:2439 acroptilin skos:exactMatch mesh C029800 chlorohyssopifolin C lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:2444 actinodaphnine skos:exactMatch mesh C060992 actinodaphine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:244418 dehydrocostus lactone skos:exactMatch mesh C083030 dehydrocostus lactone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:24464 guluronic acid skos:exactMatch mesh C007896 guluronic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:24479 heme a skos:exactMatch mesh C027728 heme a lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:2448 actinorhodin skos:exactMatch mesh C013390 actinorhodin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:24536 hexachlorocyclohexane skos:exactMatch mesh D002819 Chorea lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:24548 hexadecenoic acid skos:exactMatch mesh C093821 hexadecenoic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:24559 1,3-dinitro-5-nitroso-1,3,5-triazinane skos:exactMatch mesh C508167 hexahydro-1-nitroso-3,5-dinitro-1,3,5-triazine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:24567 cyclohexane-1,2-diol skos:exactMatch mesh C064619 1,2-cyclohexanediol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:24579 1-hexene skos:exactMatch mesh C117224 1-hexene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:24583 hexitol skos:exactMatch mesh C543192 hexitol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:24616 homoglutathione skos:exactMatch mesh C402172 homoglutathione lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:24624 hycanthone mesylate skos:exactMatch mesh C001358 hycanthone methanesulfonate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:24636 proton skos:exactMatch mesh D011522 Protons lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:24640 uranyl hydrogenphosphate skos:exactMatch mesh C075963 hydrogen uranyl phosphate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:2468 secondary alpha-hydroxy ketone skos:exactMatch mesh C011159 acyloin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:24745 hydroxypyridine skos:exactMatch mesh C014047 hydroxypyridines lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:24750 5'-hydroxystreptomycin skos:exactMatch mesh C402413 hydroxystreptomycin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:24765 idaric acid skos:exactMatch mesh C408476 idaric acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:24766 iditol skos:exactMatch mesh C082913 iditol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:24782 imide skos:exactMatch mesh D007094 Imides lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:24809 indole-3-carboxylic acid skos:exactMatch mesh C012382 indole-3-carboxylic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:2481 adenosylcobinamide phosphate skos:exactMatch mesh C524259 adenosylcobinamide phosphate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:24813 3-(indol-3-yl)lactic acid skos:exactMatch mesh C024139 indole-3-lactic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:24850 insect attractant skos:exactMatch mesh C010411 insect attractants lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:24857 iodic acid skos:exactMatch mesh C034670 iodic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:24866 salt skos:exactMatch mesh D012492 Salts lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:2487 Adiantifoline skos:exactMatch mesh C087813 adiantifoline lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:24870 ion skos:exactMatch mesh D007477 Ions lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:24911 isopiperitenol skos:exactMatch mesh C044945 isopiperitenol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:2492 Adouetine X skos:exactMatch mesh C540531 adouetine X lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:24928 isothiocyanic acid skos:exactMatch mesh C037152 isothiocyanic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:2495 adrenosterone skos:exactMatch mesh C011657 adrenosterone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:25001 lactosamine skos:exactMatch mesh C032233 lactosamine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:25013 lanthionine skos:exactMatch mesh C001520 lanthionine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:2503 Affinisine skos:exactMatch mesh C000711009 affinisine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:2506 afrormosin skos:exactMatch mesh C000602523 7-hydroxy-6,4'-dimethoxyisoflavone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:2507 afzelechin skos:exactMatch mesh C510796 afzelechin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:25097 lyxose skos:exactMatch mesh C043333 lyxose lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:251412 adinazolam skos:exactMatch mesh C039668 adinazolam lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:2515 agnuside skos:exactMatch mesh C452960 agnuside lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:25161 mannaric acid skos:exactMatch mesh C114809 mannaric acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:2518 Agrimophol skos:exactMatch mesh C022779 agrimophol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:2521 Ailanthinone skos:exactMatch mesh C548791 ailanthinone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:25218 methacrylate skos:exactMatch mesh D008689 Methacrylates lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:25219 methacrylic acid skos:exactMatch mesh C008384 methacrylic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:2522 Ailanthone skos:exactMatch mesh C029825 ailanthone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:25254 methyl mannoside skos:exactMatch mesh C008466 methylmannoside lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:2527 Ajugarin I skos:exactMatch mesh C092328 ajugarin I lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:2528 Ajugasterone C skos:exactMatch mesh C449037 ajugasterone C lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:25296 methylenedinitramine skos:exactMatch mesh C508216 methylenedinitramine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:25307 methylguanosine skos:exactMatch mesh C116616 8-methylguanosine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:25312 3-methylmalic acid skos:exactMatch mesh C011926 beta-methylmalate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:2532 Akuammine skos:exactMatch mesh C074723 akuammine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:2533 alachlor skos:exactMatch mesh C000188 alachlor lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:25403 mononitroglycerol skos:exactMatch mesh C014686 mononitroglycerol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:25416 monovinyl protochlorophyllide b skos:exactMatch mesh C070926 monovinyl protochlorophyllide b lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:2542 alatolide skos:exactMatch mesh C006438 alatolide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:2544 albanol A skos:exactMatch mesh C047825 mulberrofuran G lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:25520 nicotianamine skos:exactMatch mesh C082893 nicotianamine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:25550 nitroaniline skos:exactMatch mesh C008625 nitroaniline lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:25572 nocardicin skos:exactMatch mesh C027318 nocardicin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:2560 Aldophosphamide skos:exactMatch mesh C006446 aldophosphamide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:25614 nylons skos:exactMatch mesh D009757 Nylons lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:25627 octadecadienoic acid skos:exactMatch mesh C027369 octadecadienoic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:25629 octadecanoate skos:exactMatch mesh D013228 Stearates lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:25634 octadecenoic acid skos:exactMatch mesh C114874 5-octadecenoic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:2564 aldrin skos:exactMatch mesh D000452 Aldrin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:25646 octanoate skos:exactMatch mesh D002210 Caprylates lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:2565 Alectrol skos:exactMatch mesh C472679 alectrol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:25692 ommochrome skos:exactMatch mesh C002772 ommochrome lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:25698 ether skos:exactMatch mesh D004987 Ethers lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:25741 oxide skos:exactMatch mesh D010087 Oxides lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:25812 ozone skos:exactMatch mesh D010126 Ozone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:25818 4-(2-aminoethyl)-N,N-bis(2-chloroethyl)aniline skos:exactMatch mesh C012128 CB 3034 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:25858 1,7-dimethylxanthine skos:exactMatch mesh C021183 1,7-dimethylxanthine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:25877 pentaerythritol dinitrate skos:exactMatch mesh C403269 pentaerythritol dinitrate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:25883 pentahydroxyflavone skos:exactMatch mesh C008775 peflavit lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:2592 Allamandin skos:exactMatch mesh C006451 allamandin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:25957 9,10-epoxy-9,10-dihydrophenanthrene skos:exactMatch mesh C046665 9,10-epoxy-9,10-dihydrophenanthrene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:25979 phenylacetonitrile skos:exactMatch mesh C006725 benzyl cyanide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:2598 Allogibberic acid skos:exactMatch mesh C000629989 allogibberic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:25998 3-phenyllactic acid skos:exactMatch mesh C017648 3-phenyllactic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:2608 Aloesin skos:exactMatch mesh C069868 aloesin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:2609 Aloperine skos:exactMatch mesh C062701 aloperine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:26115 phytoalexin skos:exactMatch mesh C011991 phytoalexins lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:26116 phytochromobilin skos:exactMatch mesh C075811 phytochromobilin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:2613 Altanserin skos:exactMatch mesh C071983 altanserin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:2614 Alteichin skos:exactMatch mesh C043633 alteichin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:2615 Altersolanol A skos:exactMatch mesh C058812 altersolanol A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:26174 poly(N-acetyllactosamine) skos:exactMatch mesh C037199 poly-N-acetyllactosamine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:26191 polyol skos:exactMatch mesh C024617 polyol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:26192 polyoxin A skos:exactMatch mesh C022054 polyoxin A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:26194 polyoxin skos:exactMatch mesh C002457 polyoxin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:2621 amaranthin skos:exactMatch mesh C494261 amaranthin betacyanin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:2629 Ambrosin skos:exactMatch mesh C010675 ambrosin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:2631 amentoflavone skos:exactMatch mesh C011164 amentoflavone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:2635 Amidosulfuron skos:exactMatch mesh C508353 amidosulfuron lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:26355 heme b skos:exactMatch mesh D006418 Heme lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:26362 pseudonigeran skos:exactMatch mesh C449815 pseudonigeran lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:26491 quinhydrone skos:exactMatch mesh C004601 quinhydrone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:26519 radical skos:exactMatch mesh D005609 Free Radicals lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:26533 reticuline skos:exactMatch mesh C003298 reticuline lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:26562 ribose phosphate skos:exactMatch mesh C031626 ribose-5-phosphate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:26568 ribosylamine skos:exactMatch mesh C481638 1-amino-1-deoxyribose lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:26630 selenocystathionine skos:exactMatch mesh C524334 selenocystathionine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:26661 shidasterone skos:exactMatch mesh C011352 shidasterone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:26710 sodium chloride skos:exactMatch mesh D017673 Sodium Chloride, Dietary lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:26718 solanesol skos:exactMatch mesh C017719 solanesol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:2678 Amphenone B skos:exactMatch mesh C073262 amphenone B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:2679 amphetamine skos:exactMatch mesh C000625945 benzedrine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:26800 styrylquinoline skos:exactMatch mesh C481600 styrylquinoline lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:2682 amphotericin B skos:exactMatch mesh C068538 liposomal amphotericin B lexical 0.9 https://github.com/indralab/panacea_indra/blob/master/panacea_indra/make_ctd_tests.py +chebi CHEBI:26828 sulfolipid I skos:exactMatch mesh C009355 sulfolipid I lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:26829 sulfoglycolipid skos:exactMatch mesh C011117 sulfoglycolipids lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:26847 altraric acid skos:exactMatch mesh C523354 talaric acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:2685 Amprotropine skos:exactMatch mesh C053014 amprotropine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:2691 isoamyl nitrite skos:exactMatch mesh C048958 isoamyl nitrite lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:26911 oxolane skos:exactMatch mesh C018674 tetrahydrofuran lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:269574 abamine skos:exactMatch mesh C514045 abamine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:2696 Anacardic acid skos:exactMatch mesh C088115 anacardic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:2697 Anacrotine skos:exactMatch mesh C053598 anacrotine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:26981 threitol skos:exactMatch mesh C003460 threitol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:2699 Anagyrine skos:exactMatch mesh C012736 anagyrine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:2701 Anantine skos:exactMatch mesh C110557 anantine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:27012 tocopherolquinone skos:exactMatch mesh C002421 tocopherylquinone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:27039 trans-1,2-dihydronaphthalene-1,2-diol skos:exactMatch mesh C507866 trans-1,2-dihydro-1,2-naphthalenediol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:2705 Anatabine skos:exactMatch mesh C012737 anatabine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:27050 trans-2,6-dimethyl-5-methylenehept-2-enoic acid skos:exactMatch mesh C530422 trans-2-methyl-5-isopropylhexa-2,5-dienoic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:2706 Anatoxin a skos:exactMatch mesh C509783 anatoxin a lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:2707 Ancistrocladine skos:exactMatch mesh C108278 ancistrocladine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:2708 Androcymbine skos:exactMatch mesh C001891 androcymbine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:27096 trichlorobenzene skos:exactMatch mesh C036720 trichlorobenzene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:27130 trimethylarsine skos:exactMatch mesh C009572 trimethylarsine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:27131 trimethylarsine oxide skos:exactMatch mesh C052920 trimethylarsine oxide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:271685 ethyltrimethylammonium skos:exactMatch mesh C039795 trimethylethylammonium lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:27181 ubichromenol skos:exactMatch mesh C003740 ubichromenol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:2721 Angoline skos:exactMatch mesh C113966 angoline lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:2723 Angustibalin skos:exactMatch mesh C000215 angustibalin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:2724 Angustifoline skos:exactMatch mesh C101930 angustifoline lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:27240 uridin-5-yloxyacetic acid skos:exactMatch mesh C025230 uridine-5-oxyacetic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:27241 methyl uridin-5-yloxyacetate skos:exactMatch mesh C016596 methyluridine-5-oxyacetic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:2725 Angustine skos:exactMatch mesh C004166 angustine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:27292 vinyl carbamate skos:exactMatch mesh C017963 vinyl carbamate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:2733 Anisatin skos:exactMatch mesh C031244 anisatin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:27343 xylogalacturonan skos:exactMatch mesh C465879 xylogalacturonan lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:2735 Anisodamine skos:exactMatch mesh C003922 anisodamine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:27350 xyloside skos:exactMatch mesh C010807 xylosides lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:27371 (+)-quercitol skos:exactMatch mesh C046273 5-deoxyinositol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:27373 pantothenol skos:exactMatch mesh C007288 dexpanthenol lexical 0.9 https://github.com/indralab/panacea_indra/blob/master/panacea_indra/make_ctd_tests.py +chebi CHEBI:27384 3-(4-oxo-4,5-dihydro-1H-imidazol-5-yl)propanoic acid skos:exactMatch mesh C018977 imidazol-4-one-5-propionic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:27398 imidazole-4-acetaldehyde skos:exactMatch mesh C053546 1H-imidazole-4-acetaldehyde lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:27399 deisopropylatrazine skos:exactMatch mesh C027880 6-deisopropylatrazine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:27405 streptidine skos:exactMatch mesh C005733 streptidine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:27420 Diferulic acid skos:exactMatch mesh C516502 diferulic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:27431 5-deoxykaempferol skos:exactMatch mesh C550286 5-deoxykaempferol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:27444 but-3-yn-1-ol skos:exactMatch mesh C021965 3-butyn-1-ol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:27461 selenohomocystine skos:exactMatch mesh C455269 selenohomocystine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:27479 2'-hydroxydaidzein skos:exactMatch mesh C506346 2',4',7-trihydroxyisoflavone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:27480 phenylacetylglycine skos:exactMatch mesh C022050 phenylacetylglycine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:27484 uroporphyrin I skos:exactMatch mesh C034103 uroporphyrin I lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:27486 16,17-didehydropregnenolone skos:exactMatch mesh C003592 16-dehydropregnenolone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:27493 juvenile hormone III skos:exactMatch mesh C036585 juvenile hormone III lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:27502 quinidine D-gluconate skos:exactMatch mesh C016713 quinidine gluconate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:27510 umbelliferone skos:exactMatch mesh C031477 7-hydroxycoumarin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:27514 genistein 7-O-beta-D-glucoside skos:exactMatch mesh C040641 genistin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:27515 alpha-Neu5Ac-(2->8)-alpha-Neu5Ac-(2->3)-beta-Gal-D-(1->3)-beta-D-GalNAc-(1->4)-[alpha-Neu5Ac-(2->8)-alpha-Neu5Ac-(2->3)]-beta-D-Gal-(1->4)-beta-D-Glc-(1<->1')-Cer skos:exactMatch mesh C082013 tetrasialoganglioside GQ1b lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:27519 4,4'-Dichlorobenzophenone skos:exactMatch mesh C004759 4,4'-dichlorobenzophenone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:27522 rutinose skos:exactMatch mesh C539209 rutinose lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:27528 1-phenanthrol skos:exactMatch mesh C092102 1-hydroxyphenanthrene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:27538 4-chloroacetophenone skos:exactMatch mesh C017838 4-chloroacetophenone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:27542 methyl oleate skos:exactMatch mesh C005576 methyl oleate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:27545 2,5-dichlorohydroquinone skos:exactMatch mesh C069879 2,5-dichlorohydroquinone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:27552 4'-methoxy-5,7-dihydroxyflavanone skos:exactMatch mesh C538973 isosakuranetin lexical 0.9 https://github.com/indralab/panacea_indra/blob/master/panacea_indra/make_ctd_tests.py +chebi CHEBI:27565 4-aminosalicylic acid skos:exactMatch mesh D000636 Aminosalicylic Acids lexical 0.9 https://github.com/indralab/panacea_indra/blob/master/panacea_indra/make_ctd_tests.py +chebi CHEBI:27566 6-prenylnaringenin skos:exactMatch mesh C521871 6-prenylnaringenin lexical 0.9 https://github.com/indralab/panacea_indra/blob/master/panacea_indra/make_ctd_tests.py +chebi CHEBI:27569 arabinogalactan skos:exactMatch mesh C005653 arabinogalactan lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:27571 3'-ketolactose skos:exactMatch mesh C015313 3-ketolactose lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:27581 7-hydroxy-6-methyl-8-(1-D-ribityl)lumazine skos:exactMatch mesh C008332 Masuda's Compound V lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:27598 physcion 8-gentiobioside skos:exactMatch mesh C038591 physcion diglucoside lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:27615 (2-naphthyl)methanol skos:exactMatch mesh C055629 2-naphthalenemethanol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:27617 monensin A skos:exactMatch mesh C548877 monensic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:27624 prostaglandin B1 skos:exactMatch mesh C034467 prostaglandin B1 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:27625 alpha-D-glucosamine 1-phosphate skos:exactMatch mesh C038515 glucosamine 1-phosphate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:27628 4-isopropylbenzyl alcohol skos:exactMatch mesh C585751 cuminol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:27633 2,6-dichlorohydroquinone skos:exactMatch mesh C104629 2,6-dichloro-4-hydroquinone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:27643 N,N-Diethylphenylacetamide skos:exactMatch mesh C044250 N,N-diethylphenylacetamide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:27647 prostaglandin G2 skos:exactMatch mesh C038291 prostaglandin G2 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:27656 camptothecin skos:exactMatch mesh C000708228 2-cyclohexylidenhydrazo-4-phenyl-thiazole lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:27662 benzquinamide skos:exactMatch mesh C100234 benzquinamide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:27664 2-oxocyclohexane-1-carbonyl-CoA skos:exactMatch mesh C112170 2-ketocyclohexanecarboxyl-coenzyme A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:27673 herbacetin skos:exactMatch mesh C581534 herbacetin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:27680 galactomannan skos:exactMatch mesh C012990 galactomannan lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:27686 3-deoxyleucocyanidin skos:exactMatch mesh C431922 luteoforol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:2769 apigenin 7,4'-dimethyl ether skos:exactMatch mesh C044998 apigenin dimethylether lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:27694 glutaurine skos:exactMatch mesh C020903 glutaurine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:27704 S-hexylglutathione skos:exactMatch mesh C033550 hexylglutathione lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:27706 (+)-vernolic acid skos:exactMatch mesh C081136 vernolic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:27714 6-acetyl-2-amino-3,7,8,9-tetrahydropyrimido[4,5-b][1,4]diazepin-4-one skos:exactMatch mesh C032200 2-amino-4-oxo-6-acetyl-7,8-dihydro-3H,9H-pyrimidodiazepine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:27715 3-chlorocatechol skos:exactMatch mesh C031137 3-chlorocatechol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:2772 Apigeninidin skos:exactMatch mesh C104027 apigeninidin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:27724 2-Methylbenzyl alcohol skos:exactMatch mesh C030912 2-methylbenzyl alcohol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:27725 butin skos:exactMatch mesh C051437 butin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:27726 6-chloro-1,3,5-triazine-2,4-diamine skos:exactMatch mesh C092719 2-chloro-4,6-diamino-s-triazine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:27731 N-acetyl-beta-D-galactosaminyl-(1->4)-beta-D-galactosyl-(1->4)-beta-D-glucosylceramide skos:exactMatch mesh C038244 ganglio-N-triaosylceramide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:27744 glyphosate skos:exactMatch mesh C010974 glyphosate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:27754 methacrylyl-CoA skos:exactMatch mesh C035909 methacrylyl-coenzyme A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:27757 4-chlorobiphenyl skos:exactMatch mesh C006983 4-chlorobiphenyl lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:27761 (S)-prunasin skos:exactMatch mesh C432348 sambunigrin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:27764 3-aminobenzenesulfonic acid skos:exactMatch mesh C032778 metanilic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:27770 nonanoyl-CoA skos:exactMatch mesh C057128 nonanoyl-coenzyme A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:27777 acetohydroxamic acid skos:exactMatch mesh D000744 Anemia, Hemolytic, Autoimmune lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:27778 abequose skos:exactMatch mesh C023708 abequose lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:27779 griseofulvin skos:exactMatch mesh C112275 sporostatin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:27781 myristoleic acid skos:exactMatch mesh C054211 9-tetradecenoic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:27789 1,2-dichloroethane skos:exactMatch mesh C024565 ethylene dichloride lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:27791 P(1),P(4)-bis(uridin-5'-yl) tetraphosphate skos:exactMatch mesh C403315 diquafosol lexical 0.9 https://github.com/indralab/panacea_indra/blob/master/panacea_indra/make_ctd_tests.py +chebi CHEBI:27793 beta-carotene 5,6-epoxide skos:exactMatch mesh C073147 5,6-epoxy-beta,beta-carotene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:27795 beta-erythroidine skos:exactMatch mesh C004873 beta-erythroidine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:27796 trimethobenzamide skos:exactMatch mesh C100146 trimethobenzamide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:27799 lokundjoside skos:exactMatch mesh C016321 cuspidoside lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:27810 resorcinol skos:exactMatch mesh C031389 resorcinol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:27812 Se-methyl-L-selenocysteine skos:exactMatch mesh C002979 selenomethylselenocysteine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:27820 prostaglandin A2 skos:exactMatch mesh C100008 prostaglandin A2 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:27822 2-aminobenzimidazole skos:exactMatch mesh C000621696 2-iminobenzimidazoline lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:27837 2-cyanopyridine skos:exactMatch mesh C494247 pyridine-2-carbonitrile lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:27840 2,4-dimethylaniline skos:exactMatch mesh C009694 2,4-xylidine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:27847 3-iodo-L-tyrosine skos:exactMatch mesh C523964 3-iodotyrosine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:27852 3,4-dihydroxymandelaldehyde skos:exactMatch mesh C007431 3,4-dihydroxyphenylglycolaldehyde lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:27857 (1->4)-beta-D-mannan skos:exactMatch mesh C081692 beta-1,4-mannan lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:2786 Apotransferrin skos:exactMatch mesh C028284 apotransferrin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:2787 Apovincamine skos:exactMatch mesh C063621 apovincamine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:27870 biocytin skos:exactMatch mesh C013411 biocytin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:2788 apraclonidine skos:exactMatch mesh C016986 apraclonidine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:27880 2,6-Diethylaniline skos:exactMatch mesh C085691 2,6-diethylaniline lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:27890 L-iduronic acid 2-sulfate skos:exactMatch mesh C067448 iduronate 2-sulfate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:27905 phenyl hydrogen sulfate skos:exactMatch mesh C025208 phenylsulfate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:27911 N(8)-acetylspermidine skos:exactMatch mesh C030223 N(8)-acetylspermidine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:27920 cuscohygrine skos:exactMatch mesh C098327 cuscohygrine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:27924 phenylhydrazine skos:exactMatch mesh C032041 1,2-diphenylhydrazine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:27936 1,3,6,8-tetrachlorodibenzodioxine skos:exactMatch mesh C035669 1,3,6,8-tetrachlorodibenzo-p-dioxin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:27939 chaulmoogric acid skos:exactMatch mesh C017119 chaulmoogric acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:27940 2,5-dihydrophenyl-L-alanine skos:exactMatch mesh C004174 2,5-dihydrophenylalanine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:27941 pullulan skos:exactMatch mesh C009109 pullulan lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:27957 hydroxyacetone skos:exactMatch mesh C004433 acetol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:27976 prop-2-ynal skos:exactMatch mesh C018132 propiolaldehyde lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:27983 4,6-diamino-5-formamidopyrimidine skos:exactMatch mesh C039544 4,6-diamino-5-N-formamidopyrimidine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:27995 3-methylbenzyl alcohol skos:exactMatch mesh C042289 3-methylbenzyl alcohol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:28005 cyclohex-1-ene-1-carbonyl-CoA skos:exactMatch mesh C074781 cyclohex-1-enecarboxyl-coenzyme A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:28016 3,5-dichloro-L-tyrosine skos:exactMatch mesh C408691 3,5-dichlorotyrosine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:28020 4-cyanopyridine skos:exactMatch mesh C494727 4-cyanopyridine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:2803 Arborine skos:exactMatch mesh C014013 glycosine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:28031 prostaglandin E3 skos:exactMatch mesh C033246 prostaglandin E3 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:2804 Arborinine skos:exactMatch mesh C022784 arborinine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:28047 5beta-cholestane-3alpha,7alpha-diol skos:exactMatch mesh C007426 dihydroxycoprostane lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:28051 veratridine skos:exactMatch mesh D014702 Veratrine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:28075 2-amino-2-methylbutanoic acid skos:exactMatch mesh C032737 isovaline lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:28078 4-chlorophenol skos:exactMatch mesh C029107 4-chlorophenol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:2808 Archangelicin skos:exactMatch mesh C502511 archangelicin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:28089 N-hydroxytyrosine skos:exactMatch mesh C020912 N-hydroxytyrosine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:28091 1-hydroxy-2-naphthaldehyde skos:exactMatch mesh C555036 1-hydroxy-2-naphthaldehyde lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:28094 2,2,2-trichloroethanol skos:exactMatch mesh C005849 2,2,2-trichloroethanol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:28097 chlorobenzene skos:exactMatch mesh C031294 chlorobenzene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:28100 (1->3)-alpha-D-glucan skos:exactMatch mesh C045788 alpha-1,3-glucan lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:28105 4-chlorobenzaldehyde skos:exactMatch mesh C052044 4-chlorobenzaldehyde lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:28113 24,25-dihydrolanosterol skos:exactMatch mesh C015316 lanostenol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:28115 methylcobalamin skos:exactMatch mesh C019476 mecobalamin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:28123 diethanolamine skos:exactMatch mesh C520084 2,2'-iminodiethanol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:2813 Arecaidine skos:exactMatch mesh C015688 arecaidine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:28136 N-methyltryptamine skos:exactMatch mesh C035668 N-methyltryptamine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:28139 bis(4-chlorophenyl)acetic acid skos:exactMatch mesh C000849 bis(p-chlorophenyl)acetic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:28162 3-(indol-3-yl)propyl phosphate skos:exactMatch mesh C041272 indolepropanol phosphate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:28181 2',3'-cyclic GMP skos:exactMatch mesh C078170 2',3'-cyclic GMP lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:28187 alpha-(hydroxymethyl)serine skos:exactMatch mesh C588121 alpha-(hydroxymethyl)serine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:28189 isomaltose skos:exactMatch mesh C088124 hunterioside lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:28197 daidzein skos:exactMatch mesh C433579 isoaurostatin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:28201 rotenone skos:exactMatch mesh D029866 Derris lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:28207 D-galactosamine 1-phosphate skos:exactMatch mesh C079528 galactosamine 1-phosphate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:2821 Aricine skos:exactMatch mesh C017997 aricine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:28216 methylmercury chloride skos:exactMatch mesh C004925 methylmercuric chloride lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:28219 N-furfurylformamide skos:exactMatch mesh C065396 N-furfurylformamide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:2822 Aridanin skos:exactMatch mesh C058029 aridanin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:282234 dihydrodigitoxin skos:exactMatch mesh C000966 Dihydrodigitoxin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:2826 Armepavine skos:exactMatch mesh C064689 armepavine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:28263 2,3,5-trichlorobenzene-1,4-diol skos:exactMatch mesh C525152 trichlorohydroquinone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:28266 fluorene skos:exactMatch mesh C041509 fluorene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:2827 Arnebinol skos:exactMatch mesh C073509 arnebinol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:28279 6-methylthiopurine skos:exactMatch mesh C010240 6-methylthiopurine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:2828 Arnebinone skos:exactMatch mesh C073510 arnebinone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:28286 cyclohexane-1,4-dione skos:exactMatch mesh C000605824 1,4-cyclohexanedione lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:28297 hydantoin-5-propionic acid skos:exactMatch mesh C050351 hydantoin-5-propionic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:28298 2,2',4,4',5-pentachlorodiphenyl ether skos:exactMatch mesh C058905 2,2',4,4',5-pentachlorodiphenyl ether lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:28302 glucuronoarabinoxylan skos:exactMatch mesh C114470 glucuronoarabinoxylan lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:28306 semicarbazide skos:exactMatch mesh C010059 carbamylhydrazine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:28311 indol-3-ylacetaldehyde oxime skos:exactMatch mesh C467098 indole-3-acetaldoxime lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:28327 naringenin 7-O-beta-D-glucoside skos:exactMatch mesh C506622 prunin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:28330 4-hydroxy-L-threonine skos:exactMatch mesh C011285 hydroxythreonine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:28339 lactose 6'-phosphate skos:exactMatch mesh C040076 lactose 6'-phosphate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:28341 2-hydroxyacetophenone skos:exactMatch mesh C042290 omega-hydroxyacetophenone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:28345 pyridine-3-carbaldehyde skos:exactMatch mesh C014785 3-pyridinaldehyde lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:28355 adenosine 2',5'-bisphosphate skos:exactMatch mesh C045716 adenosine 2',5'-diphosphate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:28366 phorbol 13-decanoate 12-tiglate skos:exactMatch mesh C011986 phorbol 12-tiglate 13-decanoate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:28396 3-[alpha-D-galactosyl-(1->6)-beta-D-galactosyl]-1,2-diacyl-sn-glycerol skos:exactMatch mesh C007388 digalactosyldiacylglycerol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:28409 triacontan-1-ol skos:exactMatch mesh C047578 1-triacontanol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:28410 2,2-bis(4-chlorophenyl)ethanol skos:exactMatch mesh C021112 DDOH lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:28418 gentamycin A skos:exactMatch mesh C030880 gentamicin A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:2842 Aromoline skos:exactMatch mesh C066341 aromoline lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:28424 alpha-Neu5NAc-(2->8)-alpha-Neu5NAc-(2->3)-beta-D-Gal-(1->4)-beta-D-Glc-(1<->1')-Cer skos:exactMatch mesh C026226 ganglioside, GD3 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:28426 cyanidin 3-O-beta-D-glucoside skos:exactMatch mesh C114438 cyanidin 3-O-glucoside lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:28442 15-oxoprostaglandin F2alpha skos:exactMatch mesh C026528 15-ketoprostaglandin F2alpha lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:28465 acetaldehyde oxime skos:exactMatch mesh C023728 acetaldehyde oxime lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:28475 phosphoglycolohydroxamic acid skos:exactMatch mesh C008886 phosphoglycolohydroxamate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:28478 (2-hydroxyphenyl)acetic acid skos:exactMatch mesh C005756 2-hydroxyphenylacetic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:28493 decanoyl-CoA skos:exactMatch mesh C045561 decanoyl-coenzyme A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:28498 acadesine skos:exactMatch mesh C011651 acadesine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:28506 arsonoacetic acid skos:exactMatch mesh C033355 arsonoacetic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:28516 1,2-dihydronaphthalene-1,2-diol skos:exactMatch mesh C042334 1,2-dihydroxy-1,2-dihydronaphthalene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:2852 Artemisin skos:exactMatch mesh C075875 artemisin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:28522 4-hydroxybutyryl-CoA skos:exactMatch mesh C101347 4-hydroxybutyryl-coenzyme A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:28529 quercetin 7-O-beta-D-glucoside skos:exactMatch mesh C089996 quercimeritrin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:28540 5beta-cholestane-3alpha,7alpha,26-triol skos:exactMatch mesh C011722 cholestane-3,7,26-triol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:28555 1-chloro-2,2-bis(4-chlorophenyl)ethane skos:exactMatch mesh C117975 DDMS lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:28569 quinidine polygalacturonate skos:exactMatch mesh C047144 quinidine polygalacturonate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:28582 cupreine skos:exactMatch mesh C029819 6'-hydroxycinchonidine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:28585 4-carboxy-4'-sulfoazobenzene skos:exactMatch mesh C113142 4-carboxy-4'-sulfoazobenzene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:28586 verbascose skos:exactMatch mesh C570815 verbascose lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:28592 ricinoleic acid skos:exactMatch mesh C030521 ricinoleic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:28599 siroheme skos:exactMatch mesh C009272 siroheme lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:28603 (+)-syringaresinol beta-D-glucoside skos:exactMatch mesh C087806 acanthoside B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:28608 S-(N-Hydroxy-N-methylcarbamoyl)glutathione skos:exactMatch mesh C078602 S-(N-hydroxy-N-methylcarbamoyl)glutathione lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:28610 1-O-oleoyl-sn-glycero-3-phosphocholine skos:exactMatch mesh C082823 1-oleoyl lysophosphatidylcholine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:28617 p-tolualdehyde skos:exactMatch mesh C020627 4-methylbenzaldehyde lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:28618 1,4-dichlorobenzene skos:exactMatch mesh C018511 4-dichlorobenzene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:28629 precorrin-8X skos:exactMatch mesh C072475 precorrin 8x lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:28637 2',3'-cyclic UMP skos:exactMatch mesh C009806 uridine 2',3'-cyclophosphate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:28638 isobutyronitrile skos:exactMatch mesh C022246 isobutyronitrile lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:28640 lipoteichoic acid skos:exactMatch mesh C009900 lipoteichoic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:28649 2-(hydroxymethyl)anthraquinone skos:exactMatch mesh C077912 2-(hydroxymethyl)anthraquinone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:28667 11-dehydro-thromboxane B2 skos:exactMatch mesh C049235 11-dehydro-thromboxane B2 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:2867 Asclepin skos:exactMatch mesh C020214 asclepin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:28671 cuminaldehyde skos:exactMatch mesh C007165 cuminaldehyde lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:28678 7-methoxy-9,10-dihydrophenanthrene-2,5-diol skos:exactMatch mesh C505281 lusianthridin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:2869 ascorbic acid 2-sulfate skos:exactMatch mesh C001956 ascorbic acid 2-sulfate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:28697 21-deoxycortisol skos:exactMatch mesh C003556 21-deoxycortisol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:28705 narirutin skos:exactMatch mesh C000602040 isonaringin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:28719 4-hydroxyphenylglyoxylic acid skos:exactMatch mesh C030921 4-hydroxyphenylglyoxylic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:28724 9,10-dihydroxyoctadecanoic acid skos:exactMatch mesh C074110 9,10-dihydroxystearic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:28735 4-nitroacetophenone skos:exactMatch mesh C001972 4-nitroacetophenone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:28740 3,4-Dihydroxymandelonitrile skos:exactMatch mesh C040484 3,4-dihydroxymandelonitrile lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:28747 picolinic acid skos:exactMatch mesh C030614 picolinic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:28755 2,4,6-trichlorophenol skos:exactMatch mesh C024564 2,4,6-trichlorophenol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:28756 Eutypine skos:exactMatch mesh C102200 eutypine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:28759 3-oxo-3-phenylpropionic acid skos:exactMatch mesh C036323 3-keto-3-phenylpropionic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:28776 gamma-glutamyl-Se-methylselenocysteine skos:exactMatch mesh C424943 glutamyl-Se-methylselenocysteine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:2879 Aspergillic acid skos:exactMatch mesh C004524 aspergillic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:28790 serotonin skos:exactMatch mesh C023161 thrombocytin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:28791 isoglutamic acid skos:exactMatch mesh C035260 3-aminoglutaric acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:28793 beta-D-glucan skos:exactMatch mesh D047071 beta-Glucans lexical 0.9 https://github.com/indralab/panacea_indra/blob/master/panacea_indra/make_ctd_tests.py +chebi CHEBI:287979 2-iodobenzoic acid skos:exactMatch mesh C023675 2-iodobenzoic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:2880 asperlicin skos:exactMatch mesh C046367 asperlicin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:28806 2'-deoxyinosine-5'-monophosphate skos:exactMatch mesh C017193 deoxyinosine monophosphate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:2881 asperuloside skos:exactMatch mesh C077956 asperuloside lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:28814 piceatannol skos:exactMatch mesh C041525 3,3',4,5'-tetrahydroxystilbene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:28817 dodecane skos:exactMatch mesh C007548 n-dodecane lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:28820 9-phenanthrol skos:exactMatch mesh C091375 9-phenanthrol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:28826 fluoromethane skos:exactMatch mesh C029999 fluoromethane lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:2883 Aspidin skos:exactMatch mesh C010302 aspidin BB lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:28837 octanoic acid skos:exactMatch mesh C031492 octanoic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:28839 3-disulfanyl-L-alanine skos:exactMatch mesh C116840 cysteine persulfide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:28846 dCDP skos:exactMatch mesh C045813 2'-deoxycytidine diphosphate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:28852 prostaglandin F1alpha skos:exactMatch mesh C100006 prostaglandin F1 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:28853 isopimpinellin skos:exactMatch mesh C015304 isopimpinellin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:28854 2,4-D skos:exactMatch mesh C056848 hedonal lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:28858 1D-myo-inositol 3,4-bisphosphate skos:exactMatch mesh C051854 inositol 3,4-bisphosphate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:2886 Aspidodasycarpine skos:exactMatch mesh C000614945 aspidodasycarpine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:28870 1-O-all-trans-retinoyl-beta-glucuronic acid skos:exactMatch mesh C026787 retinoyl glucuronide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:28871 6-methyladenine skos:exactMatch mesh C005955 6-methyladenine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:28877 1-hydroxyanthraquinone skos:exactMatch mesh C061208 1-hydroxyanthraquinone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:28889 5,6,7,8-tetrahydropteridine skos:exactMatch mesh C045357 5,6,7,8-tetrahydropteridine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:28891 oxanthrene skos:exactMatch mesh C512003 dibenzodioxin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:28897 pentadecane skos:exactMatch mesh C033245 pentadecane lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:28899 nigeran skos:exactMatch mesh C001290 glucan nigeran lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:28906 protoanemonin skos:exactMatch mesh C037354 protoanemonin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:28908 bambermycin skos:exactMatch mesh C419802 moenomycin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:28921 7-methyladenine skos:exactMatch mesh C059225 7-methyladenine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:28922 prostaglandin F2beta skos:exactMatch mesh C037027 prostaglandin F2beta lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:28924 3-aminophenol skos:exactMatch mesh C055528 3-aminophenol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:28928 angelicin skos:exactMatch mesh C011659 angelicin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:28934 vitamin D2 skos:exactMatch mesh D004872 Ergocalciferols lexical 0.9 https://github.com/indralab/panacea_indra/blob/master/panacea_indra/make_ctd_tests.py +chebi CHEBI:28941 docosanoic acid skos:exactMatch mesh C007547 behenic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:28948 gramine skos:exactMatch mesh C007884 gramine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:28950 N-methyl-N-picrylnitramine skos:exactMatch mesh C015384 nitramine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:2897 astragaloside III skos:exactMatch mesh C586938 astragaloside III lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:28975 2,5-dichloro-2,5-cyclohexadiene-1,4-diol skos:exactMatch mesh C087473 2,5-dichloro-2,5-cyclohexadiene-1,4-diol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:28981 gentianine skos:exactMatch mesh C060402 gentianine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:28987 abietic acid skos:exactMatch mesh C023710 abietic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:2899 trans-astringin skos:exactMatch mesh C121481 astringin lexical 0.9 https://github.com/indralab/panacea_indra/blob/master/panacea_indra/make_ctd_tests.py +chebi CHEBI:28994 beta-D-hamamelose skos:exactMatch mesh C009758 hamamelose lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:28996 pinocarvone skos:exactMatch mesh C000602152 pinocarvone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:29009 N(tele)-methylhistamine skos:exactMatch mesh C048140 N-methylhistamine lexical 0.9 https://github.com/indralab/panacea_indra/blob/master/panacea_indra/make_ctd_tests.py +chebi CHEBI:2901 Astrophylline skos:exactMatch mesh C476936 astrophylline lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:29015 ethyl p-methoxycinnamate skos:exactMatch mesh C531364 ethyl 4-methoxycinnamate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:29019 nonanoic acid skos:exactMatch mesh C008776 pelargonic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:29021 hexane skos:exactMatch mesh C026385 n-hexane lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:29028 glucobrassicin skos:exactMatch mesh C048308 glucobrassicin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:2906 Atheroline skos:exactMatch mesh C001827 atheroline lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:29094 homoisocitric acid skos:exactMatch mesh C517550 homoisocitric acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:29115 5-hydroxyuracil skos:exactMatch mesh C045975 5-hydroxyuracil lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:29120 oxidonitrogen(1+) skos:exactMatch mesh C504137 nitrosonium ion lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:29127 cytosine glycol skos:exactMatch mesh C049744 cytosine glycol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:29128 thymine glycol skos:exactMatch mesh C029389 thymine glycol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:29130 2,3-didehydrosparteine skos:exactMatch mesh C044694 2-dehydrosparteine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:29136 pyridine N-oxide skos:exactMatch mesh C013229 pyridine N-oxide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:29138 trifluoroacetyl chloride skos:exactMatch mesh C500395 trifluoroacetyl chloride lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:29146 1H-imidazo[2,1-i]purine skos:exactMatch mesh C004981 1,N(6)-ethenoadenine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:29148 benzene-1,2,4-triamine skos:exactMatch mesh C051091 1,2,4-triaminobenzene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:2920 Aucuparin skos:exactMatch mesh C000588997 aucuparin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:2921 Aurachin D skos:exactMatch mesh C052097 aurachin D lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:29210 trithionic acid skos:exactMatch mesh C009597 trithionic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:29211 disulfuric acid skos:exactMatch mesh C036333 pyrosulfuric acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:29218 seleninic acid skos:exactMatch mesh C473453 seleninic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:29219 chlorous acid skos:exactMatch mesh C063160 chlorous acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:29221 perchloric acid skos:exactMatch mesh C576518 Perchloric Acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:29226 iodate skos:exactMatch mesh D007452 Iodates lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:29231 hypoiodous acid skos:exactMatch mesh C081961 hypoiodous acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:29251 disulfite skos:exactMatch mesh C030981 metabisulfite lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:29271 peroxynitric acid skos:exactMatch mesh C039642 peroxynitric acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:29288 peroxysulfate(2-) skos:exactMatch mesh C038288 peroxymonosulfate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:29290 thionyl chloride skos:exactMatch mesh C023589 thionyl chloride lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:29291 sulfuryl dichloride skos:exactMatch mesh C044255 sulfonyl chloride lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:29309 methyl skos:exactMatch mesh C051224 methyl radical lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:2931 Australine skos:exactMatch mesh C059794 australine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:2932 Austrobailignan 1 skos:exactMatch mesh C093023 austrobailignan 1 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:29325 oxidooxomethyl skos:exactMatch mesh C041069 carboxyl radical lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:29329 nitrooxidanyl skos:exactMatch mesh C031701 nitrogen trioxide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:29357 methanediyl skos:exactMatch mesh C504223 methylene radical lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:29366 thiophosgene skos:exactMatch mesh C016145 thiophosgene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:2937 avenacoside A skos:exactMatch mesh C582638 avenacoside A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:29374 ditritium oxide skos:exactMatch mesh C033961 tritium oxide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:29377 sodium carbonate skos:exactMatch mesh C005686 sodium carbonate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:2938 avenacoside B skos:exactMatch mesh C582639 avenacoside B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:29384 sulfur trioxide skos:exactMatch mesh C011118 sulfur trioxide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:29385 cyclooctasulfur skos:exactMatch mesh C056471 cyclooctasulfur lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:2939 Avenanthramide A skos:exactMatch mesh C546195 avenanthramide A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:2940 Avizafone skos:exactMatch mesh C065249 pro-diazepam lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:29412 oxonium skos:exactMatch mesh C027727 hydronium ion lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:2944 Azafrin skos:exactMatch mesh C047580 azafrin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:29449 hydrogen azide skos:exactMatch mesh C007972 hydrazoic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:2946 azatadine skos:exactMatch mesh C006656 azatadine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:29461 10-deoxymethynolide skos:exactMatch mesh C079477 10-deoxymethynolide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:29472 2-heptyl-3-hydroxy-4-quinolone skos:exactMatch mesh C407944 2-heptyl-3-hydroxy-4-quinolone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:29476 3-amino-4-hydroxybenzoic acid skos:exactMatch mesh C110924 3-amino-4-hydroxybenzoic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:29504 8,8a-Deoxyoleandolide skos:exactMatch mesh C009866 8,8a-deoxyoleandolide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:29506 cethromycin skos:exactMatch mesh C405499 cethromycin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:29507 3-amino-5-hydroxybenzoic acid skos:exactMatch mesh C031509 3-amino-5-hydroxybenzoic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:29510 abietol skos:exactMatch mesh C026490 abietyl alcohol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:29516 Ansatrienin A skos:exactMatch mesh C036970 mycotrienin I lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:2952 Azidopine skos:exactMatch mesh C041130 azidopine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:29540 Avermectin B2a skos:exactMatch mesh C023882 avermectin B2a lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:29547 Bis-noryangonin skos:exactMatch mesh C000293 bisnoryangonin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:29554 Chlorobiphenyl-desleucyl-vancomycin skos:exactMatch mesh C405766 chlorobiphenyl-desleucyl-vancomycin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:29555 Chlorobiphenyl-vancomycin skos:exactMatch mesh C437984 chlorobiphenyl vancomycin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:29556 chloroeremomycin skos:exactMatch mesh C057893 chloroorienticin A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:29566 Cyclothialidine skos:exactMatch mesh C085889 cyclothialidine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:29568 mycinose skos:exactMatch mesh C000617711 D-mycinose lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:29569 DMG-MINO skos:exactMatch mesh C085305 9-(N,N-dimethylglycylamido)minocycline lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:29581 Everninomycin skos:exactMatch mesh C001202 evernimicin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:29582 ascomycin skos:exactMatch mesh C058028 immunomycin lexical 0.9 https://github.com/indralab/panacea_indra/blob/master/panacea_indra/make_ctd_tests.py +chebi CHEBI:29583 Fengycin skos:exactMatch mesh C049972 fengycin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:2962 kresoxim-methyl skos:exactMatch mesh C469328 kresoxim-methyl lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:29621 MK826 skos:exactMatch mesh C118072 MK 826 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:29623 Manumycin A skos:exactMatch mesh C054474 manumycin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:29624 Megalomicin A skos:exactMatch mesh C008343 megalomicin A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:29631 Micrococcin skos:exactMatch mesh C009779 micrococcin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:29632 Mureidomycin A skos:exactMatch mesh C059803 mureidomycin A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:29633 Mycosubtilin skos:exactMatch mesh C012448 mycosubtiline lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:2964 BO 2727 skos:exactMatch mesh C085890 BO 2727 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:29643 N-butyryl-L-homoserine lactone skos:exactMatch mesh C092312 N-butyrylhomoserine lactone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:29644 N-Heptanoylhomoserine lactone skos:exactMatch mesh C503769 N-heptanoyl-homoserine lactone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:29647 Nanchangmycin skos:exactMatch mesh C452419 nanchangmycin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:29655 neocarzinostatin chromophore skos:exactMatch mesh C032372 neocarzinostatin chromophore lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:29657 Nosiheptide skos:exactMatch mesh C014134 nosiheptide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:29658 oleandolide skos:exactMatch mesh C057902 oleandolide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:2966 BQ 485 skos:exactMatch mesh C083116 BQ 485 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:29665 pikromycin skos:exactMatch mesh C003145 picromycin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:29668 Pulvomycin skos:exactMatch mesh C012521 pulvomycin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:29670 Ramoplanin skos:exactMatch mesh C041438 ramoplanin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:29671 Resistomycin skos:exactMatch mesh C018379 resistomycin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:29672 resorcinol monoacetate skos:exactMatch mesh C058540 resorcinol monoacetate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:29675 SM-17466 skos:exactMatch mesh C094160 SM 17466 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:29679 Soyasaponin II skos:exactMatch mesh C106126 soyasaponin II lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:296881 3,4-dimethoxybenzoic acid skos:exactMatch mesh C009333 veratric acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:29689 Telomestatin skos:exactMatch mesh C431888 telomestatin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:29692 Thiocillin skos:exactMatch mesh C012574 thiocillin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:29694 thiotropocin skos:exactMatch mesh C043269 thiotropocin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:29700 tylactone skos:exactMatch mesh C027411 protylonolide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:29702 Undecylprodigiosin skos:exactMatch mesh C047347 undecylprodigiosin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:29705 Valnemulin skos:exactMatch mesh C117845 valnemulin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:29707 yersiniabactin skos:exactMatch mesh C104398 yersiniabactin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:29736 omega-Cyclohexylundecanoic acid skos:exactMatch mesh C087539 omega-cyclohexylundecanoic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:29750 3-(indol-3-yl)pyruvic acid skos:exactMatch mesh C008122 indol-3-yl pyruvic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:29775 selenol group skos:exactMatch mesh C442270 selenol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:29778 selenocyanic acid skos:exactMatch mesh C053721 selenocyanic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:29802 dinitrogen pentaoxide skos:exactMatch mesh C010125 nitrogen pentoxide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:29814 isofulminic acid skos:exactMatch mesh C547082 isofulminic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:2984 Bakkenolide A skos:exactMatch mesh C016257 bakkenolide A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:29850 arsonic acid skos:exactMatch mesh C054806 arsonic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:29851 phenylarsonic acid skos:exactMatch mesh C020979 benzenearsonic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:29863 coronene skos:exactMatch mesh C012256 coronene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:29876 oxidobromine(.) skos:exactMatch mesh C521367 bromine monoxide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:2990 Baptifoline skos:exactMatch mesh C106940 baptifoline lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:2991 aloin A skos:exactMatch mesh C045601 barbaloin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:29914 diiodine pentaoxide skos:exactMatch mesh C555514 iodine pentoxide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:2994 barringtogenol C skos:exactMatch mesh C514449 22-O-acetyl-21-O-(4'-O-angeloyl)-beta-d-fucopyranosyl theasapogenol B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:2996 Batatasin I skos:exactMatch mesh C568298 6-hydroxy-2,4,7-trimethoxyphenanthrene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:2998 Bathorhodopsin skos:exactMatch mesh C015017 bathorhodopsin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:30037 taxa-4,11-diene skos:exactMatch mesh C093125 taxa-4(5),11(12)diene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:30043 terephthalate(2-) skos:exactMatch mesh C547494 1,4-benzenedicarboxylate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:30045 divanadium pentaoxide skos:exactMatch mesh C066075 vanadium pentoxide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:30047 vanadium dioxide skos:exactMatch mesh C581824 vanadium dioxide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:30059 potassium hexacyanoferrate(4-) skos:exactMatch mesh C031835 potassium ferrocyanide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:30060 potassium hexacyanoferrate(3-) skos:exactMatch mesh C028033 potassium ferricyanide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:30062 sodium hexacyanoferrate(3-) skos:exactMatch mesh C035579 sodium ferricyanide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:30078 gold monochloride skos:exactMatch mesh C038016 gold chloride lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:3008 bellidifolin skos:exactMatch mesh C091291 bellidifolin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:30088 gibberellin A12 skos:exactMatch mesh C048462 gibberellin A12 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:3009 benalaxyl skos:exactMatch mesh C052866 benalaxyl lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:30096 diazene skos:exactMatch mesh C038867 diazene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:3010 Benanomicin A skos:exactMatch mesh C056805 benanomicin A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:30113 di-mu-chloridobis(dichloridoaluminium) skos:exactMatch mesh C047343 aluminum hexachloride lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:30123 trifluorochlorine skos:exactMatch mesh C006970 chlorine trifluoride lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:30141 sodium tetrahydroaluminate skos:exactMatch mesh C513667 sodium aluminum hydride lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:30142 lithium tetrahydroaluminate skos:exactMatch mesh C042073 lithium aluminum hydride lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:30149 borane skos:exactMatch mesh C006008 BH 3 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:3016 Benoxacor skos:exactMatch mesh C085163 benoxacor lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:30163 diboron trioxide skos:exactMatch mesh C042168 boron oxide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:3018 bentazone skos:exactMatch mesh C002003 bentazone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:30183 tetramethyllead skos:exactMatch mesh C014849 tetramethyllead lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:30200 kaempferol 3-O-beta-D-glucoside skos:exactMatch mesh C001579 astragalin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:30218 helium-3 atom skos:exactMatch mesh C000615206 Helium-3 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:30222 neutron skos:exactMatch mesh D009502 Neutrons lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:30231 nitrogen trifluoride skos:exactMatch mesh C534617 nitrogen trifluoride lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:30235 uranium hexafluoride skos:exactMatch mesh C036638 uranium hexafluoride lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:30249 N-formyl-L-kynurenine skos:exactMatch mesh C007772 N'-formylkynurenine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:30251 pentacarbonyliron skos:exactMatch mesh C515100 iron pentacarbonyl lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:30253 carbon monosulfide skos:exactMatch mesh C092035 carbon sulfide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:30263 terbutylazine skos:exactMatch mesh C037565 terbutylazine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:30264 simeton skos:exactMatch mesh C555116 2-methoxy-4-ethylamino-6-ethylamino-1,3,5-triazine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:30268 dihydrolevobunolol skos:exactMatch mesh C015810 dihydrobunolol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:30270 E64 skos:exactMatch mesh C024974 E 64 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:30278 phosphane skos:exactMatch mesh C044646 phosphine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:30297 antimonite skos:exactMatch mesh C061374 antimonite lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:3032 benzonatate skos:exactMatch mesh C029755 benzonatate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:30330 hexaamminecobalt(2+) skos:exactMatch mesh C032300 hexaamminecobalt(II) lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:30331 hexacyanocobaltate(3-) skos:exactMatch mesh C027033 hexacyanocobaltate (III) lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:30341 silver monochloride skos:exactMatch mesh C037548 silver chloride lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:30348 2,3,2-tetramine skos:exactMatch mesh C022177 2,3,2-tetramine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:30358 neopentane skos:exactMatch mesh C039752 neopentane lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:30362 isopentane skos:exactMatch mesh C067038 isopentane lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:3038 benzoyl phosphate skos:exactMatch mesh C012217 benzoyl phosphate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:30436 tetrahydropterin skos:exactMatch mesh C011552 tetrahydropterin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:3044 benzphetamine skos:exactMatch mesh C015024 benzylamphetamine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:30463 telluric acid skos:exactMatch mesh C000708468 telluric acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:30465 tellurous acid skos:exactMatch mesh C026660 tellurous acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:3047 benzthiazide skos:exactMatch mesh C004463 benzothiazide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:30494 oxygen difluoride skos:exactMatch mesh C014559 fluorine monoxide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:30495 sulfur tetrafluoride skos:exactMatch mesh C066990 sulfur tetrafluoride lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:30514 caesium atom skos:exactMatch mesh D002586 Cesium lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:30521 tungsten disulfide skos:exactMatch mesh C000711329 tungsten sulfide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:30529 nitritocobalamin skos:exactMatch mesh C092105 nitritocobalamin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:30539 dimethyltin skos:exactMatch mesh C039760 dimethyltin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:30588 silicon monoxide skos:exactMatch mesh C116473 silicon monoxide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:30614 benzo[a]pyrene diol epoxide I skos:exactMatch mesh C072019 benzo(a)pyrene diolepoxide I lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:30629 diethylenetriamine skos:exactMatch mesh C005391 diethylenetriamine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:3063 Berbamine skos:exactMatch mesh C027870 berbamine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:30630 propylenediamine skos:exactMatch mesh C070006 1,2-diaminopropane lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:30631 tris(2-aminoethyl)amine skos:exactMatch mesh C099539 tris(2-aminoethyl)amine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:30647 hexaaquairon(2+) skos:exactMatch mesh C063256 hexaaquairon(II) lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:30664 cyclopentadiene skos:exactMatch mesh C004709 1,3-cyclopentadiene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:30669 1,2-bis(diphenylphosphino)ethane skos:exactMatch mesh C049078 bis(diphenylphosphine)ethane lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:30672 ferrocene skos:exactMatch mesh C004998 ferrocene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:30680 ruthenocene skos:exactMatch mesh C016721 ruthenocene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:30681 osmocene skos:exactMatch mesh C033842 osmocene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:30687 osmium atom skos:exactMatch mesh D009992 Osmium lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:3070 Bestatin skos:exactMatch mesh C012211 ubenimex lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:30703 tetrathiomolybdate(2-) skos:exactMatch mesh C020809 tetrathiomolybdate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:30704 molybdenum disulfide skos:exactMatch mesh C082964 molybdenum disulfide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:30725 aflatoxin B1 exo-8,9-epoxide skos:exactMatch mesh C006426 aflatoxin B1-2,3-oxide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:30729 ethylenediaminetetraacetatoferrate(1-) skos:exactMatch mesh C019179 Fe(III)-EDTA lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:30731 cimetidine S-oxide skos:exactMatch mesh C034042 cimetidine sulfoxide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:30737 trichloromethyl(.) skos:exactMatch mesh C025280 trichloromethyl free radical lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:30738 ethylferrocene skos:exactMatch mesh C053523 ethylferrocene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:30739 1,1'-dimethylferrocene skos:exactMatch mesh C050099 1,1'-dimethylferrocene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:30751 formic acid skos:exactMatch mesh C030544 formic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:30768 propionic acid skos:exactMatch mesh C029658 propionic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:30775 fluoroacetic acid skos:exactMatch mesh C014815 fluoroacetic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:30781 butynedioic acid skos:exactMatch mesh C024060 2-butynedioic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:30789 4-sulfobenzoic acid skos:exactMatch mesh C028804 4-sulfobenzoic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:30792 cis-bis(2,2'-bipyridine)dichloridoosmium(1+) skos:exactMatch mesh C085573 osmium bis(2,2'-bipyridine)chloride lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:3080 Betanin skos:exactMatch mesh C020228 betanin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:30808 iron trichloride skos:exactMatch mesh C024555 ferric chloride lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:30812 iron dichloride skos:exactMatch mesh C029451 ferrous chloride lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:30813 decanoic acid skos:exactMatch mesh C031071 decanoic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:30815 moronic acid skos:exactMatch mesh C023607 moronic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:30824 octadec-1-ene skos:exactMatch mesh C109760 1-octadecene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:30832 adipic acid skos:exactMatch mesh C029900 adipic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:30835 2-methylcitric acid skos:exactMatch mesh C031605 2-methylcitric acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:30837 allantoic acid skos:exactMatch mesh C024081 allantoic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:30838 itaconic acid skos:exactMatch mesh C005229 itaconic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:30841 3-hydroxypyruvic acid skos:exactMatch mesh C012375 hydroxypyruvic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:30845 2-furoic acid skos:exactMatch mesh C060089 2-furoic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:30851 keto-phenylpyruvic acid skos:exactMatch mesh C031606 phenylpyruvic acid lexical 0.9 https://github.com/indralab/panacea_indra/blob/master/panacea_indra/make_ctd_tests.py +chebi CHEBI:30852 galactaric acid skos:exactMatch mesh C000090 galactaric acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:30859 3-maleylpyruvic acid skos:exactMatch mesh C113957 maleylpyruvic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:30865 dihydroorotic acid skos:exactMatch mesh C004768 4,5-dihydroorotic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:30890 naphthalene-1,5-disulfonic acid skos:exactMatch mesh C549769 1,5-naphthalenedisulfonic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:30891 naphthalene-1,6-disulfonic acid skos:exactMatch mesh C056937 naphthalene-1,6-disulfonic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:30895 naphthalene-1-sulfonic acid skos:exactMatch mesh C435043 1-naphthalenesulfonic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:30912 1-piperideine-2-carboxylic acid skos:exactMatch mesh C036512 delta(1)-piperidine-2-carboxylic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:30933 3-phosphonooxypyruvic acid skos:exactMatch mesh C012488 phosphohydroxypyruvic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:3094 Biflorin skos:exactMatch mesh C522781 biflorin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:3095 biguanide skos:exactMatch mesh C045213 hepatitis B hyperimmune globulin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:30954 pyridazine skos:exactMatch mesh C062482 pyridazine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:30958 Sudan I skos:exactMatch mesh C024336 1-phenylazo-2-naphthol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:309594 oxybuprocaine skos:exactMatch mesh C005298 benoxinate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:3096 bikaverin skos:exactMatch mesh C000269 bikaverin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:30973 oxirene skos:exactMatch mesh C012469 oxirene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:30977 thiirane skos:exactMatch mesh C013523 ethylene sulfide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:30981 digitoxose skos:exactMatch mesh C020615 digitoxose lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:31001 octacosanoic acid skos:exactMatch mesh C068792 octacosanoic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:31010 mycarose skos:exactMatch mesh C045835 mycarose lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:31012 noviose skos:exactMatch mesh C494073 noviose lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:31013 cerotate skos:exactMatch mesh C085095 Cerinate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:31028 (-)-epiafzelechin skos:exactMatch mesh C120647 epiafzelechin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:31038 1,3,5-trimethoxybenzene skos:exactMatch mesh C015560 1,3,5-trimethoxybenzene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:3104 5-[(8Z)-pentadec-8-enyl]resorcinol skos:exactMatch mesh C064011 bilobol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:31052 11-Hydroxyvittatine skos:exactMatch mesh C532084 11-hydroxyvittatine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:31054 12-Deoxyaklanonic acid skos:exactMatch mesh C112174 12-deoxyaklanonic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:31057 13-deoxydaunorubicin skos:exactMatch mesh C031980 feudomycin A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:31073 2,3-Dioxo-6-nitro-7-sulfamoylbenzo(f)quinoxaline skos:exactMatch mesh C062865 2,3-dioxo-6-nitro-7-sulfamoylbenzo(f)quinoxaline lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:31076 2-Aminoacridone skos:exactMatch mesh C072515 2-aminoacridone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:31117 3-Methoxy-8,9-methylenedioxy-3,4-dihydrophenanthridine skos:exactMatch mesh C473413 3-methoxy-8,9-methylenedioxy-3,4-dihydrophenanthridine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:31119 3-Methylpyrrole-2,4-dicarboxylic acid skos:exactMatch mesh C586437 3-methylpyrrole-2,4-dicarboxylic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:31136 5-hydroxyferuloyl-CoA skos:exactMatch mesh C090959 5-hydroxyferuloyl-coenzyme A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:31159 aceclofenac skos:exactMatch mesh C056498 aceclofenac lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:31160 Aceglatone skos:exactMatch mesh C038936 aceglatone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:31161 Aceglutamide aluminum skos:exactMatch mesh C002403 aceglutamide aluminum lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:31170 O-acetyltropine skos:exactMatch mesh C071887 3-acetyltropine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:31175 adefovir pivoxil skos:exactMatch mesh C106812 adefovir dipivoxil lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:31177 Afloqualone skos:exactMatch mesh C033541 afloqualone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:31178 aklanonic acid skos:exactMatch mesh C042374 aklanonic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:31182 Alacepril skos:exactMatch mesh C046835 alacepril lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:31183 alclofenac skos:exactMatch mesh C084615 alclofenac lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:31186 alfacalcidol skos:exactMatch mesh C008088 alfacalcidol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:31196 tris(lactato)aluminium skos:exactMatch mesh C104223 aluminum lactate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:31207 Amogastrin skos:exactMatch mesh C035656 amogastrin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:31211 Anatalline skos:exactMatch mesh C493473 anatalline lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:31215 Anecortave acetate skos:exactMatch mesh C418047 anecortave acetate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:31224 disodium bis[mu-tartrato(4-)]diantimonate(2-) skos:exactMatch mesh C026019 antimony sodium tartrate lexical 0.9 https://github.com/indralab/panacea_indra/blob/master/panacea_indra/make_ctd_tests.py +chebi CHEBI:31227 apigenin 7-O-neohesperidoside skos:exactMatch mesh C089378 rhoifolin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:31230 Aquayamycin skos:exactMatch mesh C000100 aquayamycin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:31232 Aranidipine skos:exactMatch mesh C059427 aranidipine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:31238 Arnottin II skos:exactMatch mesh C517333 arnottin II lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:31240 Aspoxicillin skos:exactMatch mesh C037485 aspoxicillin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:31244 Auramycinone skos:exactMatch mesh C031353 auramycinone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:31247 Azelnidipine skos:exactMatch mesh C061679 azelnidipine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:31250 Bacillomycin D skos:exactMatch mesh C027845 bacillomycin D lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:31269 Benzylhydrochlorothiazide skos:exactMatch mesh C042169 benzylhydrochlorothiazide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:31276 betamethasone dipropionate skos:exactMatch mesh C011175 betamethasone-17,21-dipropionate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:31281 bepotastine besylate skos:exactMatch mesh C511534 bepotastine besilate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:31288 Bisbentiamine skos:exactMatch mesh C037583 bisbentiamine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:31293 Bismuth subnitrate skos:exactMatch mesh C010804 bismuth subnitrate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:31294 Bisoxatin acetate skos:exactMatch mesh C030065 bisoxatin acetate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:31305 Bromperidol skos:exactMatch mesh C006820 bromperidol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:31306 Bronopol skos:exactMatch mesh C006827 bronopol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:31307 Bropirimine skos:exactMatch mesh C033560 bropirimine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:31308 Brotizolam skos:exactMatch mesh C020960 brotizolam lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:31311 Bucetin skos:exactMatch mesh C023637 bucetin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:31312 Bucillamine skos:exactMatch mesh C026535 bucillamine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:31314 5-butyl-1-cyclohexylbarbituric acid skos:exactMatch mesh C084817 bucolome lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:31326 Butoctamide hydrogen succinate skos:exactMatch mesh C027291 butoctamide succinate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:31327 butropium bromide skos:exactMatch mesh C006846 butoxybenzyl hyoscyamine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:31331 Cadralazine skos:exactMatch mesh C031877 cadralazine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:31338 calcium dibromide skos:exactMatch mesh C113019 calcium bromide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:31342 Calcium hypochlorite skos:exactMatch mesh C004488 calcium hypochlorite lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:31344 calcium oxide skos:exactMatch mesh C016538 lime lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:31360 Carmofur skos:exactMatch mesh C017367 1-hexylcarbamoyl-5-fluorouracil lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:31381 Cefteram pivoxil skos:exactMatch mesh C046817 cefteram pivoxil lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:31386 Cellulose acetate phthalate skos:exactMatch mesh C011708 cellulose acetate phthalate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:31390 Chelilutine skos:exactMatch mesh C550176 chelilutine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:31391 Cherylline skos:exactMatch mesh C424145 cherylline lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:31395 Chlorobiocic acid skos:exactMatch mesh C055845 chlorobiocic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:31397 Ciclesonide skos:exactMatch mesh C120481 ciclesonide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:31406 Citronellyl formate skos:exactMatch mesh C062414 citronellyl formate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:31411 Clidanac skos:exactMatch mesh C059095 clidanac lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:31412 Clinofibrate skos:exactMatch mesh C006231 clinofibrate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:31415 Clobetasone butyrate skos:exactMatch mesh C010893 clobetasone butyrate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:31421 Clorexolone skos:exactMatch mesh C017137 clorexolone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:31424 Clotiapine skos:exactMatch mesh C084602 clothiapine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:31425 Clotiazepam skos:exactMatch mesh C084599 clotiazepam lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:31428 Colestilan skos:exactMatch mesh C106574 cholebine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:31432 corynebactin skos:exactMatch mesh C430721 bacillibactin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:31437 Crinine skos:exactMatch mesh C528221 crinine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:31470 Dexamethasone 17-propionate skos:exactMatch mesh C059544 dexamethasone 17-propionate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:3148 Boldine skos:exactMatch mesh C011686 boldine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:31484 Diflucortolone valerate skos:exactMatch mesh C013486 diflucortolone valerate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:31485 Difluprednate skos:exactMatch mesh C015808 difluprednate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:31502 Dinoprost tromethamine skos:exactMatch mesh C010714 dinoprost tromethamine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:31513 Docarpamine skos:exactMatch mesh C052143 docarpamine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:31516 Doramectin skos:exactMatch mesh C084101 doramectin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:31517 Doranidazole skos:exactMatch mesh C106738 doranidazole lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:31521 doxifluridine skos:exactMatch mesh C025034 doxifluridine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:31528 Ebastine skos:exactMatch mesh C058249 ebastine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:31529 ecgonine methyl ester skos:exactMatch mesh C034524 ecgonine methyl ester lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:31531 Efloxate skos:exactMatch mesh C005472 efloxate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:31535 Emorfazone skos:exactMatch mesh C018432 emorfazone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:31537 Enocitabine skos:exactMatch mesh C015019 enocitabine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:31539 epalrestat skos:exactMatch mesh C038131 epalrestat lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:31546 Epitiostanol skos:exactMatch mesh C002976 epitiostanol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:31547 eplerenone skos:exactMatch mesh C058465 epoxymexrenone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:31552 Epristeride skos:exactMatch mesh C072547 epristeride lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:31553 Eptazocine hydrobromide skos:exactMatch mesh C024677 eptazocine hydrobromide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:31559 Esonarimod skos:exactMatch mesh C078547 esonarimod lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:3156 Borreverine skos:exactMatch mesh C027496 borreverine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:31560 Estradiol dipropionate skos:exactMatch mesh C023482 estradiol dipropionate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:31564 ethenzamide skos:exactMatch mesh C018935 ethenzamide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:31571 ethyl isovalerate skos:exactMatch mesh C475857 ethyl isovalerate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:31572 ethyl linoleate skos:exactMatch mesh C007678 ethyl linoleate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:31573 Ethyl loflazepate skos:exactMatch mesh C029617 ethyl loflazepate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:31583 Etizolam skos:exactMatch mesh C044610 etizolam lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:31584 Etomidoline skos:exactMatch mesh C002545 amidoline lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:31586 Exametazime skos:exactMatch mesh C078058 exametazime lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:31588 fabesetron skos:exactMatch mesh C081308 FK 1052 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:31590 Falecalcitriol skos:exactMatch mesh C040488 26,26,26,27,27,27-hexafluoro-1,25-dihydroxyvitamin D3 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:31599 fenbufen skos:exactMatch mesh C010725 fenbufen lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:31600 Fenipentol skos:exactMatch mesh C013992 fenipentol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:31607 Ferrous fumarate skos:exactMatch mesh C031621 ferrous fumarate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:31608 Ferrous gluconate skos:exactMatch mesh C011819 ferrous gluconate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:31611 Fidarestat skos:exactMatch mesh C077139 fidarestat lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:31618 fludiazepam skos:exactMatch mesh C006107 fludiazepam lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:31620 flumethasone pivalate skos:exactMatch mesh C005565 flumethasone pivalate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:31623 fluocinolone acetonide skos:exactMatch mesh C045685 omiderm lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:31627 Flurbiprofen axetil skos:exactMatch mesh C504422 flurbiprofen axetil lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:31628 Flutazolam skos:exactMatch mesh C013367 flutazolam lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:31629 Flutoprazepam skos:exactMatch mesh C029163 flutoprazepam lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:31630 flutropium bromide skos:exactMatch mesh C039778 flutropium bromide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:31634 Fosfluconazole skos:exactMatch mesh C486878 fosfluconazole lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:31636 Fridamycin E skos:exactMatch mesh C569983 fridamycin E lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:31637 Fudosteine skos:exactMatch mesh C113797 fudosteine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:31639 Fungichromin skos:exactMatch mesh C011827 fungichromin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:3164 Bracteoline skos:exactMatch mesh C002507 bracteoline lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:31640 Furazabol skos:exactMatch mesh C005025 furazabol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:31643 gadoteridol skos:exactMatch mesh C062402 gadoteridol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:31644 gadoversetamide skos:exactMatch mesh C112666 gadoversetamide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:31652 Gimeracil skos:exactMatch mesh C104201 gimeracil lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:31657 Glybuzole skos:exactMatch mesh C000878 glybuzole lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:31658 Glyclopyramide skos:exactMatch mesh C017346 glyclopyramide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:31662 Haemanthidine skos:exactMatch mesh C083906 hemanthidine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:31664 Haloperidol decanoate skos:exactMatch mesh C033563 haloperidol decanoate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:31665 Halopredone acetate skos:exactMatch mesh C015912 halopredone acetate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:31666 Haloxazolam skos:exactMatch mesh C018779 haloxazolam lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:31667 Hamayne skos:exactMatch mesh C569334 hamayne lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:3168 brassicasterol skos:exactMatch mesh C003532 brassicasterol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:31684 Ibudilast skos:exactMatch mesh C038366 ibudilast lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:31685 Ibuprofen piconol skos:exactMatch mesh C052308 ibuprofen piconol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:31687 idebenone skos:exactMatch mesh C036619 idebenone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:31689 Iguratimod skos:exactMatch mesh C519076 iguratimod lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:31698 Indomethacin farnesil skos:exactMatch mesh C060022 indomethacin farnesil lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:3170 brazilin skos:exactMatch mesh C044362 brazilin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:31700 Iobenzamic acid skos:exactMatch mesh C005886 iobenzamic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:31701 iobitridol skos:exactMatch mesh C093233 iobitridol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:31702 Iocarmic acid skos:exactMatch mesh C010999 iocarmic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:31705 iodixanol skos:exactMatch mesh C044834 iodixanol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:31707 Iodoxamic acid skos:exactMatch mesh C100278 iodoxamic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:3171 bremazocine skos:exactMatch mesh C027248 bremazocine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:31710 iomeprol skos:exactMatch mesh C057937 iomeprol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:31715 Iotrolan skos:exactMatch mesh C033300 iotrolan lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:31716 Iotroxic acid skos:exactMatch mesh C014617 iotroxic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:31717 Ioversol skos:exactMatch mesh C054871 ioversol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:3172 bretylium skos:exactMatch mesh C045166 bretylium lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:31723 Ismine skos:exactMatch mesh C462032 ismine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:31725 isoamyl acetate skos:exactMatch mesh C020377 isoamyl acetate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:31733 Isoshinanolone skos:exactMatch mesh C434363 isoshinanolone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:31737 Iturin A skos:exactMatch mesh C013579 iturin A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:31738 jadomycin B skos:exactMatch mesh C081750 jadomycin B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:31739 josamycin skos:exactMatch mesh D019169 Jurkat Cells lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:3174 Brevicolline skos:exactMatch mesh C519984 brevicolline lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:31742 kaempferol 3-O-beta-D-galactoside skos:exactMatch mesh C066407 kaempferol-3-O-galactoside lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:31743 kaempferol 3-O-beta-D-glucosyl-(1->2)-beta-D-glucoside skos:exactMatch mesh C064309 kaempferol 3-O-sophoroside lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:31747 aldehydo-D-kanosamine skos:exactMatch mesh C014968 kanosamine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:31754 Korupensamine A skos:exactMatch mesh C110657 korupensamine A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:31759 Lafutidine skos:exactMatch mesh C076948 lafutidine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:31761 Lanoconazole skos:exactMatch mesh C072774 latoconazole lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:31762 lanperisone hydrochloride skos:exactMatch mesh C093390 NK 433 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:31764 Laudanosoline skos:exactMatch mesh C097013 laudanosoline lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:31767 lead diacetate skos:exactMatch mesh C008261 lead acetate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:3177 bromacil skos:exactMatch mesh C004590 bromacil lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:31775 Liranaftate skos:exactMatch mesh C470235 liranaftate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:31785 Loxiglumide skos:exactMatch mesh C053737 loxiglumide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:31789 Lycoramine skos:exactMatch mesh C500482 lycoramine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:31798 Malotilate skos:exactMatch mesh C024808 diisopropyl 1,3-dithiol-2-ylidenemalonate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:31799 malvidin 3-O-beta-D-glucoside skos:exactMatch mesh C458419 malvidin-3-glucoside lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:31801 Maxacalcitol skos:exactMatch mesh C051883 maxacalcitol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:31808 Medermycin skos:exactMatch mesh C013104 medermycin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:31814 Melinamide skos:exactMatch mesh C001757 N-(2-methylbenzyl)linoleamide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:31816 Meluadrine tartrate skos:exactMatch mesh C422346 meluadrine tartrate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:31817 Menfegol skos:exactMatch mesh C029270 menfegol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:31818 Mepitiostane skos:exactMatch mesh C006242 mepitiostane lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:31821 Mequitazine skos:exactMatch mesh C006069 mequitazine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:31825 Mestanolone skos:exactMatch mesh C008376 mestanolone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:31827 Metharbital skos:exactMatch mesh C084822 metharbital lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:31828 Methenolone acetate skos:exactMatch mesh C033244 methenolone acetate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:31837 Methyprylon skos:exactMatch mesh C084583 methyprylon lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:31838 metiazinic acid skos:exactMatch mesh C100259 metiazinic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:31842 mexazolam skos:exactMatch mesh C014262 mexazolam lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:31845 Midecamycin skos:exactMatch mesh C026483 midecamycin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:31852 Militarinone C skos:exactMatch mesh C476669 militarinone C lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:31853 Militarinone D skos:exactMatch mesh C476670 militarinone D lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:31858 Mizoribine skos:exactMatch mesh C010052 mizoribine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:31871 Mycolactone skos:exactMatch mesh C117218 mycolactone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:31872 Myxalamid A skos:exactMatch mesh C039622 myxalamid A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:31873 Myxalamid B skos:exactMatch mesh C039623 myxalamid B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:31874 Myxalamid C skos:exactMatch mesh C039624 myxalamid C lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:31875 Myxalamid D skos:exactMatch mesh C039625 myxalamid D lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:31877 Myxochelin A skos:exactMatch mesh C058735 myxochelin A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:3188 Bruceantin skos:exactMatch mesh C002550 bruceantin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:3189 Bruceantinol skos:exactMatch mesh C000631004 bruceantinol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:31891 Naftopidil skos:exactMatch mesh C064357 naftopidil lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:31894 Nandrolone furylpropionate skos:exactMatch mesh C062108 nandrolone furylpropionate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:31896 Narcissidine skos:exactMatch mesh C445941 narcissidine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:3190 Bruceine B skos:exactMatch mesh C024965 bruceine B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:31904 Nicomol skos:exactMatch mesh C008612 nicomol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:31908 Niddamycin skos:exactMatch mesh C012454 niddamycin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:31910 Nifenazone skos:exactMatch mesh C005249 nifenazone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:31912 nimetazepam skos:exactMatch mesh C002714 nimetazepam lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:31919 Norgalanthamine skos:exactMatch mesh C548174 norgalanthamine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:3192 Bruceoside A skos:exactMatch mesh C020236 bruceoside A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:31929 Obliquine skos:exactMatch mesh C473532 obliquine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:3193 brucine skos:exactMatch mesh C083806 brucine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:31930 Octotiamine skos:exactMatch mesh C002051 octotiamine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:31937 Ornoprostil skos:exactMatch mesh C045125 ornoprostil lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:31943 Oxatomide skos:exactMatch mesh C015408 oxatomide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:31944 Oxazolam skos:exactMatch mesh C000425 oxazolam lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:31946 Oxendolone skos:exactMatch mesh C005671 oxendolone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:31947 Oxethazaine skos:exactMatch mesh C100289 oxethazaine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:31948 Oxoassoanine skos:exactMatch mesh C512235 oxoassoanine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:31952 Oxypertine skos:exactMatch mesh C084589 oxypertine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:31959 pantethine skos:exactMatch mesh C005425 pantethine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:3196 Brunsvigine skos:exactMatch mesh C432323 brunsvigine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:31960 Panthenyl ethyl ether skos:exactMatch mesh C040957 panthenyl ethyl ether lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:31963 Paramethasone acetate skos:exactMatch mesh C032128 paramethasone acetate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:31964 Pazufloxacin skos:exactMatch mesh C078052 pazufloxacin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:3197 Brusatol skos:exactMatch mesh C020237 brusatol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:31970 Pelubiprofen skos:exactMatch mesh C040375 pelubiprofen lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:31972 Penflutizide skos:exactMatch mesh C008781 penfluzide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:31975 Pentetreotide skos:exactMatch mesh C081788 pentetreotide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:31983 Perlapine skos:exactMatch mesh C003910 perlapine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:31984 pethidine hydrochloride skos:exactMatch mesh C030536 2,2-dichloro-1,1-difluoroethyl difluoromethyl ether lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:31988 phenethyl acetate skos:exactMatch mesh C054590 2-phenylethyl acetate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:31989 Pheneturide skos:exactMatch mesh C005825 pheneturide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:3199 Bryophyllin A skos:exactMatch mesh C057147 bryophyllin A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:31992 Phenprobamate skos:exactMatch mesh C008837 phenprobamate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:31995 Phenylpropanol skos:exactMatch mesh C439395 1-phenylpropanol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:31997 N,N-dimethylethanolamine phosphate skos:exactMatch mesh C007460 2-dimethylaminoethyl phosphate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:3201 bryotoxin A skos:exactMatch mesh C062709 bryotoxin A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:32013 Pirenoxine skos:exactMatch mesh C004580 pirenoxine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:32016 pirfenidone skos:exactMatch mesh C093844 pirfenidone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:32020 pitavastatin skos:exactMatch mesh C108475 pitavastatin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:32023 plaunotol skos:exactMatch mesh C047686 plaunotol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:32027 polyoxyl 40 stearate skos:exactMatch mesh C009314 polyethylene glycol monostearate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:32028 poly(vinyl acetate) skos:exactMatch mesh C013215 polyvinyl acetate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:32030 potassium bromide skos:exactMatch mesh C039004 potassium bromide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:32034 potassium bitartrate skos:exactMatch mesh D003728 Dental Calculus lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:32040 Pranoprofen skos:exactMatch mesh C043940 pyranoprofen lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:32041 pratosartan skos:exactMatch mesh C528642 pratosartan lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:32043 Prednisolone farnesylate skos:exactMatch mesh C080069 prednisolone farnesylate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:32052 Prifinium bromide skos:exactMatch mesh C084641 pyrodifenium bromide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:32062 propicillin potassium skos:exactMatch mesh C006801 brocillin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:32067 Protizinic acid skos:exactMatch mesh C005911 protizinic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:32068 Protorifamycin I skos:exactMatch mesh C018373 protorifamycin I lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:32070 Proxyphylline skos:exactMatch mesh C003237 proxyphylline lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:32071 Prulifloxacin skos:exactMatch mesh C074191 prulifloxacin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:32081 quercetin 3-O-[beta-D-xylosyl-(1->2)-beta-D-glucoside] skos:exactMatch mesh C071751 quercetin 3-sambubioside lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:32082 quercetin 3-O-beta-D-glucosyl-(1->2)-beta-D-glucoside skos:exactMatch mesh C055545 quercetin-3-O-sophoroside lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:32083 quercetin 3-O-beta-D-glucosyl-(1->2)-beta-D-glucosyl-(1->2)-beta-D-glucoside skos:exactMatch mesh C485516 quercetin 3-sophorotrioside lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:32086 Rabelomycin skos:exactMatch mesh C003289 rabelomycin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:32087 Ramatroban skos:exactMatch mesh C063119 ramatroban lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:32089 Ranimustine skos:exactMatch mesh C020766 ranimustine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:32090 Rebamipide skos:exactMatch mesh C052785 rebamipide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:32092 Repirinast skos:exactMatch mesh C048522 repirinast lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:32096 rhodomycin D skos:exactMatch mesh C066033 7-O-(3-amino-2,3,6-trideoxy-alpha-hexopyranosyl)-epsilon-isorhodomycinone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:32101 risarestat skos:exactMatch mesh C051003 risarestat lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:32103 Rokitamycin skos:exactMatch mesh C033383 rokitamycin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:32106 Romurtide skos:exactMatch mesh C036866 romurtide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:3211 bulbocapnine skos:exactMatch mesh C083807 bulbocapnine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:32114 salicylamide skos:exactMatch mesh C031060 salicylamide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:32116 Sanguilutine skos:exactMatch mesh C550175 sanguilutine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:32117 Sanguinine skos:exactMatch mesh C419423 sanguinine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:32119 Saphenamycin skos:exactMatch mesh C036716 saphenamycin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:3212 Bullatacinone skos:exactMatch mesh C061021 bullatacinone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:32128 Siccanin skos:exactMatch mesh C001795 siccanin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:32131 Simfibrate skos:exactMatch mesh C003278 simfibrate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:32135 soblidotin skos:exactMatch mesh C105791 soblidotin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:32136 Sobuzoxane skos:exactMatch mesh C057773 sobuzoxane lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:32137 egualen sodium skos:exactMatch mesh C403723 sodium 3-ethyl-7-isopropyl-1-azulenesulfonate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:32147 sodium picosulfate skos:exactMatch mesh C005701 picosulfate sodium lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:32149 sodium sulfate skos:exactMatch mesh C012036 sodium sulfate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:32152 Sorivudine skos:exactMatch mesh C031368 sorivudine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:32155 stigmatellin A skos:exactMatch mesh C041573 stigmatellin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:32165 Sulfatolamide skos:exactMatch mesh C009350 sulfatolamide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:32171 Sultiame skos:exactMatch mesh C084593 sulthiame lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:32172 Suplatast tosilate skos:exactMatch mesh C073028 suplatast tosilate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:32173 suxibuzone skos:exactMatch mesh C003371 suxibuzone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:32174 syringomycin skos:exactMatch mesh C032677 syringomycin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:32175 Syrosingopine skos:exactMatch mesh C084824 syrosingopine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:32183 Tazanolast skos:exactMatch mesh C106301 tazanolast lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:32190 Temocapril hydrochloride skos:exactMatch mesh C055603 temocapril hydrochloride lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:32191 Tenatoprazole skos:exactMatch mesh C119998 Tenatoprazole lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:32192 tenoxicam skos:exactMatch mesh C032801 tenoxicam lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:32193 Terguride skos:exactMatch mesh C006208 dironyl lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:32197 tetracenomycin A2 skos:exactMatch mesh C090681 tetracenomycin A2 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:32200 tetracenomycin B3 skos:exactMatch mesh C057302 tetracenomycin B3 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:32202 tetracenomycin D3 skos:exactMatch mesh C057303 tetracenomycin D3 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:32205 tetracenomycin F1 skos:exactMatch mesh C083904 tetracenomycin F1 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:32207 tetracenomycin F2 skos:exactMatch mesh C083905 tetracenomycin F2 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:3222 burseran skos:exactMatch mesh C431245 burseran lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:32221 tiaprofenic acid skos:exactMatch mesh C021270 tiaprofenic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:32224 Tiemonium iodide skos:exactMatch mesh C003602 tiemonium iodide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:32226 Timepidium bromide skos:exactMatch mesh C001739 timepidium bromide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:32232 tiquizium bromide skos:exactMatch mesh C030950 thiaton lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:32236 Toborinone skos:exactMatch mesh C077543 toborinone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:32237 Tocamphyl skos:exactMatch mesh C074848 Tocamphyl lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:32240 Tocoretinate skos:exactMatch mesh C089853 tocoretinate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:32241 Tofisopam skos:exactMatch mesh C012582 tofisopam lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:32242 Tolciclate skos:exactMatch mesh C013305 tolciclate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:32249 Trachelanthamidine skos:exactMatch mesh C051741 trachelanthamidine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:32256 Tribenoside skos:exactMatch mesh C100302 tribenoside lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:32259 trifluoperazine dimaleate skos:exactMatch mesh C032476 trifluoperazine dimaleate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:32260 trilostane skos:exactMatch mesh C009954 trilostane lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:32264 Tripamide skos:exactMatch mesh C031282 tripamide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:32266 Trisphaeridine skos:exactMatch mesh C462033 trispheridine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:32271 Troxipide skos:exactMatch mesh C028936 troxipide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:32276 Ufenamate skos:exactMatch mesh C047051 ufenamate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:32277 ungeremine skos:exactMatch mesh C016175 ungeremine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:32279 urdamycin A skos:exactMatch mesh C046608 kerriamycin B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:3228 butabarbital skos:exactMatch mesh C084833 secbutabarbital lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:32280 Urdamycin B skos:exactMatch mesh C051487 urdamycin B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:32281 Urdamycin F skos:exactMatch mesh C052537 urdamycin F lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:32283 Urdamycinone B skos:exactMatch mesh C405923 urdamycinone B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:32292 vedaprofen skos:exactMatch mesh C121784 2-(4-cyclohexyl-1-naphthalenyl)propanoic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:32304 2-cis,4-trans-xanthoxin skos:exactMatch mesh C012475 xanthoxin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:32310 Zephyranthine skos:exactMatch mesh C431927 zephyranthine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:32316 zotepine skos:exactMatch mesh C022172 zotepine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:3232 Butamifos skos:exactMatch mesh C549110 butamifos lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:32322 beta-Butoxyethyl nicotinate skos:exactMatch mesh C473307 nicoboxil lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:32323 beta-D-glucuronamide skos:exactMatch mesh C026317 glucuronamide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:32347 m-Chlorophenylbiguanide skos:exactMatch mesh C065734 1-(3-chlorophenyl)biguanide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:32350 n-decanohydroxamic acid skos:exactMatch mesh C016341 n-decanohydroxamic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:32352 p-Hydroxypropiophenone skos:exactMatch mesh C069170 4-hydroxypropiophenone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:32355 pi-Oxocamphor skos:exactMatch mesh C042958 pi-oxocamphor lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:32368 undecanoic acid skos:exactMatch mesh C016173 undecanoic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:32380 cis-4-decenoic acid skos:exactMatch mesh C055444 4-decenoic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:32397 18-crown-6 skos:exactMatch mesh C015762 18-crown-6 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:32399 12-crown-4 skos:exactMatch mesh C557123 12-crown-4 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:32401 15-crown-5 skos:exactMatch mesh C042148 15-crown-5 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:32404 benzenesulfinic acid skos:exactMatch mesh C425152 benzenesulfinic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:32425 (11Z)-icos-11-enoic acid skos:exactMatch mesh C572289 eicosenoic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:3244 butrin skos:exactMatch mesh C049386 butrin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:324935 fumagillol skos:exactMatch mesh C057299 fumagillol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:32537 acosamine skos:exactMatch mesh C010669 acosamine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:32538 bacillosamine skos:exactMatch mesh C014459 2,4-diamino-2,4,6-trideoxy-D-glucose lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:32539 daunosamine skos:exactMatch mesh C007217 daunosamine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:32540 desosamine skos:exactMatch mesh C110125 desosamine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:32547 4-methylpyridine skos:exactMatch mesh C515325 4-methylpyridine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:32548 2,6-dimethylpyridine skos:exactMatch mesh C013093 2,6-lutidine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:32570 mycosamine skos:exactMatch mesh C014692 mycosamine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:32574 D-rhodosamine skos:exactMatch mesh C009173 D-rhodosamine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:32590 barium sulfide skos:exactMatch mesh C039592 barium sulfide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:32596 calcium hydrogenphosphate skos:exactMatch mesh C485829 calcium phosphate, dibasic, anhydrous lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:32616 azepane skos:exactMatch mesh C048618 hexahydroazepine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:32617 (+)-aplasmomycin skos:exactMatch mesh C013401 aplasmomycin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:327119 azetidin-2-one skos:exactMatch mesh C116379 2-azetidinone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:32783 tyrosinyl radical skos:exactMatch mesh C408694 tyrosine radical lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:32807 o-orsellinic acid skos:exactMatch mesh C501612 orsellinic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:32817 keto-3-deoxy-D-manno-octulosonic acid skos:exactMatch mesh C120356 3-deoxy-manno-oct-2-ulopyranosonic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:32844 N-acetyl-4-O-acetylneuraminic acid skos:exactMatch mesh C041901 4-O-acetyl-N-acetylneuraminic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:32849 TEMPO skos:exactMatch mesh C003959 TEMPO lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:32873 prolino group skos:exactMatch mesh C102043 proline-nitric oxide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:3291 cafestol skos:exactMatch mesh C053400 cafestol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:32926 octadecane skos:exactMatch mesh C022883 octadecane lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:32927 nonadecane skos:exactMatch mesh C061580 nonadecane lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:32931 henicosane skos:exactMatch mesh C554094 n-heneicosane lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:32934 tricosane skos:exactMatch mesh C554095 n-tricosane lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:32936 tetracosane skos:exactMatch mesh C514857 tetracosane lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:32938 pentacosane skos:exactMatch mesh C000621573 n-pentacosane lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:32943 octacosane skos:exactMatch mesh C002763 octacosane lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:32952 amine skos:exactMatch mesh D000588 Amines lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:32956 epoxytwinol A skos:exactMatch mesh C496191 epoxytwinol A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:32973 2-nitrobenzene-1,3,5-triol skos:exactMatch mesh C000597873 2-nitrophloroglucinol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:32988 amide skos:exactMatch mesh D000577 Amides lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:33007 chromium(6+) skos:exactMatch mesh C074702 chromium hexavalent ion lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:33013 dodecahedrane skos:exactMatch mesh C062580 dodecahedrane lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:33031 hexacarbonylchromium skos:exactMatch mesh C011727 chromium hexacarbonyl lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:33033 2-oxopentanoic acid skos:exactMatch mesh C015963 2-ketopentanoic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:3306 calcitonin skos:exactMatch mesh C028815 salmon calcitonin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:33067 1H-indol-5-amine skos:exactMatch mesh C512101 5-aminoindole lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:33081 acenaphthylene skos:exactMatch mesh C042553 acenaphthylene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:33083 fluoranthene skos:exactMatch mesh C007738 fluoranthene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:33085 acephenanthrylene skos:exactMatch mesh C119992 acephenanthrylene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:33086 aceanthrylene skos:exactMatch mesh C044587 aceanthrylene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:33090 picene skos:exactMatch mesh C056699 picene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:33093 boron trifluoride skos:exactMatch mesh C021274 boron trifluoride lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:33118 boric acid skos:exactMatch mesh C032688 boric acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:33119 borazine skos:exactMatch mesh C522695 borazine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:33135 pyrrolidine skos:exactMatch mesh C032519 pyrrolidine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:33146 vanadyl sulfate skos:exactMatch mesh C034028 vanadyl sulfate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:33148 pentacene skos:exactMatch mesh C523499 pentacene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:33156 heptacene skos:exactMatch mesh C526883 heptacene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:33187 oxomalononitrile skos:exactMatch mesh C100076 mesoxalonitrile lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:3319 calicheamicin gamma1(I) skos:exactMatch mesh C055955 calicheamicin gamma(1)I lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:33211 mercury diacetate skos:exactMatch mesh C029823 mercuric acetate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:33217 3,3',5,5'-tetrabromobisphenol A skos:exactMatch mesh C020806 tetrabromobisphenol A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:33221 corrin skos:exactMatch mesh C473700 corrin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:33222 corrole skos:exactMatch mesh C431863 corrole lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:33270 alpha-tocotrienol skos:exactMatch mesh C082032 tocotrienol, alpha lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:33272 ketimine skos:exactMatch mesh C542835 ketimine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:33275 beta-tocotrienol skos:exactMatch mesh C082089 tocotrienol, beta lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:33276 delta-tocotrienol skos:exactMatch mesh C082097 tocotrienol, delta lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:3328 Calophyllolide skos:exactMatch mesh C018859 calophyllolid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:3329 Calotropin skos:exactMatch mesh C546414 calotropin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:33314 radon atom skos:exactMatch mesh D011886 Radon lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:33346 rutherfordium atom skos:exactMatch mesh C554955 Rutherfordium lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:33349 dubnium atom skos:exactMatch mesh C000617038 Dubnium lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:33351 seaborgium atom skos:exactMatch mesh C000617039 Seaborgium lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:33355 bohrium atom skos:exactMatch mesh C000617040 Bohrium lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:33357 hassium atom skos:exactMatch mesh C000617041 Hassium lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:33361 meitnerium atom skos:exactMatch mesh C000617042 Meitnerium lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:33363 palladium skos:exactMatch mesh D010300 Parkinson Disease lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:33367 darmstadtium skos:exactMatch mesh C000617043 Darmstadtium lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:33369 cerium skos:exactMatch mesh D002563 Cerium lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:33371 technetium-99 skos:exactMatch mesh C000615519 Technetium-99 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:33379 erbium skos:exactMatch mesh D004871 Erbium lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:33390 curium atom skos:exactMatch mesh D003476 Curium lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:33404 3-hydroxypropionic acid skos:exactMatch mesh C031601 hydracrylic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:33421 barban skos:exactMatch mesh C004359 barban lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:3348 Candesartan cilexetil skos:exactMatch mesh C077793 candesartan cilexetil lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:33491 radon-220 atom skos:exactMatch mesh C000615147 Radon-220 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:3350 candicine skos:exactMatch mesh C432454 candicine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:33501 uranium oxide skos:exactMatch mesh C047385 uranium oxide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:33517 copernicium atom skos:exactMatch mesh C000617045 Copernicium lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:33521 metal atom skos:exactMatch mesh D008670 Metals lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:33526 mannonate skos:exactMatch mesh C014078 mannonate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:33532 altronic acid skos:exactMatch mesh C014962 altronic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:3357 Cannabichromene skos:exactMatch mesh C010695 cannabichromene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:33574 4-methylthio-2-oxobutanoic acid skos:exactMatch mesh C014632 2-keto-4-methylthiobutyric acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:33591 pentaborane(9) skos:exactMatch mesh C041587 pentaborane lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:3361 Cannabisativine skos:exactMatch mesh C012801 cannabisativine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:3365 Cantleyine skos:exactMatch mesh C121552 cantleyine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:3366 Capaurine skos:exactMatch mesh C030167 capaurine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:33678 7-hydroxycoumarin O(7)-glucosiduronic acid skos:exactMatch mesh C039928 7-hydroxycoumarin glucuronide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:3368 capillarisin skos:exactMatch mesh C011185 capillarisin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:33729 tetritol skos:exactMatch mesh C002053 tetritol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:337298 abarelix skos:exactMatch mesh C423508 abarelix lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:33755 tetronic acid skos:exactMatch mesh C003422 tetronic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:33794 tRNA(fMet) skos:exactMatch mesh C024988 tRNA, formylmethionine- lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:33815 oxygen-18 atom skos:exactMatch mesh C000615259 Oxygen-18 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:33819 oxygen-17 atom skos:exactMatch mesh C000615258 Oxygen-17 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:3382 Caracurine V skos:exactMatch mesh C041536 caracurine V lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:33828 xylonic acid skos:exactMatch mesh C000630589 xylonic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:3383 caranine skos:exactMatch mesh C495290 2-deoxylycorine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:33835 anthrone skos:exactMatch mesh C004522 anthrone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:3392 carbendazim skos:exactMatch mesh C006698 carbendazim lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:3394 carbetamide skos:exactMatch mesh C584522 carbetamide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:33942 ribose skos:exactMatch mesh D012272 Ribs lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:33946 erythrose skos:exactMatch mesh C073321 erythrose lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:33954 tagatose skos:exactMatch mesh C030192 tagatose lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:33963 metallocene skos:exactMatch mesh C013108 metallocene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:33979 lithium hydroxide skos:exactMatch mesh C028467 lithium hydroxide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:33980 quinovose skos:exactMatch mesh C037904 6-deoxyglucose lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:34026 1,1,1-Trichloro-2-(4-hydroxyphenyl)-2-(4-methoxyphenyl)ethane skos:exactMatch mesh C495657 1,1,1-trichloro-2-(4-hydroxyphenyl)-2-(4-methoxyphenyl)ethane lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:34032 1,1-Dichloroethylene epoxide skos:exactMatch mesh C117290 1,1-dichloroethylene epoxide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:34036 1,2,3-Trichloropropane skos:exactMatch mesh C009536 1,2,3-trichloropropane lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:34037 1,2,3-trimethylbenzene skos:exactMatch mesh C010179 hemimellitene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:34039 1,2,4-trimethylbenzene skos:exactMatch mesh C010313 pseudocumene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:34044 1,2-Dibromo-3-chloropropane skos:exactMatch mesh C007318 1,2-dibromo-3-chloropropane lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:34047 1,2-dihydrostilbene skos:exactMatch mesh C038546 1,2-dihydrostilbene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:34053 1,2-dinitrobenzene skos:exactMatch mesh C040234 1,2-dinitrobenzene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:34054 1,2-Epoxyhexadecane skos:exactMatch mesh C010720 1,2-epoxyhexadecane lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:34060 1,3-Diphenylpropane skos:exactMatch mesh C014513 1,3-diphenylpropane lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:34062 1,4-Diethylbenzene skos:exactMatch mesh C064751 1,4-diethylbenzene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:34066 1,6-Dinitropyrene skos:exactMatch mesh C033309 1,6-dinitropyrene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:340673 bromohydrin pyrophosphate skos:exactMatch mesh C429553 bromohydrin pyrophosphate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:34069 1,8-Dinitropyrene skos:exactMatch mesh C033310 1,8-dinitropyrene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:34076 1-Ethyl-2-benzimidazolinone skos:exactMatch mesh C102635 1-ethyl-2-benzimidazolinone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:34086 \{1-O-hexadecanoyl-2-O-[(Z)-octadec-9-enoyl]-sn-glycero-3-phospho\}serine skos:exactMatch mesh C050294 1-palmitoyl-2-oleoylglycero-3-phosphoserine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:340863 2-phospholactic acid skos:exactMatch mesh C048984 2-phospholactic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:34091 1-Hydroxychlordene skos:exactMatch mesh C007993 1-hydroxychlordene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:34093 1-Hydroxypyrene skos:exactMatch mesh C033146 1-hydroxypyrene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:34097 1-Naphthylacetylspermine skos:exactMatch mesh C067506 1-naphthylacetylspermine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:3410 Carboxyphosphamide skos:exactMatch mesh C000028 carboxyphosphamide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:34107 1-nitropyrene skos:exactMatch mesh C032668 1-nitropyrene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:34116 (9Z)-1-O-octadec-9-enyl glycerol skos:exactMatch mesh C009224 selachyl alcohol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:34117 batilol skos:exactMatch mesh C033433 batyl alcohol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:34123 1-Tridecanol skos:exactMatch mesh C051045 1-tridecanol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:3413 Cardiospermin skos:exactMatch mesh C560045 cardiospermin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:34131 11,14,15-trihydroxy-(5Z,8Z,12E)-icosatrienoic acid skos:exactMatch mesh C051283 11,14,15-trihydroxyeicosa-5,8,12-trienoic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:34133 11-oxotestosterone skos:exactMatch mesh C003600 11-ketotestosterone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:34134 11-Ketoandrosterone skos:exactMatch mesh C015961 11-ketoandrosterone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:34135 11-Ketoetiocholanolone skos:exactMatch mesh C015962 11-ketoetiocholanolone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:34142 11beta-Chloromethylestradiol skos:exactMatch mesh C038957 11-beta-chloromethyl-estradiol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:34151 12-oxo-ETE skos:exactMatch mesh C054994 12-keto-5,8,11,13-eicosatetraenoic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:34158 14alpha,17beta-Dihydroxyandrost-4-en-3-one skos:exactMatch mesh C030893 14-hydroxytestosterone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:34159 15-deoxy-Delta(12,14)-prostaglandin J2 skos:exactMatch mesh C097240 15-deoxy-delta(12,14)-prostaglandin J2 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:3416 carfentrazone-ethyl skos:exactMatch mesh C427526 carfentrazone-ethyl lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:34160 15H-11,12-EETA skos:exactMatch mesh C528813 15-hydroxy-11,12-epoxyeicosatrienoic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:34164 16-Fluorohexadecanoic acid skos:exactMatch mesh C031266 16-fluoropalmitic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:34165 16-Ketoestradiol skos:exactMatch mesh C003599 16-ketoestradiol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:34166 16-Ketoestrone skos:exactMatch mesh C002591 16-ketoestrone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:34174 17,17-Dimethyl-18-norandrosta-4,13-dien-3-one skos:exactMatch mesh C017243 17,17-dimethyl-18-norandrosta-4,13-dien-3-one lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:34187 19-Norandrostenedione skos:exactMatch mesh C002828 19-norandrostenedione lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:34188 19-Norprogesterone skos:exactMatch mesh C030703 19-norprogesterone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:34197 2,2',3,3',5,5'-hexachlorobiphenyl skos:exactMatch mesh C027311 2,3,5,2',3',5'-hexachlorobiphenyl lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:34199 2,2',3,3',6,6'-hexachlorobiphenyl skos:exactMatch mesh C010498 2,3,6,2',3',6'-hexachlorobiphenyl lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:3420 Carlina oxide skos:exactMatch mesh C054087 carlina oxide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:34202 2,2',4,4',5,5'-hexachlorobiphenyl skos:exactMatch mesh C014024 2,4,5,2',4',5'-hexachlorobiphenyl lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:34203 2,2',4,4',6,6'-hexachlorobiphenyl skos:exactMatch mesh C027310 2,4,6,2',4',6'-hexachlorobiphenyl lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:34204 2,2',4,4'-tetrachlorobiphenyl skos:exactMatch mesh C035976 2,4,2',4'-tetrachlorobiphenyl lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:34206 2,2',5,5'-tetrachlorobiphenyl skos:exactMatch mesh C009407 2,5,2',5'-tetrachlorobiphenyl lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:34207 2,2'-Bisphenol F skos:exactMatch mesh C047969 2,2'-bisphenol F lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:3421 carlinoside skos:exactMatch mesh C568398 carlinoside lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:34211 2,2-(2-Chlorophenyl-4'-chlorophenyl)-1,1-dichloroethene skos:exactMatch mesh C054919 2,2-(2-chlorophenyl-4'-chlorophenyl)-1,1-dichloroethene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:34217 2,3,3-Triphenylacrylonitrile skos:exactMatch mesh C040969 2,3,3-triphenylacrylonitrile lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:34231 2,3-Diphenyl-1-indanone skos:exactMatch mesh C012299 2,3-diphenyl-1-indanone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:34232 2,4'-dichlorobiphenyl skos:exactMatch mesh C029907 2,4'-dichlorobiphenyl lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:34236 2,4,6-Triphenyl-1-hexene skos:exactMatch mesh C533342 2,4,6-triphenyl-1-hexene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:34237 2,4-diaminotoluene skos:exactMatch mesh C010914 2,4-diaminotoluene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:34238 2,4-dibromophenol skos:exactMatch mesh C013930 2,4-dibromophenol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:34240 2,4-Dihydroxybenzophenone skos:exactMatch mesh C121479 2,4-dihydroxybenzophenone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:34241 2,4-Dimethylphenol skos:exactMatch mesh C027804 2,4-dimethylphenol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:34242 2,4-dinitroaniline skos:exactMatch mesh C010934 2,4-dinitroaniline lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:34246 2,5-dichlorobiphenyl skos:exactMatch mesh C029905 2,5-dichlorobiphenyl lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:34258 2-Aminoanthraquinone skos:exactMatch mesh C022970 2-aminoanthraquinone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:34263 2-Bromoacetaldehyde skos:exactMatch mesh C038235 bromoacetaldehyde lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:34264 2-bromophenol skos:exactMatch mesh C032038 2-bromophenol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:34269 2-chlorobiphenyl skos:exactMatch mesh C055142 2-chlorobiphenyl lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:34273 2-Ethyl-1,3-hexanediol skos:exactMatch mesh C004917 ethohexadiol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:34275 2-Ethylphenol skos:exactMatch mesh C495777 2-ethylphenol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:34277 2-Furylmercury chloride skos:exactMatch mesh C493275 2-furylmercury chloride lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:34278 2-Hydroxy-2',3',4',5,5'-pentachlorobiphenyl skos:exactMatch mesh C034133 2',3',4',5,5'-pentachloro-2-biphenylol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:34289 2-Hydroxyfluorene skos:exactMatch mesh C477779 2-hydroxyfluorene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:3429 Carnosol skos:exactMatch mesh C068623 carnosol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:34302 2-S-Glutathionyl acetate skos:exactMatch mesh C117291 2-S-glutathionyl acetate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:34303 2-sec-butylphenol skos:exactMatch mesh C033932 2-sec-butylphenol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:34305 2-tert-Butylphenol skos:exactMatch mesh C035406 2-tert-butylphenol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:34306 20-HETE skos:exactMatch mesh C055987 20-hydroxy-5,8,11,14-eicosatetraenoic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:34307 202-791 skos:exactMatch mesh C049834 PN 202-791 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:34308 21-Deoxycortisone skos:exactMatch mesh C020882 21-deoxycortisone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:34316 3'-O-(4-Benzoyl)benzoyl ATP skos:exactMatch mesh C033901 3'-O-(4-benzoyl)benzoyladenosine 5'-triphosphate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:34317 3,3',4,4',5-pentachlorobiphenyl skos:exactMatch mesh C023035 3,4,5,3',4'-pentachlorobiphenyl lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:34320 3,3'-Dimethylbenzidine skos:exactMatch mesh C009501 2-tolidine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:34323 3,4-Dichlorophenol skos:exactMatch mesh C043374 3,4-dichlorophenol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:34326 3,5-dichlorobiphenyl skos:exactMatch mesh C029904 3,5-dichlorobiphenyl lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:3433 carpaine skos:exactMatch mesh C018479 carpaine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:34332 3-Ethylphenol skos:exactMatch mesh C497701 3-ethylphenol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:34338 biphenyl-3-ol skos:exactMatch mesh C059903 3-hydroxybiphenyl lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:34339 3-Hydroxyestra-1,3,5(10),6-tetraen-17-one skos:exactMatch mesh C076348 3-hydroxyestra-1,3,5(10),6-tetraen-17-one lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:34345 3-Nitrofluoranthene skos:exactMatch mesh C033643 3-nitrofluoranthene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:34346 3-nitrophenol skos:exactMatch mesh C049017 3-nitrophenol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:34356 3beta-Hydroxypregn-5-ene skos:exactMatch mesh C000708612 pregn-5-en-3beta-ol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:3436 cartap skos:exactMatch mesh C032761 carbamothioic acid, S,S'-(2-(dimethylamino)-1,3-propanediyl) ester lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:34360 4'-hydroxychalcone skos:exactMatch mesh C561448 4'-hydroxychalcone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:34366 4,4'-Dihydroxybibenzyl skos:exactMatch mesh C010115 4,4'-dihydroxybibenzyl lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:34368 stilbene-4,4'-diol skos:exactMatch mesh C010118 4,4'-dihydroxystilbene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:34369 4,4'-Methylenebis(2,6-di-tert-butylphenol) skos:exactMatch mesh C030593 4,4'-methylenebis(2,6-di-tert-butylphenol) lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:34372 4,4'-sulfonyldiphenol skos:exactMatch mesh C543008 bis(4-hydroxyphenyl)sulfone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:34373 4,5,6,7-Tetrahydroisoxazolo(5,4-c)pyridin-3-ol skos:exactMatch mesh C015542 gaboxadol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:34377 4-(1-benzofuran-2-yl)pyridine skos:exactMatch mesh C050289 4-(2-benzofuranyl)pyridine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:34388 4-Bromocatechol skos:exactMatch mesh C040660 4-bromocatechol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:34392 4-Butoxyphenol skos:exactMatch mesh C119273 4-butoxyphenol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:34394 4-Chloro-4'-biphenylol skos:exactMatch mesh C056545 4-chloro-4'-biphenylol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:34399 4-Chloronitrobenzene skos:exactMatch mesh C010407 4-chloronitrobenzene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:3440 carvacrol skos:exactMatch mesh C073316 carvacrol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:34401 4-Chlorotoluene skos:exactMatch mesh C029049 4-chlorotoluene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:34417 4-Hydroxy-2,2',4',6'-tetrachlorobiphenyl skos:exactMatch mesh C000603336 2,2',4',6'-tetrachlorobiphenyl-4-ol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:34421 4-Hydroxybenzophenone skos:exactMatch mesh C024292 4-hydroxybenzophenone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:34423 4-hydroxychalcone skos:exactMatch mesh C451019 4-hydroxychalcone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:34433 4-PIOL skos:exactMatch mesh C073009 5-(4-piperidyl)isoxazol-3-ol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:34434 4-Propylphenol skos:exactMatch mesh C099327 4-propylphenol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:34445 4-tert-Octylphenol skos:exactMatch mesh C105260 4-tert-octylphenol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:34454 5-diazouracil skos:exactMatch mesh C004758 5-diazouracil lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:34457 5-Nitro-2-(3-phenylpropylamino)benzoic acid skos:exactMatch mesh C058176 5-nitro-2-(3-phenylpropylamino)benzoic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:34459 5-Nitrofurfural skos:exactMatch mesh C052590 5-nitro-2-furaldehyde lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:34466 6-bromo-2-naphthol skos:exactMatch mesh C034667 6-bromo-2-naphthol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:34467 6-chloro-3,5-diaminopyrazine-3-carboxamide skos:exactMatch mesh C058206 6-chloro-3,5-diaminopyrazine-3-carboxamide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:34469 6-Ethylthiopurine skos:exactMatch mesh C010149 6-ethylthiopurine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:34472 6-Hydroxyflavone skos:exactMatch mesh C529356 6-hydroxyflavone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:34475 6alpha-Methylpregn-4-ene-3,11,20-trione skos:exactMatch mesh C003491 6alpha-methylpregn-4-ene-3,11,20-trione lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:34490 8,9-EET skos:exactMatch mesh C050715 8,9-epoxyeicosatrienoic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:34505 8-epi-prostaglandin F2alpha skos:exactMatch mesh C075750 8-epi-prostaglandin F2alpha lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:34506 pinellic acid skos:exactMatch mesh C478149 pinellic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:34507 9-anthroic acid skos:exactMatch mesh C010030 9-anthroic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:3451 Casimiroedine skos:exactMatch mesh C006926 casimiroedine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:34511 9-Fluoroprednisolone skos:exactMatch mesh C010958 9-fluoroprednisolone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:34514 9-Methyl-7-bromoeudistomin D skos:exactMatch mesh C060741 9-methyl-7-bromoeudistomin D lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:3452 Casimiroin skos:exactMatch mesh C540179 6-methoxy-9-methyl-(1,3)dioxolo(4,5-h)quinolin-8(9H)-one lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:34522 Acetyleugenol skos:exactMatch mesh C081939 acetyleugenol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:34524 Adenophostin A skos:exactMatch mesh C085029 adenophostin A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:34525 Adenophostin B skos:exactMatch mesh C085030 adenophostin B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:34529 Allenolic acid skos:exactMatch mesh C110055 allenolic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:34537 Androstane-3,17-diol dipropionate skos:exactMatch mesh C040717 androstane-3,17-diol dipropionate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:3454 cassaine skos:exactMatch mesh C010696 cassaine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:34541 Argiotoxin 636 skos:exactMatch mesh C558368 argiotoxin-636 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:34542 Argiotoxin 659 skos:exactMatch mesh C054141 argiotoxin 659 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:34544 Aurin skos:exactMatch mesh C017037 aurin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:34548 BMS 204352 skos:exactMatch mesh C424388 BMS204352 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:34551 BRL 32872 skos:exactMatch mesh C094198 BRL 32872 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:34553 Balofloxacin skos:exactMatch mesh C077155 balofloxacin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:34558 Benzamil skos:exactMatch mesh C013407 benzamil lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:34559 benzarone skos:exactMatch mesh C004528 benzarone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:3456 Cassine skos:exactMatch mesh C426663 cassine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:34567 benzo[e]pyrene skos:exactMatch mesh C026487 benzo(e)pyrene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:34573 Bis(2-chloroethyl)ether skos:exactMatch mesh C006767 bis(2-chloroethyl)ether lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:34578 Bisphenol A diglycidyl ether skos:exactMatch mesh C019273 2,2-bis(4-glycidyloxyphenyl)propane lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:34581 Bisphenol B skos:exactMatch mesh C492482 bisphenol B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:34583 Bolasterone skos:exactMatch mesh C414827 bolasterone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:34590 bromobutide skos:exactMatch mesh C572217 bromobutide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:34591 bromodichloromethane skos:exactMatch mesh C025191 bromodichloromethane lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:34593 Bufuralol skos:exactMatch mesh C010831 bufuralol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:34594 Butylate skos:exactMatch mesh C023898 butylate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:34595 Butylbenzyl phthalate skos:exactMatch mesh C027561 butylbenzyl phthalate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:3460 Castelanone skos:exactMatch mesh C024968 castelanone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:34600 CGP 28-392 skos:exactMatch mesh C040525 CGP 28392 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:34606 caldarchaeol skos:exactMatch mesh C094418 caldarchaeol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:34608 captan skos:exactMatch mesh D002215 Captan lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:3461 Casuarictin skos:exactMatch mesh C073064 casuarictin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:34619 Cetiedil skos:exactMatch mesh C006955 cetiedil lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:3462 Casuarinin skos:exactMatch mesh C472513 casuarinin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:34624 Chloroacetyl chloride skos:exactMatch mesh C045557 chloroacetyl chloride lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:34626 Chlorobenzilate skos:exactMatch mesh C004659 chlorobenzilate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:34627 Chlorodibromomethane skos:exactMatch mesh C032707 chlorodibromomethane lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:34635 cholinephosphorylmannosylneogalabiaosylceramide skos:exactMatch mesh C097562 PGL3a glycosphingolipid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:34649 Clofilium skos:exactMatch mesh C022799 clofilium lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:3465 Catalposide skos:exactMatch mesh C006928 catalposide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:34654 Correolide skos:exactMatch mesh C118657 correolide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:34660 cyclopropylamine skos:exactMatch mesh C067351 cyclopropylamine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:34668 Dehydrosoyasaponin I skos:exactMatch mesh C071764 dehydrosoyasaponin I lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:34673 devapamil skos:exactMatch mesh C055885 devapamil lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:34675 bis(2-ethylhexyl) adipate skos:exactMatch mesh C013966 dioctyl adipate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:34676 Di-n-decyl phthalate skos:exactMatch mesh C027718 didecyl phthalate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:34677 diheptyl phthalate skos:exactMatch mesh C089799 diheptyl phthalate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:34678 Di-n-hexyl phthalate skos:exactMatch mesh C027387 di-n-hexyl phthalate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:34679 Di-n-octyl phthalate skos:exactMatch mesh C010715 di-n-octyl phthalate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:34686 Dibutyl adipate skos:exactMatch mesh C512395 dibutyl adipate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:34688 dichloroacetyl chloride skos:exactMatch mesh C053063 2,2-dichloroacetyl chloride lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:34693 Dicyclohexyl phthalate skos:exactMatch mesh C036042 dicyclohexyl phthalate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:34694 Dicyclohexylamine skos:exactMatch mesh C011769 dicyclohexylamine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:34695 Dicyclopentadiene skos:exactMatch mesh C004689 dicyclopentadiene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:34699 diethyl sulfate skos:exactMatch mesh C011612 diethyl sulfate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:34701 Diethylstilbestrol dimethyl ether skos:exactMatch mesh C004775 dimestrol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:34702 Diethylstilbestrol monomethyl ether skos:exactMatch mesh C070129 diethylstilbestrol monomethyl ether lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:34711 Diisopropyl adipate skos:exactMatch mesh C048852 diisopropyl adipate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:34717 Dimethylstilbestrol skos:exactMatch mesh C100172 dimethylstilbestrol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:34719 dinoseb skos:exactMatch mesh C018527 dinoseb lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:3472 Cathenamine skos:exactMatch mesh C551413 cathenamine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:34721 Diphenolic acid skos:exactMatch mesh C000622346 diphenolic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:34727 domoic acid skos:exactMatch mesh C012301 domoic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:34731 Droloxifene skos:exactMatch mesh C038345 droloxifene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:34732 E-4031 skos:exactMatch mesh C063968 E 4031 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:34734 Eburicoic acid skos:exactMatch mesh C004867 eburicoic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:34736 Emopamil skos:exactMatch mesh C052752 emopamil lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:34741 equol skos:exactMatch mesh D060754 Equol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:34742 Erythromycin stearate skos:exactMatch mesh C011462 erythromycin stearate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:34746 Estradiol-17-phenylpropionate skos:exactMatch mesh C017294 estradiol-17-phenylpropionate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:34747 Estrololactone skos:exactMatch mesh C001398 estrololactone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:34758 Fenoprop skos:exactMatch mesh C009264 fenoprop lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:34759 fenpiclonil skos:exactMatch mesh C437165 fenpiclonil lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:34787 heptanal skos:exactMatch mesh C046204 heptanal lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:34791 Hexylcaine skos:exactMatch mesh C004954 hexylcaine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:34792 histrionicotoxin skos:exactMatch mesh C007948 histrionicotoxin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:34798 Indanestrol skos:exactMatch mesh C047438 indanestrol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:34799 Isoguvacine skos:exactMatch mesh C015300 isoguvacine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:34802 JSTX-3 skos:exactMatch mesh C426070 JSTX-3 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:34806 Krm 1657 skos:exactMatch mesh C068981 KRM 1657 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:34807 L 735821 skos:exactMatch mesh C115921 L 735821 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:34808 LY382884 skos:exactMatch mesh C400802 LY382884 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:34815 Leucomycin A5 skos:exactMatch mesh C111299 leucomycin A5 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:34816 Leucomycin A6 skos:exactMatch mesh C071430 leucomycin A6 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:34817 Leucomycin A7 skos:exactMatch mesh C401285 leucomycin A7 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:34824 Lophotoxin skos:exactMatch mesh C030303 lophotoxin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:34825 Luliconazole skos:exactMatch mesh C112528 luliconazole lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:34829 Medrysone skos:exactMatch mesh C100283 medrysone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:34830 mefenacet skos:exactMatch mesh C425686 mefenacet lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:34833 1,3,5-trimethylbenzene skos:exactMatch mesh C010219 mesitylene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:3484 cefclidin skos:exactMatch mesh C056494 cefclidin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:34841 Methyl methoxyacetate skos:exactMatch mesh C027825 methyl methoxyacetate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:34846 metribuzin skos:exactMatch mesh C009235 metribuzin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:34849 mibolerone skos:exactMatch mesh C100075 mibolerone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:34851 Miltirone skos:exactMatch mesh C068880 miltirone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:34857 Moxestrol skos:exactMatch mesh C011310 moxestrol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:34875 N-Nitrosodiphenylamine skos:exactMatch mesh C023649 N-nitrosodiphenylamine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:34876 N-Phenyl-1-naphthylamine skos:exactMatch mesh C005444 N-phenyl-1-naphthylamine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:34877 N-Phenyl-2-naphthylamine skos:exactMatch mesh C011948 neozone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:34878 NS 1608 skos:exactMatch mesh C103727 NS 1608 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:34879 NS 1619 skos:exactMatch mesh C086491 NS 1619 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:3488 cefluprenam skos:exactMatch mesh C075377 cefluprenam lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:34887 nickel dichloride skos:exactMatch mesh C022838 nickel chloride lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:34894 Norethindrone enanthate skos:exactMatch mesh C024319 norethindrone enanthate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:34896 Normethandrolone skos:exactMatch mesh C073330 methylestrenolone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:34907 Paxilline skos:exactMatch mesh C048220 paxilline lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:34908 pentachloronitrobenzene skos:exactMatch mesh C005805 quintozene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:34919 Phenylamil skos:exactMatch mesh C047088 phenylamil lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:34920 Philanthotoxin 343 skos:exactMatch mesh C074003 philanthotoxin 343 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:34921 phthalocyanine skos:exactMatch mesh C013647 phthalocyanine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:34925 Piperocaine skos:exactMatch mesh C023039 piperocaine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:34926 Pitrazepin skos:exactMatch mesh C041662 pitrazepin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:34931 Pretilachlor skos:exactMatch mesh C118050 pretilachlor lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:34944 RU 5135 skos:exactMatch mesh C032061 RU 5135 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:34946 Reactive blue 2 skos:exactMatch mesh C012842 Cibacron Blue F 3GA lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:34948 Rifamycin S skos:exactMatch mesh C032779 rifamycin S lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:34952 Ro 19-4603 skos:exactMatch mesh C056530 Ro 19-4603 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:34959 S-(2-Chloroacetyl)glutathione skos:exactMatch mesh C056921 S-(2-chloroacetyl)glutathione lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:34967 rimonabant skos:exactMatch mesh D000077285 Rimonabant lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:34971 Sch 59884 skos:exactMatch mesh C444007 SCH 59884 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:34976 simetryn skos:exactMatch mesh C033807 simetryn lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:34977 Sipatrigine skos:exactMatch mesh C081980 sipatrigine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:34979 Stanolone benzoate skos:exactMatch mesh C040109 stanolone benzoate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:34980 Stenbolone skos:exactMatch mesh C069085 stenbolone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:34990 TRAM-34 skos:exactMatch mesh C411671 TRAM 34 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:34994 teicoplanin A2 skos:exactMatch mesh C000594918 teicoplanin A2 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:35000 Testosterone decanoate skos:exactMatch mesh C041677 testosterone decanoate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:35001 Testosterone isocaproate skos:exactMatch mesh C086826 testosterone isocaproate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:35002 Testosterone phenylpropionate skos:exactMatch mesh C035458 testosterone 17-phenylpropionate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:35004 Tetrachlorobisphenol A skos:exactMatch mesh C041181 tetrachlorodian lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:35009 tetrapentylammonium skos:exactMatch mesh C027435 tetrapentylammonium lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:35010 Thio-THIP skos:exactMatch mesh C000595274 4,5,6,7-tetrahydroisoxazolo(3,4c)pyridin-5-ol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:35011 Thiobencarb skos:exactMatch mesh C037925 benthiocarb lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:3502 cefozopran skos:exactMatch mesh C070918 cefozopran lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:35021 Trichloroethanol glucuronide skos:exactMatch mesh C405204 trichloroethanol glucuronide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:35022 Trichomycin skos:exactMatch mesh C100192 hachimycin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:35023 Trichomycin A skos:exactMatch mesh C499929 trichomycin A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:35024 Trichomycin B skos:exactMatch mesh C499930 trichomycin B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:35028 Trimethylolpropane triacrylate skos:exactMatch mesh C027993 trimethylolpropane triacrylate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:35029 Trimethylolpropane trimethacrylate skos:exactMatch mesh C028643 trimethylolpropane trimethacrylate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:35034 Triphenylethylene skos:exactMatch mesh C037749 triphenylethylene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:35036 fentin chloride skos:exactMatch mesh C012594 triphenyltin chloride lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:35037 tris(2-chloroethyl) phosphate skos:exactMatch mesh C031324 tris(chloroethyl)phosphate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:35044 Ulifloxacin skos:exactMatch mesh C074190 ulifloxacin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:35047 xanthomicrol skos:exactMatch mesh C462036 xanthomicrol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:35048 xylylcarb skos:exactMatch mesh C001699 meobal lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:35049 YC 170 skos:exactMatch mesh C046721 YC 170 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:35050 ZAPA skos:exactMatch mesh C058552 3-((aminoiminomethyl)thio)-2-propenoic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:35052 Zindoxifene skos:exactMatch mesh C041791 zindoxifene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:35056 adenosine 5'-[alpha,beta-methylene]triphosphate skos:exactMatch mesh C002630 alpha,beta-methyleneadenosine 5'-triphosphate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:35057 alpha-EMGBL skos:exactMatch mesh C035544 2-ethyl-2-methyl-4-butyrolactone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:35058 alpha-EMTBL skos:exactMatch mesh C051894 alpha-ethyl, alpha-methyl-thiobutyrolactone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:3506 cefprozil skos:exactMatch mesh C052018 cefprozil lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:35071 beta-Zearalanol skos:exactMatch mesh C028226 taleranol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:35079 delta-Guanidinovaleric acid skos:exactMatch mesh C053509 delta-guanidinovaleric acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:35095 4-(dimethylamino)benzenediazonium tetrafluoroborate skos:exactMatch mesh C028214 4-dimethylaminobenzenediazonium fluoroborate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:35096 p-tert-Amylphenol skos:exactMatch mesh C019566 p-tert-amylphenol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:35114 3-isopropylmalic acid skos:exactMatch mesh C000709759 3-isopropylmalic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:35124 permanganic acid skos:exactMatch mesh C048856 permanganic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:3516 Cefuroxime axetil skos:exactMatch mesh C040738 cefuroxime axetil lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:35194 isoprene skos:exactMatch mesh C005059 isoprene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:35195 surfactant skos:exactMatch mesh D013501 Surface-Active Agents lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:35207 radioactive tracer skos:exactMatch mesh D011849 Radioactive Tracers lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:35210 spin label skos:exactMatch mesh D013113 Spin Labels lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:35212 apratoxin A skos:exactMatch mesh C442201 apratoxin A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:35215 apratoxin B skos:exactMatch mesh C470917 apratoxin B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:35216 apratoxin C skos:exactMatch mesh C470919 apratoxin C lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:35225 buffer skos:exactMatch mesh D002021 Buffers lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:35227 4-nitrotoluene skos:exactMatch mesh C017572 4-nitrotoluene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:35302 helicene skos:exactMatch mesh C031660 helicenes lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:35311 carotenoic acid skos:exactMatch mesh C002142 carotenoic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:3532 Centrolobine skos:exactMatch mesh C432457 centrolobin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:35324 hydrazinium(1+) skos:exactMatch mesh C007969 hydrazinium lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:35328 spirilloxanthin skos:exactMatch mesh C055255 spirilloxanthin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:3533 cephaeline skos:exactMatch mesh C005963 cephaelin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:35330 spheroidene skos:exactMatch mesh C005637 spheroidene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:35336 lycophyll skos:exactMatch mesh C514774 lycophyll lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:3536 Cephalomannine skos:exactMatch mesh C056348 cephalomannine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:35371 lipooligosaccharide skos:exactMatch mesh C023023 lipid-linked oligosaccharides lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:35374 D-mannose 1-phosphate skos:exactMatch mesh C047217 mannose 1-phosphate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:35404 chromate(2-) skos:exactMatch mesh D002840 Chromates lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:35413 methanediamine skos:exactMatch mesh C083165 diaminomethane lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:35424 2-acetamidofluorene N-sulfate skos:exactMatch mesh C047043 2-acetylaminofluorene-N-sulfate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:35441 antiinfective agent skos:exactMatch mesh D000890 Anti-Infective Agents lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:35482 opioid analgesic skos:exactMatch mesh D009294 Narcotics lexical 0.9 https://github.com/indralab/panacea_indra/blob/master/panacea_indra/make_ctd_tests.py +chebi CHEBI:35483 adenosine 5'-monophosphate 1-oxide skos:exactMatch mesh C511284 AMP N1-oxide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:35485 adenosine 1-oxide skos:exactMatch mesh C095544 adenosine N(1)-oxide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:355715 4-nitrophenyl-beta-D-galactoside skos:exactMatch mesh C059200 4-nitrophenylgalactoside lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:35572 phorone skos:exactMatch mesh C018637 phorone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:35583 indolizine skos:exactMatch mesh C035094 indolizine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:3560 Cernuine skos:exactMatch mesh C529946 cernuine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:35610 antineoplastic agent skos:exactMatch mesh D054697 Cytostatic Agents lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:35626 4-methylthiazole skos:exactMatch mesh C410590 4-methylthiazole lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:35628 (6-methoxy-2-naphthyl)acetic acid skos:exactMatch mesh C044612 6-methoxy-2-naphthylacetic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:35633 yohimbic acid skos:exactMatch mesh C012612 yohimbinic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:35643 aporphine skos:exactMatch mesh C081279 aporphine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:35647 hasubanan skos:exactMatch mesh C000588939 hasubanan lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:35649 morphinan skos:exactMatch mesh D009019 Morphinans lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:35663 carane skos:exactMatch mesh C030217 carane lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:35671 porphyra-334 skos:exactMatch mesh C421025 porphyra-334 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:35673 abietane skos:exactMatch mesh C000629586 abietane lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:35687 butan-2-ol skos:exactMatch mesh C043958 2-butanol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:3569 Chaksine skos:exactMatch mesh C037683 chaksine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:3570 Chalcogran skos:exactMatch mesh C585844 chalcogran lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:35701 ester skos:exactMatch mesh D004952 Esters lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:35704 N(2)-acetyl-L-lysine skos:exactMatch mesh C002315 N(alpha)-acetyllysine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:35709 thujane skos:exactMatch mesh C035126 thujane lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:35710 pinane skos:exactMatch mesh C030216 pinane lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:35711 ursane skos:exactMatch mesh C000606873 ursane lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:3572 Chalepensin skos:exactMatch mesh C020740 3-(alpha,alpha-dimethylallyl)psoralen lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:3573 Chamazulene skos:exactMatch mesh C013872 chamazulene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:35746 fatty aldehyde skos:exactMatch mesh C001634 fatty aldehyde lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:3577 Chaparrin skos:exactMatch mesh C052512 chaparrin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:3578 Chaparrinone skos:exactMatch mesh C024966 chaparrinone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:35783 bornane skos:exactMatch mesh C067796 camphane lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:3580 Chartreusin skos:exactMatch mesh C002185 chartreusin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:35825 mandelic acid skos:exactMatch mesh C037938 mandelic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:3583 Chebulagic acid skos:exactMatch mesh C076178 chebulagic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:3584 Chebulinic acid skos:exactMatch mesh C103481 chebulinic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:35841 uricosuric drug skos:exactMatch mesh D014528 Uricosuric Agents lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:35852 transplatin skos:exactMatch mesh C034697 transplatin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:3586 Chelidonic acid skos:exactMatch mesh C046884 chelidonic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:35860 1-methylphenanthrene skos:exactMatch mesh C041507 1-methylphenanthrene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:35862 bacitracin A skos:exactMatch mesh C026461 bacitracin A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:35868 hydroxy monocarboxylic acid skos:exactMatch mesh D006880 Hydroxy Acids lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:358732 dibenzo-18-crown-6 skos:exactMatch mesh C002570 dicyclohexyl-18-crown-6 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:35890 trimethylphosphine skos:exactMatch mesh C049750 trimethyl phosphine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:35896 S-(2-hydroxyethyl)glutathione skos:exactMatch mesh C046571 S-(2-hydroxyethyl)glutathione lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:35918 aspidofractinine skos:exactMatch mesh C552319 aspidofractinine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:35936 pent-4-enoic acid skos:exactMatch mesh C009785 4-pentenoic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:35939 pent-2-enoic acid skos:exactMatch mesh C005476 pent-2-enoic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:3594 chicoric acid skos:exactMatch mesh C100435 chicoric acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:35986 nonan-1-ol skos:exactMatch mesh C014713 1-nonanol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:35991 penam skos:exactMatch mesh C483963 clavam lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:35998 tridecane skos:exactMatch mesh C094074 tridecane lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:36015 1,1,1-trichloroethane skos:exactMatch mesh C024566 1,1,1-trichloroethane lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:36018 1,1,2-trichloroethane skos:exactMatch mesh C024567 1,1,2-trichloroethane lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:36032 tetracosenoic acid skos:exactMatch mesh C064583 tetracosenoic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:3605 chloramphenicol palmitate skos:exactMatch mesh C030578 chloramphenicol palmitate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:3606 Chloramphenicol succinate skos:exactMatch mesh C026016 chloramphenicol succinate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:36062 3,4-dihydroxybenzoic acid skos:exactMatch mesh C009091 protocatechuic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:36064 taxane skos:exactMatch mesh C080625 taxane lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:36075 prostaglandin F3alpha skos:exactMatch mesh C034238 prostaglandin F3alpha lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:36077 topaquinone skos:exactMatch mesh C086758 2,4,5-trihydroxyphenylalanine quinone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:3608 Chlorbromuron skos:exactMatch mesh C014401 chlorbromuron lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:3613 chlorflavonin skos:exactMatch mesh C006967 chlorflavonin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:36160 protoporphyrin monomethyl ester skos:exactMatch mesh C033434 protoporphyrin IX monomethyl ester lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:36177 cytoporphyrin skos:exactMatch mesh C028285 porphyrin a lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:3620 chlornitrofen skos:exactMatch mesh C010422 2,4,6-trichlorophenyl 4-nitrophenyl ether lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:36203 trioxilin A3 skos:exactMatch mesh C019121 8,11,12-trihydroxy-5,9,14-eicosatrienoic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:36206 3-hydroxylauric acid skos:exactMatch mesh C453840 3-hydroxy-lauric acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:36221 lipoxin D4 skos:exactMatch mesh C073549 lipoxin D4 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:36229 allolactose skos:exactMatch mesh C001970 allolactose lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:3627 Chlorohyssopifolin A skos:exactMatch mesh C027463 chlorohyssopifolin A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:3628 chloroneb skos:exactMatch mesh C007009 chloroneb lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:36284 lythranidine skos:exactMatch mesh C032336 lythranidine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:3629 Chlorophorin skos:exactMatch mesh C430707 chlorophorin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:36303 chlorin skos:exactMatch mesh C006969 chlorin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:36315 glycerophosphoinositol skos:exactMatch mesh C014575 glycerylphosphoinositol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:36318 dipyrrin skos:exactMatch mesh C507544 dipyrromethene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:36331 octadeca-10,12-dienoic acid skos:exactMatch mesh C094849 10,12-octadecadienoic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:36332 hispidin skos:exactMatch mesh C007946 hispidin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:3636 chloroprocaine skos:exactMatch mesh C004616 chloroprocaine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:36361 phosphorous acid skos:exactMatch mesh C570063 phosphonic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:36383 strontium dichloride skos:exactMatch mesh C025700 strontium chloride lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:3639 chlorothalonil skos:exactMatch mesh C005806 tetrachloroisophthalonitrile lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:36397 thiomorpholine-3,5-dicarboxylic acid skos:exactMatch mesh C049158 1,4-thiomorpholine-3,5-dicarboxylic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:36404 cyclohexene skos:exactMatch mesh C052568 cyclohexene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:36409 tris(1,10-phenanthroline)ruthenium(2+) skos:exactMatch mesh C034282 tris-(1,10-phenanthroline)ruthenium lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:36415 hexaammineruthenium(2+) skos:exactMatch mesh C031584 hexammineruthenium lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:36418 1,7-phenanthroline skos:exactMatch mesh C053486 1,7-phenanthroline lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:36419 4,7-phenanthroline skos:exactMatch mesh C053487 4,7-phenanthroline lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:36437 angelica lactone skos:exactMatch mesh C019257 angelica lactone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:364453 carprofen skos:exactMatch mesh C007005 carprofen lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:36474 drimane skos:exactMatch mesh C437376 drimane lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:36481 oleanane skos:exactMatch mesh C413246 oleanane lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:36482 hopane skos:exactMatch mesh C025206 hopane lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:36485 lupane skos:exactMatch mesh C480546 lupane lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:36488 dammarane skos:exactMatch mesh C102963 dammarane lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:36489 17beta-estradiol 3-glucosiduronic acid skos:exactMatch mesh C025482 estradiol-3-glucuronide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:36493 isomenthone skos:exactMatch mesh C575995 isomenthone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:365 haloxyfop skos:exactMatch mesh C054176 haloxyfop lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:36503 menthone skos:exactMatch mesh C019466 menthone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:36505 labdane skos:exactMatch mesh C433017 labdane lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:36506 picrasane skos:exactMatch mesh C426926 picrasane lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:36513 cadinane skos:exactMatch mesh C508039 cadinane lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:3652 chlorsulfuron skos:exactMatch mesh C037137 chlorsulfuron lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:36522 eudesmane skos:exactMatch mesh C015872 eudesmane lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:36524 guaiane skos:exactMatch mesh C421026 guaiane lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:36538 2-hydroxy-6-(2-hydroxyphenyl)-6-oxo-cis,cis-hexa-2,4-dienoate skos:exactMatch mesh C085250 2-hydroxy-6-oxo-6-(2-hydroxyphenyl)hexa-2,4-dienoate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:36547 pimarane skos:exactMatch mesh C433018 pimarane lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:36568 phosphonolipid skos:exactMatch mesh C028299 phosphonolipids lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:36569 triiodomercurate(1-) skos:exactMatch mesh C022952 mercuric triiodide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:36575 N-formylanthranilic acid skos:exactMatch mesh C000631412 formylanthranilic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:36595 succinic anhydride skos:exactMatch mesh C031801 succinic anhydride lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:36597 phthalazine skos:exactMatch mesh C043388 phthalazine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:36601 triphenylphosphane oxide skos:exactMatch mesh C063888 triphenylphosphine oxide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:36610 acetic anhydride skos:exactMatch mesh C031800 acetic anhydride lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:36617 cinnoline skos:exactMatch mesh C476282 cinnoline lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:36632 o-toluic acid skos:exactMatch mesh C009502 2-toluic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:36635 p-toluic acid skos:exactMatch mesh C009504 4-toluic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:36664 stilben-4-ol skos:exactMatch mesh C064297 4-hydroxystilbene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:36674 phenazine skos:exactMatch mesh C000598831 phenazine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:3668 Choline salicylate skos:exactMatch mesh C015075 choline salicylate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:36696 1,2,3,5-tetrachlorobenzene skos:exactMatch mesh C030387 1,2,3,5-tetrachlorobenzene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:36697 1,2,4,5-tetrachlorobenzene skos:exactMatch mesh C018673 1,2,4,5-tetrachlorobenzene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:36699 corticosteroid hormone skos:exactMatch mesh D000305 Adrenal Cortex Hormones lexical 0.9 https://github.com/indralab/panacea_indra/blob/master/panacea_indra/make_ctd_tests.py +chebi CHEBI:36703 tetrachloro-1,4-benzoquinone skos:exactMatch mesh C000591600 tetrachlorobenzoquinone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:36716 3-chlorobiphenyl skos:exactMatch mesh C034280 3-chlorobiphenyl lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:36732 bilene-b skos:exactMatch mesh C521796 b-Bilene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:36740 alpha-pinene skos:exactMatch mesh C005451 alpha-pinene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:36742 p-menthan-3-one skos:exactMatch mesh C000590793 2-isopropyl-5-methylcyclohexanone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:36748 mesobiliverdin skos:exactMatch mesh C040381 mesobiliverdin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:36759 geranylfarnesol skos:exactMatch mesh C043321 geranylfarnesol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:36761 1-pyrroline-2-carboxylic acid skos:exactMatch mesh C009141 3,4-dihydro-2H-pyrrole-5-carboxylic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:36779 sapphyrin skos:exactMatch mesh C440448 sapphyrin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:36799 campestanol skos:exactMatch mesh C003535 campestanol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:3680 chrysanthemic acid skos:exactMatch mesh C007051 chrysanthemic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:3681 Chrysanthenone skos:exactMatch mesh C441667 chrysanthenone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:36812 valerophenone skos:exactMatch mesh C547345 valerophenone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:36813 clovoxamine skos:exactMatch mesh C020724 clovoxamine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:3684 chrysin 5,7-dimethyl ether skos:exactMatch mesh C060298 5,7-dimethoxyflavone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:3686 chrysophanol-9-anthrone skos:exactMatch mesh C013883 chrysarobin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:3687 chrysophanol skos:exactMatch mesh C027113 chrysophanic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:3690 chrysosplenol C skos:exactMatch mesh C404406 chrysosplenol C lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:36927 carbon-14 atom skos:exactMatch mesh C000615234 Carbon-14 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:36928 carbon-13 atom skos:exactMatch mesh C000615229 Carbon-13 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:36929 carbon-11 atom skos:exactMatch mesh C000615233 Carbon-11 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:3693 Cichoriin skos:exactMatch mesh C410941 cichoriin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:36930 carbon-10 atom skos:exactMatch mesh C000615232 Carbon-10 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:36932 oxygen-15 atom skos:exactMatch mesh C000615263 Oxygen-15 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:36933 oxygen-19 atom skos:exactMatch mesh C000615264 Oxygen-19 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:36934 nitrogen-15 atom skos:exactMatch mesh C000615243 Nitrogen-15 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:36935 nitrogen-13 atom skos:exactMatch mesh C000615247 Nitrogen-13 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:36936 nitrogen-16 atom skos:exactMatch mesh C000615248 Nitrogen-16 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:36937 nitrogen-17 atom skos:exactMatch mesh C000615249 Nitrogen-17 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:36939 fluorine-18 atom skos:exactMatch mesh C000615276 Fluorine-18 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:3695 Cicutoxin skos:exactMatch mesh C010697 cicutoxin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:36955 triuret skos:exactMatch mesh C017781 triuret lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:36957 selenourea skos:exactMatch mesh C081959 selenourea lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:36967 carbonotrithioic acid skos:exactMatch mesh C013321 trithiocarbonic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:36999 perillic acid skos:exactMatch mesh C078706 perillic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:3700 Cimicifugoside skos:exactMatch mesh C031436 cimicifugoside lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:37003 helium-6 atom skos:exactMatch mesh C000615207 Helium-6 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:37004 helium-8 atom skos:exactMatch mesh C000615208 Helium-8 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:37008 nicotinic acid mononucleotide skos:exactMatch mesh C002953 nicotinate mononucleotide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:3701 Cimifugin skos:exactMatch mesh C533198 cimifugin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:37051 3-hydroxy-2-methylbutanoic acid skos:exactMatch mesh C016579 2-methyl-3-hydroxybutyric acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:3711 Cinnamodial skos:exactMatch mesh C115865 cinnamodial lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:3713 Cinnamoylcocaine skos:exactMatch mesh C034029 cinnamoylcocaine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:37150 1,4-dibromobenzene skos:exactMatch mesh C066656 1,4-dibromobenzene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:37166 xylan skos:exactMatch mesh D014990 Xylans lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:37173 silanol skos:exactMatch mesh C082343 silanol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:3718 cirsilineol skos:exactMatch mesh C057618 cirsilineol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:37186 lead tetrafluoride skos:exactMatch mesh C077765 lead fluoride lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:37187 lead nitrate skos:exactMatch mesh C017461 lead nitrate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:37189 hexafluorosilicate(2-) skos:exactMatch mesh C004832 hexafluorosilicate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:3719 cirsiliol skos:exactMatch mesh C039824 cirsiliol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:37205 pentol skos:exactMatch mesh C025538 pentol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:37208 pinitol skos:exactMatch mesh C021730 pinitol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:37258 2-hydroxyphytanic acid skos:exactMatch mesh C002585 2-hydroxyphytanic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:37288 gadolinium trichloride skos:exactMatch mesh C038958 gadolinium chloride lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:37318 2-oxopent-4-enoic acid skos:exactMatch mesh C017452 2-keto-4-pentenoic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:3732 clarithromycin skos:exactMatch mesh C040934 6-O-methylerythromycin A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:37327 isoalloxazine skos:exactMatch mesh C008173 isoalloxazine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:37329 phosphatidylinositol 5-phosphate skos:exactMatch mesh C113567 phosphatidylinositol 5-phosphate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:37340 polonium-210 atom skos:exactMatch mesh C000615141 Polonium-210 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:37346 polonium-216 atom skos:exactMatch mesh C000615142 Polonium-216 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:37348 polonium-218 atom skos:exactMatch mesh C000615143 Polonium-218 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:37368 polonium-208 atom skos:exactMatch mesh C000615139 Polonium-208 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:37369 polonium-209 atom skos:exactMatch mesh C000615140 Polonium-209 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:37376 tetraphosphorus decaoxide skos:exactMatch mesh C012500 phosphorus pentoxide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:37386 aurantio-obtusin skos:exactMatch mesh C000595611 aurantio-obtusin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:37388 HP-DO3A(3-) skos:exactMatch mesh C544520 10-(2-hydroxypropyl)-1,4,7-tetraazacyclododecane-1,4,7-triacetic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:37394 podorhizol skos:exactMatch mesh C023817 podorhizol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:37401 1,4,8,11-tetraazacyclotetradecane skos:exactMatch mesh C024560 cyclam lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:37405 1,4,7-triazonane skos:exactMatch mesh C075712 1,4,7-triazacyclononane lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:37419 12-hydroxyjasmonic acid 12-O-beta-D-glucoside skos:exactMatch mesh C421181 tuberonic acid glucoside lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:3743 clidinium skos:exactMatch mesh C054940 clidinium lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:37433 gulonolactone skos:exactMatch mesh C007895 gulonolactone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:37450 2-methoxyestrone 3-O-(beta-D-glucuronide) skos:exactMatch mesh C002005 2-methoxyestrone-3-glucuronide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:37455 ribulose 5-phosphate skos:exactMatch mesh C031524 ribulose 5-phosphate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:37479 1,4,5,8-tetrahydroxyanthraquinone skos:exactMatch mesh C522626 1,4,5,8-tetrahydroxyanthraquinone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:37495 quinalizarin skos:exactMatch mesh C543211 1,2,5,8-tetrahydroxy anthraquinone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:37501 anthrarufin skos:exactMatch mesh C000601351 1,5-dihydroxyanthraquinone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:37504 anthrarobin skos:exactMatch mesh C032186 anthrarobin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:37519 cyclohepta-1,3,5-triene skos:exactMatch mesh C011378 tropilidine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:37532 phorbol ester skos:exactMatch mesh D010703 Phorbol Esters lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:37548 phenyl phosphate skos:exactMatch mesh C074782 phenylphosphate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:37550 sphingosine 1-phosphate skos:exactMatch mesh C060506 sphingosine 1-phosphate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:37560 benproperine skos:exactMatch mesh C477447 benproperine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:37580 acetyl chloride skos:exactMatch mesh C081124 acetyl chloride lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:37586 sodium phosphate skos:exactMatch mesh C018279 sodium phosphate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:3760 cloransulam-methyl skos:exactMatch mesh C412472 cloransulam-methyl lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:37610 cyclohexa-1,3-diene skos:exactMatch mesh C034005 1,3-cyclohexadiene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:37611 cyclohexa-1,4-diene skos:exactMatch mesh C048401 1,4-cyclohexadiene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:37660 methanopterin skos:exactMatch mesh C036686 methanopterin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:37666 5'-acetylphosphoadenosine skos:exactMatch mesh C017987 acetyl adenylate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:3768 Cnicin skos:exactMatch mesh C012849 cnicin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:37690 allose skos:exactMatch mesh C002055 allose lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:37691 gulose skos:exactMatch mesh C057406 gulose lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:37709 idose skos:exactMatch mesh C010997 idose lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:37710 talose skos:exactMatch mesh C510913 L-talo-gamma-lactone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:37777 cimigenol skos:exactMatch mesh C478830 (23R,24S)-16,23-16,24-diepoxy-9,19-cyclolanostan-3beta,15alpha,25-triol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:37788 O(4)-phospho-L-tyrosine skos:exactMatch mesh C000591550 O-phospho-L-tyrosine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:37802 thallium-203 skos:exactMatch mesh C000615119 Thallium-203 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:37804 thallium-201 skos:exactMatch mesh C000615114 Thallium-201 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:37805 thallium-199 skos:exactMatch mesh C000615112 Thallium-199 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:37808 butane skos:exactMatch mesh C046888 butane lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:37830 pentane skos:exactMatch mesh C033353 pentane lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:37869 octan-2-ol skos:exactMatch mesh C067943 2-octanol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:37911 indane skos:exactMatch mesh C093582 indan lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:37915 fluoran skos:exactMatch mesh C023835 fluoran lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:37922 arbekacin skos:exactMatch mesh C031986 arbekacin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:37923 astromicin skos:exactMatch mesh C023384 fortimicin A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:37936 bamethan skos:exactMatch mesh C084810 bamethan lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:37942 thienopyridine skos:exactMatch mesh C446540 thienopyridine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:37951 isepamicin skos:exactMatch mesh C016927 isepamicin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:37972 phosphorus-32 atom skos:exactMatch mesh C000615311 Phosphorus-32 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:37973 phosphorus-33 atom skos:exactMatch mesh C000615312 Phosphorus-33 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:37974 silicon-29 atom skos:exactMatch mesh C000615303 Silicon-29 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:37976 silicon-30 atom skos:exactMatch mesh C000615304 Silicon-30 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:37977 silicon-31 atom skos:exactMatch mesh C000615305 Silicon-31 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:37978 silicon-32 atom skos:exactMatch mesh C000615306 Silicon-32 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:37980 sulfur-33 atom skos:exactMatch mesh C000615315 Sulfur-33 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:37981 sulfur-34 atom skos:exactMatch mesh C000615316 Sulfur-34 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:37982 sulfur-36 atom skos:exactMatch mesh C000615317 Sulfur-36 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:37983 sulfur-35 atom skos:exactMatch mesh C000615320 Sulfur-35 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:37984 sulfur-37 atom skos:exactMatch mesh C000615321 Sulfur-37 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:37985 sulfur-38 atom skos:exactMatch mesh C000615322 Sulfur-38 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:37990 Cy3-bifunctional dye zwitterion skos:exactMatch mesh C089187 cyanine dye 3 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:37994 1,1'-diethyl-2,2'-cyanine skos:exactMatch mesh C100254 pseudoisocyanine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:37998 glycolithocholic acid skos:exactMatch mesh C027746 glycolithocholic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:37999 dithiosalicylic acid skos:exactMatch mesh C026779 dithiosalicylic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:3802 Cochlearine skos:exactMatch mesh C516710 cochlearine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:38028 cyanuric acid skos:exactMatch mesh C004632 cyanuric acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:3804 Codonocarpine skos:exactMatch mesh C000614030 codonocarpine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:38043 1,3,5-trioxane skos:exactMatch mesh C011374 s-trioxane lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:38048 alpha-hydroxyglycine skos:exactMatch mesh C006538 aminohydroxyacetic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:38055 melem skos:exactMatch mesh C571854 melem lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:38057 1,2,4-triazine skos:exactMatch mesh C093444 1,2,4-triazine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:3806 Coelogin skos:exactMatch mesh C000596253 7,8-dimethoxy-9,10-dihydro-5H-naphtho(8,1,2-cde)chromene-2,6-diol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:38067 propazine skos:exactMatch mesh C100043 propazine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:38079 1,3-dithiolane skos:exactMatch mesh C012948 1,3-dithiolane lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:38085 2-benzofuran-1(3H)-one skos:exactMatch mesh C082022 phthalide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:38105 gitoxigenin skos:exactMatch mesh C007846 gitoxigenin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:38112 phenylmethanesulfonic acid skos:exactMatch mesh C035617 phenylmethanesulfonic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:38118 but-2-en-4-olide skos:exactMatch mesh C004511 butenolide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:38119 brassinin skos:exactMatch mesh C089020 brassinin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:38126 malealdehyde skos:exactMatch mesh C015977 malealdehyde lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:38127 thiocarbamic ester skos:exactMatch mesh D013859 Thiocarbamates lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:38130 brussalexin A skos:exactMatch mesh C522561 brussalexin A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:38142 1,2-dihydronaphthalene skos:exactMatch mesh C086079 1,2-dihydronaphthalene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:38199 chlorophyll d skos:exactMatch mesh C107509 chlorophyll d lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:38200 astilbin skos:exactMatch mesh C099069 astilbin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:38211 potassium bromate skos:exactMatch mesh C019536 potassium bromate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:38214 monuron skos:exactMatch mesh C100088 monuron lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:38218 isophthalonitrile skos:exactMatch mesh C412619 1,3-dicyanobenzene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:38220 methanimine skos:exactMatch mesh C024664 methyleneimine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:38226 1,2-dithiolane skos:exactMatch mesh C448825 1,2-dithiolane lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:38229 solanapyrone A skos:exactMatch mesh C113266 solanapyrone A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:38235 solanapyrone B skos:exactMatch mesh C113269 solanapyrone B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:38258 pheophorbide b skos:exactMatch mesh C032624 pheophorbide b lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:38264 2-amino-3-methylpentanoic acid skos:exactMatch mesh C516826 2-amino-3-methylpentanoic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:38265 carvone skos:exactMatch mesh C006923 carvone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:3829 Columbin skos:exactMatch mesh C062514 columbin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:38319 usnic acid skos:exactMatch mesh C073339 usnic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:38322 oxotremorine M skos:exactMatch mesh C042743 oxotremorine M lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:38331 11-tetradecenoic acid skos:exactMatch mesh C432948 11-tetradecenoic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:38344 hellebrigenin skos:exactMatch mesh C001330 hellebrigenin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:38362 tariric acid skos:exactMatch mesh C479850 6-octadecynoic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:38371 2-dodecenoic acid skos:exactMatch mesh C527562 2-dodecenoic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:38372 cis-2-dodecenoic acid skos:exactMatch mesh C035892 soluble immune-response suppressor, bone marrow lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:38381 dodec-11-enoic acid skos:exactMatch mesh C054728 11-dodecenoic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:38407 muconic acid skos:exactMatch mesh C005939 muconic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:38412 2,4-dichloromuconate(2-) skos:exactMatch mesh C432473 2,4-dichloro-muconate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:38450 chromafenozide skos:exactMatch mesh C454111 chromafenozide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:38451 halofenozide skos:exactMatch mesh C437546 N-4-chlorobenzoyl-N'-benzoyl-N'-tert-butylhydrazine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:38457 N'-benzoyl-N-(tert-butyl)benzohydrazide skos:exactMatch mesh C056565 1,2-dibenzoyl-tert-butylhydrazine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:38465 butocarboxim skos:exactMatch mesh C044644 butocarboxime lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:38471 azadirachtin B skos:exactMatch mesh C476490 azadirachtin B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:38478 acetamidine skos:exactMatch mesh C023731 acetamidine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:38486 aspidospermidine skos:exactMatch mesh C409672 aspidospermidine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:38491 formetanate skos:exactMatch mesh C100163 formetanate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:38495 aluminium phosphide skos:exactMatch mesh C001864 aluminum phosphide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:38510 azadirachtin H skos:exactMatch mesh C476491 azadirachtin H lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:38534 1-(methylsulfanyl)acetaldoxime skos:exactMatch mesh C029844 methomyl oxime lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:38539 oxamyl skos:exactMatch mesh C011960 oxamyl lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:38547 2-isopropoxyphenol skos:exactMatch mesh C022025 2-isopropoxyphenol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:38548 thiodicarb skos:exactMatch mesh C027971 thiodicarb lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:38549 thiofanox skos:exactMatch mesh C006256 thiofanox lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:3855 Confertifolin skos:exactMatch mesh C553567 confertifolin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:3856 confertin skos:exactMatch mesh C012259 confertin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:38569 trimethacarb skos:exactMatch mesh C001519 trimethacarb lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:38571 XMC skos:exactMatch mesh C010645 3,5-xylyl methylcarbamate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:38576 triazamate skos:exactMatch mesh C105743 triazamate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:38578 azamethiphos skos:exactMatch mesh C072763 azamethiphos lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:38587 azinphos-ethyl skos:exactMatch mesh C012762 azinphos ethyl lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:38588 cadusafos skos:exactMatch mesh C491566 cadusafos lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:38589 hexafluorobenzene skos:exactMatch mesh C003005 hexafluorobenzene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:38591 fluacrypyrim skos:exactMatch mesh C551593 fluacrypyrim lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:38592 acequinocyl skos:exactMatch mesh C493666 acequinocyl lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:38593 fenazaquin skos:exactMatch mesh C087876 fenazaquin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:3861 Conocurvone skos:exactMatch mesh C091977 conocurvone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:38614 flufenerim skos:exactMatch mesh C560327 flufenerim lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:38616 pyrimidin-4-amine skos:exactMatch mesh C034821 4-aminopyrimidine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:38618 pyrimidin-2-amine skos:exactMatch mesh C012180 2-aminopyrimidine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:38621 cyanophos skos:exactMatch mesh C011428 cyanophos lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:38624 demeton-S-methyl skos:exactMatch mesh C030064 demeton-S-methyl lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:38626 pyridaben skos:exactMatch mesh C428725 pyridaben lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:38628 tolfenpyrad skos:exactMatch mesh C556693 tolfenpyrad lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:38630 indoxacarb skos:exactMatch mesh C401104 indoxacarb lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:38639 spirodiclofen skos:exactMatch mesh C508135 spirodiclofen lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:3864 Convallamaroside skos:exactMatch mesh C499878 convallamaroside lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:38640 spiromesifen skos:exactMatch mesh C521569 spiromesifen lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:38658 dicrotophos skos:exactMatch mesh C000944 dicrotophos lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:38659 dimethylvinphos skos:exactMatch mesh C013506 dimethylvinphos lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:38660 bifenazate skos:exactMatch mesh C508134 bifenazate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:38663 ethion skos:exactMatch mesh C100038 ethion lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:38666 (R)-flurbiprofen skos:exactMatch mesh C505522 tarenflurbil lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:3867 Convicine skos:exactMatch mesh C007116 convicine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:38670 pyrrolopyrimidine skos:exactMatch mesh C527741 pyrrolopyrimidine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:38681 4-(methylsulfanyl)-m-cresol skos:exactMatch mesh C017525 methylthiomethylphenol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:38688 4-(methylsulfinyl)phenol skos:exactMatch mesh C044390 4-(methylsulfinyl)phenol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:38704 isocarbophos skos:exactMatch mesh C549713 isocarbophos lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:38718 mecarbam skos:exactMatch mesh C054137 mecarbam lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:38729 naled skos:exactMatch mesh D009267 Naled lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:38730 omethoate skos:exactMatch mesh C002302 dimethoxon lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:38732 1,3-benzodioxole skos:exactMatch mesh C040539 1,3-benzodioxole lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:38737 tribufos skos:exactMatch mesh C006863 butyl phosphorotrithioate lexical 0.9 https://github.com/indralab/panacea_indra/blob/master/panacea_indra/make_ctd_tests.py +chebi CHEBI:3875 coprine skos:exactMatch mesh C014423 coprine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:38754 benzene-1,3,5-triamine skos:exactMatch mesh C576902 1,3,5-benzenetriamine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:38760 mellein skos:exactMatch mesh C120538 ochracin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:38792 azocane skos:exactMatch mesh C007925 heptamethyleneimine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:38798 flubendiamide skos:exactMatch mesh C508762 flubendiamide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:38812 phoxim skos:exactMatch mesh C003135 phoxim lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:38813 benzoximate skos:exactMatch mesh C037524 benzomate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:38815 benzoic anhydride skos:exactMatch mesh C102988 benzoic anhydride lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:38817 phthalimide skos:exactMatch mesh C037431 phthalimide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:3882 Coriamyrtin skos:exactMatch mesh C000510 coriamyrtine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:38845 profenofos skos:exactMatch mesh C024273 profenofos lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:38848 perfluorodecalin skos:exactMatch mesh C008805 perfluorodecalin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:38852 4-bromo-2-chlorophenol skos:exactMatch mesh C075205 4-bromo-2-chlorophenol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:38854 perfluorotributylamine skos:exactMatch mesh C008807 perfluorotributylamine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:38855 3-chlorophenol skos:exactMatch mesh C030682 3-chlorophenol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:38862 4-(methylsulfanyl)phenol skos:exactMatch mesh C044702 4-(methylthio)phenol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:38864 propetamphos skos:exactMatch mesh C035967 propetamphos lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:3887 (-)-coronaridine skos:exactMatch mesh C011734 coronardine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:38876 pyraclofos skos:exactMatch mesh C069547 pyraclofos lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:3888 Coronopilin skos:exactMatch mesh C584613 coronopilin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:38884 diphenylmethane skos:exactMatch mesh C010129 diphenylmethane lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:38887 pyridalyl skos:exactMatch mesh C418569 S 1812 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:38890 quinoxalin-2-ol skos:exactMatch mesh C098565 2-hydroxyquinoxaline lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:38906 sodium cyanate skos:exactMatch mesh C009281 sodium cyanate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:38910 trilithium borate skos:exactMatch mesh C021051 lithium borate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:38912 Ro 31-8220 skos:exactMatch mesh C064758 Ro 31-8220 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:38913 trimethyl borate skos:exactMatch mesh C102081 trimethyl borate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:38927 pelitinib skos:exactMatch mesh C413879 EKB 569 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:38937 aminopurvalanol skos:exactMatch mesh C502582 aminopurvalanol A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:38946 amocarzine skos:exactMatch mesh C051744 amocarzine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:38947 dithiodiphosphoric acid skos:exactMatch mesh C046011 bis(thiopyrophosphoric acid) lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:38949 sulprofos skos:exactMatch mesh C011606 sulprofos lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:38951 tebupirimfos skos:exactMatch mesh C000597695 phostebupirim lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:38959 diphenyl sulfide skos:exactMatch mesh C444009 diphenyl sulfide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:38960 terbufos skos:exactMatch mesh C012568 terbufos lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:38963 triazophos skos:exactMatch mesh C012584 triazophos lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:38974 folicanthine skos:exactMatch mesh C521485 folicanthine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:3898 Cortol skos:exactMatch mesh C003544 cortol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:3899 Cortolone skos:exactMatch mesh C003545 cortolone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:38990 vamidothion skos:exactMatch mesh C005870 vamidothion lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:38994 1-anthroic acid skos:exactMatch mesh C107996 anthracene-1-carboxylic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:38997 prehnitene skos:exactMatch mesh C021246 prehnitene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:38998 pentamethylbenzene skos:exactMatch mesh C039063 pentamethylbenzene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:39002 perfluoroadamantane skos:exactMatch mesh C057578 perfluoroadamantane lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:39003 perfluoro-1-methyladamantane skos:exactMatch mesh C057525 perfluoromethyladamantane lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:39017 N-ethylpiperidine skos:exactMatch mesh C430119 1-ethylpiperidine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:39073 6-carboxyfluorescein skos:exactMatch mesh C024098 6-carboxyfluorescein lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:39095 delta-hexachlorocyclohexane skos:exactMatch mesh C086916 delta-hexachlorocyclohexane lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:39098 pyrethrins skos:exactMatch mesh D011723 Chrysanthemum cinerariifolium lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:39112 bosutinib skos:exactMatch mesh C439965 4-((2,4-dichloro-5-methoxyphenyl)amino)-6-methoxy-7-(3-(4-methyl-1-piperazinyl)propoxy)-3-quinolinecarbonitrile lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:3914 Crinamine skos:exactMatch mesh C411129 crinamine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:39143 Lewis acid skos:exactMatch mesh D058116 Lewis Acids lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:39144 Lewis base skos:exactMatch mesh D058115 Lewis Bases lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:39152 mercury difulminate skos:exactMatch mesh C070787 mercury fulminate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:39157 trichostatic acid skos:exactMatch mesh C066131 trichostatic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:39160 trichostatin D skos:exactMatch mesh C408429 trichostatin D lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:39162 (R)-nicotine skos:exactMatch mesh C014173 pseudonicotine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:39166 tetramine skos:exactMatch mesh C010349 tetramethylenedisulfotetramine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:3917 Cristacarpin skos:exactMatch mesh C085157 cristacarpin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:39170 (E)-nitenpyram skos:exactMatch mesh C464843 nitenpyram lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:39174 2-chloropyridine skos:exactMatch mesh C083126 2-chloropyridine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:39179 nitroguanidine skos:exactMatch mesh C056179 nitroguanidine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:3918 crocetin skos:exactMatch mesh C010561 transcrocetin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:391960 darifenacin skos:exactMatch mesh C101207 darifenacin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:39199 thiosultap skos:exactMatch mesh C049599 S,S'-(2-(dimethylamino)-1,3-propanediyl)thiosulfuric acid ester lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:3920 Croconazole skos:exactMatch mesh C038008 croconazole lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:39214 abamectin skos:exactMatch mesh C048324 abamectin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:39230 emamectin skos:exactMatch mesh C443359 emamectin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:39236 alpha-farnesene skos:exactMatch mesh C062672 alpha-farnesene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:39246 nonadecanoic acid skos:exactMatch mesh C517969 nonadecanoic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:39248 henicosanoic acid skos:exactMatch mesh C517970 heneicosanoic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:39251 12-methyltetradecanoic acid skos:exactMatch mesh C069642 aseanostatin P5 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:39260 pyriproxyfen skos:exactMatch mesh C055613 pyriproxyfen lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:39264 4-phenoxyphenol skos:exactMatch mesh C530483 4-phenoxyphenol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:3927 Crotonoside skos:exactMatch mesh C008184 isoguanosine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:39275 bromomethane skos:exactMatch mesh C005218 methyl bromide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:39280 bioresmethrin skos:exactMatch mesh C002842 bioresmethrin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:39283 cycloprothrin skos:exactMatch mesh C528277 cycloprothrin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:3930 cryptolepine skos:exactMatch mesh C024015 cryptolepine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:3932 cryptopleurine skos:exactMatch mesh C007160 cryptopleurine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:39320 1,2,4,5-tetrazine skos:exactMatch mesh C000709007 1,2,4,5-tetrazine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:39329 etoxazole skos:exactMatch mesh C508136 etoxazole lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:39354 2,3-dinitrophenol skos:exactMatch mesh C067109 2,3-dinitrophenol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:39355 2,2,3,3-tetramethylcyclopropanecarboxylic acid skos:exactMatch mesh C033650 2,2,3,3-tetramethylcyclopropanecarboxylic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:39357 2,6-dinitrophenol skos:exactMatch mesh C053026 2,6-dinitrophenol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:39361 flumethrin skos:exactMatch mesh C041392 flumethrin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:3937 Cucumopine skos:exactMatch mesh C082688 cucumopine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:393747 3,4-dichlorophenoxyacetic acid skos:exactMatch mesh C420703 3,4-dichlorophenoxyacetic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:39384 lufenuron skos:exactMatch mesh C070364 fluphenacur lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:39390 felinine skos:exactMatch mesh C098250 felinine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:39391 prallethrin skos:exactMatch mesh C055818 d,d-T80-prallethrin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:39392 kadethrin skos:exactMatch mesh C025638 kadethrin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:39393 silafluofen skos:exactMatch mesh C475883 silafluofen lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:39400 tralomethrin skos:exactMatch mesh C035705 tralomethrin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:3941 cucurbitacin B skos:exactMatch mesh C041246 cucurbitacin B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:39413 4,4'-dichlorobenzilic acid skos:exactMatch mesh C054042 4,4'-dichlorobenzilic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:39414 benzilic acid skos:exactMatch mesh C534570 2,2-diphenyl-2-hydroxyethanoic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:39421 perfluorooctane-1-sulfonic acid skos:exactMatch mesh C076994 perfluorooctane sulfonic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:39423 perfluorophenanthrene skos:exactMatch mesh C047722 perfluorophenanthrene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:39424 heptafluorobutyric anhydride skos:exactMatch mesh C007924 heptafluorobutyric anhydride lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:39425 pentafluorobenzoyl chloride skos:exactMatch mesh C014737 pentafluorobenzoyl chloride lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:39427 perfluorohexane skos:exactMatch mesh C078626 perflexane lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:39472 1,3,4-thiadiazole skos:exactMatch mesh C058949 1,3,4-thiadiazole lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:39475 pentamethyldiethylenetriamine skos:exactMatch mesh C554858 N,N,N',N'',N''-pentamethyldiethylenetriamine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:39476 3,2,3-tetramine skos:exactMatch mesh C000275 N,N'-bis(gamma-aminopropyl)diaminoethane lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:39535 13-DEOXYTEDANOLIDE skos:exactMatch mesh C409106 13-deoxytedanolide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:39540 N-hexadecanoylglycine skos:exactMatch mesh C095773 N-palmitoylglycine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:39567 12-hydroxylauric acid skos:exactMatch mesh C031263 12-hydroxydodecanoic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:39704 5-amino-1,3,4-thiadiazole-2-sulfonamide skos:exactMatch mesh C404727 5-amino-1,3,4-thiadiazole-2-sulfonamide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:39723 2'-deoxy-2-fluoroadenosine skos:exactMatch mesh C412233 2'-deoxy-2-fluoroadenosine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:39740 2-fluoroadenosine skos:exactMatch mesh C034064 2-fluoroadenosine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:39839 3,4-xylenol skos:exactMatch mesh C063628 3,4-dimethylphenol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:39857 2,4,6-triaminopyrimidine skos:exactMatch mesh C012070 2,4,6-triaminopyrimidine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:39873 imidodiphosphoric acid skos:exactMatch mesh C016514 imidodiphosphonic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:39901 3,4-dimethylaniline skos:exactMatch mesh C018691 3,4-xylidine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:39922 3-methylpyridine skos:exactMatch mesh C053603 3-methylpyridine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:39968 3-METHOXYBENZAMIDE skos:exactMatch mesh C025159 3-methoxybenzamide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:39992 3-methylcytosine skos:exactMatch mesh C036386 3-methylcytosine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:40096 adenosine 5'-(hexahydrogen pentaphosphate) skos:exactMatch mesh C048567 adenosine 5'-pentaphosphate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:40114 4-(2-thienyl)butyric acid skos:exactMatch mesh C097719 4-(2-thienyl)butyric acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:40117 1,4'-bipiperidine skos:exactMatch mesh C105149 4-(1-piperidino)piperidine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:40205 5-methyl-1H-benzimidazole skos:exactMatch mesh C551257 5-methylbenzimidazole lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:40235 9H-purine-2,6-diamine skos:exactMatch mesh C007300 2,6-diaminopurine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:4031 cyclosporin A skos:exactMatch mesh D003524 Cyclosporins lexical 0.9 https://github.com/indralab/panacea_indra/blob/master/panacea_indra/make_ctd_tests.py +chebi CHEBI:40410 N-acetylglycine skos:exactMatch mesh C006368 aceturic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:40448 9,10-anthraquinone skos:exactMatch mesh C042834 9,10-anthraquinone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:4045 cyprodinil skos:exactMatch mesh C108338 cyprodinil lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:40521 N(alpha)-acetyl-L-arginine skos:exactMatch mesh C000015 N-acetyl-L-arginine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:40526 9-methyladenine skos:exactMatch mesh C013115 9-methyladenine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:40678 anthracen-1-amine skos:exactMatch mesh C049062 1-aminoanthracene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:40710 ICI-164384 skos:exactMatch mesh C051781 ICI 164384 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:40730 adenosine 5'-methylenediphosphate skos:exactMatch mesh C523965 alpha,beta-methyleneadenosine 5'-diphosphate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:40750 4-trifluoromethylaniline skos:exactMatch mesh C487557 4-trifluoromethylaniline lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:40782 1,3-thiazol-2-amine skos:exactMatch mesh C004483 2-aminothiazole lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:40926 fosetyl skos:exactMatch mesh C545296 ethyl phosphonate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:40953 doramapimod skos:exactMatch mesh C452139 BIRB 796 lexical 0.9 https://github.com/indralab/panacea_indra/blob/master/panacea_indra/make_ctd_tests.py +chebi CHEBI:40957 N,N-bis(2-hydroxyethyl)glycine skos:exactMatch mesh C027494 N,N-bis(2-hydroxyethyl)glycine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:41001 ecgonine benzoate skos:exactMatch mesh C005618 benzoylecgonine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:41030 (3S)-3,7-diaminoheptanoic acid skos:exactMatch mesh C065591 beta-lysine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:41037 5-benzyl-1-(2-hydroxyethoxymethyl)uracil skos:exactMatch mesh C034753 5-benzylacyclouridine lexical 0.9 https://github.com/indralab/panacea_indra/blob/master/panacea_indra/make_ctd_tests.py +chebi CHEBI:41059 bisindolylmaleimide III skos:exactMatch mesh C531942 bisindolylmaleimide III lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:41071 2,5-bis(4-amidinophenyl)furan skos:exactMatch mesh C033286 furamidine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:41085 S-benzyl-L-cysteine skos:exactMatch mesh C002206 S-benzylcysteine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:41150 6-oxouridine 5'-phosphate skos:exactMatch mesh C028372 1-(5'-phospho-beta-D-ribofuranosyl)barbituric acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:4116 D-erythrulose 4-phosphate skos:exactMatch mesh C042347 erythrulose 4-phosphate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:41165 BENZHYDROXAMIC ACID skos:exactMatch mesh C006696 benzohydroxamic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:41200 bombykol skos:exactMatch mesh C006787 bombykol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:41213 bacteriopheophytin a skos:exactMatch mesh C006678 bacteriopheophytin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:41237 benzyl benzoate skos:exactMatch mesh C006723 benzyl benzoate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:41250 bis-tris skos:exactMatch mesh C026272 Bistris lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:41253 tetradecane skos:exactMatch mesh C024713 n-tetradecane lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:41285 [(R)-1-L-prolylpyrrolidin-2-yl]boronic acid skos:exactMatch mesh C083014 1-(2-pyrrolidinylcarbonyl)-2-pyrrolidinylboronic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:41321 cholesterol sulfate skos:exactMatch mesh C007045 cholesteryl sulfate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:41401 L-canaline skos:exactMatch mesh C001926 canaline lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:41421 9-beta-D-erythrofuranosyladenine skos:exactMatch mesh C508192 9-beta-D-erythrofuranosyladenine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:41470 chymostatin skos:exactMatch mesh C002101 chymostatin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:41473 cytidine 5'-phosphate 2',3'-cyclic phosphate skos:exactMatch mesh C007184 cyclo-CDP lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:41485 6-(1,3-dihydroxyisobutyl)thymine skos:exactMatch mesh C076856 5,5'-dihydroxy-4,4'-bitryptamine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:41500 4-phenylbutyric acid skos:exactMatch mesh C075773 4-phenylbutyric acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:41625 chromopyrrolic acid skos:exactMatch mesh C541708 chromopyrrolic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:41633 24(S),25-epoxycholesterol skos:exactMatch mesh C028358 24,25-epoxycholesterol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:41710 S-hydroxy-L-cysteine skos:exactMatch mesh C100870 cysteinesulfenic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:41761 1-(2-deoxy-beta-D-ribofuranosyl)-4-(3-benzamido)phenylimidazole skos:exactMatch mesh C073669 1-(2-deoxyribofuranosyl)-4-(3-benzamido)phenylimidazole lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:41778 CGP-3466 skos:exactMatch mesh C111178 dibenzo(b,f)oxepin-10-ylmethyl-methyl-prop-2-ynyl-amine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:41958 DISTAMYCIN A skos:exactMatch mesh C030000 stallimycin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:41967 diphenylacetic acid skos:exactMatch mesh C037760 diphenylacetic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:41988 3,4-dihydrozebularine skos:exactMatch mesh C436982 3,4-dihydrozebularine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:420128 5-chlorosalicylic acid skos:exactMatch mesh C015751 5-chlorosalicylic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:42025 12-aminododecanoic acid skos:exactMatch mesh C046049 12-aminododecanoic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:42027 1,2-di-[(9Z,12Z)-octadecadienoyl]-sn-glycero-3-phosphocholine skos:exactMatch mesh C002448 1,2-linoleoylphosphatidylcholine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:42033 2,5-dideoxy-2,5-imino-D-glucitol skos:exactMatch mesh C513881 2,5-dideoxy-2,5-imino-D-glucitol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:42040 naphthalene-1,6-diol skos:exactMatch mesh C523142 naphthalene-1,6-diol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:42082 (4R,5S,6S,7R)-4,7-dibenzyl-5,6-dihydroxy-1,3-bis[4-(hydroxymethyl)benzyl]-1,3-diazepan-2-one skos:exactMatch mesh C085816 DMP 323 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:42094 2,4-Dihydroxybenzoic acid skos:exactMatch mesh C017704 beta-resorcylic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:42142 Ac-(D)Phe-Pro-boroArg-OH skos:exactMatch mesh C066061 acetylphenylalanyl-prolyl-boroarginine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:4222 D-pantetheine 4'-phosphate skos:exactMatch mesh C003129 4'-phosphopantetheine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:42263 1,2-dimethoxyethane skos:exactMatch mesh C024683 1,2-dimethoxyethane lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:42273 5-deazafolic acid skos:exactMatch mesh C040505 5-deazafolic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:42320 beta-D-fructopyranose 1-phosphate skos:exactMatch mesh C032284 fructose-1-phosphate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:42452 formycin A skos:exactMatch mesh C034550 formycin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:42491 flavone skos:exactMatch mesh C525486 2-phenylchromone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:42506 formycin A 5'-monophosphate skos:exactMatch mesh C021683 formycin 5'-phosphate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:42549 3-(5-fluorouracil-1-yl)-L-alanine skos:exactMatch mesh C095178 5-fluorowillardiine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:42567 fisetin skos:exactMatch mesh C017875 fisetin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:42578 4-(trifluoromethyl)phenol skos:exactMatch mesh C109267 4-trifluoromethylphenol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:42654 formycin B skos:exactMatch mesh C407763 laurusin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:42682 3-aminobenzoic acid skos:exactMatch mesh C044855 3-aminobenzoic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:42699 fluoridophosphate skos:exactMatch mesh C012980 fluorophosphate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:42702 6-(3,5-dimethylbenzyl)-1-(ethoxymethyl)-5-isopropyluracil skos:exactMatch mesh C510377 6-(3,5-dimethylbenzyl)-1-(ethoxymethyl)-5-isopropyluracil lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:42768 geneticin skos:exactMatch mesh C010680 antibiotic G 418 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:42782 L-idopyranose 6-monomycolate skos:exactMatch mesh C048938 glucose mycolate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:42839 3'-amino-3'-deoxy-N(6),N(6)-dimethyladenosine skos:exactMatch mesh C513439 3'-amino-3'-deoxy-N(6),N(6)-dimethyladenosine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:42946 glycoluril skos:exactMatch mesh C092018 glycoluril lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:42955 methyl 4-aminobutanoate skos:exactMatch mesh C037739 4-aminobutyric acid methyl ester lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:42976 L-glycero-alpha-D-manno-heptopyranose skos:exactMatch mesh C062615 glycero-alpha-manno-heptopyranose lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:43005 HEDAMYCIN skos:exactMatch mesh C001328 hedamycin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:43043 hexadecane-1-sulfonic acid skos:exactMatch mesh C025737 cetylsulfonic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:43065 (S)-3-phenyllactic acid skos:exactMatch mesh C582734 alpha-hydroxy-beta-phenylpropionic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:43089 N-hydroxyguanidine skos:exactMatch mesh C029604 hydroxyguanidine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:4309 dalfopristin skos:exactMatch mesh C113826 dalfopristin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:43103 L-homophenylalanine skos:exactMatch mesh C014328 2-amino-4-phenylbutyric acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:4311 Damascenine skos:exactMatch mesh C018499 damascenine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:4312 Daminozide skos:exactMatch mesh C014499 daminozide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:43120 (6R)-L-erythro-6,7-dihydrobiopterin skos:exactMatch mesh C059780 4a-carbinolamine tetrahydrobiopterin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:43136 2,2'-dithiodiethanol skos:exactMatch mesh C031319 2-hydroxyethyl disulfide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:43275 hexadecane-1-sulfonyl fluoride skos:exactMatch mesh C069088 hexadecanesulfonyl fluoride lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:43295 indoline skos:exactMatch mesh C057812 indoline lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:43310 3-HYDROXYQUINALDIC ACID skos:exactMatch mesh C533875 3-hydroxyquinaldic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:43317 1,4-dideoxy-1,4-iminoribitol skos:exactMatch mesh C058137 1,4-dideoxy-1,4-iminoarabinitol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:4344 debromoaplysiatoxin skos:exactMatch mesh C017179 debromoaplysiatoxin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:43451 hydrogen iodide skos:exactMatch mesh C010466 hydroiodic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:43452 2-isopropyl-3-methoxypyrazine skos:exactMatch mesh C024267 2-isopropyl-3-methoxypyrazine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:43468 (2R,3S)-3-isopropylmalic acid skos:exactMatch mesh C025313 beta-isopropylmalate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:43515 dioxouranium(2+) skos:exactMatch mesh C510902 dioxouranium(VI) lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:43561 N-[2-(methylamino)ethyl]isoquinoline-5-sulfonamide skos:exactMatch mesh C053177 N-(2-(methylamino)ethyl)-5-isoquinolinesulfonamide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:43580 3-(1H-indol-3-yl)propanoic acid skos:exactMatch mesh C015292 indolepropionic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:43616 K-252a skos:exactMatch mesh C047321 SF 2370 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:43645 indirubin-3'-monoxime skos:exactMatch mesh C474021 indirubin-3'-monoxime lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:4367 Dehydromyodesmone skos:exactMatch mesh C017183 dehydromyodesmone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:43689 isopentylamine skos:exactMatch mesh C025371 isoamylamine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:4371 Dehydrotremetone skos:exactMatch mesh C000602910 dehydrotremetone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:43745 pyrimidine-2,4-diamine skos:exactMatch mesh C017205 2,4-diaminopyrimidine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:4385 Delsoline skos:exactMatch mesh C045308 delsoline lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:4387 deltaline skos:exactMatch mesh C119644 eldeline lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:4389 Deltonin skos:exactMatch mesh C016347 deltonin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:43927 5-O-[8-(cis-2,6-dimethylmorpholino)octylcarbamoyl]eseroline skos:exactMatch mesh C099419 MF 268 lexical 0.9 https://github.com/indralab/panacea_indra/blob/master/panacea_indra/make_ctd_tests.py +chebi CHEBI:43960 2,2'-[(2-amino-2-oxoethyl)imino]diacetic acid skos:exactMatch mesh C020184 N-(2-acetamido)iminodiacetic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:4397 Demethylisoalangiside skos:exactMatch mesh C450171 demethylisoalangiside lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:43978 trifluoro-L-methionine skos:exactMatch mesh C037646 trifluoromethionine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:43991 malonamic acid skos:exactMatch mesh C013098 malonamic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:43997 N(6),N(6)-dimethyl-L-lysine skos:exactMatch mesh C018926 epsilon N-dimethyllysine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:4400 Dendrobine skos:exactMatch mesh C002077 dendrobine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:4402 Denudatine skos:exactMatch mesh C034767 denudatine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:44074 molybdopterin skos:exactMatch mesh C014475 DTPP lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:44075 methyl L-leucinate skos:exactMatch mesh C030365 leucine methyl ester lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:44085 N-methylmesoporphyrin skos:exactMatch mesh C065420 N-methylmesoporphyrin IX lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:4409 Deoxyelephantopin skos:exactMatch mesh C528427 deoxyelephantopin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:44115 3-(N-morpholino)propanesulfonic acid skos:exactMatch mesh C008550 morpholinopropane sulfonic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:44137 tiamulin skos:exactMatch mesh C014224 tiamulin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:4414 Deoxylapachol skos:exactMatch mesh C044416 deoxylapachol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:44158 1-aminocyclopropylphosphonate(1-) skos:exactMatch mesh C053848 1-aminocyclopropanephosphonate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:44177 isocyanomethane skos:exactMatch mesh C008462 methylisonitrile lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:44194 butylbenzene skos:exactMatch mesh C053761 n-butylbenzene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:44237 N-butylbenzenesulfonamide skos:exactMatch mesh C065565 N-butylbenzenesulfonamide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:44247 (15Z)-tetracosenoic acid skos:exactMatch mesh C013147 nervonic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:44264 nicotinamide guanine dinucleotide skos:exactMatch mesh C102728 nicotinamide guanine dinucleotide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:4427 Deoxynupharidine skos:exactMatch mesh C010908 deoxynupharidine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:4435 Deoxyvasicinone skos:exactMatch mesh C025696 2,3-trimethylene-4-quinazolone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:443725 fosmidomycin skos:exactMatch mesh C024640 fosmidomycin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:44383 N-methyl urea skos:exactMatch mesh C002352 methylurea lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:4441 Desacetoxymatricarin skos:exactMatch mesh C476809 leucodin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:44419 2-nitrophenyl beta-D-fucoside skos:exactMatch mesh C047034 2-nitrophenyl-beta-fucoside lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:44445 nimesulide skos:exactMatch mesh C012655 nimesulide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:44493 2-(oxaloamino)benzoic acid skos:exactMatch mesh C405943 2-(oxalylamino)benzoic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:44504 nogalamycin skos:exactMatch mesh D009621 Nogalamycin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:44514 O-methyl-L-threonine skos:exactMatch mesh C002346 O-methyl threonine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:44520 methoxy group skos:exactMatch mesh D010034 Otitis Media with Effusion lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:44534 N-(3-oxododecanoyl)-L-homoserine lactone skos:exactMatch mesh C109860 N-(3-oxododecanoyl)homoserine lactone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:44549 4-amino-5-aminomethyl-2-methylpyrimidine skos:exactMatch mesh C013116 2-methyl-4-amino-5-aminomethylpyrimidine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:44560 N-TRIFLUORO-ACETYL-BETA-D-GLUCOPYRANOSYLAMINE skos:exactMatch mesh C509965 N-trifluoroacetyl-beta-D-glucopyranosylamine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:44588 1-naphthyloxyacetic acid skos:exactMatch mesh C018610 1-naphthoxyacetic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:4463 Dexamethasone acetate skos:exactMatch mesh C018038 dexamethasone acetate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:44661 olomoucine skos:exactMatch mesh C090046 olomoucine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:44692 phosphonoacetohydroxamic acid skos:exactMatch mesh C087412 phosphonoacetohydroxamate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:4472 Dexylosylbenanomicin A skos:exactMatch mesh C068082 dexylosylbenanomicin A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:44736 N-(2-aminoethyl)butane-1,4-diamine skos:exactMatch mesh C069659 N-(2-aminoethyl)-1,4-diaminobutane lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:44737 lutidinic acid skos:exactMatch mesh C055293 2,4-pyridinedicarboxylic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:44777 oregon green 488 skos:exactMatch mesh C436864 Oregon Green 488 carboxylic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:4478 Diacetoxyscirpenol skos:exactMatch mesh C001809 diacetoxyscirpenol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:44785 peroxide skos:exactMatch mesh D010545 Peroxides lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:4480 Diacetylmonoxime skos:exactMatch mesh C004717 diacetylmonoxime lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:44811 2-O-acetyl-1-O-hexadecyl-sn-glycero-3-phosphocholine skos:exactMatch mesh C037145 1-hexadecyl-2-acetyl-glycero-3-phosphocholine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:44814 4-phenylbutylamine skos:exactMatch mesh C121358 4-phenylbutylamine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:44828 4-hydroxy-1,2,5-oxadiazole-3-carboxylic acid skos:exactMatch mesh C504849 4-hydroxy-1,2,5-oxadiazole-3-carboxylic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:44841 2-amino-6-(hydroxymethyl)-7,8-dihydropteridin-4-one skos:exactMatch mesh C492818 6-hydroxymethyl-7,8-dihydropterin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:44864 propane-1,3-dithiol skos:exactMatch mesh C508630 1,3-propanedithiol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:44882 peridinin skos:exactMatch mesh C016040 peridinin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:44884 pentan-1-ol skos:exactMatch mesh C024999 n-pentanol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:4489 Diallyl sulfide skos:exactMatch mesh C038491 allyl sulfide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:44898 pheophytin a skos:exactMatch mesh C406457 phaeophytin a lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:44923 phenylboronic acid skos:exactMatch mesh C010686 benzeneboronic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:44975 1,10-phenanthroline skos:exactMatch mesh C025205 1,10-phenanthroline lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:44981 3-hydroxypropyl dihydrogen phosphate skos:exactMatch mesh C097930 3-hydroxypropane-1-phosphate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:4503 Dichloroacetylene skos:exactMatch mesh C002978 dichloroacetylene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:4506 Diclobutrazol skos:exactMatch mesh C061542 diclobutrazol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:45097 (4S,10Z,16R)-phycourobilin skos:exactMatch mesh C044986 phycourobilin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:45101 PHYCOVIOLOBILIN skos:exactMatch mesh C526232 phycoviolobilin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:45113 2-isobutyl-3-methoxypyrazine skos:exactMatch mesh C034376 2-isobutyl-3-methoxypyrazine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:4512 Dictamnine skos:exactMatch mesh C026398 dictamnine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:45127 phorbol 13-acetate skos:exactMatch mesh C050164 phorbol 13-monoacetate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:45129 methylphosphonic acid skos:exactMatch mesh C032627 methylphosphonic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:45133 pivalic acid skos:exactMatch mesh C005566 pivalic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:45141 pyroquilon skos:exactMatch mesh C436408 pyroquilon lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:45165 pyromellitic acid skos:exactMatch mesh C012018 pyromellitic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:4520 diethofencarb skos:exactMatch mesh C070961 diethofencarb lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:45245 quinoxaline-2-carboxylic acid skos:exactMatch mesh C042218 quinoxaline-2-carboxylic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:45296 hexadecane skos:exactMatch mesh C007932 n-hexadecane lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:45304 rifapentine skos:exactMatch mesh C018421 rifapentine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:4532 diethylstilbestrol diphosphate skos:exactMatch mesh C004955 fosfestrol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:4534 difenoxin skos:exactMatch mesh C100010 difenoxin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:45353 phosphoramidon skos:exactMatch mesh C008890 phosphoramidon lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:4537 difloxacin skos:exactMatch mesh C047225 difloxacin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:45441 N-acetyl-L-serine skos:exactMatch mesh C012162 N-acetylserine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:45490 ribavirin 5'-monophosphate skos:exactMatch mesh C009174 ribavirin-5'-phosphate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:45496 11alpha-hydroxyprogesterone hemisuccinate skos:exactMatch mesh C030250 progesterone 11-hemisuccinate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:4553 dihydroanhydropodorhizol skos:exactMatch mesh C452802 yatein lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:45560 sucrose octasulfate skos:exactMatch mesh C053081 sucrose octasulfate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:45564 5-hydroxypentanoic acid skos:exactMatch mesh C100417 5-hydroxyvaleric acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:4581 7,8-dihydropteroic acid skos:exactMatch mesh C000978 dihydropteroate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:45815 N-octanoylsphingosine skos:exactMatch mesh C066099 2,3-N-octanoylsphingosine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:45825 tetrabutylammonium skos:exactMatch mesh C009405 tetrabutylammonium lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:45869 estriol 3-O-(beta-D-glucuronide) skos:exactMatch mesh C022810 estriol 3-glucuronide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:45927 triethyl phosphate skos:exactMatch mesh C072829 tetraethylpyrazine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:46020 tetramethylammonium skos:exactMatch mesh C027917 tetramethylammonium lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:46053 2,4,6-trinitrotoluene skos:exactMatch mesh C046889 tritol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:4609 Dimethyl phthalate skos:exactMatch mesh C024629 dimethyl phthalate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:46116 thiolactomycin skos:exactMatch mesh C035068 thiolactomycin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:4614 Dimethyl trisulfide skos:exactMatch mesh C054170 dimethyl trisulfide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:46274 (Z)-octadec-11-enyl acetate skos:exactMatch mesh C518845 11-cis-vaccenyl acetate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:4633 Diospyrin skos:exactMatch mesh C043546 diospyrin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:4638 diphenidol skos:exactMatch mesh C004858 diphenidol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:4645 Diphyllin skos:exactMatch mesh C010130 diphyllin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:4646 dipivefrin skos:exactMatch mesh C015173 dipivefrin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:46477 methyl vanillate skos:exactMatch mesh C000618837 methyl vanillate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:4648 hop-22(29)-ene skos:exactMatch mesh C028765 diploptene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:46502 tungstate skos:exactMatch mesh C045951 tungstate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:46548 zardaverine skos:exactMatch mesh C066436 zardaverine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:46565 4-(2-AMINOETHYL)BENZENESULFONAMIDE skos:exactMatch mesh C097944 4-(2-aminoethyl)benzenesulfonamide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:46574 wybutosine skos:exactMatch mesh C467591 wybutosine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:46643 isobutyl nitrite skos:exactMatch mesh C018086 isobutyl nitrite lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:46645 isobutanol skos:exactMatch mesh C040507 isobutyl alcohol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:46660 hydroxypyruvaldehyde skos:exactMatch mesh C017417 hydroxypyruvaldehyde lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:46673 D-arabinosone skos:exactMatch mesh C000266 arabinosone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:46674 lizardite skos:exactMatch mesh C046240 lizardite lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:46676 tremolite asbestos skos:exactMatch mesh C005846 tremolite lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:46690 reserpic acid skos:exactMatch mesh C046455 reserpic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:46699 pyrazolopyridine skos:exactMatch mesh C118531 pyrazolopyridine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:46734 (1E,4S,5E,7R)-germacra-1(10),5-dien-11-ol skos:exactMatch mesh C515287 germacradienol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:4676 dodecanedioic acid skos:exactMatch mesh C036836 dodecanedioic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:46763 tat-BP skos:exactMatch mesh C059708 tracheal cytotoxin, Bordetella pertussis lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:46764 1beta-methylcarbapenem skos:exactMatch mesh C476323 1 beta-methylcarbapenem lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:46784 diglyme skos:exactMatch mesh C007391 diglyme lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:46788 2-ethoxyethanol skos:exactMatch mesh C021296 2-ethoxyethanol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:46790 2-methoxyethanol skos:exactMatch mesh C005219 methyl cellosolve lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:46796 pentafluorobenzoic acid skos:exactMatch mesh C090819 pentafluorobenzoic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:46810 1,3,4-oxadiazoles skos:exactMatch mesh C583463 1,3,4-oxadiazole lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:46860 cinchomeronic acid skos:exactMatch mesh C000598663 3,4-pyridinedicarboxylic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:46875 dinicotinic acid skos:exactMatch mesh C546051 3,5-pyridinedicarboxylic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:46888 silanediol skos:exactMatch mesh C475536 silanediol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:46908 imidazopyridine skos:exactMatch mesh C000619660 imidazopyridine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:46916 vinyl acetate skos:exactMatch mesh C011566 vinyl acetate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:46932 dihydrocapsaicin skos:exactMatch mesh C012906 dihydrocapsaicin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:46937 QX-314 skos:exactMatch mesh C012647 QX-314 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:46938 zebularine skos:exactMatch mesh C009131 pyrimidin-2-one beta-ribofuranoside lexical 0.9 https://github.com/indralab/panacea_indra/blob/master/panacea_indra/make_ctd_tests.py +chebi CHEBI:46944 cyclobutenone skos:exactMatch mesh C553737 cyclobutenone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:46961 phytosphingosine skos:exactMatch mesh C012491 phytosphingosine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:47017 tetrahydrofuranol skos:exactMatch mesh C000617287 tetrahydrofuranol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:47034 [8]annulene skos:exactMatch mesh C534209 1,3,5,7-cyclooctatetraene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:4704 Dothistromin skos:exactMatch mesh C042735 dothistromin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:47083 2-chlorophenol skos:exactMatch mesh C030683 2-chlorophenol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:47105 1-bromopropane skos:exactMatch mesh C118559 1-bromopropane lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:47106 (3-chloro-4-hydroxyphenyl)acetic acid skos:exactMatch mesh C029718 3-chloro-4-hydroxyphenylacetic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:47112 GW 2433 skos:exactMatch mesh C110636 GW 2433 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:47136 pentachlorobenzene skos:exactMatch mesh C003060 pentachlorobenzene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:4720 DuP 697 skos:exactMatch mesh C064874 DuP 697 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:47217 arsane skos:exactMatch mesh C006633 arsine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:4723 Dunnione skos:exactMatch mesh C474009 dunnione lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:47232 bromoethane skos:exactMatch mesh C037311 bromoethane lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:4724 dyclonine skos:exactMatch mesh C100063 dyclonine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:47250 BALHIMYCIN skos:exactMatch mesh C087127 balhimycin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:4726 Dynemicin A skos:exactMatch mesh C061229 dynemicin A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:47302 clorobiocin skos:exactMatch mesh C006260 clorobiocin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:47309 2-chloro-2',3'-dideoxyadenosine skos:exactMatch mesh C055504 2-chloro-2',3'-dideoxyadenosine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:47322 N-(2-aminoethyl)-5-chloroisoquinoline-8-sulfonamide skos:exactMatch mesh C058815 N-(2-aminoethyl)-5-chloroisoquinoline-8-sulfonamide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:4737 N-ethylphenylacetamide skos:exactMatch mesh C489414 N-ethylphenylacetamide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:4740 Eburnamonine skos:exactMatch mesh C016422 eburnamonine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:47426 furosemide skos:exactMatch mesh C051603 4-chloro-N-(2-furylmethyl)-5-sulfamoylanthranilic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:4744 Echimidine skos:exactMatch mesh C000615871 echimidine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:47458 saracatinib skos:exactMatch mesh C515233 saracatinib lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:4746 echinenone skos:exactMatch mesh C000614164 aphanin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:4747 Echinocystic acid skos:exactMatch mesh C022999 echinocystic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:4749 Echinopsine skos:exactMatch mesh C007574 echinopsine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:4751 Echitamine skos:exactMatch mesh C001133 echitamine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:47617 4,5,6,7-tetrachloro-2-benzofuran-1(3H)-one skos:exactMatch mesh C531056 4,5,6,7-tetrachlorophthalide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:47696 2,4,6-tribromophenol skos:exactMatch mesh C004554 2,4,6-tribromophenol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:47697 4,5,6,7-TETRABROMOBENZOTRIAZOLE skos:exactMatch mesh C405354 4,5,6,7-tetrabromobenzotriazole lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:4771 Elemicin skos:exactMatch mesh C002135 elemicin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:47724 vancomycin aglycone skos:exactMatch mesh C446043 aglucovancomycin B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:47727 5-\{5-[2-chloro-4-(4,5-dihydro-1,3-oxazol-2-yl)phenoxy]pentyl\}-3-methylisoxazole skos:exactMatch mesh C074996 WIN 53338 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:4773 Elephantopin skos:exactMatch mesh C045728 elephantopin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:4774 Eleutherin skos:exactMatch mesh C415044 eleutherin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:4776 ellipticine skos:exactMatch mesh C034192 ellipticine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:4777 Elymoclavine skos:exactMatch mesh C007586 elymoclavine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:47770 phytantriol skos:exactMatch mesh C508873 3,7,11,15-tetramethyl-1,2,3-hexadecanetriol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:4778 embelin skos:exactMatch mesh C010945 embelin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:47802 5H-dibenzo[b,f]azepine skos:exactMatch mesh C527817 dibenzazepine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:47807 sulforaphane skos:exactMatch mesh C016766 sulforafan lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:47817 N(delta)-hydroxy-L-arginine skos:exactMatch mesh C007985 N(5)-hydroxy-L-arginine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:47828 calcitroic acid skos:exactMatch mesh C021640 calcitroic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:47829 gamma-hydroxyarginine skos:exactMatch mesh C012356 gamma-hydroxyarginine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:47841 acetonitrile oxide skos:exactMatch mesh C544154 acetonitrile oxide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:47843 dithiane skos:exactMatch mesh C438055 dithiane lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:47845 1,3-dithiane skos:exactMatch mesh C012947 1,3-dithiane lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:47855 difluoromethane skos:exactMatch mesh C102075 difluoromethane lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:47856 citronellal skos:exactMatch mesh C108217 citronellal lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:4787 Enalkiren skos:exactMatch mesh C056622 enalkiren lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:47870 (methylthio)acetic acid skos:exactMatch mesh C118653 (methylthio)acetic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:47876 5-methyl-2'-deoxycytidine skos:exactMatch mesh C016569 5-methyldeoxycytidine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:4790 Encelin skos:exactMatch mesh C093533 encelin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:47939 beta-D-glucosyl-(1->4)-aldehydo-D-mannose skos:exactMatch mesh C095558 4-glucopyranosylmannose lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:47956 thiocarboxamide skos:exactMatch mesh D013854 Thioamides lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:47958 nicotinic acetylcholine receptor agonist skos:exactMatch mesh D018722 Nicotinic Agonists lexical 0.9 https://github.com/indralab/panacea_indra/blob/master/panacea_indra/make_ctd_tests.py +chebi CHEBI:47964 aurone skos:exactMatch mesh C486837 aurone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:47965 N-acetylmuramic acid skos:exactMatch mesh C031651 N-acetylmuramic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:48004 ketenimine skos:exactMatch mesh C000591102 ketenimine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:48010 locked nucleic acid skos:exactMatch mesh C477371 locked nucleic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:4803 epibatidine skos:exactMatch mesh C082748 epibatidine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:4804 Epicainide skos:exactMatch mesh C060578 epicainide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:48041 microcystin skos:exactMatch mesh C078588 microcystin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:48047 salinosporamide B skos:exactMatch mesh C504698 salinosporamide B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:48048 salinosporamide C skos:exactMatch mesh C504699 salinosporamide C lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:48079 cyclohepta-2,4,6-trienylium skos:exactMatch mesh C430852 tropylium lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:4811 epoxiconazole skos:exactMatch mesh C109476 epoxiconazole lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:48115 1,2,4-trinitrobenzene skos:exactMatch mesh C043308 1,2,4-trinitrobenzene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:48120 anthracycline skos:exactMatch mesh D018943 Anthracyclines lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:48131 nonanedioic acid skos:exactMatch mesh C010038 azelaic acid lexical 0.9 https://github.com/indralab/panacea_indra/blob/master/panacea_indra/make_ctd_tests.py +chebi CHEBI:4815 Eremanthin skos:exactMatch mesh C002601 eremanthin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:4816 Eremantholide A skos:exactMatch mesh C519468 eremantholide A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:4818 Eremophilenolide skos:exactMatch mesh C492472 eremophilenolide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:4819 lysergamide skos:exactMatch mesh C016543 lysergamide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:48201 frenolicin B skos:exactMatch mesh C018066 frenolicin B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:48202 nanaomycin A skos:exactMatch mesh C008638 nanaomycin A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:48211 kinamycin C skos:exactMatch mesh C515381 kinamycin C lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:48212 kinamycin A skos:exactMatch mesh C001507 kinamycin A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:48215 kinamycin F skos:exactMatch mesh C059021 kinamycin F lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:48216 kinamycin E skos:exactMatch mesh C059020 kinamycin E lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:48233 calcium peroxide skos:exactMatch mesh C403632 calcium peroxide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:48273 rizatriptan skos:exactMatch mesh C093622 rizatriptan lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:48282 5-methoxy-N,N-diisopropyltryptamine skos:exactMatch mesh C033696 5-methoxy-N,N-diisopropyltryptamine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:48286 N,N-diisopropyltryptamine skos:exactMatch mesh C033695 N,N-diisopropyltryptamine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:48293 epolamine skos:exactMatch mesh C104862 epolamine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:4833 Erioflorin acetate skos:exactMatch mesh C063272 erioflorin acetate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:4834 Erioflorin methacrylate skos:exactMatch mesh C063271 erioflorin methacrylate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:48343 disulfide skos:exactMatch mesh D004220 Disulfides lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:4835 Eriolangin skos:exactMatch mesh C504937 eriolangin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:48361 butene skos:exactMatch mesh C558934 butylene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:48363 but-2-ene skos:exactMatch mesh C021639 2-butene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:48397 methanediol skos:exactMatch mesh C000590223 methylene glycol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:48408 ethyl vanillin skos:exactMatch mesh C045941 ethyl vanillin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:48455 2-demethylmenaquinone-8 skos:exactMatch mesh C013917 demethylmenaquinone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:48501 dicarbonic acid skos:exactMatch mesh C079227 pyrocarbonic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:48502 tert-butoxycarbonyl group skos:exactMatch mesh C000345 t-butyloxycarbonyl group lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:48509 triflic anhydride skos:exactMatch mesh C474725 triflic anhydride lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:48511 triflic acid skos:exactMatch mesh C012077 trifluoromethanesulfonic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:48520 xaliproden skos:exactMatch mesh C462299 xaliproden lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:48521 ximoprofen skos:exactMatch mesh C061944 ximoprofen lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:48530 fumagalone skos:exactMatch mesh C476592 fumagalone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:48581 idramantone skos:exactMatch mesh C068220 kemantane lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:48582 ADP-D-ribose 1'',2''-cyclic phosphate skos:exactMatch mesh C401161 adenosine diphosphate-ribose 1''-2''cyclic phosphate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:48584 ADP-D-ribose 1''-phosphate skos:exactMatch mesh C496852 ADP-ribose 1''-phosphate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:48593 benzocycloheptapyridine skos:exactMatch mesh C409082 benzocycloheptapyridine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:48609 1,4-dimethylnaphthalene skos:exactMatch mesh C031969 1,4-dimethylnaphthalene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:4867 Estragole skos:exactMatch mesh C007633 estragole lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:48703 tashiromine skos:exactMatch mesh C512155 tashiromine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:48720 argatroban skos:exactMatch mesh C031942 argatroban lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:4873 estropipate skos:exactMatch mesh C009927 estropipate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:48733 feldspar skos:exactMatch mesh C016447 feldspar lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:48742 3alpha,7alpha,12alpha,24-tetrahydroxy-5beta-cholestan-26-oic acid skos:exactMatch mesh C024759 3,7,12,24-tetrahydroxycholestanoic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:48814 trichloroacetaldehyde skos:exactMatch mesh C021100 trichloroacetaldehyde lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:48834 7alpha,12alpha,26-trihydroxy-5beta-cholestan-3-one skos:exactMatch mesh C029098 7 alpha,12 alpha,26-trihydroxy-5 beta-cholestan-3-one lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:48845 eseroline skos:exactMatch mesh C022594 eseroline lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:48848 erythronolide A skos:exactMatch mesh C038316 erythronolide A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:48858 dimethyl sulfite skos:exactMatch mesh C097173 dimethyl sulfite lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:48861 2-trans,6-trans,10-trans-geranylgeranyl diphosphate skos:exactMatch mesh C002963 geranylgeranyl pyrophosphate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:48863 phycocyanobilin skos:exactMatch mesh C011069 phycocyanobilin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:48864 benzothiadiazole skos:exactMatch mesh C015700 benzo-1,2,3-thiadiazole lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:48905 (9Z,11E,13S,15Z)-13-hydroperoxyoctadeca-9,11,15-trienoic acid skos:exactMatch mesh C057375 13-hydroperoxy-9,11,15-octadecatrienoic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:48913 erythromycin A 2'-propanoate skos:exactMatch mesh C011807 erythromycin propionate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:48933 piperitone skos:exactMatch mesh C496656 piperitone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:48937 phytane skos:exactMatch mesh C008906 phytane lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:48945 2-methylbutan-1-ol skos:exactMatch mesh C553994 2-methylbutanol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:4895 Ethyl cinnamate skos:exactMatch mesh C451418 ethyl cinnamate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:48973 4-methoxy-2-nitroaniline skos:exactMatch mesh C000609082 4-methoxy-2-nitroaniline lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:48980 quinolin-7-ol skos:exactMatch mesh C547246 7-hydroxyquinoline lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:48983 4-methylquinoline skos:exactMatch mesh C057608 4-methylquinoline lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:48984 8-methylquinoline skos:exactMatch mesh C057609 8-methylquinoline lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:48985 8-chloroquinoline skos:exactMatch mesh C000607208 8-chloroquinoline lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:48991 7-methylxanthine skos:exactMatch mesh C064273 7-methylxanthine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:49 (+)-Tetrandrine skos:exactMatch mesh C009438 tetrandrine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:49003 4-phospho-D-erythronic acid skos:exactMatch mesh C020462 4-phosphoerythronate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:490095 esculetin skos:exactMatch mesh C007628 esculetin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:49045 germacrene D skos:exactMatch mesh C027259 germacrene D lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:49094 tagatose 6-phosphate skos:exactMatch mesh C026634 tagatose 6-phosphate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:49108 dopachrome skos:exactMatch mesh C001123 dopachrome lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:49120 formate dehydrogenase skos:exactMatch mesh D005560 Formate Dehydrogenases lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:49123 dimethyl sulfoxide reductase skos:exactMatch mesh C045664 dimethyl sulfoxide reductase lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:4916 eugeniin skos:exactMatch mesh C473299 tellimagrandin II lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:49164 (6S,9R)-vomifoliol skos:exactMatch mesh C000589723 blumenol A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:49182 1,5-anhydro-D-mannitol skos:exactMatch mesh C042618 1,5-anhydro-mannitol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:49189 pristanal skos:exactMatch mesh C107623 pristanal lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:49191 momilactone A skos:exactMatch mesh C116023 momilactone A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:49203 torcetrapib skos:exactMatch mesh C483909 torcetrapib lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:49209 himachalene skos:exactMatch mesh C412292 himachalene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:4923 Eupacunin skos:exactMatch mesh C001199 eupacunin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:49236 glucosaminoglycan skos:exactMatch mesh C020341 glucosaminoglycans lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:49237 gamma-bisabolene skos:exactMatch mesh C511058 gamma-bisabolene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:49267 bisanthene skos:exactMatch mesh C570978 bisanthene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:4927 Eupaformosanin skos:exactMatch mesh C025216 eupaformosanin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:49272 selinene skos:exactMatch mesh C539285 selinene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:4928 Eupahyssopin skos:exactMatch mesh C017306 eupahyssopin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:49301 hydrindane skos:exactMatch mesh C531997 hydrindane lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:49305 5,6alpha-epoxy-5alpha-cholestan-3beta-ol skos:exactMatch mesh C002415 cholesterol alpha-oxide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:4931 Eupaserrin skos:exactMatch mesh C002811 eupaserrin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:4932 eupatilin skos:exactMatch mesh C045325 eupatilin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:4935 eupatolide skos:exactMatch mesh C001200 eupatolide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:4937 Eupatoriopicrin skos:exactMatch mesh C032660 eupatoriopicrine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:49388 bacterioruberin skos:exactMatch mesh C002951 bacterioruberin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:4940 Euphol skos:exactMatch mesh C062557 euphol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:49401 3,4-dichlorobenzoic acid skos:exactMatch mesh C068797 3,4-dichlorobenzoic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:49402 2-methyl-1H-indole skos:exactMatch mesh C022958 2-methylindole lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:4946 euxanthone skos:exactMatch mesh C404221 euxanthone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:49490 AZD7545 skos:exactMatch mesh C523124 AZD 7545 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:49499 beryllium difluoride skos:exactMatch mesh C035982 beryllium fluoride lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:4953 exemestane skos:exactMatch mesh C056516 exemestane lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:49533 beta-D-cellohexaose skos:exactMatch mesh C099423 cellohexaose lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:4954 Exserohilone skos:exactMatch mesh C578436 exserohilone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:49549 4-chloro-L-threonine skos:exactMatch mesh C090484 4-chlorothreonine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:49552 copper(1+) skos:exactMatch mesh C042514 cuprous ion lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:49553 copper(II) chloride skos:exactMatch mesh C029892 cupric chloride lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:49584 4-ethylphenol skos:exactMatch mesh C042291 4-ethylphenol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:4966 Fagaramide skos:exactMatch mesh C033747 fagaramide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:4967 Fagaridine skos:exactMatch mesh C518455 fagaridine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:4969 Fagomine skos:exactMatch mesh C105643 fagomine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:49703 latrunculin B skos:exactMatch mesh C037068 latrunculin B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:4976 Fargesone A skos:exactMatch mesh C451581 fargesone A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:49770 methyl red skos:exactMatch mesh C008492 methyl red lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:49805 [5,10,15,20-tetrakis(1-methylpyridinium-4-yl)porphyrinato]copper(II) skos:exactMatch mesh C076825 copper(II)-meso-(4-N-tetramethylpyridyl)porphyrin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:49809 2,2',5,5'-tetrachloro-4,4'-bis(methylsulfonyl)biphenyl skos:exactMatch mesh C044524 4,4'-bis(methylsulfonyl)-2,2',5,5'-tetrachlorobiphenyl lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:49837 1-(4-methoxyphenyl)methanamine skos:exactMatch mesh C091000 4-methoxybenzylamine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:49840 purvalanol B skos:exactMatch mesh C113584 purvalanol B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:4989 Fawcettimine skos:exactMatch mesh C524731 fawcettimine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:49900 arsenous acid skos:exactMatch mesh C032793 arsenous acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:49928 tetracyanonickelate(2-) skos:exactMatch mesh C047503 tetracyanonickelate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:4994 Febrifugine skos:exactMatch mesh C001207 febrifugine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:49960 vandetanib skos:exactMatch mesh C452423 N-(4-bromo-2-fluorophenyl)-6-methoxy-7-((1-methylpiperidin-4-yl)methoxy)quinazolin-4-amine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:49976 zinc dichloride skos:exactMatch mesh C016837 zinc chloride lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:4999 fenchone skos:exactMatch mesh C027327 fenchone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:50006 stilbene oxide skos:exactMatch mesh C025906 stilbene oxide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:50011 Calcofluor White skos:exactMatch mesh C048787 cellufluor lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:50013 hydrobenzoin skos:exactMatch mesh C540375 hydrobenzoin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:50016 S-\{2-[4-(dihydroxyarsino)phenylamino]-2-oxoethyl\}-glutathione skos:exactMatch mesh C426645 4-(N-(S-glutathionylacetyl)amino)phenylarsenoxide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:50027 sabinene skos:exactMatch mesh C035127 sabinene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:50031 alpha-thujene skos:exactMatch mesh C000590711 alpha-thujene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:50061 ent-sandaracopimara-8(14),15-diene skos:exactMatch mesh C526354 ent-sandaracopimaradiene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:50067 9beta-pimara-7,15-diene skos:exactMatch mesh C099622 pimara-7,15-diene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:50069 stemar-13-ene skos:exactMatch mesh C099623 stemar-13-ene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:50071 ascopyrone P skos:exactMatch mesh C507379 ascopyrone P lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:50074 terrylene skos:exactMatch mesh C528989 terrylene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:50075 dihydropyridine skos:exactMatch mesh C038806 1,4-dihydropyridine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:50076 chromium-51 skos:exactMatch mesh C000615375 Chromium-51 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:5008 Fenoxaprop ethyl skos:exactMatch mesh C416661 fenoxaprop ethyl lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:50104 TNP-ATP skos:exactMatch mesh C009587 2',3'-O-(2,4,6-trinitrophenyl)adenosine 5'-triphosphate lexical 0.9 https://github.com/indralab/panacea_indra/blob/master/panacea_indra/make_ctd_tests.py +chebi CHEBI:50106 5beta-scymnol skos:exactMatch mesh C074469 scymnol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:50129 2-hydroxyisobutyric acid skos:exactMatch mesh C008039 2-hydroxyisobutyric acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:50130 monacolin L skos:exactMatch mesh C045375 monacolin L lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:50134 inositol nicotinate skos:exactMatch mesh C005193 Inositol Niacinate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:50145 fenpropimorph skos:exactMatch mesh C050435 fenpropimorph lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:50181 texaphyrin skos:exactMatch mesh C442892 texaphyrin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:50182 3,3'-diindolylmethane skos:exactMatch mesh C016392 3,3'-diindolylmethane lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:50183 P450 inhibitor skos:exactMatch mesh D065690 Cytochrome P-450 CYP2D6 Inhibitors lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:50207 sophoraflavanone B skos:exactMatch mesh C119737 8-prenylnaringenin lexical 0.9 https://github.com/indralab/panacea_indra/blob/master/panacea_indra/make_ctd_tests.py +chebi CHEBI:50208 leachianone G skos:exactMatch mesh C474046 leachianone G lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:50228 azomethine skos:exactMatch mesh C512188 azomethine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:50271 (1R,2S,5S,6S)-2-(3-carboxypropanoyl)-5-[(1-carboxyvinyl)oxy]-6-hydroxycyclohex-3-ene-1-carboxylic acid skos:exactMatch mesh C524466 2-succinyl-5-enolpyruvyl-6-hydroxy-3-cyclohexene-1-carboxylic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:50279 (1S,2S,3S)-prephytoene diphosphate skos:exactMatch mesh C002964 prelycopersene pyrophosphate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:50281 lavandulol skos:exactMatch mesh C492921 lavandulol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:50292 cadmium sulfate skos:exactMatch mesh C037123 cadmium sulfate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:50295 1,9-dideoxyforskolin skos:exactMatch mesh C047983 1,9-dideoxyforskolin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:50301 terpentecin skos:exactMatch mesh C047785 terpentecin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:50302 terpentetriene skos:exactMatch mesh C436972 terpentetriene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:50310 1,3-oxazolidine skos:exactMatch mesh C064210 oxazolidine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:50344 avermectin skos:exactMatch mesh C019264 avermectin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:50369 tris(picolinato)chromium skos:exactMatch mesh C079689 chromium tripicolinate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:50373 homatropine methylbromide skos:exactMatch mesh C056244 homatropine methylbromide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:50387 tuberculosinol skos:exactMatch mesh C551415 tuberculosinol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:50399 3',4',7-trihydroxyisoflavone skos:exactMatch mesh C538958 3'-hydroxydaidzein lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:50404 lipoprotein cholesterol skos:exactMatch mesh C030104 lipoprotein cholesterol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:50415 2-methylpyridine skos:exactMatch mesh C530793 2-picoline lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:50430 N-(3-carboxypropanoyl)-N-hydroxyputrescine skos:exactMatch mesh C531913 N-hydroxy-N-succinylputrescine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:50432 putrebactin skos:exactMatch mesh C531912 putrebactin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:50434 alcaligin skos:exactMatch mesh C092056 alcaligin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:50443 N-(3-carboxypropanoyl)-N-hydroxycadaverine skos:exactMatch mesh C533828 N-hydroxy-N-succinylcadaverine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:50459 2,5-diphenylfuran skos:exactMatch mesh C014512 2,5-diphenylfuran lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:50462 citronellol skos:exactMatch mesh C007078 citronellol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:50464 cis-vaccenic acid skos:exactMatch mesh C065593 cis-vaccenic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:50465 2-decenoic acid skos:exactMatch mesh C052476 2-decenoic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:50469 EC 3.1.1.4 (phospholipase A2) inhibitor skos:exactMatch mesh C400481 PLIalpha lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:50504 osmotic diuretic skos:exactMatch mesh D004234 Diuretics, Osmotic lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:50507 appetite depressant skos:exactMatch mesh D001067 Appetite Depressants lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:50509 potassium channel blocker skos:exactMatch mesh D026902 Potassium Channel Blockers lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:50534 butyl isothiocyanate skos:exactMatch mesh C039156 butyl isothiocyanate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:50580 arbutamine skos:exactMatch mesh C076559 arbutamine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:50587 silole skos:exactMatch mesh C540376 silole lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:50604 5-(methylsulfanyl)-2,3-dioxopentyl phosphate skos:exactMatch mesh C056456 1-phospho-2,3-diketo-5-S-methylthiopentane lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:50611 N,N'-diformyldityrosine skos:exactMatch mesh C100749 N,N'-bisformyldityrosine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:50637 2-nitronaphthalene skos:exactMatch mesh C048317 2-nitronaphthalene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:50638 1,3-dinitronaphthalene skos:exactMatch mesh C073242 1,3-dinitronaphthalene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:50640 1,5-dinitronaphthalene skos:exactMatch mesh C429684 1,5-dinitronaphthalene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:50642 1,8-dinitronaphthalene skos:exactMatch mesh C541501 1,8-dinitronaphthalene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:50655 exiguamine A skos:exactMatch mesh C516830 exiguamine A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:50657 exiguamine B skos:exactMatch mesh C531460 exiguamine B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:50662 marimastat skos:exactMatch mesh C100342 marimastat lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:50664 matrix metalloproteinase inhibitor skos:exactMatch mesh D008950 MMPI lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:5070 flavanone skos:exactMatch mesh C000709829 2-phenylchroman-4-one lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:5072 Flavidin skos:exactMatch mesh C499398 flavidin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:50720 2-methylnaphthalene skos:exactMatch mesh C027384 2-methylnaphthalene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:50724 butanamide skos:exactMatch mesh C006866 butyramide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:50733 nutraceutical skos:exactMatch mesh D019587 Dietary Supplements lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:50749 calcipotriol skos:exactMatch mesh C055085 calcipotriene lexical 0.9 https://github.com/indralab/panacea_indra/blob/master/panacea_indra/make_ctd_tests.py +chebi CHEBI:507499 tricetin skos:exactMatch mesh C469689 tricetin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:50756 acridone skos:exactMatch mesh C041300 acridone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:50795 nanostructure skos:exactMatch mesh D049329 Nanostructures lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:50796 nanotube skos:exactMatch mesh D043942 Nanotubes lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:50804 nanoshell skos:exactMatch mesh D057145 Nanoshells lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:50815 norgestimate skos:exactMatch mesh C017576 norgestimate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:50819 ferric oxide skos:exactMatch mesh C000499 ferric oxide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:50820 ferrous oxide skos:exactMatch mesh C034236 ferrous oxide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:50833 cadmium sulfide skos:exactMatch mesh C034939 cadmium sulfide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:50834 cadmium selenide skos:exactMatch mesh C058667 cadmium selenide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:50838 drospirenone skos:exactMatch mesh C035144 drospirenone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:50842 norflurazon skos:exactMatch mesh C008677 norflurazone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:50846 immunomodulator skos:exactMatch mesh D007155 Immunologic Factors lexical 0.9 https://github.com/indralab/panacea_indra/blob/master/panacea_indra/make_ctd_tests.py +chebi CHEBI:50853 quantum dot skos:exactMatch mesh D045663 Quantum Dots lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:50865 cortisol 17-valerate skos:exactMatch mesh C038363 hydrocortisone valerate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:50867 ciprofibrate skos:exactMatch mesh C019304 ciprofibrate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:50884 aluminium nitride skos:exactMatch mesh C052045 aluminum nitride lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:50905 teratogenic agent skos:exactMatch mesh D013723 Teratogens lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:50906 role skos:exactMatch mesh D012380 Role lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:50912 cardiotoxic agent skos:exactMatch mesh D054715 Cardiotoxins lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:50913 fixative skos:exactMatch mesh D005404 Fixatives lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:50918 pyrroloquinoline skos:exactMatch mesh C410406 pyrroloquinoline lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:5092 2-(2-phenylethyl)chromone skos:exactMatch mesh C062550 2-(2-phenylethyl)chromone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:5093 Flindersiamine skos:exactMatch mesh C012321 flindersiamine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:5094 Flindersine skos:exactMatch mesh C539535 flindersine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:50941 azaphilone skos:exactMatch mesh C494154 azaphilone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:50943 mitorubrin skos:exactMatch mesh C521221 mitorubrin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:50950 titanocene skos:exactMatch mesh C406884 titanocene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:50960 catenane skos:exactMatch mesh C467767 catenane lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:5097 fluazifop-butyl skos:exactMatch mesh C050585 fluazifop-butyl lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:50992 1,3-thiazolidine-2,4-dione skos:exactMatch mesh C089946 2,4-thiazolidinedione lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:51024 metixene skos:exactMatch mesh C005111 methixene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:51027 cavitand skos:exactMatch mesh C442939 cavitand lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:51032 epinastine skos:exactMatch mesh C053090 epinastine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:51033 myxopyronin A skos:exactMatch mesh C040322 myxopyronin A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:51043 tegaserod skos:exactMatch mesh C105050 tegaserod lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:51055 9H-thioxanthene skos:exactMatch mesh C054700 6-thioxanthine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:51066 dapiprazole skos:exactMatch mesh C035289 dapiprazole lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:5107 Fluo-3 skos:exactMatch mesh C059715 Fluo-3 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:51075 sophorolipid skos:exactMatch mesh C000627985 sophorolipid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:51079 GS26575 skos:exactMatch mesh C541362 GS26575 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:5108 Fluocinolone skos:exactMatch mesh C035394 fluocinolone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:51103 Fluo-4 skos:exactMatch mesh C409648 Fluo 4 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:51107 4,4-difluoro-4-bora-3a,4a-diaza-s-indacene skos:exactMatch mesh C095489 4,4-difluoro-4-bora-3a,4a-diaza-s-indacene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:5116 Fluorodifen skos:exactMatch mesh C010457 fluorodifen lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:51179 dextropropoxyphene napsylate skos:exactMatch mesh C084813 propoxyphene napsylate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:51205 cyclopropene skos:exactMatch mesh C021985 cyclopropene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:51215 zinc octaethylporphyrin skos:exactMatch mesh C526613 zinc octaethylporphyrin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:51216 zinc porphyrin skos:exactMatch mesh C017802 zinc hematoporphyrin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:51218 zinc phthalocyanine skos:exactMatch mesh C052159 Zn(II)-phthalocyanine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:5122 Fluperlapine skos:exactMatch mesh C041528 fluperlapine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:51221 zinc tetraphenylporphyrin skos:exactMatch mesh C048955 zinc tetraphenylporphyrin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:51222 YoYo-3 skos:exactMatch mesh C412625 YoYo-3 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:51226 epicocconone skos:exactMatch mesh C477464 epicocconone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:51231 DAPI skos:exactMatch mesh C007293 DAPI lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:5125 Fluphenazine enanthate skos:exactMatch mesh C017610 fluphenazine enanthate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:51257 6alpha-[(R)-1-hydroxyethyl]-2-[(R)-tetrahydrofuran-2-yl]pen-2-em-3-carboxylic acid skos:exactMatch mesh C107057 fropenem lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:51280 S-methyl thioacetate skos:exactMatch mesh C026500 methyl thioacetate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:51284 1-deoxy-D-threo-hexo-2,5-diulose 6-phosphate skos:exactMatch mesh C488732 6-deoxy-5-ketofructose 1-phosphate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:51287 tetracene-5,12-dione skos:exactMatch mesh C468646 5,12-naphthacenequinone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:51302 anthracene-9,10-dinitrile skos:exactMatch mesh C521244 9,10-dicyanoanthracene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:5131 flurochloridone skos:exactMatch mesh C077976 raiser lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:51311 bromoethene skos:exactMatch mesh C003763 vinyl bromide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:51315 iodoethene skos:exactMatch mesh C569210 vinyl iodide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:51338 dendrimer macromolecule skos:exactMatch mesh C501244 dendron lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:51340 pristanic acid skos:exactMatch mesh C002844 pristanic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:51351 cloxacillin benzathine skos:exactMatch mesh C006692 benzathine cloxacillin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:51368 lofexidine skos:exactMatch mesh C025655 lofexidine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:51370 dichlorocarbene skos:exactMatch mesh C004260 dichlorocarbene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:51396 dinitrobenzene skos:exactMatch mesh D004136 Dinitrobenzenes lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:51417 calixresorcarenes skos:exactMatch mesh C466160 resorcinarene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:51451 endothelin receptor antagonist skos:exactMatch mesh D065128 Endothelin Receptor Antagonists lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:51457 cyclopropanecarboxamide skos:exactMatch mesh C538819 cyclopropanecarboxamide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:51460 albaflavenone skos:exactMatch mesh C087466 albaflavenone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:51461 SYBR Green I skos:exactMatch mesh C098022 SYBR Green I lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:51467 PicoGreen skos:exactMatch mesh C099476 PicoGreen lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:51469 butyllithium skos:exactMatch mesh C046771 butyllithium lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:51470 phenyllithium skos:exactMatch mesh C450681 phenyllithium lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:51486 methyllithium skos:exactMatch mesh C520093 methyllithium lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:51497 dimethylzinc skos:exactMatch mesh C511262 dimethylzinc lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:51499 diphenylzinc skos:exactMatch mesh C511645 diphenylzinc lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:51502 cryptocyanin skos:exactMatch mesh C067343 kryptocyanine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:51515 N-butyrylbenzamide skos:exactMatch mesh C069752 N-butyrylbenzamide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:51544 BMY 45778 skos:exactMatch mesh C084677 BMY 45778 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:51555 2,1-benzoxazole skos:exactMatch mesh C033962 anthranil lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:51568 dipotassium tetraiodomercurate skos:exactMatch mesh C009009 potassium tetraiodomercurate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:51575 3-bromopyridine skos:exactMatch mesh C517741 3-bromopyridine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:51581 benzimidazole-4,7-quinone skos:exactMatch mesh C542784 1H-benzimidazole-4,7-dione lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:51588 1,4-diphenylbutadiyne skos:exactMatch mesh C029034 1,4-diphenylbutadiyne lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:51593 3,5-dibromopyridine skos:exactMatch mesh C500447 3,5-dibromopyridine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:51596 2',7'-dichlorofluorescein skos:exactMatch mesh C037631 2',7'-dichlorofluorescein lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:51599 2,4-diaminopyridine skos:exactMatch mesh C026805 2,4-diaminopyridine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:5160 Forsythiaside skos:exactMatch mesh C058049 forsythiaside lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:51600 2-[4-(dimethylamino)styryl]-1-methylpyridinium iodide skos:exactMatch mesh C011786 2-(4-(dimethylamino)styryl)-1-methylpyridinium lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:51602 resorufin skos:exactMatch mesh C014180 resorufin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:51603 2-methylbenzoxazole skos:exactMatch mesh C558272 2-methylbenzoxazole lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:51637 indole-4,7-quinone skos:exactMatch mesh C024732 indole-4,7-dione lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:51638 5-carboxy-X-rhodamine skos:exactMatch mesh C533378 5-carboxy-X-rhodamine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:5165 Fosphenytoin skos:exactMatch mesh C043114 fosphenytoin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:51657 5-carboxytetramethylrhodamine skos:exactMatch mesh C437523 5-carboxytetramethylrhodamine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:5166 Frangulanine skos:exactMatch mesh C015229 frangulanine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:51662 2,3-dihydrofuran skos:exactMatch mesh C073812 2,3-dihydrofuran lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:5167 Frangulin A skos:exactMatch mesh C000589162 frangulin A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:51675 9,10-bis(phenylethynyl)anthracene skos:exactMatch mesh C545666 9,10-bis(phenylethynyl)anthracene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:51676 9,10-diphenylanthracene skos:exactMatch mesh C046961 9,10-diphenylanthracene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:5168 Frangulin B skos:exactMatch mesh C007781 frangulin B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:5169 fraxetin skos:exactMatch mesh C105671 fraxetin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:51691 apalcillin skos:exactMatch mesh C012122 apalcillin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:5170 fraxin skos:exactMatch mesh C080614 fraxin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:517248 bufalin skos:exactMatch mesh C022777 bufalin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:51740 ethyl propiolate skos:exactMatch mesh C544697 ethyl propiolate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:51742 acridine yellow skos:exactMatch mesh C025902 acridine yellow lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:51744 Alexa Fluor 350 skos:exactMatch mesh C400304 Alexa 350 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:51758 azidocillin skos:exactMatch mesh C100243 azidocillin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:51759 methacrylamide skos:exactMatch mesh C045985 methacrylamide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:51760 Alexa Fluor 546 skos:exactMatch mesh C481052 Alexa fluor 546 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:51763 cellocidin skos:exactMatch mesh C015739 cellocidin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:5177 Frullanolide skos:exactMatch mesh C007787 frullanolide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:51770 sultamicillin skos:exactMatch mesh C035444 sultamicillin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:51771 coumarin 120 skos:exactMatch mesh C028743 7-amino-4-methylcoumarin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:51772 7-amino-4-(trifluoromethyl)coumarin skos:exactMatch mesh C521215 coumarin 151 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:51773 coumarin 153 skos:exactMatch mesh C488877 coumarin 153 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:51774 coumarin 480 skos:exactMatch mesh C573700 coumarin 480 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:51776 coumarin 500 skos:exactMatch mesh C514684 7-(ethylamino)-4-trifluoromethylcoumarin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:5179 Frutinone A skos:exactMatch mesh C581826 frutinone A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:51805 imidurea skos:exactMatch mesh C006048 imidazolidinyl urea lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:51817 temocillin skos:exactMatch mesh C031367 temocillin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:518305 2,5-dimethylaniline skos:exactMatch mesh C016835 2,5-xylidene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:51833 beta-D-fructofuranosyl alpha-D-mannopyranoside skos:exactMatch mesh C066587 mannosucrose lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:51835 microthecin skos:exactMatch mesh C118494 microthecin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:518413 alverine skos:exactMatch mesh C010846 alverine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:51845 bromoacetone skos:exactMatch mesh C018235 bromoacetone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:51846 phenacyl bromide skos:exactMatch mesh C013190 phenacyl bromide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:51850 methyl pyruvate skos:exactMatch mesh C104813 methyl pyruvate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:51855 benzoylacetonitrile skos:exactMatch mesh C410426 3-oxo-3-phenylpropanenitrile lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:51865 azoxybenzene skos:exactMatch mesh C046115 fenazox lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:5187 Fulvine skos:exactMatch mesh C041169 fulvine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:51876 auramine O skos:exactMatch mesh C542357 4,4-dimethylaminobenzophenonimide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:5188 Fulvoplumierin skos:exactMatch mesh C017333 fulvoplumierin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:51881 asterriquinone skos:exactMatch mesh C035746 asterriquinone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:51882 BoBo-3 skos:exactMatch mesh C098829 BOBO 3 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:51889 cyanoacetic acid skos:exactMatch mesh C007170 cyanoacetic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:51903 calcein skos:exactMatch mesh C007740 fluorexon lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:51907 dansyl chloride skos:exactMatch mesh C029038 dansyl chloride lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:5192 Funebrine skos:exactMatch mesh C484609 funebrine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:51923 calcium crimson skos:exactMatch mesh C071334 calcium crimson lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:51932 cascade blue skos:exactMatch mesh C066850 Cascade Blue lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:51934 CBQCA reagent skos:exactMatch mesh C069617 3-(4-carboxybenzoyl)-2-quinolinecarboxaldehyde lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:51940 coumarin 504 skos:exactMatch mesh C520890 coumarin 314 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:51941 coumarin 343 skos:exactMatch mesh C552279 coumarin 343 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:51942 coumarin 6 skos:exactMatch mesh C517282 coumarin 6 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:51945 DY-630 skos:exactMatch mesh C439044 DY 630 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:51951 DY-635 skos:exactMatch mesh C439045 DY 635 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:51966 DY-676 skos:exactMatch mesh C573549 DY-676 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:51988 tetrabutylammonium chloride skos:exactMatch mesh C515756 tetra-n-butylammonium chloride lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:51996 perchlorofulvalene skos:exactMatch mesh C090727 octachlorofulvalene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:51997 2,2'-biimidazole skos:exactMatch mesh C065541 2,2'-biimidazole lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:51999 fulvene skos:exactMatch mesh C017332 fulvene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:5200 Fusicoccin H skos:exactMatch mesh C007809 fusicoccin H lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:52026 amorpha-4,11-diene skos:exactMatch mesh C515348 amorpha-4,11-diene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:5203 Futoquinol skos:exactMatch mesh C549141 futoquinol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:52042 2-(5'-chloro-2'-phosphoryloxyphenyl)-6-chloro-4-(3H)-quinazolinone skos:exactMatch mesh C079177 2-(5'-chloro-2'-phosphoryloxyphenyl)-6-chloro-4-(3H)-quinazolinone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:52047 2,4',7-trihydroxyisoflavanone skos:exactMatch mesh C420227 2,7,4'-trihydroxyisoflavanone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:52048 2,3,5,6-tetrachlorophenol skos:exactMatch mesh C039673 2,3,5,6-tetrachlorophenate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:52049 tetrachlorophenol skos:exactMatch mesh C009408 tetrachlorophenol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:52051 benzyl acetate skos:exactMatch mesh C046412 benzyl acetate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:52055 ethidium homodimer skos:exactMatch mesh C018533 ethidium homodimer lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:52060 metampicillin skos:exactMatch mesh C005195 methampicillin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:52070 senecionine N-oxide skos:exactMatch mesh C056840 senecionine N-oxide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:52072 ethyl eosin skos:exactMatch mesh C532486 ethyl eosin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:52073 parbenate skos:exactMatch mesh C030747 ethyl 4-dimethylaminobenzoate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:52077 FM 1-43 dye skos:exactMatch mesh C073804 FM1 43 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:52080 fura red skos:exactMatch mesh C082877 fura red lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:52082 pibenzimol skos:exactMatch mesh C009712 bis-benzimidazole lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:52083 pyranine skos:exactMatch mesh C005047 pyranine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:52084 Indo-1 dye skos:exactMatch mesh C048960 indo-1 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:52086 glyceollin III skos:exactMatch mesh C000591134 glyceollin III lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:52096 sodium ethoxide skos:exactMatch mesh C098088 sodium ethoxide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:520985 almotriptan skos:exactMatch mesh C409045 almotriptan lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:521021 4-(butylamino)benzoic acid skos:exactMatch mesh C030553 4-n-butylaminobenzoic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:52121 magnesium green skos:exactMatch mesh C453498 magnesium green lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:52127 (-)-glyceollin II skos:exactMatch mesh C000591133 glyceollin II lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:52133 mitoTracker Green FM skos:exactMatch mesh C111472 mitotracker green FM lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:52139 benzylpenicillin clemizole skos:exactMatch mesh C030906 clemizolpenicillin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:521393 3,5-di-O-caffeoyl-muco-quinic acid skos:exactMatch mesh C552116 3,5-di-O-caffeoyl-muco-quinic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:52140 clemizole skos:exactMatch mesh C084582 clemizole lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:52141 squaric acid skos:exactMatch mesh C030042 squaric acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:52151 benzylpenicillin benethamine skos:exactMatch mesh C038323 benethamine penicillin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:52158 monochlorobimane skos:exactMatch mesh C059597 monochlorobimane lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:52169 nile red skos:exactMatch mesh C044808 nile red lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:52183 octaethylporphyrin skos:exactMatch mesh C488938 octaethylporphyrin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:52186 oxazine-1 skos:exactMatch mesh C025904 oxazine 1 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:52218 pinacyanol iodide skos:exactMatch mesh D002232 Carbocyanines lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:52220 PoPo-3 skos:exactMatch mesh C120457 POPO 3 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:52230 tin-119 atom skos:exactMatch mesh C000615565 Tin-119 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:52232 tin-118 atom skos:exactMatch mesh C000615564 Tin-118 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:52233 tin-116 atom skos:exactMatch mesh C000615562 Tin-116 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:52234 tin-117 atom skos:exactMatch mesh C000615563 Tin-117 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:52236 POPOP skos:exactMatch mesh C028380 POPOP lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:52237 Po-Pro-1 skos:exactMatch mesh C514113 Po-Pro-1 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:52238 Po-Pro-3 skos:exactMatch mesh C120456 PO-PRO 3 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:52246 platinum(II) octaethylporphyrin ketone skos:exactMatch mesh C582846 platinum(II) octaethylporphine ketone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:52254 apatite skos:exactMatch mesh D017886 Durapatite lexical 0.9 https://github.com/indralab/panacea_indra/blob/master/panacea_indra/make_ctd_tests.py +chebi CHEBI:52258 chlorapatite skos:exactMatch mesh C051449 chlorapatite lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:52270 sodium green skos:exactMatch mesh C098118 sodium green lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:52274 sulforhodamine 101 skos:exactMatch mesh C050829 sulforhodamine 101 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:52282 tetramethylrhodamine skos:exactMatch mesh C005358 tetramethylrhodamine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:52293 thiazole orange skos:exactMatch mesh C051000 thiazole orange lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:52296 To-Pro-1 skos:exactMatch mesh C405903 TO-PRO-1 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:52297 To-Pro-3 skos:exactMatch mesh C098830 TO-PRO-3 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:52298 ToTo-1 skos:exactMatch mesh C086329 TOTO-1 thiazole orange dye lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:52309 1-NM-PP1 skos:exactMatch mesh C479693 1-tert-butyl-3-naphthalen-1-ylmethyl-1H-pyrazolo(3,4-d)pyrimidin-4-ylemine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:52315 rhodamine 110 skos:exactMatch mesh C049025 rhodamine 110 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:52317 thalianol skos:exactMatch mesh C528598 thalianol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:52342 ethyl formate skos:exactMatch mesh C510888 ethyl formate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:52364 2-acetylnaphthalene skos:exactMatch mesh C503376 2-acetylnaphthalene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:5240 Gaillardin skos:exactMatch mesh C476872 gaillardin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:52401 2-phenoxyacetophenone skos:exactMatch mesh C561330 2-phenoxy-1-phenylethanone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:52427 phenethicillin skos:exactMatch mesh C100209 phenethicillin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:52429 propicillin skos:exactMatch mesh C100135 propicillin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:52431 naphthalene 1,2-oxide skos:exactMatch mesh C042033 naphthalene 1,2-oxide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:52442 1D-myo-inositol 2-acetamido-2-deoxy-alpha-D-glucopyranoside skos:exactMatch mesh C417276 1-inosityl-2-acetamido-2-deoxyglucopyranoside lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:52450 2-O-acetyl-1-O-octadecyl-sn-glycero-3-phosphocholine skos:exactMatch mesh C026613 1-0-octadecyl 2-0-acetyl sn-glycero-3-phosphorylcholine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:52452 tellurium-125 atom skos:exactMatch mesh C000615575 Tellurium-125 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:52453 xenon-129 atom skos:exactMatch mesh C000614971 Xenon-129 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:52455 lead-207 skos:exactMatch mesh C000615129 Lead-207 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:52457 selenium-77 atom skos:exactMatch mesh C000615457 Selenium-77 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:52459 rubidium-87 atom skos:exactMatch mesh C000615483 Rubidium-87 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:52461 elisabethatriene skos:exactMatch mesh C516495 elisabethatriene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:52462 tungsten-183 skos:exactMatch mesh C000615070 Tungsten-183 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:52486 dehydroabietadienol skos:exactMatch mesh C465098 dehydroabietinol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:52487 dehydroabietadienal skos:exactMatch mesh C576115 dehydroabietinal lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:52488 cobalt-precorrin-5A skos:exactMatch mesh C522828 cobalt-precorrin 5A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:52489 cobalt-precorrin-5B skos:exactMatch mesh C522829 cobalt-precorrin 5B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:52497 maneb skos:exactMatch mesh D008344 Maneb lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:52498 zineb skos:exactMatch mesh D015038 Zineb lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:52511 olivomycin A skos:exactMatch mesh C025047 olivomycin A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:52512 olivin skos:exactMatch mesh C033392 olivin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:5254 galactolipid skos:exactMatch mesh D038983 Galactolipids lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:525464 cembra-2,7,11-triene-4,6-diol skos:exactMatch mesh C544693 cembra-2,7,11-triene-4,6-diol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:52549 sordarin skos:exactMatch mesh C003329 sordarin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:52593 nanowire skos:exactMatch mesh D053770 Nanowires lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:52596 isoglobotetraosyl ceramide skos:exactMatch mesh C004642 cytolipin R lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:52619 cadmium-111 skos:exactMatch mesh C000615547 Cadmium-111 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:52620 cadmium-113 skos:exactMatch mesh C000615541 Cadmium-113 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:52621 lithium-6 atom skos:exactMatch mesh C000615209 Lithium-6 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:52623 iron-57 atom skos:exactMatch mesh C000615381 Iron-57 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:52626 antimony-123 atom skos:exactMatch mesh C000615566 Antimony-123 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:52633 molybdenum-95 skos:exactMatch mesh C000615511 Molybdenum-95 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:52636 iodine-129 atom skos:exactMatch mesh C000614963 Iodine-129 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:52637 europium-151 atom skos:exactMatch mesh C000615025 Europium-151 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:52640 N-acylethanolamine skos:exactMatch mesh C022203 N-acylethanolamines lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:52641 polyphosphoric acid skos:exactMatch mesh C047269 polyphosphoric acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:52646 leptomycin B skos:exactMatch mesh C038753 leptomycin B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:5265 Galegine skos:exactMatch mesh C074315 galegine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:52650 leptomycin A skos:exactMatch mesh C038752 leptomycin A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:52661 Alexa Fluor 488 skos:exactMatch mesh C000711379 alexa fluor 488 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:52672 rhodamine 6G skos:exactMatch mesh C026188 rhodamine 6G lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:52696 calcium orange skos:exactMatch mesh C071335 calcium orange lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:52698 ortho-iodosylbenzoic acid skos:exactMatch mesh C008154 2-iodosobenzoic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:52700 ortho-iodylbenzoic acid skos:exactMatch mesh C476101 o-iodoxybenzoic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:52718 Cy7 dye skos:exactMatch mesh C501744 indotricarbocyanine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:52722 lactacystin skos:exactMatch mesh C067713 lactacystin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:52732 phallacidin skos:exactMatch mesh C017613 phallacidin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:52753 perylenediimide skos:exactMatch mesh C521332 perylenediimide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:52758 germanium-73 atom skos:exactMatch mesh C000615434 Germanium-73 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:5276 Garcinol skos:exactMatch mesh C054597 garcinol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:52761 zinc-67 skos:exactMatch mesh C000615415 Zinc-67 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:52763 magnesium-25 atom skos:exactMatch mesh C000615291 Magnesium-25 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:5277 gardenoside skos:exactMatch mesh C056587 gardenoside lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:52771 4-(4-diethylaminostyryl)-1-methylpyridinium iodide skos:exactMatch mesh C052247 4-(4-diethylaminostyryl)-N-methylpyridinium lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:52774 pentane-2,3-dione skos:exactMatch mesh C013186 2,3-pentanedione lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:5279 gartanin skos:exactMatch mesh C000605798 1,3,5,8-tetrahydroxy-2,4-bis(3-methyl-2-butenyl)xanthone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:5281 Geigerin skos:exactMatch mesh C053304 geigerin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:52815 cresyl violet skos:exactMatch mesh C028911 cresyl violet lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:52926 thionine cation skos:exactMatch mesh C435667 3,7-diaminophenothiazin-5-ium lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:5294 Gelsemine skos:exactMatch mesh C063230 gelsemine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:52974 tetracosanoyl-CoA skos:exactMatch mesh C018582 lignoceroyl-coenzyme A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:5298 Genipin skos:exactMatch mesh C007834 genipin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:52985 2-hexacosenoic acid skos:exactMatch mesh C040938 1-hexacosenoic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:5299 Geniposide skos:exactMatch mesh C007835 geniposide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:5301 Geniposidic acid skos:exactMatch mesh C058966 geniposidic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:53016 sulfamethoxazole hydroxylamine skos:exactMatch mesh C059873 sulfamethoxazole hydroxylamine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:53017 nitrososulfamethoxazole skos:exactMatch mesh C072956 4-nitrososulfamethoxazole lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:53037 hexadecaprenyl diphosphate skos:exactMatch mesh C408365 hexadecaprenyl diphosphate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:53070 2,4-dinitrobenzenesulfonic acid skos:exactMatch mesh C007488 dinitrobenzenesulfonic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:53074 diphenylcyclopropenone skos:exactMatch mesh C029402 diphenylcyclopropenone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:53075 cyclopropenone skos:exactMatch mesh C120343 cyclopropenone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:53076 4-(ethoxymethylene)-2-phenyloxazol-5-one skos:exactMatch mesh C119678 4-ethoxymethylene-2-phenyl-2-oxazoline-5-one lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:53078 N(6)-(2,4-dinitrophenyl)lysine skos:exactMatch mesh C007493 epsilon-dinitrophenyllysine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:53082 prostaglandin H2 1-ethanolamide skos:exactMatch mesh C507368 prostamide H2 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:53088 alizarin complexone skos:exactMatch mesh C070804 alizarin complexone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:53094 imidazoline skos:exactMatch mesh C017424 2-imidazoline lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:53109 Bandrowski's base skos:exactMatch mesh C051597 Bandrowski's base lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:53110 4,5-dianilinophthalimide skos:exactMatch mesh C098874 4,5-dianilinophthalimide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:53115 8-(3-chlorostyryl)caffeine skos:exactMatch mesh C081320 8-(3-chlorostyryl)caffeine lexical 0.9 https://github.com/indralab/panacea_indra/blob/master/panacea_indra/make_ctd_tests.py +chebi CHEBI:53123 diazoline skos:exactMatch mesh C025079 diazoline lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:53124 2-fluoroacetamide skos:exactMatch mesh C007741 fluoroacetamide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:53154 8'-apo-beta,psi-caroten-8'-al skos:exactMatch mesh C004984 apocarotenal lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:53157 4'-apo-beta-carotenal skos:exactMatch mesh C521284 4'-apo-beta-caroten-4'-al lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:53159 (3R)-3-hydroxy-8'-apo-beta-carotenal skos:exactMatch mesh C428343 citraurin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:53168 picrocrocin skos:exactMatch mesh C087962 picrocrocin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:53175 13-apo-beta-carotenone skos:exactMatch mesh C071310 beta-apo-13-carotenone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:53177 beta-cyclocitral skos:exactMatch mesh C516118 beta-cyclocitral lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:5319 Gentiodelphin skos:exactMatch mesh C414932 gentiodelphin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:53199 poly(amido amine) skos:exactMatch mesh C531249 Poly(amidoamine) lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:53201 polycarbonate macromolecule skos:exactMatch mesh C005506 polycarbonate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:53209 tetrapropylammonium perruthenate skos:exactMatch mesh C082683 tetrapropylammonium perruthenate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:5321 Gentiopicrin skos:exactMatch mesh C012997 gentiopicroside lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:53216 dicyclohexylmethane-4,4'-diisocyanate skos:exactMatch mesh C013606 methylene bis(4-cyclohexylisocyanate) lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:53217 citranaxanthin skos:exactMatch mesh C520766 citranaxanthin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:5323 gentisein skos:exactMatch mesh C436833 gentisein lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:53231 poly(ethylene imine) skos:exactMatch mesh C505405 poly(ethylene imine) lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:53233 3-(4,5-dimethylthiazol-2-yl)-2,5-diphenyltetrazolium bromide skos:exactMatch mesh C022616 thiazolyl blue lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:53236 captopril disulfide skos:exactMatch mesh C035974 captopril disulfide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:5324 gentisin skos:exactMatch mesh C037062 gentisin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:53244 poly(vinyl fluoride) skos:exactMatch mesh C077776 polyvinyl fluoride lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:53258 sodium citrate skos:exactMatch mesh C514290 trisodium citrate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:53276 poly(styrene) skos:exactMatch mesh C024075 styrofoam lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:53278 poly(styrene-4-sulfonic acid) skos:exactMatch mesh C077114 styrenesulfonic acid polymer lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:5328 Geraniin skos:exactMatch mesh C024603 Geraniin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:5331 geranyl acetate skos:exactMatch mesh C432872 geranyl acetate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:53311 sodium alginate skos:exactMatch mesh D044646 Ascophyllum lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:53323 polycationic macromolecule skos:exactMatch mesh C009792 polycations lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:53324 6-azido-6-deoxycellulose skos:exactMatch mesh C000590804 6-azido-6-deoxycellulose lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:53351 chromium(3+) trichloride skos:exactMatch mesh C022990 chromic chloride lexical 0.9 https://github.com/indralab/panacea_indra/blob/master/panacea_indra/make_ctd_tests.py +chebi CHEBI:5338 Germine skos:exactMatch mesh C100083 germine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:53389 poly(3-hydroxybutyrate) skos:exactMatch mesh C003182 poly-beta-hydroxybutyrate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:5339 Gerrardine skos:exactMatch mesh C043530 gerrardine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:53391 poly(3-hydroxyvalerate) skos:exactMatch mesh C073314 poly(3-hydroxyvalerate) lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:53399 poly(4-chloromethlystyrene) skos:exactMatch mesh C426943 poly(p-chloromethylstyrene) lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:53429 poly(methacrylic acid) macromolecule skos:exactMatch mesh C030613 polymethacrylic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:53438 iron(3+) sulfate skos:exactMatch mesh C024823 ferric sulfate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:53440 2-hydroxypropyl methacrylate skos:exactMatch mesh C032802 hydroxypropyl methacrylate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:53454 5,8,11-icosatriynoic acid skos:exactMatch mesh C026603 5,8,11-eicosatriynoic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:53455 D-xylopyranose skos:exactMatch mesh C431715 xylopyranose lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:53457 glucuronoxylomannan skos:exactMatch mesh C027478 glucuronoxylomannan lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:53460 all-cis-icosa-11,14,17-trienoic acid skos:exactMatch mesh C034152 11,14,17-eicosatrienoic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:53471 chromium(III) sulfate skos:exactMatch mesh C040874 chromium sulfate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:53472 copper(I) chloride skos:exactMatch mesh C028419 cuprous chloride lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:53480 N-acetyl-D-galactosaminitol skos:exactMatch mesh C011631 N-acetylgalactosaminitol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:53510 N-(1-naphthyl)ethylenediamine skos:exactMatch mesh C008588 N-(1-naphthyl)ethylenediamine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:5352 Gingerenone A skos:exactMatch mesh C000604237 gingerenone A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:53545 poly(oxyethylene)-block-polystyrene skos:exactMatch mesh C541965 polystyrene-b-poly(ethylene oxide) lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:53546 polystyrene-block-poly(acrylic acid) skos:exactMatch mesh C509855 poly(styrene-b-acrylic acid) lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:5357 Ginkgolide C skos:exactMatch mesh C058295 ginkgolide C lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:53577 pyrimidin-2-ol skos:exactMatch mesh C041345 2-hydroxypyrimidine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:53578 hexamethylene diisocyanate skos:exactMatch mesh C015262 1,6-hexamethylene diisocyanate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:53579 pholcodine skos:exactMatch mesh C008872 pholcodine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:5358 Ginkgolide J skos:exactMatch mesh C075228 ginkgolide J lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:53580 4-(ethoxymethylene)-2-(2-furyl)oxazol-5-one skos:exactMatch mesh C032541 2-furyl-4-ethoxymethylene-5-oxazolone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:53613 2,5-dimethyl-p-phenylenediamine skos:exactMatch mesh C543308 2,5-dimethyl-1,4-benzoquinonediamine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:53614 2-methyl-2-oxazoline skos:exactMatch mesh C561519 2-methyl-2-oxazoline lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:53616 4,4'-diaminoazobenzene skos:exactMatch mesh C021143 4,4'-diaminoazobenzene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:53617 4-(2-hydroxy-5-methylphenylazo)acetanilide skos:exactMatch mesh C024957 Dispersion Yellow 3 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:53620 methylisothiazolinone skos:exactMatch mesh C011506 2-methyl-4-isothiazolin-3-one lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:53621 chloromethylisothiazolinone skos:exactMatch mesh C011421 5-chloro-2-methyl-4-isothiazolin-3-one lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:53624 poly(gamma-benzyl-L-glutamate) macromolecule skos:exactMatch mesh C003172 poly-gamma-benzyl-L-glutamate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:53627 agatharesinol skos:exactMatch mesh C445733 agatharesinol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:5363 Gitogenin skos:exactMatch mesh C012999 gitogenin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:5364 Gitonin skos:exactMatch mesh C029021 gitonin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:53647 dehydroglycine skos:exactMatch mesh C033013 iminoglycine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:53648 3,5-dinitrosalicylic acid skos:exactMatch mesh C001026 5-dimethylaminonaphthalene-1-sulfonamide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:53651 alpha-D-galactosyl-(1->3)-D-galactose skos:exactMatch mesh C055075 galactosyl-(1-3)galactose lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:5366 Gla protein skos:exactMatch mesh C576330 alpha-galactosidase A, human lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:53660 4-chlorophenylhydrazine skos:exactMatch mesh C091140 4-chlorophenylhydrazine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:53661 alexidine skos:exactMatch mesh C001570 alexidine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:53688 methyl beta-D-glucuronoside skos:exactMatch mesh C068971 methylglucopyranosiduronic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:5369 glabridin skos:exactMatch mesh C107601 glabridin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:53694 5-iodo-L-histidine skos:exactMatch mesh C018324 5-iodohistidine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:53709 poly(ethylene glycol monomethacrylate) skos:exactMatch mesh C524499 polyethylene glycol methacrylate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:5371 Glaucarubinone skos:exactMatch mesh C015235 glaucarubinone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:5372 Glaucarubolone skos:exactMatch mesh C024967 glaucarubolone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:5373 (S)-glaucine skos:exactMatch mesh C005004 glaucine lexical 0.9 https://github.com/indralab/panacea_indra/blob/master/panacea_indra/make_ctd_tests.py +chebi CHEBI:53731 remazole black-GR skos:exactMatch mesh C063421 Remazol black B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:5374 Glaucolide A skos:exactMatch mesh C000605837 glaucolide A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:5375 Glaucolide B skos:exactMatch mesh C065496 glaucolide B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:537519 L-aspartic acid 4-semialdehyde zwitterion skos:exactMatch mesh C006644 aspartic semialdehyde lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:53758 PAP skos:exactMatch mesh C077151 3-phenylamino-1,2-propanediol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:5376 Glaziovine skos:exactMatch mesh C007847 glaziovine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:53770 aceprometazine skos:exactMatch mesh C021280 aceprometazine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:53773 3'''-O-acetyldigitoxin skos:exactMatch mesh C006375 acetylgitoxin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:5380 glepidotin A skos:exactMatch mesh C441193 glepidotin A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:5381 glepidotin B skos:exactMatch mesh C441194 glepidotin B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:5387 Globomycin skos:exactMatch mesh C017339 globomycin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:5390 Glu-Glu skos:exactMatch mesh C094686 glutamyl-glutamic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:5404 glucoerucin(1-) skos:exactMatch mesh C410644 4-methylthiobutylglucosinolate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:540787 reynosin skos:exactMatch mesh C016715 reynosin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:5420 Glucosylated DNA skos:exactMatch mesh C035493 DNA, glucosylated lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:542606 minquartynoic acid skos:exactMatch mesh C417933 minquartynoic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:5435 piperidine-2,6-dione skos:exactMatch mesh C007864 glutarimide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:545687 traumatic acid skos:exactMatch mesh C509089 traumatic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:5461 Glycinoeclepin A skos:exactMatch mesh C543096 glycinoeclepin A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:546807 beta-D-Galp-(1->3)-D-GalpNAc skos:exactMatch mesh C000616516 galacto-N-biose lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:546808 alpha-D-Gal-(1->4)-D-Gal skos:exactMatch mesh C056853 6-O-galactopyranosylgalactose lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:5497 Glycosminine skos:exactMatch mesh C015247 glycosminine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:5512 Gnidicin skos:exactMatch mesh C010459 gnidicin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:5514 Gnididin skos:exactMatch mesh C010460 gnididin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:5515 Gniditrin skos:exactMatch mesh C010461 gniditrin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:5525 gossypin skos:exactMatch mesh C022944 gossypin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:5527 Goyazensolide skos:exactMatch mesh C499803 furanoheliangolide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:5528 Gracillin skos:exactMatch mesh C044934 gracillin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:55314 poly(N,N'-methylenebisacrylamide-co-methacrylic acid) skos:exactMatch mesh C000606220 poly(N,N'-methylenebisacrylamide-co-methacrylic acid) lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:55319 tetrapropylammonium skos:exactMatch mesh C052377 tetrapropylammonium lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:55325 decyltrimethylammonium ion skos:exactMatch mesh C013912 decyltrimethylammonium lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:55327 aci-nitroethane(1-) skos:exactMatch mesh C053154 ethanenitronate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:55328 16-hydroxyhexadecanoic acid skos:exactMatch mesh C063407 16-hydroxypalmitic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:55329 16-hydroxyhexadecanoate skos:exactMatch mesh C474132 16-hydroxyhexadecanoate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:5535 Grandisin skos:exactMatch mesh C074346 grandisin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:55377 beta-hematin skos:exactMatch mesh C020753 hemozoin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:5541 Graveoline skos:exactMatch mesh C487585 graveoline lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:55419 8-nitroguanosine skos:exactMatch mesh C481144 8-nitroguanosine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:5543 Grepafloxacin skos:exactMatch mesh C075375 grepafloxacin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:55438 Ile(5)-angiotensin II (1-7) skos:exactMatch mesh C118790 angiotensin I (1-7) lexical 0.9 https://github.com/indralab/panacea_indra/blob/master/panacea_indra/make_ctd_tests.py +chebi CHEBI:55445 vinylferrocene skos:exactMatch mesh C500579 vinylferrocene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:5545 Grevillol skos:exactMatch mesh C042675 grevillol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:55477 N-phenylglycine skos:exactMatch mesh C021316 N-phenylglycine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:5548 Gsh-prostaglandin A1 skos:exactMatch mesh C021031 GSH-prostaglandin A1 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:55481 lactobionic acid skos:exactMatch mesh C005608 lactobionic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:55486 carumonam skos:exactMatch mesh C044145 carumonam lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:55502 2-amino-4-hydroxypyrimidine skos:exactMatch mesh C093270 isocytosine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:55515 N-acetyltryptamine skos:exactMatch mesh C043464 N-acetyltryptamine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:55517 trichothecene skos:exactMatch mesh C000630165 trichothecene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:55518 butanilicaine skos:exactMatch mesh C008337 butanilicaine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:55552 thymidine 3'-monophosphate skos:exactMatch mesh C058833 3'-thymidylic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:556075 radicicol skos:exactMatch mesh C035359 monorden lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:556580 fenticlor skos:exactMatch mesh C007713 fentichlor lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:5569 iminoctadine skos:exactMatch mesh C012343 guazatine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:5576 guvacine skos:exactMatch mesh C015910 guvacine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:5592 HLo7 skos:exactMatch mesh C058577 HLo 7 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:5597 HR 780 skos:exactMatch mesh C062437 HR 780 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:5600 Haemanthamine skos:exactMatch mesh C462104 hemanthamine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:5602 Haemocorin skos:exactMatch mesh C030430 hemocorin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:5603 Halazepam skos:exactMatch mesh C010175 halazepam lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:5606 Hallactone A skos:exactMatch mesh C007900 hallolactone A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:5614 Haloprogin skos:exactMatch mesh C100276 haloprogin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:5619 Haplophytine skos:exactMatch mesh C518946 haplophytine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:5620 Haplopine skos:exactMatch mesh C470067 4,8-dimethoxy-7-hydroxyfuro(2,3-b)quinoline lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:5625 Harpagoside skos:exactMatch mesh C033249 harpagoside lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:5626 Harringtonine skos:exactMatch mesh C062500 harringtonine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:5627 Harrisonin skos:exactMatch mesh C442766 harrisonin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:562752 2-acetyl-5-methylfuran skos:exactMatch mesh C057528 5-methyl-2-furylmethylketone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:5628 Harzianopyridone skos:exactMatch mesh C576302 harzianopyridone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:5629 Hasubanonine skos:exactMatch mesh C520169 hasubanonine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:5633 Hecogenin skos:exactMatch mesh C007908 hecogenin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:5634 hederagenin 3-O-arabinoside skos:exactMatch mesh C036411 cauloside A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:5635 helenalin skos:exactMatch mesh C001329 helenalin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:563586 6-methylcoumarin skos:exactMatch mesh C018096 6-methylcoumarin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:5636 Helenien skos:exactMatch mesh C042447 xanthophyll dipalmitate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:5637 Heliamine skos:exactMatch mesh C024133 heliamine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:5643 Heliotrine skos:exactMatch mesh C010178 heliotrine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:5647 Helminthosporal skos:exactMatch mesh C015256 helminthosporal lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:5648 Helminthosporol skos:exactMatch mesh C083652 helminthosporol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:5650 Helveticoside skos:exactMatch mesh C007914 helveticoside lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:5656 deoxyhemoglobin skos:exactMatch mesh C100003 deoxyhemoglobin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:5658 hentriacontan-16-one skos:exactMatch mesh C423862 palmitone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:566789 ethylaminium skos:exactMatch mesh C421484 ethylammonium lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:5672 heptan-2-one skos:exactMatch mesh C011917 2-heptanone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:5676 Heritonin skos:exactMatch mesh C061641 heritonin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:5677 Hernandezine skos:exactMatch mesh C067193 hernandezine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:5678 Hernandulcin skos:exactMatch mesh C044111 hernandulcin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:568021 tioxolone skos:exactMatch mesh C009474 thioxolone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:5684 Heteratisine skos:exactMatch mesh C109503 heteratisine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:5691 Hexachloro-1,3-butadiene skos:exactMatch mesh C001335 hexachlorobutadiene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:569624 papulacandin B skos:exactMatch mesh C020789 papulacandin B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:5705 Hexazinone skos:exactMatch mesh C025641 hexazinone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:5707 Hexocyclium skos:exactMatch mesh C015922 hexocyclium lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:5712 1-hexanamine skos:exactMatch mesh C007940 hexylamine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:5720 himbacine skos:exactMatch mesh C048172 himbacine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:5724 hippeastrine skos:exactMatch mesh C060577 hippeastrine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:5727 Hirsutic acid C skos:exactMatch mesh C034188 hirsutic acid C lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:5739 histrelin skos:exactMatch mesh C029256 histrelin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:5741 Hodgkinsine skos:exactMatch mesh C077369 hodgkinsine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:5746 Homaline skos:exactMatch mesh C576843 homaline lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:5747 Homatropine skos:exactMatch mesh C100236 homatropine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:5762 hordatine A skos:exactMatch mesh C528923 hordatine A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:5763 hordatine B skos:exactMatch mesh C528924 hordatine B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:5764 hordenine skos:exactMatch mesh C007964 hordenine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:5768 (1E,4E,8E)-alpha-humulene skos:exactMatch mesh C042686 humulene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:5769 humulone skos:exactMatch mesh C007966 humulon lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:5770 huperzine b skos:exactMatch mesh C053016 huperzine B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:5776 hydrangenol skos:exactMatch mesh C023818 hydrangenol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:5781 cortisol sodium phosphate skos:exactMatch mesh C039803 hydrocortisone sodium phosphate lexical 0.9 https://github.com/indralab/panacea_indra/blob/master/panacea_indra/make_ctd_tests.py +chebi CHEBI:5783 Hydrocortisone cypionate skos:exactMatch mesh C029109 hydrocortisone cypionate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:5792 Hydroquinidine skos:exactMatch mesh C014486 hydroquinidine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:581177 agrimoniin skos:exactMatch mesh C052420 agrimoniin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:58128 N(5)-ethyl-L-glutamine zwitterion skos:exactMatch mesh C026166 theanine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:58149 3-hydroxyphenylacetate skos:exactMatch mesh C026245 3-hydroxyphenylacetate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:58178 1-phosphatidyl-1D-myo-inositol 4-phosphate(3-) skos:exactMatch mesh C037178 phosphatidylinositol 4-phosphate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:5823 Hymenocardine skos:exactMatch mesh C000624618 hymenocardine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:5824 Hymenoflorin skos:exactMatch mesh C008094 hymenoflorin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:583 1-Acetylaspidoalbidine skos:exactMatch mesh C549511 1-acetylaspidoalbidine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:5831 Hypaconitine skos:exactMatch mesh C058309 hypaconitine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:5832 hypaphorine skos:exactMatch mesh C001529 lenticin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:584020 methysergide skos:exactMatch mesh C034985 1-methyllysergic acid butanolamide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:58601 alpha-D-glucose 1-phosphate(2-) skos:exactMatch mesh C000709011 alpha-D-glucopyranose 1-phosphate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:5866 Illudin M skos:exactMatch mesh C052673 illudin M lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:5867 Illudin S skos:exactMatch mesh C008105 illudin S lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:5869 imazaquin skos:exactMatch mesh C057728 imazaquin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:5870 imidacloprid skos:exactMatch mesh C082359 imidacloprid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:5886 Imperialine skos:exactMatch mesh C047331 peiminine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:5887 Inabenfide skos:exactMatch mesh C054100 inabenfide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:5894 Indeloxazine skos:exactMatch mesh C020852 indeloxazine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:5896 Indicaxanthin skos:exactMatch mesh C469628 indicaxanthin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:58960 2-amino-4-chloro-6-methylpyrimidine skos:exactMatch mesh C020859 2-amino-4-chloro-6-methylpyrimidine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:58961 N-arachidonoylglycine skos:exactMatch mesh C465623 N-arachidonylglycine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:58966 4,8,12-trimethyltridecanoic acid skos:exactMatch mesh C009582 4,8,12-trimethyltridecanoic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:58972 (E)-4-oxonon-2-enal skos:exactMatch mesh C403894 4-oxo-2-nonenal lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:58984 5-\{[2-(iodoacetamido)ethyl]amino\}naphthalene-1-sulfonic acid skos:exactMatch mesh C006421 1,5-I-AEDANS lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:58999 2,4-dinitrobromobenzene skos:exactMatch mesh C011688 1-bromo-2,4-dinitrobenzene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:59000 2,4-dinitroiodobenzene skos:exactMatch mesh C023350 1-iodo-2,4-dinitrobenzene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:59008 piroctone olamine skos:exactMatch mesh C052599 piroctone olamine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:59012 butanal oxime skos:exactMatch mesh C004609 butyraldoxime lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:59022 N,N-dimethylcyclohexylamine skos:exactMatch mesh C038336 N,N-dimethylcyclohexylamine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:59030 oleandrin skos:exactMatch mesh C021065 oleandrin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:59050 dimethyl sulfate skos:exactMatch mesh C007482 dimethyl sulfate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:59054 N-methylisatoic anhydride skos:exactMatch mesh C077537 N-methylisatoic anhydride lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:59059 methyl isocyanate skos:exactMatch mesh C008461 methyl isocyanate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:59063 polymyxin B2 skos:exactMatch mesh C571510 polymyxin B2 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:59065 3,3,5-trimethylcyclohexanol skos:exactMatch mesh C037269 3,3,5-trimethylcyclohexanol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:59097 tetrachlorophthalic anhydride skos:exactMatch mesh C009409 tetrachlorophthalic anhydride lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:59112 3-heptadecylcatechol skos:exactMatch mesh C034998 3-heptadecylcatechol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:59113 3-heptadecylveratrole skos:exactMatch mesh D003699 Hepatitis D lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:59119 thiopropazate skos:exactMatch mesh C100194 thiopropazate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:59120 thioproperazine skos:exactMatch mesh C084825 thioproperazine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:59173 bivalirudin skos:exactMatch mesh C074619 bivalirudin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:59204 carbetocin skos:exactMatch mesh C020731 carbetocin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:59208 beta-D-Galp-(1->3)-beta-D-GalpNAc-(1->4)-[alpha-Neup5Ac-(2->3)]-beta-D-Galp-(1->4)-beta-D-Glcp skos:exactMatch mesh C037563 G(M1)-oligosaccharide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:59210 alpha-Neup5Ac-(2->8)-alpha-Neup5Ac-(2->3)-beta-D-Galp-(1->4)-beta-D-Glcp skos:exactMatch mesh C509062 disialyllactose lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:59211 cefotiam hexetil ester skos:exactMatch mesh C067049 cefotiam hexetil lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:59213 cefpiramide skos:exactMatch mesh C036666 cefpiramide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:5922 ingenol skos:exactMatch mesh C008125 ingenol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:59224 cetrorelix skos:exactMatch mesh C062876 cetrorelix lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:59228 beta-D-GalNAc-(1->4)-[alpha-Neu5Ac-(2->3)]-beta-D-Gal-(1->3)-beta-D-GalNAc-(1->4)-[alpha-Neu5Ac-(2->3)]-beta-D-Gal-(1->4)-beta-D-Glc-(1<->1')-Cer skos:exactMatch mesh C055253 IV(4)-galactosyl-N-acetylganglioside GD1a lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:59242 flucofuron skos:exactMatch mesh C102147 flucofuron lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:59269 dexbrompheniramine skos:exactMatch mesh C015121 dexbrompheniramine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:59276 D-quinovosamine skos:exactMatch mesh C009149 6-desoxy-D-glucosamine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:59297 benzylpenicilloyl polylysine skos:exactMatch mesh C509029 benzylpenicilloyl G polylysine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:5931 insulin (human) skos:exactMatch mesh C473734 Exubera lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:59332 2-aminopropiophenone skos:exactMatch mesh C023665 cathinone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:59343 cefditoren skos:exactMatch mesh C073460 cefditoren lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:59346 S-(2-boronoethyl)-L-cysteine skos:exactMatch mesh C425062 (2-boronoethyl)-cysteine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:59354 (3E)-4-(2-hydroxyphenyl)-2-oxobut-3-enoic acid skos:exactMatch mesh C050641 2-hydroxybenzalpyruvate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:59385 Ac-Asp-Glu-Val-Asp-H skos:exactMatch mesh C099158 acetyl-aspartyl-glutamyl-valyl-aspartal lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:5939 Interferon gamma-1b skos:exactMatch mesh C554125 interferon gamma-1b lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:59418 15beta-hydroxyprogesterone skos:exactMatch mesh C044666 15-hydroxyprogesterone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:5942 Inulicin skos:exactMatch mesh C031971 inulicin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:59426 N-\{6-[(7-nitrobenzo-2,1,3-oxadiazol-4-yl)amino]hexanoyl\}sphingosylphosphocholine skos:exactMatch mesh C041065 N-4-nitrobenzo-2-oxa-1,3-diazoleaminocaproyl sphingosylphosphorylcholine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:59431 alpha-D-galactosyl-(1->2)-D-galactosyl group skos:exactMatch mesh C077972 galactosyl(1-2)galactose lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:59477 chloroxine skos:exactMatch mesh C004357 chloroxine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:59481 alpha-D-Galp-(1->4)-alpha-D-Galp-(1->4)-beta-D-Glcp skos:exactMatch mesh C113460 globotriose lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:5949 Iodopsin skos:exactMatch mesh C034941 iodopsin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:59514 cinolazepam skos:exactMatch mesh C053781 cinolazepam lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:59524 lipoarabinomannan skos:exactMatch mesh C050016 lipoarabinomannan lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:59529 omocianine skos:exactMatch mesh C570392 omocianine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:59534 6-acetyl-1,2,3,4-tetrahydropyridine skos:exactMatch mesh C492489 6-acetyl-1,2,3,4-tetrahydropyridine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:5954 Ipolamiide skos:exactMatch mesh C469434 ipolamiide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:59563 beta-D-Gal-(1->4)-D-Man skos:exactMatch mesh C047464 epilactose lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:59564 thermospermine skos:exactMatch mesh C021097 thermospermine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:59582 clocortolone skos:exactMatch mesh C004686 clocortolone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:59583 clocortolone pivalate skos:exactMatch mesh C007088 clocortolone pivalate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:59589 clomocycline skos:exactMatch mesh C007090 clomocycline lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:59593 5-aminoisatin skos:exactMatch mesh C459159 5-aminoisatin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:59604 ammonium hexachloroplatinate skos:exactMatch mesh C018453 ammonium hexachloroplatinate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:59605 Disperse Blue 124 skos:exactMatch mesh C069319 Disperse Blue 124 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:59606 sodium hexachloroplatinate skos:exactMatch mesh C038762 disodium hexachloroplatinate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:59607 quaternium-15 skos:exactMatch mesh C018375 quaternium-15 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:59609 diclofenac beta-D-glucosiduronic acid skos:exactMatch mesh C487366 1-O-(2-((2',6'-dichlorophenyl)amino)phenylacetyl)glucopyranuronic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:59612 5-hydroxydiclofenac skos:exactMatch mesh C117715 5-hydroxydiclofenac lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:59613 4'-hydroxydiclofenac skos:exactMatch mesh C108036 4'-hydroxydiclofenac lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:59628 phosphopeptidomannan skos:exactMatch mesh C072108 phosphopeptidomannan lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:59652 prolinol skos:exactMatch mesh C010509 prolinol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:59660 [5-fluoro-1-(4-isopropylbenzylidene)-2-methylinden-3-yl]acetic acid skos:exactMatch mesh C000629487 K-80003 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:5967 Iridomyrmecin skos:exactMatch mesh C575112 iridomyrmecin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:59679 phospholipomannan skos:exactMatch mesh C400188 phospholipomannan lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:59687 halimane skos:exactMatch mesh C000610653 halimane lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:59692 cycrimine skos:exactMatch mesh C012262 cycrimine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:59714 Delta(1)-dihydrotestosterone skos:exactMatch mesh C520094 1-testosterone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:59717 squaraine skos:exactMatch mesh C480596 squaraine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:5972 Irisolidone skos:exactMatch mesh C423902 irisolidone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:59751 phosphoramidite skos:exactMatch mesh C434331 phosphoramidite lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:59752 bolaamphiphile skos:exactMatch mesh C543575 bolaamphiphile lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:59753 1,12-di-L-ascorbyl dodecanedioate skos:exactMatch mesh C521277 1,12-diascorbyl dodecanedioate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:5977 Isatidine skos:exactMatch mesh C013577 isatidine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:59771 8-chlorotheophylline skos:exactMatch mesh C030093 8-chlorotheophylline lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:59782 diphemanil methylsulfate skos:exactMatch mesh C028209 diphemanil methylsulfate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:59783 2-hydroxy-4-methylvaleric acid skos:exactMatch mesh C019419 alpha-hydroxyisocaproic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:59788 diphenylpyraline skos:exactMatch mesh C009871 diphenylpyraline lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:59839 glyoxamide skos:exactMatch mesh C032160 glyoxamide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:5986 Isoboldine skos:exactMatch mesh C464744 isoboldine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:59873 pandangolide 1 skos:exactMatch mesh C505299 pandangolide 1 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:59878 aloesone skos:exactMatch mesh C000657332 aloesone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:5988 Isobrucein B skos:exactMatch mesh C076339 isobrucein B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:5989 isobutrin skos:exactMatch mesh C049385 isobutrin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:59925 dihydro-beta-ergocryptine skos:exactMatch mesh C527876 beta-dihydroergocryptine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:59930 N-formylmaleamic acid skos:exactMatch mesh C534107 N-formylmaleamic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:5994 isochamaejasmin skos:exactMatch mesh C507044 isochamaejasmin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:59948 columbianetin skos:exactMatch mesh C046733 columbianetin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:5995 Isochlorogenic acid b skos:exactMatch mesh C478100 3,4-di-O-caffeoylquinic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:59951 pentosidine skos:exactMatch mesh C062187 pentosidine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:59952 4-azabenzimidazole skos:exactMatch mesh C064191 1H-imidazo(4,5-b)pyridine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:59962 argpyrimidine skos:exactMatch mesh C107313 argpyrimidine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:59963 methylglyoxal-lysine dimer skos:exactMatch mesh C402964 imidazolysine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:59981 2-acetylpyrrole skos:exactMatch mesh C051267 2-acetylpyrrole lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:59982 1-methyl-2-acetylpyrrole skos:exactMatch mesh C549479 2-acetyl-1-methylpyrrole lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:59983 2-acetylfuran skos:exactMatch mesh C039669 2-acetylfuran lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:59984 2,5-furandimethanol skos:exactMatch mesh C056220 2,5-bis(hydroxymethyl)furan lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:59990 N,N-dimethyl-4-nitrosoaniline skos:exactMatch mesh C008651 4-nitrosodimethylaniline lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:59995 1-(4-sulfophenyl)-3-carboxy-4-amino-5-oxopyrazole skos:exactMatch mesh C028397 SCAOP lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:59996 1,2-diacyl-sn-glycerol 3-diphosphate(3-) skos:exactMatch mesh C408642 diacylglycerol pyrophosphate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:6000 Isocorydine skos:exactMatch mesh C030168 isocorydine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:6002 Isodiospyrin skos:exactMatch mesh C409666 isodiospyrin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:60067 2-phenylethyl isocyanate skos:exactMatch mesh C020790 phenylethyl isocyanate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:60069 dipropyl phthalate skos:exactMatch mesh C106479 di-n-propylphthalate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:6009 isofenphos skos:exactMatch mesh C035019 isofenphos lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:60114 alpha,alpha-trehalose-2-sulfate skos:exactMatch mesh C041663 trehalose 2-sulfate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:60116 nipecotamide skos:exactMatch mesh C027785 nipecotic acid amide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:60125 N(6)-(1-carboxyethyl)-L-lysine skos:exactMatch mesh C054688 N(6)-(1-carboxyethyl)lysine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:60151 oxidised LDL skos:exactMatch mesh C099252 oxidized low density lipoprotein lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:60153 melamine cyanurate skos:exactMatch mesh C071913 melamine cyanurate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:60156 oxidised phospholipid skos:exactMatch mesh C017607 oxytocin, 1-penicillamyl-Leu(2)- lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:60171 beta-D-Gal-(1->3)-beta-D-GlcNAc-(1->3)-[beta-D-Gal-(1->4)-beta-D-GlcNAc-(1->6)]-beta-D-Gal-(1->4)-D-Glc skos:exactMatch mesh C046434 lacto-N-hexaose lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:6019 Isohelenol skos:exactMatch mesh C020916 isohelenol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:60191 rhamnogalacturonan II skos:exactMatch mesh C042492 rhamnogalacturonan II lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:60209 benzylpenicillenic acid skos:exactMatch mesh C016262 benzylpenicillenic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:60239 beta-D-Gal-(1->4)-beta-D-GlcNAc-(1->3)-beta-D-Gal-(1->4)-D-Glc skos:exactMatch mesh C013084 lacto-N-neotetraose lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:60246 alpha-D-GalNAc-(1->3)-D-Gal skos:exactMatch mesh C086195 N-acetylgalactosaminyl-alpha(1-3)galactose lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:60261 ferrioxamine E skos:exactMatch mesh C017508 ferrioxamine E lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:6028 Isometamidium chloride skos:exactMatch mesh C000702 isometamidium chloride lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:60288 D-glucuronic acid 3-sulfate skos:exactMatch mesh C073031 glucuronic acid 3-sulfate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:6029 Isomontanolide skos:exactMatch mesh C000605325 isomontanolide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:60295 2-octynoic acid skos:exactMatch mesh C060855 2-octynoic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:60297 testosterone 3-(O-carboxymethyl)oxime skos:exactMatch mesh C121237 testosterone 3-(O-carboxymethyl)oxime lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:6030 isoniazide skos:exactMatch mesh C586966 4-pyridinecarbohydrazide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:6031 isonicotinamide skos:exactMatch mesh C027681 isonicotinamide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:60315 L-homocysteine thiolactone skos:exactMatch mesh C007957 homocysteine thiolactone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:60341 purine N-oxides skos:exactMatch mesh C009111 purine N-oxide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:60343 1-methyl-7-nitroisatoic anhydride skos:exactMatch mesh C585663 1-methyl-7-nitroisatoic anhydride lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:60411 bacteriopheophytin skos:exactMatch mesh D011470 Prostatic Hyperplasia lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:6042 Isoplumericin skos:exactMatch mesh C516952 isoplumericin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:60427 dioleoyl phosphatidic acid skos:exactMatch mesh C037657 dioleoylphosphatidic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:6044 Isopropamide iodide skos:exactMatch mesh C084831 isopropamide iodide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:60480 3-methyl-1,2,4-triazolo[3,4-a]phthalazine skos:exactMatch mesh C008508 3-methyl-s-triazolo(3,4-a)phthalazine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:60481 N',N'',N'''-triacetylfusarinine C skos:exactMatch mesh C053324 N,N',N''-triacetylfusarinine C lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:60484 phosphatidylinositol dimannoside skos:exactMatch mesh C054977 phosphatidylinositol dimannoside lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:60485 phosphatidylinositol pentamannoside skos:exactMatch mesh C054978 phosphatidylinositol pentamannoside lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:60486 trehalose monomycolate skos:exactMatch mesh C021099 trehalose monomycolate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:6049 isoproturon skos:exactMatch mesh C028904 isoproturon lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:60528 lysergol skos:exactMatch mesh C061884 lysergol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:6053 Isorhapontin skos:exactMatch mesh C571114 isorhapontin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:6054 Isosafrole skos:exactMatch mesh C015959 isosafrole lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:60584 bicozamycin skos:exactMatch mesh C024504 bicozamycin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:60585 3,6-diamino-10-methylacridinium skos:exactMatch mesh C026620 3,6-diamino-10-methylacridinium lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:60607 metalaxyl-M skos:exactMatch mesh C473256 mefenoxam lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:60634 lefradafiban skos:exactMatch mesh C107918 lefradafiban lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:6064 Isotenulin skos:exactMatch mesh C000632375 isotenulin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:60647 2-hydroxypentanoic acid skos:exactMatch mesh C074189 2-hydroxypentanoic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:60689 cembrane skos:exactMatch mesh C037071 cembrane lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:60695 3-trifluoromethylbenzoic acid skos:exactMatch mesh C055606 3-trifluoromethylbenzoate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:6070 Isovelleral skos:exactMatch mesh C089286 isovelleral lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:6072 Isowillardiine skos:exactMatch mesh C002871 isowillardiine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:60722 dilinoleoyl phosphatidylglycerol skos:exactMatch mesh C064040 dilinoleoylphosphatidylglycerol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:60723 ditetradecanoyl phosphatidylglycerol skos:exactMatch mesh C002773 dimyristoylphosphatidylglycerol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:60729 4-nitrosoprocainamide skos:exactMatch mesh C056538 4-nitrosoprocainamide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:60731 2-thiouridine skos:exactMatch mesh C105273 2-thiouridine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:60761 floxuridine skos:exactMatch mesh C576827 5-fluoro-2'-deoxyuridine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:60762 5-chlorouracil skos:exactMatch mesh C010889 5-chlorouracil lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:60763 5-nitrouracil skos:exactMatch mesh C057449 5-nitrouracil lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:6077 Ivalin skos:exactMatch mesh C049171 ivalin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:60782 fluprostenol skos:exactMatch mesh C006326 fluprostenol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:60786 2-keto-xylose skos:exactMatch mesh C067906 threo-pentos-2-ulose lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:6079 Jacareubin skos:exactMatch mesh C000624232 jacareubin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:6080 jacobine skos:exactMatch mesh C013581 jacobine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:60805 rolicyclidine skos:exactMatch mesh C020925 1-(1-phenylcyclohexyl)pyrrolidine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:60815 lysobisphosphatidic acid skos:exactMatch mesh C012786 bis(monoacylglyceryl)phosphate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:6082 Japonine skos:exactMatch mesh C422366 japonine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:6083 Jasminine skos:exactMatch mesh C445384 jasminine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:60835 leucoanthocyanidin skos:exactMatch mesh C505184 3,4-dihydroxyflavan lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:6084 Jasmone skos:exactMatch mesh C086299 jasmone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:6085 Jatrophatrione skos:exactMatch mesh C012392 jatrophatrione lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:6086 Jatrophone skos:exactMatch mesh C006386 jatrophone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:60868 DOSPA trifluoroacetate skos:exactMatch mesh C098223 2,3-dioleyloxy-N-(2-(sperminecarboxamido)ethyl)-N,N-dimethyl-1-propanaminium trifluoroacetate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:6087 Jatrorrhizine skos:exactMatch mesh C055785 jatrorrhizine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:60872 leucodopachrome skos:exactMatch mesh C035156 leukodopachrome lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:60877 2',3'-cyclic CMP(1-) skos:exactMatch mesh C019310 cifostodine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:6088 Jervine skos:exactMatch mesh C010206 jervine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:60889 5,5'-dimethyl-BAPTA skos:exactMatch mesh C058180 5,5'-dimethyl-bis(2-aminophenoxy)ethane-N,N,N',N'-tetraacetate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:6089 Jesaconitine skos:exactMatch mesh C069418 jesaconitine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:60912 amoxicilloic acid skos:exactMatch mesh C000619194 amoxicilloic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:60916 corynomycolic acid skos:exactMatch mesh C013898 corynomycolic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:6092 Juliflorine skos:exactMatch mesh C048175 juliflorine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:60938 glucuronoxylan skos:exactMatch mesh C038910 glucuronoxylan lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:60941 prenylcysteine skos:exactMatch mesh C542732 prenylcysteine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:60943 5-HETE skos:exactMatch mesh C022022 5-hydroxy-6,8,11,14-eicosatetraenoic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:6095 Juvabione skos:exactMatch mesh C414814 juvabione lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:60956 colneleic acid skos:exactMatch mesh C002946 colneleic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:60959 colnelenic acid skos:exactMatch mesh C118818 colnelenic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:60963 colanic acid skos:exactMatch mesh C004275 colanic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:6097 Kadsurenone skos:exactMatch mesh C044540 kadsurenone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:60973 suberin skos:exactMatch mesh C065875 suberin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:60976 5,10-methylenetetrahydrofolate heptaglutamate skos:exactMatch mesh C037860 5,10-methylenetetrahydrofolate polyglutamate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:610092 beta-D-Gal-(1->4)-beta-D-Glc-OMe skos:exactMatch mesh C034207 methyl lactoside lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:61010 alpha-L-Fuc-(1->2)-[alpha-D-Gal-(1->3)]-beta-D-Gal skos:exactMatch mesh C406478 blood group B trisaccharide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:61012 alpha-D-GalpNAc-(1->3)-[alpha-L-Fucp-(1->2)]-beta-D-Galp skos:exactMatch mesh C101335 blood group A trisaccharide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:61014 PD123319 skos:exactMatch mesh C073402 PD 123319 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:61033 fondaparinux skos:exactMatch mesh C064764 PENTA lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:61042 1-hexadecanoyl-2-(9-oxononanoyl)-sn-glycero-3-phosphocholine skos:exactMatch mesh C097369 1-palmitoyl-2-(9-oxononanoyl)-sn-glycero-3-phosphocholine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:61058 alpha-methyl-L-dopa skos:exactMatch mesh C579484 (2S)-2-amino-3-(3,4-dihydroxyphenyl)-2-methylpropanoic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:61070 8-chloro-2'-deoxyguanosine skos:exactMatch mesh C506093 8-chloro-2'-deoxyguanosine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:61072 8-bromo-2'-deoxyguanosine skos:exactMatch mesh C439365 8-bromo-2'-deoxyguanosine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:61089 4-methyl-5-pentylbenzene-1,3-diol skos:exactMatch mesh C511448 4-methyl-5-pentylbenzene-1,3-diol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:61095 lofentanyl skos:exactMatch mesh C034846 lofentanil lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:61112 methyl thiocyanate skos:exactMatch mesh C047435 methyl thiocyanate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:6112 Karakin skos:exactMatch mesh C055017 karakin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:61122 3-geranyl-4-hydroxybenzoic acid skos:exactMatch mesh C000634405 3-geranyl-4-hydroxybenzoic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:61148 drimenol skos:exactMatch mesh C481244 drimenol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:6117 Kawain skos:exactMatch mesh C011889 kavain lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:61190 beta-D-GalpNAc-(1->4)-D-GlcpNAc skos:exactMatch mesh C093701 N-acetylgalactosaminyl-1-4-N-acetylglucosamine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:61197 phlobaphene skos:exactMatch mesh C091603 phlobaphene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:61198 N-acetyl-D-penicillamine skos:exactMatch mesh C010005 N-acetylpenicillamine lexical 0.9 https://github.com/indralab/panacea_indra/blob/master/panacea_indra/make_ctd_tests.py +chebi CHEBI:61203 anileridine skos:exactMatch mesh C100232 anileridine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:61222 benzylpenicilloic acid skos:exactMatch mesh C030990 benzylpenicilloic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:61232 N-acylphosphatidylethanolamine skos:exactMatch mesh C000609813 N-acylphosphatidylethanolamine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:61237 3-methylflavone-8-carboxylic acid skos:exactMatch mesh C011504 3-methylflavone-8-carboxylic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:6125 Ketobemidone skos:exactMatch mesh C012394 ketobemidone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:61250 brevetoxin A skos:exactMatch mesh C076262 Brevetoxin A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:61266 hemicellulose skos:exactMatch mesh C007916 hemicellulose lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:61278 scutellarin skos:exactMatch mesh C484876 scutellarin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:61279 51-hydroxy ciguatoxin CTX3C skos:exactMatch mesh C466859 51-hydroxyciguatoxin 3C lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:61290 chlorophyll f skos:exactMatch mesh C583352 chlorophyll f lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:61302 cerebronic acid skos:exactMatch mesh C004226 cerebronic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:61305 germacra-1(10),4,11(13)-trien-12-oic acid skos:exactMatch mesh C431525 germacra-1(10),4,11(13)-trien-12-oic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:61316 (3Z)-hex-3-en-1-yl acetate skos:exactMatch mesh C586687 (Z)-3-hexen-1-yl acetate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:61322 1,3-dimethylimidazolium skos:exactMatch mesh C516814 1,3-dimethylimidazolium lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:61333 1-butyl-3-methylimidazolium skos:exactMatch mesh C525963 1-butyl-3-methylimidazolium lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:61334 alpha-L-Fucp-(1->4)-[beta-D-Galp-(1->3)]-beta-D-GlcpNAc-(1->3)-beta-D-Galp-(1->4)-D-Glcp skos:exactMatch mesh C041762 lacto-N-fucopentaose II lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:61337 1-hexyl-3-methylimidazolium skos:exactMatch mesh C528767 1-hexyl-3-methylimidazolium lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:61341 3-methyl-1-octylimidazolium skos:exactMatch mesh C528768 1-octyl-3-methylimidazolium lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:61343 alpha-L-Fucp-(1->4)-[alpha-L-Fucp-(1->2)-beta-D-Galp-(1->3)]-beta-D-GlcpNAc-(1->3)-beta-D-Galp-(1->4)-D-Glcp skos:exactMatch mesh C018991 lacto-N-difucohexaose I lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:61345 chrysobactin skos:exactMatch mesh C058543 chrysobactin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:61346 achromobactin skos:exactMatch mesh C413577 achromobactin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:61349 1-dodecyl-3-methylimidazolium skos:exactMatch mesh C521425 1-dodecyl-3-methylimidazolium lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:61350 1-dodecyl-3-methylimidazolium tetrafluoroborate skos:exactMatch mesh C535268 1-dodecyl-3-methylimidazolium tetrafluoroborate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:61352 alpha-L-Fucp-(1->3)-[beta-D-Galp-(1->4)]-beta-D-GlcpNAc-(1->4)-beta-D-Galp-(1->3)-D-Glcp skos:exactMatch mesh C434666 lacto-N-fucopentaose III lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:61366 2-tetradecenoic acid skos:exactMatch mesh C042180 2-tetradecenoic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:6137 Kigelinone skos:exactMatch mesh C102766 kigelinone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:61384 sulfolipid skos:exactMatch mesh C015518 sulfolipids lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:6142 Kokusaginine skos:exactMatch mesh C550311 kokusaginine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:61425 psicosyllysine skos:exactMatch mesh C487221 psicoselysine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:6144 Kolanone skos:exactMatch mesh C034235 kolanone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:61496 alpha-D-FucNAc4-(1->4)-beta-D-ManNAcA-(1->4)-D-GlcNAc-undecaprenyl diphosphate(3-) skos:exactMatch mesh C032403 Lipid III lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:61537 UDP-3-O-[(3R)-3-hydroxytetradecanoyl]-N-acetyl-alpha-glucosamine skos:exactMatch mesh C052121 UDP-3-O-(3-hydroxymyristoyl)-N-acetylglucosamine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:61577 beta-D-Gal-(1->3)-[alpha-Neu5Ac-(2->6)]-D-GalNAc-(1->4)-beta-D-Gal-(1->4)-beta-D-Glc-(1<->1')-Cer skos:exactMatch mesh C502266 ganglioside GM1alpha lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:61581 beta-D-Gal-(1->3)-[beta-D-GlcNAc-(1->6)]-D-GalNAc skos:exactMatch mesh C073212 galactosyl beta(1-3)-N-acetylglucosaminyl-beta(1-6)-N-acetylgalactosamine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:61593 D-glycero-beta-D-manno-heptose 1-phosphate(2-) skos:exactMatch mesh C000632499 d-glycero-beta-d-manno-heptose 1-phosphate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:61595 p-nitrophenyl group skos:exactMatch mesh C024719 4-nitrophenyl lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:61645 L-seryl-AMP skos:exactMatch mesh C018661 L-seryl-AMP lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:61646 fluoroacetyl-CoA skos:exactMatch mesh C031696 fluoroacetyl-coenzyme A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:61653 pneumococcal C-polysaccharide skos:exactMatch mesh C027158 polysaccharide C-substance (Streptococcus) lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:61671 hydnocarpic acid skos:exactMatch mesh C004555 hydnocarpic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:61677 (+)-alpha-santalene skos:exactMatch mesh C577370 alpha-santalene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:61695 L-prolylglycine skos:exactMatch mesh C057749 prolylglycine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:61700 (+)-valencene skos:exactMatch mesh C506706 valencene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:61712 alpha-Neup5Ac-(2->3)-beta-D-Galp-(1->4)-beta-D-GlcpNAc-(1->3)-[beta-D-Glcp-(1->4)]-beta-D-Galp skos:exactMatch mesh C037678 streptococcal polysaccharide Ia group B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:61718 p-aminophenylphosphocholine skos:exactMatch mesh C088774 4-aminophenylphosphorylcholine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:61725 oct-2-enal skos:exactMatch mesh C057348 2-octenal lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:61726 non-2-enal skos:exactMatch mesh C013166 2-nonenal lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:61739 aureobasidin A skos:exactMatch mesh C071398 aureobasidin A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:61749 enfumafungin skos:exactMatch mesh C421868 enfumafungin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:61759 2-acetamido-4-amino-2,4,6-trideoxy-D-galactose skos:exactMatch mesh C550267 2-acetamido-4-amino-2,4,6-trideoxy-D-galactose lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:61793 alpha-Neu5Ac-(2->3)-beta-D-Gal-(1->3)-[alpha-L-Fuc-(1->4)]-D-GlcNAc skos:exactMatch mesh D018395 CA-19-9 Antigen lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:61814 beta-D-Gal-(1->3)-beta-D-GalNAc-(1->4)-[alpha-Neu5Ac-(2->3)]-beta-D-Gal-(1->4)-beta-D-Glc-(1<->1')-Sph skos:exactMatch mesh C029465 lysoGM1 ganglioside lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:61817 1-palmitoyl-2-azelaoyl-sn-glycero-3-phosphocholine skos:exactMatch mesh C528536 1-palmitoyl-2-azelaoyl-sn-glycero-3-phosphocholine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:61835 3beta-hydroxy-5alpha-cholestan-15-one skos:exactMatch mesh C015073 cholest-8(14)-en-3-ol-15-one lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:61842 2,3-dipalmitoyl-S-glycerylcysteine skos:exactMatch mesh C552442 S-(2,3-bis(palmitoyloxy)propyl)cysteine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:61958 butane-1-sulfonic acid skos:exactMatch mesh C036011 1-butanesulfonic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:6198 (S)-azetidine-2-carboxylic acid skos:exactMatch mesh C089382 azetidyl-2-carboxylic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:61987 2-methylisoborneol skos:exactMatch mesh C005536 2-methylisoborneol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:62006 maltopentaose skos:exactMatch mesh C019193 maltopentaose lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:62010 maltoheptaose skos:exactMatch mesh C031146 maltoheptaose lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:62023 3-(progesterone-7alpha-yl)thiopropionic acid skos:exactMatch mesh C081383 7-(carboxyethylthio)progesterone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:62034 N(2)-carboxymethylguanosine skos:exactMatch mesh C116804 N(2)-carboxymethylguanosine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:62087 1,2-dimyristoyl phosphatidyl-L-serine skos:exactMatch mesh C042859 dimyristoylphosphatidylserine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:62103 beta-D-Galp-(1->6)-D-Galp skos:exactMatch mesh C545374 Galbeta1-6Gal lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:6211 L-djenkolic acid skos:exactMatch mesh C004851 djenkolic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:62166 DCC-2036 skos:exactMatch mesh C560099 DCC-2036 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:62197 S-[(2E,6E)-farnesyl]-L-cysteine skos:exactMatch mesh C057785 S-farnesylcysteine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:62216 1-hydroxyphenazine skos:exactMatch mesh C050093 1-hydroxyphenazine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:62217 23,24-dihydrocucurbitacin B skos:exactMatch mesh C523469 dihydrocucurbitacin B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:62219 2-heptyl-4-quinolone skos:exactMatch mesh C528166 2-heptyl-4-quinolone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:62240 phenazine-1-carboxamide skos:exactMatch mesh C420923 phenazine-1-carboxamide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:62266 beta-D-Gal-(1->4)-beta-D-GlcNAc-(1->3)-[beta-D-Gal-(1->4)-beta-D-GlcNAc-(1->6)]-beta-D-Gal-(1->4)-beta-D-GlcNAc-(1->3)-beta-D-Gal-(1->4)-beta-D-Glc-(1<->1')-Cer skos:exactMatch mesh C050870 lactoisooctaosylceramide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:62286 2'-deoxyinosine 5'-diphosphate(3-) skos:exactMatch mesh C549898 deoxyinosine diphosphate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:62384 DDM-838 skos:exactMatch mesh C585579 dideoxymycobactin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:62414 biotinyl-5'-AMP(1-) skos:exactMatch mesh C082099 5'-AMP-biotin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:62416 dammarenediol-II skos:exactMatch mesh C106188 dammarenediol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:62417 arabidiol skos:exactMatch mesh C521218 arabidiol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:62440 soyasapogenol A skos:exactMatch mesh C116604 soyasapogenol A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:62452 camelliol C skos:exactMatch mesh C526093 camelliol C lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:62456 cucurbitadienol skos:exactMatch mesh C070307 cucurbita-5,24-dien-3-ol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:62458 sophoradiol skos:exactMatch mesh C417684 sophoradiol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:62460 helvolic acid skos:exactMatch mesh C011267 helvolic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:62480 spheroiden-2-one skos:exactMatch mesh C104880 spheroidenone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:62481 (3E)-3,4-didehydrorhodopin skos:exactMatch mesh C529420 3,4-didehydrorhodopin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:62513 gamma-eudesmol skos:exactMatch mesh C499668 gamma-eudesmol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:62519 (2S,3S,5R,10R,12S,14S,15R,16R)-2-amino-12,16-dimethylicosane-3,5,10,14,15-pentol skos:exactMatch mesh C110744 aminopentol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:6253 L-indospicine skos:exactMatch mesh C058318 indospicine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:62570 2-O-alpha-L-rhamnosyl-alpha-L-rhamnosyl-3-hydroxydecanoyl-3-hydroxydecanoic acid skos:exactMatch mesh C085735 2-O-rhamnopyranosyl-rhamnopyranosyl-3-hydroxyldecanoyl-3-hydroxydecanoate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:62665 SQ 26,992 skos:exactMatch mesh C047653 SQ 26992 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:62682 inositol phosphomannosylinositol phosphoceramide skos:exactMatch mesh C068389 mannose-bis(inositolphospho)ceramide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:62685 norfentanyl skos:exactMatch mesh C080127 norfentanyl lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:62726 nitrosoperoxycarbonate(1-) skos:exactMatch mesh C512272 nitrosoperoxycarbonate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:62743 4,4'-diaponeurosporene skos:exactMatch mesh C091058 4,4'-diaponeurosporene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:62755 alpha-bergamotene skos:exactMatch mesh C423904 alpha-bergamotene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:62757 alpha-curcumene skos:exactMatch mesh C086829 alpha-curcumene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:62784 coenzyme F390-A skos:exactMatch mesh C045709 coenzyme F 390 A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:62786 coenzyme F390-G skos:exactMatch mesh C045710 coenzyme F 390 G lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:62805 isooctane skos:exactMatch mesh C045798 2,2,4-trimethylpentane lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:62811 heme d cis-diol skos:exactMatch mesh C080647 heme d lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:62827 dibromobimane skos:exactMatch mesh C037094 dibromobimane lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:62837 1-oleoyl-sn-glycerol 3-phosphate skos:exactMatch mesh C032881 lysophosphatidic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:62842 beryllium oxide skos:exactMatch mesh C032777 beryllium oxide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:62843 beryllium dichloride skos:exactMatch mesh C032776 beryllium chloride lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:62844 estra-1,3,5(10)-trien-3-ol skos:exactMatch mesh C035702 17-desoxyestradiol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:62845 4-hydroxy-17beta-estradiol skos:exactMatch mesh C014036 4-hydroxyestradiol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:62850 6,7-didehydro-17beta-estradiol skos:exactMatch mesh C076347 estra-1,3,5(10),6-tetraene-3,17-diol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:62862 tetramyristoyl cardiolipin skos:exactMatch mesh C529176 tetramyristoyl cardiolipin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:62864 xylooligosaccharide skos:exactMatch mesh C570991 xylooligosaccharide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:62878 XAV939 skos:exactMatch mesh C544261 XAV939 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:62935 dehydroepiandrosterone 7-O-(carboxymethyl)oxime skos:exactMatch mesh C106648 dehydroepiandrosterone-7-O-(carboxymethyl)oxime lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:62947 ammonium acetate skos:exactMatch mesh C018824 ammonium acetate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:62962 aminopyralid skos:exactMatch mesh C573859 aminopyralid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:62964 magnesium acetate skos:exactMatch mesh C000656591 magnesium acetate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:63004 sodium bromide skos:exactMatch mesh C027938 sodium bromide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:63005 sodium nitrate skos:exactMatch mesh C031618 sodium nitrate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:63013 beta-D-GalpNAc-(1->3)-alpha-D-Galp-(1->4)-beta-D-Galp-(1->4)-D-Glcp skos:exactMatch mesh C035968 globotetraose lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:63016 nonyl phenoxypolyethoxylethanol skos:exactMatch mesh C010615 Nonidet P-40 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:63030 p-aminophenyl alpha-D-mannoside skos:exactMatch mesh C034056 4-aminophenylmannoside lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:63034 phosphatidylsulfocholine skos:exactMatch mesh C033841 phosphatidylsulfocholine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:63035 sulfocholine skos:exactMatch mesh C009352 sulfocholine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:63036 potassium dihydrogen phosphate skos:exactMatch mesh C013216 potassium phosphate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:63038 ammonium nitrate skos:exactMatch mesh C006568 ammonium nitrate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:63039 caesium chloride skos:exactMatch mesh C028019 cesium chloride lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:63040 ammonium iodide skos:exactMatch mesh C582942 ammonium iodide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:63042 lithium bromide skos:exactMatch mesh C040949 lithium bromide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:63045 lithium acetate skos:exactMatch mesh C488804 lithium acetate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:63051 diammonium hydrogen phosphate skos:exactMatch mesh C024788 ammonium phosphate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:63053 purmorphamine skos:exactMatch mesh C470893 purmorphamine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:63057 EHNA skos:exactMatch mesh C010192 9-(2-hydroxy-3-nonyl)adenine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:63061 UDP-rhamnose skos:exactMatch mesh C022183 UDP-rhamnose lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:63067 zeaxanthin bis(beta-D-glucoside) skos:exactMatch mesh C549597 zeaxanthin diglucoside lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:63076 diammonium citrate skos:exactMatch mesh C426729 diammonium hydrogen citrate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:63139 D-galactal skos:exactMatch mesh C002038 galactal lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:63208 2-hydroxy-dATP skos:exactMatch mesh C095141 2-hydroxydeoxyadenosine triphosphate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:63214 cefodizime skos:exactMatch mesh C033356 cefodizime lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:63215 aminocyclopyrachlor-methyl skos:exactMatch mesh C535187 aminocyclopyrachlormethyl lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:63220 8-oxo-dGTP skos:exactMatch mesh C078206 8-oxodeoxyguanosine triphosphate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:63240 pacific blue succinimidyl ester skos:exactMatch mesh C510619 Pacific Blue succinimidyl ester lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:63276 mycinamicin skos:exactMatch mesh C026686 mycinamicins lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:63415 glycodiaosylceramide skos:exactMatch mesh C013869 ceramide dihexoside lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:63446 (-)-cubebol skos:exactMatch mesh C442120 cubebol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:63447 delta-guaiene skos:exactMatch mesh C512113 alpha-bulnesene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:63449 SU5402 skos:exactMatch mesh C105686 SU 5402 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:63450 masitinib skos:exactMatch mesh C526575 masitinib lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:63459 shionone skos:exactMatch mesh C055671 shionone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:63460 parkeol skos:exactMatch mesh C093882 parkeol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:63461 achilleol B skos:exactMatch mesh C530507 achilleol B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:63462 glutinol skos:exactMatch mesh C506419 glutinol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:63463 baccharis oxide skos:exactMatch mesh C533357 baccharis oxide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:63465 marneral skos:exactMatch mesh C531276 marneral lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:6347 Lachnophyllum ester skos:exactMatch mesh C000604534 lachnophyllum ester lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:6348 Lacinilene C 7-methyl ether skos:exactMatch mesh C029267 lacinilene C 7-methyl ether lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:63508 oleandrigenin skos:exactMatch mesh C008701 oleandrigenin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:63514 erysimoside skos:exactMatch mesh C013520 erysimoside lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:63552 1-phenyl-1,2-propanedione skos:exactMatch mesh C100349 1-phenyl-1,2-propanedione lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:63557 Disperse Red 1 skos:exactMatch mesh C069318 Disperse Red 1 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:63558 DIBOA skos:exactMatch mesh C104846 2,4-dihydroxy-1,4-benzoxazin-3-one lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:63559 HBOA skos:exactMatch mesh C436752 2-hydroxy-1,4-benzoxazin-3-one lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:63560 tixocortol skos:exactMatch mesh C040971 tixocortol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:63564 tixocortol pivalate skos:exactMatch mesh C019112 tixocortol pivalate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:63579 18-HETE skos:exactMatch mesh C061444 18-hydroxy-5,8,11,14-eicosatetraenoic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:6358 lactucin skos:exactMatch mesh C516715 lactucin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:63587 eribulin skos:exactMatch mesh C490954 eribulin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:636 1-isomangostin skos:exactMatch mesh C554678 1-isomangostin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:63605 ixabepilone skos:exactMatch mesh C430592 ixabepilone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:63610 misoprostol skos:exactMatch mesh C078133 Arthrotec lexical 0.9 https://github.com/indralab/panacea_indra/blob/master/panacea_indra/make_ctd_tests.py +chebi CHEBI:63626 tesamorelin skos:exactMatch mesh C479538 tesamorelin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:6364 laminarin skos:exactMatch mesh C008247 laminaran lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:63664 taxusin skos:exactMatch mesh C107336 taxusin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:63673 chemokine receptor 5 antagonist skos:exactMatch mesh D065100 CCR5 Receptor Antagonists lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:6370 Lamtidine skos:exactMatch mesh C038304 lamtidine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:63702 avermitilol skos:exactMatch mesh C552382 avermitilol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:63710 7-epi-sesquithujene skos:exactMatch mesh C561437 7-epi-sesquithujene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:63717 tenofovir disoproxil skos:exactMatch mesh C111774 bis(isopropyloxymethylcarbonyl) 9-(2-phosphonomethoxypropyl)adenine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:63729 7-methylguanosine 5'-diphosphate skos:exactMatch mesh C111106 7-methylguanosine 5'-diphosphate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:63741 9,17-dioxo-1,2,3,4,10,19-hexanorandrostan-5-oic acid skos:exactMatch mesh C514444 9,17-dioxo-1,2,3,4,10,19-hexanorandrostan-5-oic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:6376 lapachenole skos:exactMatch mesh C498939 lapachenole lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:6377 Lapachol skos:exactMatch mesh C008252 lapachol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:63770 necrosulfonamide skos:exactMatch mesh C570695 N-(4-(N-(3-methoxypyrazin-2-yl)sulfamoyl)phenyl)-3-(5-nitrothiophene-2-yl)acrylamide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:6378 Lappaconitine skos:exactMatch mesh C022150 lappaconitine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:63795 all-trans-4-hydroxyretinoic acid skos:exactMatch mesh C019429 4-hydroxyretinoic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:63798 3-hydroxy-4-methoxybenzoic acid skos:exactMatch mesh C045317 isovanillic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:63800 4-hydroxydebrisoquin skos:exactMatch mesh C012359 4-hydroxydebrisoquin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:6381 Laserpitin skos:exactMatch mesh C508627 laserpitin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:63816 4-acetamidosalicylic acid skos:exactMatch mesh C055814 4-acetamidosalicylic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:6382 Lasiocarpine skos:exactMatch mesh C005136 lasiocarpine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:63825 tamoxifen N-oxide skos:exactMatch mesh C035830 tamoxifen N-oxide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:63837 pregn-5-ene-3,20-dione skos:exactMatch mesh C003669 pregn-5-ene-3,20-dione lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:63843 17alpha-hydroxypregn-5-ene-3,20-dione skos:exactMatch mesh C003593 17-hydroxypregnenedione lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:63859 6-hydroxypaclitaxel skos:exactMatch mesh C086219 6-hydroxytaxol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:63861 2-methylthioethanol skos:exactMatch mesh C003859 methylthioethanol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:6388 Latifoline skos:exactMatch mesh C459703 latifoline lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:63886 Reactive red 120 skos:exactMatch mesh C042516 reactive red 120 dye lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:6389 Laudanosine skos:exactMatch mesh C001522 laudanosine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:63892 zerumbone skos:exactMatch mesh C403304 zerumbone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:63918 artesunate skos:exactMatch mesh C111789 artesunic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:63919 3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,10-heptadecafluoro-1-decanol skos:exactMatch mesh C033729 1H,1H,2H,2H-perfluorodecanol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:63924 riddelliine skos:exactMatch mesh C013672 riddelliine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:63925 latanoprost free acid skos:exactMatch mesh C109345 PhXa 85 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:63934 bathocuproine disulfonic acid skos:exactMatch mesh C028559 bathocuproine sulfonate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:63937 cyclazosin skos:exactMatch mesh C080462 cyclazosin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:63941 22,23-dihydroavermectin B1a skos:exactMatch mesh C052102 22,23-dihydroavermectin B(1)a lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:63949 2,3-bis(4-hydroxyphenyl)propionitrile skos:exactMatch mesh C486182 2,3-bis(4-hydroxyphenyl)-propionitrile lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:63952 arsenic trichloride skos:exactMatch mesh C050510 arsenic trichloride lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:63961 glycyl-glycyl-glycine skos:exactMatch mesh C035647 glycyl-glycyl-glycine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:63965 7-chlorokynurenic acid skos:exactMatch mesh C057013 7-chlorokynurenic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:63966 (5Z,8Z,11Z)-14,15-dihydroxyicosatrienoic acid skos:exactMatch mesh C107016 14,15-dihydroxyeicosatrienoic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:63983 eoxin A4 skos:exactMatch mesh C056112 14,15-leukotriene A4 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:63988 N-allyl-1-phenyl-2,3,4,5-tetrahydro-3-benzazepine-7,8-diol skos:exactMatch mesh C067114 SK&F 77434 lexical 0.9 https://github.com/indralab/panacea_indra/blob/master/panacea_indra/make_ctd_tests.py +chebi CHEBI:63998 19-HETE skos:exactMatch mesh C055986 19-hydroxy-5,8,11,14-eicosatetraenoic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:64001 N-methyl-6-chloro-1-(3-methylphenyl)-2,3,4,5-tetrahydro-3-benzazepine-7,8-diol skos:exactMatch mesh C080703 SK&F 83959 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:6401 Ledol skos:exactMatch mesh C421806 ledol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:64017 (5Z,8Z,11Z,13E)-15-HETE skos:exactMatch mesh C025984 15-hydroxy-5,8,11,13-eicosatetraenoic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:6403 Leiocarposide skos:exactMatch mesh C045024 leiocarposide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:64032 linoleoyl ethanolamide skos:exactMatch mesh C109347 linoleoyl ethanolamide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:6404 Leiokinine A skos:exactMatch mesh C068516 leiokinine A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:64044 isoquinoline-1,5-diol skos:exactMatch mesh C095653 1,5-dihydroxyisoquinoline lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:64050 N-desmethylclozapine skos:exactMatch mesh C058272 norclozapine lexical 0.9 https://github.com/indralab/panacea_indra/blob/master/panacea_indra/make_ctd_tests.py +chebi CHEBI:64060 3-[4-(3-chlorophenyl)piperazin-1-yl]-1,1-diphenylpropan-2-ol skos:exactMatch mesh C108532 BRL 15572 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:6408 lenthionine skos:exactMatch mesh C492597 lenthionine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:64081 RS 39604 hydrochloride skos:exactMatch mesh C107556 RS 67506 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:64083 RS 39604 skos:exactMatch mesh C475107 RS 39604 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:6409 Lentiginosine skos:exactMatch mesh C063984 lentiginosine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:64098 N-(2,3-dihydro-1,4-benzodioxin-2-ylmethyl)-2-(2,6-dimethoxyphenoxy)ethanamine skos:exactMatch mesh C010654 (2-(2',6'-dimethoxy)phenoxyethylamino)methylbenzo-1,4-dioxane lexical 0.9 https://github.com/indralab/panacea_indra/blob/master/panacea_indra/make_ctd_tests.py +chebi CHEBI:64099 4-fluoro-N-\{2-[4-(7-methoxynaphthalen-1-yl)piperazin-1-yl]ethyl\}benzamide hydrochloride skos:exactMatch mesh C092824 1-((4-fluorobenzoylamino)ethyl)-4-(7-methoxy-1-naphthyl)piperazine hydrochloride lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:64117 (1S,2R)-5-methoxy-1-methyl-2-(propylamino)tetralin skos:exactMatch mesh C051171 5-methoxy-1-methyl-2-(n-propylamino)tetralin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:64119 (S)-(-)-sulpiride skos:exactMatch mesh C078143 levosulpiride lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:6412 leptosidin skos:exactMatch mesh C000591062 6,3',4'-trihydroxy-7-methoxyaurone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:64131 NAN 190 skos:exactMatch mesh C058895 1-(2-methoxyphenyl)-4-(4-(2-phthalimido)butyl)piperazine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:64143 depudecin skos:exactMatch mesh C072251 depudecin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:64149 5-nonyloxytryptamine skos:exactMatch mesh C089008 5-(nonyloxy)tryptamine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:64159 2-methyl-6-(phenylethynyl)pyridine skos:exactMatch mesh C121465 6-methyl-2-(phenylethynyl)pyridine lexical 0.9 https://github.com/indralab/panacea_indra/blob/master/panacea_indra/make_ctd_tests.py +chebi CHEBI:64161 asperthecin skos:exactMatch mesh C000592518 asperthecin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:64163 diquat skos:exactMatch mesh D004178 Diquat lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:64164 N-methylquipazine skos:exactMatch mesh C109625 N-methylquipazine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:64174 carbovir triphosphate skos:exactMatch mesh C066928 carbovir triphosphate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:64183 ubiquinol-10 skos:exactMatch mesh C026663 ubiquinol-10 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:64200 carmoxirole skos:exactMatch mesh C071485 carmoxirole lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:64205 calcium nitrate skos:exactMatch mesh C059948 calcium nitrate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:64206 bromochloroacetic acid skos:exactMatch mesh C099813 bromochloroacetic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:64207 spiramide skos:exactMatch mesh C003338 spiramide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:64210 4-\{[(5,5,8,8-tetramethyl-5,6,7,8-tetrahydronaphthalen-2-yl)carbonyl]amino\}benzoic acid skos:exactMatch mesh C068073 Am 580 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:64227 ciglitazone skos:exactMatch mesh C039671 ciglitazone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:64235 (6E)-8-hydroxygeraniol skos:exactMatch mesh C471578 8-hydroxygeraniol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:64245 tunicamycin A1 skos:exactMatch mesh C039973 tunicamycin A1 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:64250 tunicamycin B2 skos:exactMatch mesh C046159 tunicamycin B2 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:64255 tunicamycin B3 skos:exactMatch mesh C037085 tunicamycin B3 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:6426 leupeptin skos:exactMatch mesh C032854 leupeptin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:6430 Leurosine skos:exactMatch mesh C002067 leurosine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:64305 2-aminopimelic acid skos:exactMatch mesh C009845 alpha-aminopimelic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:64313 4-demethylwyosine skos:exactMatch mesh C569459 4-demethylwyosine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:64330 wybutoxosine skos:exactMatch mesh C013642 peroxy Y nucleoside lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:64336 5-carboxymethylaminomethyl-2-thiouridine skos:exactMatch mesh C030546 5-(carboxymethylaminomethyl)-2-thiouridine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:64342 3-hydroxypicolinic acid skos:exactMatch mesh C049246 3-hydroxypicolinic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:64348 N-methylvaline skos:exactMatch mesh C469556 N-methylvaline lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:6435 Levanbiose skos:exactMatch mesh C077708 levanbiose lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:64350 N-methylisoleucine skos:exactMatch mesh C000589818 3-methyl-2-(methylamino)pentanoic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:64373 emericellamide A skos:exactMatch mesh C519738 emericellamide A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:64374 emericellamide B skos:exactMatch mesh C519739 emericellamide B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:64397 asperfuranone skos:exactMatch mesh C552682 asperfuranone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:64410 gerfelin skos:exactMatch mesh C477902 4-carboxy-5,5'-dihydroxy-3,3'-dimethyl-diphenylether lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:64418 austinol skos:exactMatch mesh C573071 austinol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:64450 endocrocin skos:exactMatch mesh C023523 endocrocin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:64454 (+)-kotanin skos:exactMatch mesh C521327 kotanin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:64455 benzenesulfonic acid skos:exactMatch mesh C032365 benzenesulfonic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:6446 levothyroxine sodium anhydrous skos:exactMatch mesh D016422 Letter lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:64465 demethylkotanin skos:exactMatch mesh C497294 demethylkotanin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:64466 benzenediazonium skos:exactMatch mesh C035176 benzenediazonium lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:64469 4-nitrobenzenediazonium skos:exactMatch mesh C013619 4-nitrophenyldiazonium lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:6449 Liatrin skos:exactMatch mesh C001542 liatrin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:64492 ferricrocin skos:exactMatch mesh C021678 ferricrocin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:64493 sarcinapterin skos:exactMatch mesh C089529 sarcinapterin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:64494 tatiopterin skos:exactMatch mesh C062888 tatiopterin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:64511 thianthrene skos:exactMatch mesh C009449 thianthrene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:64522 averantin skos:exactMatch mesh C024820 averantin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:6453 Lichesterol skos:exactMatch mesh C014640 lichesterol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:64531 fumitremorgin B skos:exactMatch mesh C039286 fumitremorgin B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:64534 terrequinone A skos:exactMatch mesh C496935 terrequinone A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:64546 fumiquinazoline A skos:exactMatch mesh C419468 fumiquinazoline A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:64550 fumiquinazoline F skos:exactMatch mesh C504706 fumiquinazoline F lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:64551 fumiquinazoline C skos:exactMatch mesh C454622 fumiquinazoline C lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:6457 lignin skos:exactMatch mesh D008031 Lignin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:64602 dermatan sulfate proteoglycan skos:exactMatch mesh C032649 dermatan sulfate proteoglycan lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:64626 teichuronic acid skos:exactMatch mesh C010788 teichuronic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:64627 microcin skos:exactMatch mesh C020411 microcin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:64635 5-nitroimidazole skos:exactMatch mesh C052587 4-nitroimidazole lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:64645 amyloid-beta skos:exactMatch mesh D016229 Amyloid beta-Peptides lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:64648 enniatin skos:exactMatch mesh C100264 enniatins lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:6469 linalyl acetate skos:exactMatch mesh C074463 linalyl acetate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:64695 pyripyropene A skos:exactMatch mesh C082792 pyripyropene A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:64736 magnesium nitrate skos:exactMatch mesh C018330 magnesium nitrate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:6474 Linderane skos:exactMatch mesh C000609537 linderane lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:64800 sativene skos:exactMatch mesh C430146 sativene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:64803 2-(2-hydroxyphenyl)ethanol skos:exactMatch mesh C043584 2-hydroxyphenylethanol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:64811 2,4-dimethylbenzoic acid skos:exactMatch mesh C028523 2,4-dimethylbenzoic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:64818 3,4-dimethylbenzoic acid skos:exactMatch mesh C102831 3,4-dimethylbenzoic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:64821 3,5-dimethylbenzoic acid skos:exactMatch mesh C094650 3,5-dimethylbenzoic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:64823 2,3-dimethylbenzoic acid skos:exactMatch mesh C086734 2,3-dimethylbenzoic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:6483 Linustatin skos:exactMatch mesh C023022 linustatin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:64830 2,4,6-trimethylbenzoic acid skos:exactMatch mesh C019471 mesitylenecarboxylic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:64833 6-kestotriose skos:exactMatch mesh C073432 6-kestose lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:64849 glycyl-AMP skos:exactMatch mesh C013005 glycyladenylate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:6485 Liotrix skos:exactMatch mesh C018539 thyroxine, triiodothyronine drug combination lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:64859 N(alpha)-acetyl-L-lysine methyl ester skos:exactMatch mesh C069694 alpha-acetyllysine methyl ester lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:6489 Lipiferolide skos:exactMatch mesh C520146 lipiferolide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:64901 mygalin skos:exactMatch mesh C518064 N1,N8-bis(2,5-dihydroxybenzoyl)spermidine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:64931 lysophosphatidyl-1D-myo-inositol skos:exactMatch mesh C025449 lysophosphatidylinositol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:64944 ascorbigen skos:exactMatch mesh C053152 ascorbigen lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:64977 cichorine skos:exactMatch mesh C504968 cichorine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:6498 lipoxin A4 skos:exactMatch mesh C040527 lipoxin A4 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:64983 alternariol skos:exactMatch mesh C005197 alternariol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65011 nicotine blue skos:exactMatch mesh C009867 diazodiphenoquinone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65035 festuclavine skos:exactMatch mesh C033546 costaclavin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65037 miltiradiene skos:exactMatch mesh C573600 miltiradiene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65048 cyclo(tyrosyl-tyrosyl) skos:exactMatch mesh C086820 cyclo(tyrosyl-tyrosyl) lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:6505 Lithospermic acid skos:exactMatch mesh C046833 lithospermic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:6506 Littorine skos:exactMatch mesh C063158 littorine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:6507 Lobelanidine skos:exactMatch mesh C540737 lobelanidine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65088 docosanoyl-CoA skos:exactMatch mesh C018002 behenyl-coenzyme A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65101 2-hydroxyhexadecanoic acid skos:exactMatch mesh C024707 2-hydroxyhexadecanoic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65119 2-hydroxy-ATP skos:exactMatch mesh C522082 2-hydroxyadenosine-5'-triphosphate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65138 E-3810 skos:exactMatch mesh C000595232 E-3810 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65173 iloperidone skos:exactMatch mesh C081732 iloperidone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65234 amidoxime skos:exactMatch mesh C000608634 amidoxime lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65242 sodium chlorate skos:exactMatch mesh C032706 sodium chlorate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65243 1,2-dioctanoyl-sn-glycero-3-phospho-1D-myo-inositol skos:exactMatch mesh C079262 1,2-dioctanoyl-sn-glycero-3-phosphoinositol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65244 zeinoxanthin skos:exactMatch mesh C503770 zeinoxanthin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65246 1,2-dioctanoyl-sn-glycero-3-phosphoserine skos:exactMatch mesh C529395 1,2-dioctanoyl-sn-glycero-3-phosphoserine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65247 1,2-dilauroyl-sn-glycero-3-phosphoserine skos:exactMatch mesh C055534 dilauroylphosphatidylserine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65310 triciribine skos:exactMatch mesh C023764 triciribine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65324 alvespimycin skos:exactMatch mesh C448659 17-(dimethylaminoethylamino)-17-demethoxygeldanamycin lexical 0.9 https://github.com/indralab/panacea_indra/blob/master/panacea_indra/make_ctd_tests.py +chebi CHEBI:65345 PX-866 skos:exactMatch mesh C496788 PX-866 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65349 mirabegron skos:exactMatch mesh C520025 mirabegron lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65354 abacopterin A skos:exactMatch mesh C570980 abacopterin A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:6536 Lophophorine skos:exactMatch mesh C008296 lophophorine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65363 8-acetoxy-4,10-dihydroxy-2,11(13)-guaiadiene-12,6-olide skos:exactMatch mesh C539598 8-acetoxy-4,10-dihydroxy-2,11(13)-guaiadiene-12,6-olide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65365 1-O-acetyl-4R,6S-britannilactone skos:exactMatch mesh C492707 1-O-acetyl-4R,6S-britannilactone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65371 adxanthromycin A skos:exactMatch mesh C406042 adxanthromycin A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65372 adxanthromycin B skos:exactMatch mesh C406043 adxanthromycin B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65373 ageladine A skos:exactMatch mesh C482289 Ageladine A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65375 agrochelin skos:exactMatch mesh C403866 agrochelin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65376 ainsliadimer A skos:exactMatch mesh C530462 ainsliadimer A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65377 aiphanol skos:exactMatch mesh C432308 aiphanol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65379 albizoside A skos:exactMatch mesh C540532 albizoside A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65380 albizoside B skos:exactMatch mesh C540533 albizoside B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65381 albizoside C skos:exactMatch mesh C540534 albizoside C lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65382 alisiaquinone A skos:exactMatch mesh C531420 alisiaquinone A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65383 alisiaquinone B skos:exactMatch mesh C531421 alisiaquinone B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65385 alisiaquinol skos:exactMatch mesh C531419 alisiaquinol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65387 allanxanthone C skos:exactMatch mesh C508597 allanxanthone C lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65390 alvaradoin E skos:exactMatch mesh C500945 alvaradoin E lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65401 ambiguine I skos:exactMatch mesh C518548 ambiguine I isonitrile lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65402 amburoside A skos:exactMatch mesh C530765 amburoside A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65406 ancistrotanzanine A skos:exactMatch mesh C481558 ancistrotanzanine A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65408 andrographolide skos:exactMatch mesh C030419 andrographolide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65409 annomontine skos:exactMatch mesh C508838 annomontine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65410 anolignan A skos:exactMatch mesh C090325 anolignan A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65412 ansaetherone skos:exactMatch mesh C533661 ansaetherone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65413 antimycin A9 skos:exactMatch mesh C499974 antimycin A9 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65416 aplysiallene skos:exactMatch mesh C432927 aplysiallene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65418 aplysinoplide A skos:exactMatch mesh C531294 aplysinoplide A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65419 aplysinoplide B skos:exactMatch mesh C531295 aplysinoplide B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:6542 Lotaustralin skos:exactMatch mesh C001556 lotaustralin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65420 aplysinoplide C skos:exactMatch mesh C531296 aplysinoplide C lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65421 apratoxin D skos:exactMatch mesh C531298 apratoxin D lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65422 apratoxin E skos:exactMatch mesh C531292 apratoxin E lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65423 ardimerin digallate skos:exactMatch mesh C521075 ardimerin digallate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65430 ardisiphenol A skos:exactMatch mesh C454672 ardisiphenol A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65431 ardisiphenol B skos:exactMatch mesh C454673 ardisiphenol B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65432 ardisiphenol C skos:exactMatch mesh C454674 ardisiphenol C lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65433 arenamide A skos:exactMatch mesh C548747 arenamide A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65434 arenamide B skos:exactMatch mesh C548748 arenamide B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65435 arisugacin A skos:exactMatch mesh C432303 arisugacin A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65439 artocarpin skos:exactMatch mesh C090683 artocarpin lectin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65441 artoindonesianin E1 skos:exactMatch mesh C540203 artoindonesianin E1 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65442 artoindonesianin P skos:exactMatch mesh C473412 artoindonesianin P lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65443 AS-186a skos:exactMatch mesh C077329 vermixocin A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65445 AS-186c skos:exactMatch mesh C086149 AS 186c lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65447 AS-186d skos:exactMatch mesh C086150 AS 186d lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65448 ascidiathiazone A skos:exactMatch mesh C521537 ascidiathiazone A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65449 ascidiathiazone B skos:exactMatch mesh C521538 ascidiathiazone B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65450 aspergillide A skos:exactMatch mesh C526623 aspergillide A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65451 aspergillide B skos:exactMatch mesh C526625 aspergillide B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65452 aspergillide C skos:exactMatch mesh C526624 aspergillide C lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65453 asphodelin A skos:exactMatch mesh C517721 asphodelin A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65455 asprellic acid A skos:exactMatch mesh C086360 asprellic acid A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65457 astragaloside IV skos:exactMatch mesh C052064 astragaloside A lexical 0.9 https://github.com/indralab/panacea_indra/blob/master/panacea_indra/make_ctd_tests.py +chebi CHEBI:65458 aureoquinone skos:exactMatch mesh C420728 aureoquinone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65459 australifungin skos:exactMatch mesh C094344 australifungin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65460 avicularin skos:exactMatch mesh C041388 avicularin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65461 azoxybacilin skos:exactMatch mesh C089089 azoxybacilin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65462 ballotenic acid skos:exactMatch mesh C493025 ballotenic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65463 ballodiolic acid skos:exactMatch mesh C493026 ballodiolic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65464 balsaminolate skos:exactMatch mesh C468312 sodium 2-hydroxide-3-(2-hydroxyethyl)naphthalene-1,4-dione lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65466 batzelladine A skos:exactMatch mesh C438977 batzelladine A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65467 batzelladine B skos:exactMatch mesh C492936 batzelladine B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65473 BE-23372M skos:exactMatch mesh C087122 BE 23372M lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65474 BE-24566B skos:exactMatch mesh C097807 BE 24566B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65475 BE-54238A skos:exactMatch mesh C406044 BE 54238A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65476 BE-54238B skos:exactMatch mesh C406045 BE 54238B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65483 benzastatin C skos:exactMatch mesh C098356 benzastatin C lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65484 bevirimat skos:exactMatch mesh C479935 bevirimat lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65485 dihydrobetulinic acid skos:exactMatch mesh C098641 dihydrobetulinic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65487 platanic acid skos:exactMatch mesh C087107 platanic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65490 BF 6 skos:exactMatch mesh C045333 BF 6 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65494 bidenlignaside A skos:exactMatch mesh C513995 bidenlignaside A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65495 bidenlignaside B skos:exactMatch mesh C513996 bidenlignaside B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65496 6,6'-bieckol skos:exactMatch mesh C062360 6,6'-bieckol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65497 bielschowskysin skos:exactMatch mesh C494537 bielschowskysin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65500 bis-(4-hydroxybenzyl)sulfide skos:exactMatch mesh C477166 bis(4-hydroxybenzyl)sulfide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65503 1,7-bis-(4-hydroxyphenyl)-2,4,6-heptatrienone skos:exactMatch mesh C499278 1,7-bis(4-hydroxyphenyl)-2,4,6-heptatrienone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65504 bistratamide E skos:exactMatch mesh C491017 bistratamide E lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65507 bistratamide H skos:exactMatch mesh C521749 bistratamide H lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65509 bistratamide J skos:exactMatch mesh C491018 bistratamide J lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65510 Biyouyanagin A skos:exactMatch mesh C509583 biyouyanagin A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65511 blancoxanthone skos:exactMatch mesh C500869 blancoxanthone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65512 brartemicin skos:exactMatch mesh C550819 brartemicin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65513 brasilicardin A skos:exactMatch mesh C118259 brasilicardin A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65514 brasilinolide A skos:exactMatch mesh C111141 brasilinolide A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65515 brasilinolide B skos:exactMatch mesh C406050 brasilinolide B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65516 brasiliquinone A skos:exactMatch mesh C104992 brasiliquinone A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65517 brasiliquinone B skos:exactMatch mesh C104993 brasiliquinone B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65518 brasiliquinone C skos:exactMatch mesh C104994 brasiliquinone C lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65521 brasixanthone D skos:exactMatch mesh C452834 brasixanthone D lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65524 5-bromo-8-methoxy-1-methyl-beta-carboline skos:exactMatch mesh C540709 5-bromo-8-methoxy-1-methyl-beta-carboline lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65525 bromophycolide A skos:exactMatch mesh C512010 bromophycolide A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65526 bruceanol D skos:exactMatch mesh C086361 bruceanol D lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65527 bruceanol E skos:exactMatch mesh C086362 bruceanol E lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65528 bruceanol F skos:exactMatch mesh C086363 bruceanol F lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65532 3,15-di-O-acetylbruceolide skos:exactMatch mesh C423227 3,15-di-O-acetylbruceolide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65537 (R)-7-butyl-6,8-dihydroxy-3-[(3E)-pent-3-en-1-yl]-3,4-dihydroisochromen-1-one skos:exactMatch mesh C478278 7-butyl-6,8-dihydroxy-3(R)-pent-11-enylisochroman-1-one lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:6554 Lucidin skos:exactMatch mesh C039315 lucidin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65546 CAF-603 skos:exactMatch mesh C067644 CAF 603 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65550 calabricoside A skos:exactMatch mesh C435877 calabricoside A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65551 calabricoside B skos:exactMatch mesh C435878 calabricoside B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65552 (+)-calanolide A skos:exactMatch mesh C075959 calanolide A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65556 callipeltin A skos:exactMatch mesh C418139 callipeltin A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:6556 lucidine B skos:exactMatch mesh C027890 serratanine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65567 callysponginol sulfate A skos:exactMatch mesh C477589 callysponginol sulfate A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65568 calotropone skos:exactMatch mesh C534178 calotropone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:6557 Luciduline skos:exactMatch mesh C410447 luciduline lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65570 caminoside A skos:exactMatch mesh C469708 caminoside A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65571 candelalide A skos:exactMatch mesh C431986 candelalide A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65572 candelalide B skos:exactMatch mesh C431985 candelalide B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65573 candelalide C skos:exactMatch mesh C431984 candelalide C lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65574 capilliposide B skos:exactMatch mesh C511099 capilliposide B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65575 Capillolide skos:exactMatch mesh C420035 capillolide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65580 caribenol A skos:exactMatch mesh C555112 caribenol A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65582 Carmabin A skos:exactMatch mesh C112372 carmabin A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65583 dragomabin skos:exactMatch mesh C521547 dragomabin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65596 cassiarin A skos:exactMatch mesh C524027 cassiarin A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65597 cassiarin B skos:exactMatch mesh C524026 cassiarin B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65598 cassiaside C2 skos:exactMatch mesh C115840 toralactone 9-O-glucopyranosyl-(1-6)-O-glucopyran osyl-(1-3)-O-glucopyranosyl-(1-6)-O-glucopyranoside lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65599 cathestatin A skos:exactMatch mesh C092939 cathestatin A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65600 cathestatin B skos:exactMatch mesh C092940 cathestatin B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65601 catiguanin A skos:exactMatch mesh C527018 catiguanin A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65602 catiguanin B skos:exactMatch mesh C527019 catiguanin B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65604 caulophine skos:exactMatch mesh C554063 caulophine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65608 ceratamine A skos:exactMatch mesh C485389 ceratamine A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65609 ceratamine B skos:exactMatch mesh C485390 ceratamine B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65610 chaetominine skos:exactMatch mesh C522312 chaetominine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65611 chaetoxanthone A skos:exactMatch mesh C532693 chaetoxanthone A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65612 chaetoxanthone B skos:exactMatch mesh C532694 chaetoxanthone B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65613 chaetoxanthone C skos:exactMatch mesh C532695 chaetoxanthone C lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65616 Chemomicin A skos:exactMatch mesh C520923 chemomicin A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65618 chloropeptin I skos:exactMatch mesh C090485 chloropeptin I lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:6562 Lumirhodopsin skos:exactMatch mesh C018586 lumirhodopsin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:6563 Lunacridine skos:exactMatch mesh C518539 lunacridine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65630 ciliatamide A skos:exactMatch mesh C529041 ciliatamide A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65631 ciliatamide B skos:exactMatch mesh C529042 ciliatamide B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65632 cimifoetiside A skos:exactMatch mesh C540201 cimifoetiside A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65633 cimifoetiside B skos:exactMatch mesh C540202 cimifoetiside B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65634 circumdatin H skos:exactMatch mesh C504253 circumdatin H lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65635 citrafungin A skos:exactMatch mesh C485129 citrafungin A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65636 citrafungin B skos:exactMatch mesh C485130 citrafungin B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65637 citrifolinoside skos:exactMatch mesh C428483 citrifolinoside lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65639 cladoniamide G skos:exactMatch mesh C581998 cladoniamide G lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65640 clathsterol skos:exactMatch mesh C442562 clathsterol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65642 8'-epi-cleomiscosin A skos:exactMatch mesh C499804 8'-epi-cleomiscosin A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65643 Clethramycin skos:exactMatch mesh C478490 clethramycin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65644 clionastatin A skos:exactMatch mesh C494536 clionastatin A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65645 clionastatin B skos:exactMatch mesh C494535 clionastatin B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65648 cochinchinone C skos:exactMatch mesh C000591554 cochinchinone C lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65653 conferol A skos:exactMatch mesh C541061 conferol A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65654 conferol B skos:exactMatch mesh C541062 conferol B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65655 complestatin A skos:exactMatch mesh C449023 neuroprotectin A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65656 complestatin B skos:exactMatch mesh C449022 neuroprotectin B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65657 convallasaponin A skos:exactMatch mesh C518851 convallasaponin A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65658 cordyheptapeptide A skos:exactMatch mesh C508846 cordyheptapeptide A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65660 corynoline skos:exactMatch mesh C487644 corynoline lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65665 trans-N-p-coumaroyl tyramine skos:exactMatch mesh C487400 trans-N-p-coumaroyl tyramine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65666 crambescidin 800 skos:exactMatch mesh C490355 crambescidin 800 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65667 crambescidin 826 skos:exactMatch mesh C482472 crambescidin 826 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65668 crassifogenin C skos:exactMatch mesh C533536 crassifogenin c lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65669 crassolide skos:exactMatch mesh C078544 crassolide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:6567 Lunularic acid skos:exactMatch mesh C067452 lunularic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65678 CT2108A skos:exactMatch mesh C479717 CT2108A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65679 CT2108B skos:exactMatch mesh C479716 CT2108B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:6568 Lunularin skos:exactMatch mesh C121619 lunularin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65686 cudratricusxanthone A skos:exactMatch mesh C533013 cudratricusxanthone A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65689 cumingianoside A skos:exactMatch mesh C109947 cumingianoside A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65696 curtisian A skos:exactMatch mesh C408299 curtisian A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65697 curtisian B skos:exactMatch mesh C408300 curtisian B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65698 curtisian C skos:exactMatch mesh C408301 curtisian C lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65699 curtisian D skos:exactMatch mesh C408302 curtisian D lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:6570 lupeol skos:exactMatch mesh C010480 lupeol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65702 cyathusal A skos:exactMatch mesh C521646 cyathusal A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65703 cyathusal B skos:exactMatch mesh C521648 cyathusal B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65704 cyathusal C skos:exactMatch mesh C521647 cyathusal C lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65705 Pulvinatal skos:exactMatch mesh C107456 pulvinatal lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65717 cytonic acid A skos:exactMatch mesh C410913 cytonic acid A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65718 cytonic acid B skos:exactMatch mesh C410914 cytonic acid B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65719 cytosporic acid skos:exactMatch mesh C477580 cytosporic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65720 cytotrienin A skos:exactMatch mesh C106761 cytotrienin A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65721 daedalin A skos:exactMatch mesh C526356 daedalin A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65724 9-deacetoxyfumigaclavine C skos:exactMatch mesh C540634 9-deacetoxyfumigaclavine C lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65728 decatromicin A skos:exactMatch mesh C405842 decatromicin A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65729 decatromicin B skos:exactMatch mesh C405843 decatromicin B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65735 dehydrodiconiferyl dibenzoate skos:exactMatch mesh C473437 dehydrodiconiferyl dibenzoate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65736 1,2-dehydrogeissoschizoline skos:exactMatch mesh C449855 1,2-dehydrogeissoschizoline lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65737 demethoxycurcumin skos:exactMatch mesh C050229 demethoxycurcumin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:6574 lupulone skos:exactMatch mesh C008299 lupulon lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65740 7'-O-demethylisocephaeline skos:exactMatch mesh C480053 7'-O-demethylisocephaeline lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65743 dendrocandin C skos:exactMatch mesh C539110 dendrocandin C lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65744 dendrocandin D skos:exactMatch mesh C539111 dendrocandin D lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65745 dendrocandin E skos:exactMatch mesh C539112 dendrocandin E lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65749 6-desmethyl-N-methylfluvirucin A1 skos:exactMatch mesh C523228 6-desmethyl-N-methylfluvirucin A1 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65750 N-methylfluvirucin A1 skos:exactMatch mesh C523229 N-methylfluvirucin A1 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65754 diandraflavone skos:exactMatch mesh C489107 diandraflavone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65763 5,5'-dibutoxy-2,2'-bifuran skos:exactMatch mesh C530807 5,5'-dibutoxy-2,2'-bifuran lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65764 dicerandrol A skos:exactMatch mesh C436329 dicerandrol A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65765 dicerandrol B skos:exactMatch mesh C436330 dicerandrol B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65766 dicerandrol C skos:exactMatch mesh C436331 dicerandrol C lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65768 (9Z,12Z,15Z)-octadeca-9,12,15-trien-6-ynoic acid skos:exactMatch mesh C075673 dicranin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65769 dieckol skos:exactMatch mesh C503840 dieckol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65771 6'',7''-dihydro-5',5'''-dicapsaicin skos:exactMatch mesh C479844 6'',7''-dihydro-5',5'''-dicapsaicin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65772 4',5'-dihydro-11,5'-dihydroxy-4'-methoxytephrosin skos:exactMatch mesh C481560 4',5'-dihydro-11,5'-dihydroxy-4'-methoxytephrosin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65787 7,8-dihydroxyflavanone skos:exactMatch mesh C478869 7,8-dihydroxyflavanone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65790 7-phloroeckol skos:exactMatch mesh C558314 7-phloroeckol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65792 diinsininol skos:exactMatch mesh C100904 diinsininol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65793 diinsinin skos:exactMatch mesh C100905 diinsinin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65797 dinochrome A skos:exactMatch mesh C474097 dinochrome A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65799 diperamycin skos:exactMatch mesh C117816 diperamycin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65809 drummondin D skos:exactMatch mesh C073646 drummondin D lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65810 drummondin E skos:exactMatch mesh C073628 drummondin E lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65811 drummondin F skos:exactMatch mesh C073629 drummondin F lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65812 isodrummondin D skos:exactMatch mesh C073626 isodrummondin D lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65814 durhamycin A skos:exactMatch mesh C466115 durhamycin A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65815 durhamycin B skos:exactMatch mesh C466116 durhamycin B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65816 dysidine skos:exactMatch mesh C433902 dysidine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65817 dysoxyhainanin A skos:exactMatch mesh C532776 dysoxyhainanin A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65818 dzununcanone skos:exactMatch mesh C521033 dzununcanone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65821 ehretianone skos:exactMatch mesh C101805 ehretianone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65822 EI-1511-3 skos:exactMatch mesh C103155 EI 1511-3 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65823 EI-1511-5 skos:exactMatch mesh C103156 EI 1511-5 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65824 EI-1625-2 skos:exactMatch mesh C103157 EI 1625-2 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65828 elaeodendroside T skos:exactMatch mesh C521657 elaeodendroside T lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65829 elaeodendroside U skos:exactMatch mesh C521656 elaeodendroside U lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65832 (4betaH)-5alpha-hydroxy-8alpha-(2-methylbut-2-enoyloxy)-2-oxo-1(10),11(13)-guaiadien-12,6alpha-olide skos:exactMatch mesh C527318 (4betaH)-5alpha-hydroxy-8alpha-(2-methylbut-2-enoyloxy)-2-oxo-1(10),11(13)-guaiadien-12,6alpha-olide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65833 (4betaH)-8alpha-(2-methylbut-2-enoyloxy)-2-oxo-1(5),10(14),11(13)-guaiatrien-12,6alpha-olide skos:exactMatch mesh C527319 (4betaH)-8alpha-(2-methylbut-2-enoyloxy)-2-oxo-1(5),10(14),11(13)-guaiatrien-12,6alpha-olide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65839 emarginatine B skos:exactMatch mesh C064681 emarginatine B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65840 emarginatine F skos:exactMatch mesh C087109 emarginatine F lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65842 5-O-methyl embelin skos:exactMatch mesh C061025 5-O-methylembelin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65846 20-epi-bryonolic acid skos:exactMatch mesh C533643 20-epibryonolic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65849 epichlicin skos:exactMatch mesh C522931 epichlicin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65855 16,23-epoxy-5beta-cholestane triglycoside skos:exactMatch mesh C096502 16,23-epoxycholestane triglycoside lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65860 (2R)-eriodictoyl-7-O-beta-D-glucopyranosiduronic acid skos:exactMatch mesh C068767 eriodictyol 7-glucuronide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65862 erybraedin A skos:exactMatch mesh C000628924 erybraedin A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65864 erylatissin B skos:exactMatch mesh C498107 7,3'-dihydroxy-6'',6''-dimethyl-4'',5''-dehydropyrano(2'',3'': 4',5')isoflavone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65865 erylatissin C skos:exactMatch mesh C498108 7,3'-dihydroxy-4'-methoxy-5'-(gamma,gamma-dimethylallyl)flavanone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65866 esculeoside A skos:exactMatch mesh C530544 esculeoside A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65867 espicufolin skos:exactMatch mesh C102439 espicufolin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65868 etnangien skos:exactMatch mesh C521655 etnangien lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:6587 Lycaconitine skos:exactMatch mesh C101813 lycaconitine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65888 eurysterol A skos:exactMatch mesh C521027 eurysterol A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65889 eurysterol B skos:exactMatch mesh C521028 eurysterol B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65893 F390B skos:exactMatch mesh C114121 F 390B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65894 F390C skos:exactMatch mesh C114122 F 390C lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65895 fattiviracin A1 skos:exactMatch mesh C115621 fattiviracin A1 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65896 FD-211 skos:exactMatch mesh C092867 FD 211 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65899 flavokawain B skos:exactMatch mesh C452039 flavokawain B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:6590 Lycoctonine skos:exactMatch mesh C093992 lycoctonine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65900 fleephilone skos:exactMatch mesh C103034 fleephilone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65902 fomitopinic acid A skos:exactMatch mesh C497951 fomitopinic acid A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65906 formobactin skos:exactMatch mesh C102386 formobactin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65907 forskoditerpenoside C skos:exactMatch mesh C525681 forskoditerpenoside C lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65908 forskoditerpenoside D skos:exactMatch mesh C525682 forskoditerpenoside D lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65909 forskoditerpenoside E skos:exactMatch mesh C525683 forskoditerpenoside E lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:6591 Lycodine skos:exactMatch mesh C585001 lycodine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65911 FR177391 skos:exactMatch mesh C508031 FR177391 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65913 FR207944 skos:exactMatch mesh C503272 FR207944 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:6593 Lycoflexine skos:exactMatch mesh C555161 lycoflexine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65931 fumimycin skos:exactMatch mesh C522224 fumimycin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65932 funalenone skos:exactMatch mesh C405054 funalenone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65933 furanocandin skos:exactMatch mesh C100712 furanocandin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65934 furowanin B skos:exactMatch mesh C508678 furowanin B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65937 futokadsurin B skos:exactMatch mesh C000600592 futokadsurin B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65940 gaboroquinone A skos:exactMatch mesh C466224 gaboroquinone A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65954 gedunin skos:exactMatch mesh C106014 gedunin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65955 gelomulide K skos:exactMatch mesh C568291 gelomulide K lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65959 geumonoid skos:exactMatch mesh C419245 geumonoid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65966 girolline skos:exactMatch mesh C526558 girolline lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65967 glionitrin A skos:exactMatch mesh C550392 glionitrin A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65968 glioperazine B skos:exactMatch mesh C524968 glioperazine B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65975 glomosporin skos:exactMatch mesh C411679 glomosporin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65976 glycyrrhizol A skos:exactMatch mesh C508542 glycyrrhizol A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65977 glycyrrhizol B skos:exactMatch mesh C508543 glycyrrhizol B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65978 gnidilatimonoein skos:exactMatch mesh C482573 gnidilatimonoein lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65979 graminone B skos:exactMatch mesh C093032 graminone B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65980 grassypeptolide skos:exactMatch mesh C528460 grassypeptolide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65981 GTRI-02 skos:exactMatch mesh C116835 GTRI 02 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65986 gummiferaoside A skos:exactMatch mesh C519242 gummiferaoside A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65987 gummiferaoside B skos:exactMatch mesh C519244 gummiferaoside B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65988 gummiferaoside C skos:exactMatch mesh C519243 gummiferaoside C lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65989 gutolactone skos:exactMatch mesh C085397 gutolactone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:6599 Lycorenine skos:exactMatch mesh C023825 lycorenine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:65991 guttiferone F skos:exactMatch mesh C117502 guttiferone F lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:6600 Lycoricidine skos:exactMatch mesh C500283 lycoricidine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66001 hamacanthin B skos:exactMatch mesh C091314 hamacanthine B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66006 harziphilone skos:exactMatch mesh C103033 harziphilone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66007 hederacine A skos:exactMatch mesh C559806 hederacine A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66008 hederacine B skos:exactMatch mesh C559807 hederacine B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66011 hernandonine skos:exactMatch mesh C000709248 hernandonine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66012 herquline B skos:exactMatch mesh C098363 herquline B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66013 hesseltin A skos:exactMatch mesh C504685 hesseltin A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66016 hirsutellide A skos:exactMatch mesh C470802 hirsutellide A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66017 hispidospermidin skos:exactMatch mesh C086148 hispidospermidin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66018 holothurin A3 skos:exactMatch mesh C525763 holothurin A3 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66019 holothurin A4 skos:exactMatch mesh C525764 holothurin A4 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66020 hookerianamide H skos:exactMatch mesh C523659 hookerianamide H lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66021 hookerianamide I skos:exactMatch mesh C523660 hookerianamide I lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66040 5-hydroxy-7,2',4',5'-tetramethoxyflavone skos:exactMatch mesh C091095 5-hydroxy-7,2',4',5'-tetramethoxyflavone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66041 9-hydroxycanthin-6-one skos:exactMatch mesh C574274 9-hydroxycanthin-6-one lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66042 1-hydroxycrisamicin A skos:exactMatch mesh C111328 1-hydroxycrisamicin A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66051 hyemaloside A skos:exactMatch mesh C532727 hyemaloside A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66052 hyemaloside C skos:exactMatch mesh C532729 hyemaloside C lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66053 1,3,5-trihydroxy-2-(2',2'-dimethyl-4'-isopropenyl)cyclopentanylxanthone skos:exactMatch mesh C487243 1,3,5-trihydroxy-2-(2',2'-dimethyl-4'-isopropenyl)cyclopentanylxanthone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66059 hypocrellin D skos:exactMatch mesh C513064 hypocrellin D lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66069 impatienolate skos:exactMatch mesh C468311 sodium-3-hydroxide-2((sodium 3-hydroxide-1,4-dioxo(2-naphthyl))ethyl)naphthalene-1,4-dione (impatienolate) lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66072 indicanone skos:exactMatch mesh C574913 indicanone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66073 1-[(3-methylbutanoyl)phloroglucinyl]-beta-D-glucopyranoside skos:exactMatch mesh C495157 2-beta-D-glucopyranosyloxy-4,6-dihydroxyisovalerophenone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66076 integracin A skos:exactMatch mesh C574906 integracin A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66077 integracin B skos:exactMatch mesh C574908 integracin B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66079 integrastatin A skos:exactMatch mesh C562141 integrastatin A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66080 integrastatin B skos:exactMatch mesh C562142 integrastatin B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66081 integric acid skos:exactMatch mesh C120097 integric acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66082 interiotherin A skos:exactMatch mesh C103454 interiotherin A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66083 interiotherin B skos:exactMatch mesh C103455 interiotherin B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66086 isariotin F skos:exactMatch mesh C540636 isariotin F lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66087 isatinone A skos:exactMatch mesh C523691 3-(methoxy(phenyl)methylidene)-1,3-dihydro-2H-indol-2-one lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66088 isatinone B skos:exactMatch mesh C523692 2-ethylhexyl 2-(4-(2-oxo-1,2-dihydro-3H-indol-3-ylidene)(phenyl)methoxy)phenylacetate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66094 isoiguesterin skos:exactMatch mesh C032228 iguesterin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66101 jacarelhyperol A skos:exactMatch mesh C458679 jacarelhyperol A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66102 jacarelhyperol B skos:exactMatch mesh C458639 jacarelhyperol B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66103 jaceosidin skos:exactMatch mesh C477508 jaceosidin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66104 jaspamide skos:exactMatch mesh C057531 jasplakinolide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66105 jaspamide B skos:exactMatch mesh C118105 jaspamide B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66106 jaspamide C skos:exactMatch mesh C118106 jaspamide C lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66108 jaspamide E skos:exactMatch mesh C558230 jasplakinolide E lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66119 jerantinine A skos:exactMatch mesh C000598423 jerantinine A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66120 jerantinine B skos:exactMatch mesh C000607217 jerantinine B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66123 jerantinine E skos:exactMatch mesh C000589416 jerantinine E lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66128 kadlongilactone A skos:exactMatch mesh C512917 kadlongilactone A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66129 kadlongilactone B skos:exactMatch mesh C512916 kadlongilactone B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66130 kadsuphilactone B skos:exactMatch mesh C510338 kadsuphilactone B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66135 kalimantacin A skos:exactMatch mesh C099201 kalimantacin A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66137 kalimantacin C skos:exactMatch mesh C099202 kalimantacin C lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66140 karalicin skos:exactMatch mesh C099306 karalicin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66142 kempopeptin A skos:exactMatch mesh C532712 kempopeptin A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66143 kempopeptin B skos:exactMatch mesh C532713 kempopeptin B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66146 kitastatin 1 skos:exactMatch mesh C521973 kitastatin 1 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66147 klugine skos:exactMatch mesh C480052 klugine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66148 komaroviquinone skos:exactMatch mesh C508550 komaroviquinone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66149 koshikamide A2 skos:exactMatch mesh C506242 koshikamide A2 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66151 (2S)-2'-methoxykurarinone skos:exactMatch mesh C411318 2'-methoxykurarinone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66153 salaspermic acid skos:exactMatch mesh C074717 salaspermic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66154 salvileucalin B skos:exactMatch mesh C533291 salvileucalin B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66160 samaderine C skos:exactMatch mesh C432980 samaderin C lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66161 samaderine E skos:exactMatch mesh C517587 samaderine E lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66163 samaderine Y skos:exactMatch mesh C514130 samaderine Y lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66169 sapinmusaponin Q skos:exactMatch mesh C523662 sapinmusaponin Q lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66172 sappanchalcone skos:exactMatch mesh C044363 sappanchalcone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66177 scalusamide A skos:exactMatch mesh C499272 scalusamide A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66180 sch 54445 skos:exactMatch mesh C106397 Sch 54445 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66181 sch 642305 skos:exactMatch mesh C482741 Sch 642305 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66182 taiwanhomoflavone A skos:exactMatch mesh C409645 taiwanhomoflavone A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66183 taiwanhomoflavone-B skos:exactMatch mesh C474093 taiwanhomoflavone-B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66184 taiwankadsurin B skos:exactMatch mesh C512244 taiwankadsurin B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66185 taiwanschirin D skos:exactMatch mesh C423472 taiwanschirin D lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66188 tanariflavanone A skos:exactMatch mesh C433625 tanariflavanone A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66189 tanariflavanone B skos:exactMatch mesh C433626 tanariflavanone B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66190 tanariflavanone C skos:exactMatch mesh C502680 tanariflavanone C lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66191 tanariflavanone D skos:exactMatch mesh C502681 tanariflavanone D lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66192 tanghinin skos:exactMatch mesh C069007 tanghinin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66194 tasumatrol E skos:exactMatch mesh C497958 tasumatrol E lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66195 tasumatrol F skos:exactMatch mesh C497959 tasumatrol F lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66202 termilignan B skos:exactMatch mesh C532560 termilignan B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66213 1,3,5,6-tetrahydroxy-4,7,8-tri(3-methyl-2-butenyl)xanthone skos:exactMatch mesh C494544 1,3,5,6-tetrahydroxy-4,7,8-tri(3-methyl-2-butenyl)xanthone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66216 tetrahydroxysqualene skos:exactMatch mesh C532714 tetrahydroxysqualene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66218 theograndin II skos:exactMatch mesh C482485 theograndin II lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66219 thiazomycin skos:exactMatch mesh C525268 thiazomycin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66220 thiomarinol A skos:exactMatch mesh C085617 thiomarinol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66221 thiomarinol B skos:exactMatch mesh C096609 thiomarinol B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66222 thiomarinol C skos:exactMatch mesh C096611 thiomarinol C lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66223 thiomarinol D skos:exactMatch mesh C107032 thiomarinol D lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66224 thiomarinol E skos:exactMatch mesh C107033 thiomarinol E lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66225 thiomarinol F skos:exactMatch mesh C107034 thiomarinol F lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66226 thiomarinol G skos:exactMatch mesh C107035 thiomarinol g lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66227 Thonningianin A skos:exactMatch mesh C411320 thonningianin A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66228 Thonningianin B skos:exactMatch mesh C411321 thonningianin B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66238 TMC-52A skos:exactMatch mesh C114132 TMC 52A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66239 TMC-52B skos:exactMatch mesh C114133 TMC 52B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:6624 Maclurin skos:exactMatch mesh C034551 maclurin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66240 TMC-52C skos:exactMatch mesh C114134 TMC 52C lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66241 TMC-52D skos:exactMatch mesh C114135 TMC 52D lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66242 TMC-86A skos:exactMatch mesh C405050 TMC 86A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66243 TMC-86B skos:exactMatch mesh C405051 TMC 86B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66244 TMC-96 skos:exactMatch mesh C405052 TMC 96 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66246 TMC-95B skos:exactMatch mesh C408292 TMC-95B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66247 TMC-95C skos:exactMatch mesh C408293 TMC-95C lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66248 TMC-95D skos:exactMatch mesh C408295 TMC-95D lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66249 tolybyssidin A skos:exactMatch mesh C433571 tolybyssidin A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66250 tolybyssidin B skos:exactMatch mesh C433570 tolybyssidin B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66251 tolypodiol skos:exactMatch mesh C102977 tolypodiol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66252 topopyrone A skos:exactMatch mesh C417102 topopyrone A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66253 topopyrone B skos:exactMatch mesh C417105 topopyrone B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66254 topopyrone C skos:exactMatch mesh C417104 topopyrone C lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66255 topopyrone D skos:exactMatch mesh C417103 topopyrone D lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66256 Topostatin skos:exactMatch mesh C116935 topostatin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66257 torososide B skos:exactMatch mesh C122124 torososide B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66258 torvanol A skos:exactMatch mesh C454585 torvanol A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66259 torvoside H skos:exactMatch mesh C509529 torvoside H lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66260 trachyspic acid skos:exactMatch mesh C094346 trachyspic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66261 trichodimerol skos:exactMatch mesh C099299 trichodimerol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66262 trierixin skos:exactMatch mesh C525271 trierixin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66270 trilobacin skos:exactMatch mesh C074719 trilobacin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66273 Dioncophylline B skos:exactMatch mesh C402882 dioncophylline B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66278 tsugarioside C skos:exactMatch mesh C409613 tsugarioside C lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66279 tubelactomicin A skos:exactMatch mesh C418197 tubelactomicin A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:6628 Macrozamin skos:exactMatch mesh C008305 macrozamin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66281 TMC-89A skos:exactMatch mesh C417144 TMC 89A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66282 TMC-89B skos:exactMatch mesh C417145 TMC 89B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:6629 Maculine skos:exactMatch mesh C505825 maculine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66291 (3Z)-ravenic acid skos:exactMatch mesh C470524 ravenic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66292 rediocide A skos:exactMatch mesh C483695 rediocide A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66296 rediocide G skos:exactMatch mesh C507469 rediocide G lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66299 respirantin skos:exactMatch mesh C081425 respirantin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66303 rhinacanthin C skos:exactMatch mesh C515073 rhinacanthin-C lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66305 rhodiocyanoside A skos:exactMatch mesh C096498 rhodiocyanoside A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66309 rocaglamide skos:exactMatch mesh C107772 rocaglamide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66310 rostratin A skos:exactMatch mesh C578437 rostratin A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66311 rostratin B skos:exactMatch mesh C000604058 rostratin B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66312 rostratin C skos:exactMatch mesh C000604093 rostratin C lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66313 rostratin D skos:exactMatch mesh C000604094 rostratin D lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66319 rubriflordilactone B skos:exactMatch mesh C514795 rubriflordilactone B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66322 WF14865A skos:exactMatch mesh C411673 WF 14865A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66323 WF14865B skos:exactMatch mesh C411674 WF 14865B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66325 tubocapsanolide A skos:exactMatch mesh C522061 tubocapsanolide A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66330 wrightiamine A skos:exactMatch mesh C480247 wrightiamine A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66335 xanthohumol D skos:exactMatch mesh C558154 xanthohumol D lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66336 xenovulene A skos:exactMatch mesh C095333 xenovulene A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66339 UK-2A skos:exactMatch mesh C101439 UK 2A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:6634 Magellanine skos:exactMatch mesh C471075 magellanine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66340 UK-2B skos:exactMatch mesh C101494 UK 2B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66341 UK-3A skos:exactMatch mesh C111142 UK-3A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66344 Urceolatin skos:exactMatch mesh C529543 urceolatin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66349 Variecolin skos:exactMatch mesh C433945 variecolin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66350 variecolorquinone A skos:exactMatch mesh C525996 variecolorquinone A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66351 variecolorquinone B skos:exactMatch mesh C525995 variecolorquinone B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66352 vedelianin skos:exactMatch mesh C000624513 vedelianin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66353 venturamide A skos:exactMatch mesh C519248 venturamide A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66354 venturamide B skos:exactMatch mesh C519249 venturamide B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66355 verongamine skos:exactMatch mesh C086787 verongamine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66356 Verrucoside skos:exactMatch mesh C074345 verrucoside lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66357 Verticillin G skos:exactMatch mesh C518893 verticillin G lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66359 (+)-alpha-viniferin skos:exactMatch mesh C064176 alpha-viniferin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66360 vinylamycin skos:exactMatch mesh C402693 vinylamycin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66361 Viridamide A skos:exactMatch mesh C532611 viridamide A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66366 6-O-methyl-2-deprenylrheediaxanthone B skos:exactMatch mesh C486261 6-O-methyl-2-deprenylrheediaxanthone B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66367 vieillardixanthone skos:exactMatch mesh C486262 vieillardixanthone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66368 4-methylaeruginoic acid skos:exactMatch mesh C106439 4-methylaeruginoic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66370 5-hydroxy-6-methoxy-2-methylchromone-7-O-rutinoside skos:exactMatch mesh C550781 5-hydroxy-6-methoxy-2-methylchromone-7-O-rutinoside lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66371 5-hydroxy-2-methylchromone-7-O-rutinoside skos:exactMatch mesh C550780 5-hydroxy-2-methylchromone-7-O-rutinoside lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66373 2-(methyldithio)pyridine-N-oxide skos:exactMatch mesh C548574 2-(methyldithio)pyridine-N-oxide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66385 michellamine A skos:exactMatch mesh C072235 michellamine A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66387 microclavatin skos:exactMatch mesh C503026 microclavatin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66389 migrastatin skos:exactMatch mesh C418199 migrastatin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66391 millewanin G skos:exactMatch mesh C508676 millewanin G lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66392 millewanin H skos:exactMatch mesh C508677 millewanin H lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66393 mimosifolenone skos:exactMatch mesh C102779 mimosifolenone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66395 miquelianin skos:exactMatch mesh C443401 quercetin 3-O-glucuronide lexical 0.9 https://github.com/indralab/panacea_indra/blob/master/panacea_indra/make_ctd_tests.py +chebi CHEBI:6640 Magnesium salicylate skos:exactMatch mesh C496892 Magnesium Salicylate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66401 morellic acid skos:exactMatch mesh C558352 morellic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66403 moromycin A skos:exactMatch mesh C532691 moromycin A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66404 moromycin B skos:exactMatch mesh C532692 moromycin B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66407 multicaulin skos:exactMatch mesh C000594635 multicaulin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:6641 (S)-magnoflorine skos:exactMatch mesh C001670 magnoflorine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66411 multiplolide A skos:exactMatch mesh C435879 multiplolide A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66412 multiplolide B skos:exactMatch mesh C435880 multiplolide B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66415 muqubilone skos:exactMatch mesh C430184 muqubilone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66416 mustakone skos:exactMatch mesh C000610614 mustakone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:6642 Magnoline skos:exactMatch mesh C585647 magnoline lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66422 myriaporone 3 skos:exactMatch mesh C505858 myriaporone 3 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66424 myrothenone A skos:exactMatch mesh C502180 myrothenone A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66426 myrsinoic acid A skos:exactMatch mesh C401930 3-geranyl-4-hydroxy-5-(3'-methyl-2'-butenyl)benzoic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66427 myrsinoic acid B skos:exactMatch mesh C468150 myrsinoic acid B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66428 myrsinoic acid C skos:exactMatch mesh C468151 myrsinoic acid C lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66429 myrsinoic acid F skos:exactMatch mesh C468152 myrsinoic acid F lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:6643 Magnolol skos:exactMatch mesh C005498 magnolol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66431 schisanlactone A skos:exactMatch mesh C000588645 schisanlactone A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66432 schisanwilsonene A skos:exactMatch mesh C540711 schisanwilsonene A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66433 schizolaenone A skos:exactMatch mesh C499925 schizolaenone A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66434 schizolaenone B skos:exactMatch mesh C499926 schizolaenone B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66435 schweinfurthin E skos:exactMatch mesh C545812 schweinfurthin E lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66436 schweinfurthin F skos:exactMatch mesh C518723 schweinfurthin F lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66437 schweinfurthin G skos:exactMatch mesh C534360 schweinfurthin G lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:6644 Magnosalicin skos:exactMatch mesh C074501 magnosalicin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66440 scleropyric acid skos:exactMatch mesh C507470 scleropyric acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66441 scoparic acid A skos:exactMatch mesh C055030 scoparic acid A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:6645 magnoshinin skos:exactMatch mesh C069675 magnoshinin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66456 scytalidamide A skos:exactMatch mesh C482958 Scytalidamide A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66457 scytalidamide B skos:exactMatch mesh C482959 scytalidamide B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66458 secoaggregatalactone A skos:exactMatch mesh C526970 secoaggregatalactone A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66459 3,4-secoisopimara-4(18),7,15-triene-3-oic acid skos:exactMatch mesh C423882 3,4-secoisopimara-4(18),7,15-triene-3-oic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:6646 Mahanimbine skos:exactMatch mesh C556937 mahanimbine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66460 selinone skos:exactMatch mesh C000613666 selinone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66461 semicochliodinol A skos:exactMatch mesh C107026 semicochliodinol A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66462 semicochliodinol B skos:exactMatch mesh C107027 semicochliodinol B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66463 4-senecioyloxymethyl-6,7-dimethoxycoumarin skos:exactMatch mesh C475709 4-senecioyloxymethyl-6,7-dimethoxycoumarin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66471 Seselidiol skos:exactMatch mesh C066691 seselidiol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66475 sesterstatin 1 skos:exactMatch mesh C110787 sesterstatin 1 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66476 sesterstatin 2 skos:exactMatch mesh C110788 sesterstatin 2 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66477 sesterstatin 3 skos:exactMatch mesh C110789 sesterstatin 3 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66478 Sg17-1-4 skos:exactMatch mesh C513065 Sg17-1-4 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66479 siamenol skos:exactMatch mesh C408013 siamenol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66482 sigmoidin A skos:exactMatch mesh C064221 sigmoidin A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66483 sigmoidin B skos:exactMatch mesh C064222 sigmoidin B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66484 silvestrol skos:exactMatch mesh C489897 silvestrol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66485 epi-silvestrol skos:exactMatch mesh C489893 episilvestrol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66486 simalikalactone D skos:exactMatch mesh C024970 simalikalactone D lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:6649 malaoxon skos:exactMatch mesh C100082 malaoxon lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66494 YM-47141 skos:exactMatch mesh C097796 YM 47141 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66495 YM-47142 skos:exactMatch mesh C097797 YM 47142 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66496 YM-47522 skos:exactMatch mesh C099663 YM 47522 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66499 yuccalan skos:exactMatch mesh C521762 yuccalan lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66501 zarzissine skos:exactMatch mesh C091308 zarzissine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66502 zerumboneoxide skos:exactMatch mesh C505179 zerumboneoxide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66503 zhankuic acid A skos:exactMatch mesh C098367 zhankuic acid A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66504 zhankuic acid B skos:exactMatch mesh C098370 zhankuic acid B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66505 zhankuic acid C skos:exactMatch mesh C098428 zhankuic acid C lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66506 zinolol skos:exactMatch mesh C520692 zinolol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66512 somocystinamide A skos:exactMatch mesh C454639 Somocystinamide A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66514 sorocenol G skos:exactMatch mesh C532997 sorocenol G lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66515 sorocenol H skos:exactMatch mesh C532998 sorocenol H lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66516 soulattrolide skos:exactMatch mesh C102712 soulattrolide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66517 SPF-32629A skos:exactMatch mesh C509636 SPF 32629 A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66518 SPF-32629B skos:exactMatch mesh C509637 SPF 32629 B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66519 halisphingosine A skos:exactMatch mesh C581269 halisphingosine A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66520 spiculoic acid A skos:exactMatch mesh C490145 spiculoic acid A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66522 stevastelin B skos:exactMatch mesh C100705 stevastelin B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66523 stevastelin B3 skos:exactMatch mesh C100706 stevastelin B3 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66524 streptokordin skos:exactMatch mesh C512209 streptokordin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66525 streptoverticillin skos:exactMatch mesh C520913 streptoverticillin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66526 strongylin A skos:exactMatch mesh C073085 strongylin A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66527 strongylophorine-26 skos:exactMatch mesh C491871 strongylophorine-26 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66528 strychnogucine A skos:exactMatch mesh C428163 strychnogucine A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66529 strychnogucine B skos:exactMatch mesh C428164 strychnogucine B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66530 suaveolindole skos:exactMatch mesh C498139 suaveolindole lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66531 suberosol skos:exactMatch mesh C083158 suberosol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66533 subulatin skos:exactMatch mesh C467712 subulatin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66537 swertifrancheside skos:exactMatch mesh C087101 swertifrancheside lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66539 syncarpamide skos:exactMatch mesh C483277 syncarpamide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66540 laccaridione A skos:exactMatch mesh C420730 laccaridione A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66541 laccaridione B skos:exactMatch mesh C420731 laccaridione B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66542 lancifodilactone F skos:exactMatch mesh C506846 lancifodilactone F lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66543 lancifodilactone G skos:exactMatch mesh C507939 lancifodilactone G lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66544 lancilactone C skos:exactMatch mesh C117501 lancilactone C lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66547 largamide D skos:exactMatch mesh C555914 largamide D lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66548 lamellarin alpha 20-sulfate skos:exactMatch mesh C119474 lamellarin alpha 20-sulfate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66549 lanigerol skos:exactMatch mesh C101979 lanigerol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66553 lactonamycin skos:exactMatch mesh C102442 lactonamycin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66555 laurinterol skos:exactMatch mesh C532810 laurinterol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66558 8-lavandulylkaempferol skos:exactMatch mesh C507554 8-lavandulylkaempferol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66559 leachianone A skos:exactMatch mesh C523322 leachianone A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:6656 Mallotochromene skos:exactMatch mesh C070197 mallotochromene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66571 leucisterol skos:exactMatch mesh C532261 leucisterol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66572 leucosesterterpenone skos:exactMatch mesh C000603396 leucosesterterpenone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66575 leufolin A skos:exactMatch mesh C523807 leufolin A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66576 leufolin B skos:exactMatch mesh C523808 leufolin B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66578 liphagal skos:exactMatch mesh C513880 liphagal lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66579 lissoclibadin 1 skos:exactMatch mesh C000621082 lissoclibadin 1 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66582 litseaefoloside C skos:exactMatch mesh C505676 litseaefoloside C lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66585 lobohedleolide skos:exactMatch mesh C409627 lobohedleolide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66587 17-dimethylaminolobohedleolide skos:exactMatch mesh C409628 17-dimethylaminolobohedleolide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66590 longicalycinin A skos:exactMatch mesh C502855 longicalycinin A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66593 lucialdehyde B skos:exactMatch mesh C464726 lucialdehyde B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66594 lucialdehyde C skos:exactMatch mesh C464725 lucialdehyde C lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66595 lucidenic acid N skos:exactMatch mesh C437028 lucidenic acid N lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66596 lucidumoside C skos:exactMatch mesh C585295 lucidumoside C lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66601 lychnostatin 1 skos:exactMatch mesh C064679 lychnostatin 1 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66602 lychnostatin 2 skos:exactMatch mesh C064680 lychnostatin 2 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66603 lycojapodine A skos:exactMatch mesh C539671 lycojapodine A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66604 lycoperine A skos:exactMatch mesh C507691 lycoperine A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66607 lyratol C skos:exactMatch mesh C541059 lyratol C lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66608 lyratol D skos:exactMatch mesh C541060 lyratol D lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66614 neobavaisoflavone skos:exactMatch mesh C549830 neobavaisoflavone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66615 neopyrrolomycin B skos:exactMatch mesh C550398 neopyrrolomycin B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66621 neurolenin B skos:exactMatch mesh C462159 neurolenin B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66625 nidulalin A skos:exactMatch mesh C114123 nidulalin A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66627 niruriside skos:exactMatch mesh C102783 niruriside lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66628 nitensidine E skos:exactMatch mesh C548769 nitensidine E lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66634 nocardione A skos:exactMatch mesh C410782 nocardione A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66637 nostocarboline skos:exactMatch mesh C507037 nostocarboline lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66638 nothramicin skos:exactMatch mesh C111762 nothramicin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66639 NP-101A skos:exactMatch mesh C101456 NP 101A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66640 nymphaeol A skos:exactMatch mesh C480960 propolin C lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66642 nymphaeol C skos:exactMatch mesh C562280 nymphaeol C lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66646 macabarterin skos:exactMatch mesh C567995 macabarterin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66648 macaranone A skos:exactMatch mesh C540604 macaranone A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:6665 Malonylawobanin skos:exactMatch mesh C539639 delphinidin 3-O-(6-O-p-coumaroylglucoside)-5-O-(6-O-malonylglucoside) lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66650 macluraxanthone C skos:exactMatch mesh C419729 macluraxanthone C lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66652 madhucoside A skos:exactMatch mesh C485319 madhucoside A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66653 madhucoside B skos:exactMatch mesh C485320 madhucoside B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66655 mallotophilippen A skos:exactMatch mesh C474052 mallotophilippen A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66656 mallotophilippen B skos:exactMatch mesh C474053 mallotophilippen B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66657 mallotophilippen C skos:exactMatch mesh C530784 mallotophilippen C lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66662 6alpha-malonyloxymanoyl oxide skos:exactMatch mesh C531883 6alpha-malonyloxymanoyl oxide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66663 manassantin A skos:exactMatch mesh C054895 manassantin A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66664 manassantin B skos:exactMatch mesh C482885 manassantin B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66666 manoalide skos:exactMatch mesh C045673 manoalide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66667 manzamine A skos:exactMatch mesh C078290 manzamine A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66668 6-hydroxymanzamine A skos:exactMatch mesh C093034 6-hydroxymanzamine A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66669 8-hydroxymanzamine A skos:exactMatch mesh C086783 8-hydroxymanzamine A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66670 maoecrystal Z skos:exactMatch mesh C520391 maoecrystal Z lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66673 marianine skos:exactMatch mesh C508591 marianine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66674 marianoside A skos:exactMatch mesh C508593 marianoside A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66675 marianoside B skos:exactMatch mesh C508595 marianoside B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66676 marineosin A skos:exactMatch mesh C543079 marineosin A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66677 marineosin B skos:exactMatch mesh C543080 marineosin B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66680 marsupsin skos:exactMatch mesh C083154 marsupsin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66681 martefragin A skos:exactMatch mesh C115837 Martefragin A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66687 mediomycin A skos:exactMatch mesh C518552 mediomycin A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66688 mediomycin B skos:exactMatch mesh C518553 mediomycin B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66695 metachromin S skos:exactMatch mesh C526056 metachromin S lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66696 metachromin T skos:exactMatch mesh C526057 metachromin T lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66700 1-methoxycanthinone skos:exactMatch mesh C510719 1-methoxy-canthin-6-one lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66707 6-methoxyspirotryprostatin B skos:exactMatch mesh C531255 6-methoxyspirotryprostatin B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66711 methyl brevifolincarboxylate skos:exactMatch mesh C087786 methyl brevifolincarboxylate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66717 Paecilopeptin skos:exactMatch mesh C475222 paecilopeptin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66718 Paeonilide skos:exactMatch mesh C416702 paeonilide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66721 palau'amide skos:exactMatch mesh C482752 palauamide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66723 panaxydol skos:exactMatch mesh C055778 panaxydol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66727 papyriflavonol A skos:exactMatch mesh C431929 papyriflavonol A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66728 Pelagiomicin A skos:exactMatch mesh C104961 pelagiomicin A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66731 Periglaucine A skos:exactMatch mesh C000621429 periglaucine A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66732 Periglaucine B skos:exactMatch mesh C568640 periglaucine B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66735 Persenone A skos:exactMatch mesh C412488 persenone A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66736 Persenone B skos:exactMatch mesh C412489 persenone B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66737 Pestalotheol C skos:exactMatch mesh C529353 pestalotheol C lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66740 PF 1163A skos:exactMatch mesh C405057 PF 1163A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66741 PF 1163B skos:exactMatch mesh C405058 PF 1163B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66742 phakellistatin 14 skos:exactMatch mesh C498128 phakellistatin 14 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66744 phelligridimer A skos:exactMatch mesh C512234 phelligridimer A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66745 phelligridin G skos:exactMatch mesh C507450 phelligridin G lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66751 phosphatoquinone A skos:exactMatch mesh C119334 phosphatoquinone A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66752 phosphatoquinone B skos:exactMatch mesh C119335 phosphatoquinone B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66754 phoyunbene B skos:exactMatch mesh C572671 trans-3,4'-dihydroxy-2',3',5-trimethoxystilbene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66763 Plectranthol A skos:exactMatch mesh C446966 plectranthol A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66764 Plectranthol B skos:exactMatch mesh C446967 plectranthol B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66765 pleosporone skos:exactMatch mesh C541040 pleosporone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66766 PM-94128 skos:exactMatch mesh C105381 PM 94128 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66769 Polpunonic acid skos:exactMatch mesh C001687 maytenonic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66771 polyketomycin skos:exactMatch mesh C111268 polyketomycin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66772 Pomolic acid skos:exactMatch mesh C115535 pomolic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66785 Przewalskin B skos:exactMatch mesh C518012 Przewalskin B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66786 Pseudopteroxazole skos:exactMatch mesh C433836 pseudopteroxazole lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66788 Pterocidin skos:exactMatch mesh C511081 pterocidin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66790 Pulsatilla saponin D skos:exactMatch mesh C000601508 Pulsatilla saponin D lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66791 6-(9'-Purine-6',8'-diolyl)-2beta-suberosanone skos:exactMatch mesh C504677 6-(9'-purine-6',8'-diolyl)-2beta-suberosanone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66803 obolactone skos:exactMatch mesh C516119 obolactone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66804 obtusafuran skos:exactMatch mesh C000593121 obtusafuran lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66805 obyanamide skos:exactMatch mesh C449753 obyanamide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66806 oceanalin A skos:exactMatch mesh C509573 oceanalin A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66807 ochracenomicin A skos:exactMatch mesh C093982 ochracenomicin A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66808 ochrocarpinone A skos:exactMatch mesh C465427 ochrocarpinone A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66809 ochrocarpinone B skos:exactMatch mesh C465428 ochrocarpinone B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66810 ochrocarpinone C skos:exactMatch mesh C465429 ochrocarpinone C lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66819 oleoyl danshenxinkun A skos:exactMatch mesh C433954 oleoyl danshenxinkun A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66820 oleoyl neocryptotanshinone skos:exactMatch mesh C433953 oleoyl neocryptotanshinone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66821 onosmin A skos:exactMatch mesh C504486 onosmin A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66822 onosmin B skos:exactMatch mesh C504487 onosmin B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66842 18-oxotryprostatin A skos:exactMatch mesh C531258 18-oxotryprostatin A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66867 trans,polycis-decaprenyl phosphate skos:exactMatch mesh C068697 decaprenyl phosphate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66871 ammonium fluoride skos:exactMatch mesh C024822 ammonium fluoride lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66872 potassium fluoride skos:exactMatch mesh C033320 potassium fluoride lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66876 avanafil skos:exactMatch mesh C553414 avanafil lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66880 florbetapir F-18 skos:exactMatch mesh C545186 florbetapir lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66889 peginesatide skos:exactMatch mesh C556270 peginesatide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:6689 Mansonone C skos:exactMatch mesh C517072 mansonone C lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66899 tafluprost skos:exactMatch mesh C485333 tafluprost lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66913 ingenol mebutate skos:exactMatch mesh C486592 3-ingenyl angelate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66918 ergosta-5,7-dien-3beta-ol skos:exactMatch mesh C012287 22,23-dihydroergosterol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:6692 Marasmic acid skos:exactMatch mesh C037486 marasmic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66920 2-nitro-p-toluidine skos:exactMatch mesh C578170 2-nitro-4-methylaniline lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66926 4-nitrobenzaldehyde skos:exactMatch mesh C029915 4-nitrobenzaldehyde lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:6693 Marchantin A skos:exactMatch mesh C096123 marchantin A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66932 2,4-dinitrophenylhydrazine skos:exactMatch mesh C004787 2,4-dinitrophenylhydrazine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:6694 maritimetin skos:exactMatch mesh C539537 maritimetin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66955 olivetolic acid skos:exactMatch mesh C112458 olivetolic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:6696 Marrubiin skos:exactMatch mesh C105731 marrubiin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:66960 olivetol skos:exactMatch mesh C016630 olivetol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:6700 Matrine skos:exactMatch mesh C034244 matrine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:67035 N-octadecanoyl-4-hydroxysphinganine skos:exactMatch mesh C553174 N-stearoylphytosphingosine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:67081 cannabigerolic acid skos:exactMatch mesh C100679 cannabigerolic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:67106 1-deoxysphinganine skos:exactMatch mesh C408363 spisulosine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:67113 chlorantraniliprole skos:exactMatch mesh C517733 chlorantranilipole lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:67125 2-acetyl-1-pyrroline skos:exactMatch mesh C426303 2-acetyl-1-pyrroline lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:67128 2,4-dinitro-1-naphthol skos:exactMatch mesh C057508 Martius yellow lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:67135 2-nitroimidazole skos:exactMatch mesh D009593 Nitroimidazoles lexical 0.9 https://github.com/indralab/panacea_indra/blob/master/panacea_indra/make_ctd_tests.py +chebi CHEBI:67143 pppA2'p5'A2'p5'A skos:exactMatch mesh C016964 adenosine triphosphate adenosine monophosphate adenosine monophosphate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:6716 medroxyprogesterone acetate skos:exactMatch mesh C050795 N,N-dimethyl-4-anisidine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:67171 cortistatin A skos:exactMatch mesh C531521 cortistatin A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:67190 carlactone skos:exactMatch mesh C571055 carlactone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:67203 N,N'-(p-xylylidene)bis(aminoguanidine) skos:exactMatch mesh C009693 N,N-(4-xylylidene)bisaminoguanidine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:67222 conduritol B skos:exactMatch mesh C090988 conduritol B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:67249 N-acetylcarnosine skos:exactMatch mesh C033681 N-acetylcarnosine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:67252 farnesyl acetone skos:exactMatch mesh C014549 farnesylacetone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:67276 Brialalepolide A skos:exactMatch mesh C559168 brialalepolide A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:67277 Brialalepolide B skos:exactMatch mesh C559169 brialalepolide B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:67278 Brialalepolide C skos:exactMatch mesh C559170 brialalepolide C lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:67279 lupinacidin C skos:exactMatch mesh C559020 lupinacidin C lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:67285 epoxyazadiradione skos:exactMatch mesh C099260 epoxyazadiradione lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:67304 nimbin skos:exactMatch mesh C008621 nimbin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:67305 6-deacetylnimbin skos:exactMatch mesh C552925 6-deacetylnimbin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:67307 28-deoxonimbolide skos:exactMatch mesh C062897 28-deoxonimbolide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:67309 salannin skos:exactMatch mesh C105836 salannin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:67315 Malyngamide 3 skos:exactMatch mesh C559186 malyngamide 3 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:67316 cocosamide A skos:exactMatch mesh C559187 cocosamide A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:67317 cocosamide B skos:exactMatch mesh C559188 cocosamide B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:67323 N,N'-Methyleno-didemnin A skos:exactMatch mesh C559171 N,N'-methyleno-didemnin A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:67324 didemnidine A skos:exactMatch mesh C559172 didemnidine A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:67325 Didemnidine B skos:exactMatch mesh C559173 didemnidine B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:67326 didemnimide A skos:exactMatch mesh C116645 didemnimide A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:67330 Veraguamide A skos:exactMatch mesh C559813 veraguamide A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:67337 Dolastatin 16 skos:exactMatch mesh C108201 dolastatin 16 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:6734 Melicopicine skos:exactMatch mesh C465802 melicopicine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:67343 tephrocandidin A skos:exactMatch mesh C560111 tephrocandidin A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:67344 tephrocandidin B skos:exactMatch mesh C560112 tephrocandidin B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:67345 candidachalcone skos:exactMatch mesh C560113 candidachalcone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:67346 1beta-hydroxy-6,7alpha-dihydroxyeudesm-4(15)-ene skos:exactMatch mesh C560114 1beta-hydroxy-6,7alpha-dihydroxyeudesm-4(15)-ene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:67357 dolastatin 10 skos:exactMatch mesh C064570 dolastatin 10 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:6736 melittin skos:exactMatch mesh C035837 Forapin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:67369 5-hydroxy-6,7-dimethoxy-2-methylchromone skos:exactMatch mesh C556133 stellatin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:6737 Mellitoxin skos:exactMatch mesh C442493 hyenanchin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:67379 trans-methylferulate skos:exactMatch mesh C530806 methyl ferulate lexical 0.9 https://github.com/indralab/panacea_indra/blob/master/panacea_indra/make_ctd_tests.py +chebi CHEBI:6738 Melochinone skos:exactMatch mesh C011298 melochinone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:67411 N-methylcorydaldine skos:exactMatch mesh C560484 N-methylcorydaldine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:67416 cryptocaryol A skos:exactMatch mesh C585544 cryptocaryol A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:67417 cryptocaryol B skos:exactMatch mesh C585545 cryptocaryol B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:67437 Euparin skos:exactMatch mesh C524284 euparin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:67443 ananolignan F skos:exactMatch mesh C560138 ananolignan F lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:67449 ananolignan L skos:exactMatch mesh C560139 ananolignan L lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:67454 Ananosin A skos:exactMatch mesh C447017 ananosin A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:67455 interiotherin C skos:exactMatch mesh C470170 interiotherin C lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:67473 lamesticumin A skos:exactMatch mesh C560140 lamesticumin A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:67494 5,7,3',5'-tetrahydroxyflavanone skos:exactMatch mesh C479303 5,7,3',5'-tetrahydroxyflavanone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:6751 mepanipyrim skos:exactMatch mesh C104083 mepanipyrim lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:67518 gardneramine skos:exactMatch mesh C038368 gardneramine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:67522 Turnagainolide A skos:exactMatch mesh C560137 turnagainolide A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:67523 Turnagainolide B skos:exactMatch mesh C560136 turnagainolide B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:67524 archazolid E skos:exactMatch mesh C560157 archazolid A-15-O-beta-D-glucopyranoside lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:67525 archazolid F skos:exactMatch mesh C000632366 archazolid F lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:67533 prenylterphenyllin skos:exactMatch mesh C525272 prenylterphenyllin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:67534 terprenin skos:exactMatch mesh C112884 terprenin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:67536 3-hydroxyterphenyllin skos:exactMatch mesh C020624 3-hydroxyterphenyllin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:67537 terphenyllin skos:exactMatch mesh C010790 terphenyllin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:67538 3,3''-dihydroxyterphenyllin skos:exactMatch mesh C478856 3,3''-dihydroxyterphenyllin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:67540 candidusin C skos:exactMatch mesh C411128 candidusin C lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:67541 Verrucamide A skos:exactMatch mesh C560141 verrucamide A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:67548 gamma-mangostin skos:exactMatch mesh C102777 gamma-mangostin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:67559 5Z-7-oxozeaenol skos:exactMatch mesh C118715 LL Z1640-2 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:67576 streptothricin E skos:exactMatch mesh C013350 streptothricin E lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:67577 Nbeta-acetylstreptothricin D skos:exactMatch mesh C040320 N-beta-acetylstreptothricin D lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:67578 Nbeta-acetylstreptothricin E skos:exactMatch mesh C040319 N-beta-acetylstreptothricin E lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:67579 purginoside I skos:exactMatch mesh C560159 purginoside I lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:67580 purginoside II skos:exactMatch mesh C560160 purginoside II lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:67581 purgin I skos:exactMatch mesh C560158 purgin I lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:67583 breynceanothanolic acid skos:exactMatch mesh C560142 breynceanothanolic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:67594 stigmast-5-ene-3beta,7alpha-diol skos:exactMatch mesh C011486 hydroxysitosterol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:67595 sitoindoside I skos:exactMatch mesh C511123 beta-sitosteryl-3-O-beta-D-glucopyranosyl-6'-O-palmitate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:67603 11-Methoxysampangine skos:exactMatch mesh C560161 11-methoxysampangine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:67605 Eupolauridine skos:exactMatch mesh C054957 eupolauridine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:67606 Sampangine skos:exactMatch mesh C121572 sampangine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:67607 Thiopalmyrone skos:exactMatch mesh C560162 thiopalmyrone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:67608 Palmyrrolinone skos:exactMatch mesh C560163 palmyrrolinone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:67609 Lyngbic acid skos:exactMatch mesh C000612874 lyngbic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:67610 chaetoviridin A skos:exactMatch mesh C579267 chaetoviridin A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:67643 (-)-(7''S,8''S)-4'',5,7-trihydroxy-3',3'',5'-trimethoxy-4',8''-oxyflavonolignan-7'',9''-diol skos:exactMatch mesh C000588491 tricin 4'-O-(threo-beta-guaiacylglyceryl) ether lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:67664 Lasiokaurin skos:exactMatch mesh C011893 lasiokaurin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:67667 Longikaurin E skos:exactMatch mesh C586658 longikaurin E lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:67670 Macrocalin B skos:exactMatch mesh C045862 macrocalin B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:67671 Ponicidin skos:exactMatch mesh C090365 ponicidin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:67672 Xerophilusin B skos:exactMatch mesh C410911 xerophilusin B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:67705 jolkinol A skos:exactMatch mesh C042194 jolkinol A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:67726 Furospongin-1 skos:exactMatch mesh C093369 furospongin 1 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:67727 Furospongolide skos:exactMatch mesh C562263 furospongolide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:6773 Mesaconitine skos:exactMatch mesh C019470 mesaconitine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:67730 16-Deacetoxy-12-epi-scalarafuranacetate skos:exactMatch mesh C569680 16-deacetoxy-12-epi-scalarafuranacetate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:67731 Scalaradial skos:exactMatch mesh C071197 scalaradial lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:67745 Trigohownin D skos:exactMatch mesh C560166 trigohownin D lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:67760 Illicidione A skos:exactMatch mesh C560168 illicidione A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:67761 Illicidione B skos:exactMatch mesh C560169 illicidione B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:67762 Illicidione C skos:exactMatch mesh C560167 illicidione C lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:6777 Mesembrenone skos:exactMatch mesh C000601702 mesembrenone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:67772 12-Epoxyobtusallene IV skos:exactMatch mesh C000610791 12-epoxyobtusallene IV lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:6778 Mesembrine skos:exactMatch mesh C011300 mesembrine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:67785 trigoxyphin A skos:exactMatch mesh C551606 trigoxyphin A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:67786 trigoxyphin B skos:exactMatch mesh C551607 trigoxyphin B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:67796 cryptomeridiol skos:exactMatch mesh C499954 cryptomeridiol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:67797 austroinulin skos:exactMatch mesh C498208 austroinulin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:6780 mesoridazine skos:exactMatch mesh C529599 thioridazine-2-sulfoxide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:67806 Joro spider toxin-4 skos:exactMatch mesh C558367 JSTX-4 spider toxin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:67811 zorbamycin skos:exactMatch mesh C003787 zorbamycin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:67813 Neurosporaside skos:exactMatch mesh C558964 neurosporaside lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:67815 cupacinoside skos:exactMatch mesh C558965 cupacinoside lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:67816 6'-de-O-acetylcupacinoside skos:exactMatch mesh C558966 6'-de-O-acetylcupacinoside lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:67821 lichexanthone skos:exactMatch mesh C587518 lichexanthone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:67822 gustastatin skos:exactMatch mesh C488055 gustastatin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:67823 lupenone skos:exactMatch mesh C470592 lupenone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:67826 taraxerone skos:exactMatch mesh C009379 taraxerone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:67827 austocystin D skos:exactMatch mesh C558970 austocystin D lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:67831 fusicoauritone skos:exactMatch mesh C519722 fusicoauritone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:67832 pinguisenol skos:exactMatch mesh C482623 pinguisenol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:67833 norpinguisone skos:exactMatch mesh C553722 norpinguisone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:67839 Marinoquinoline A skos:exactMatch mesh C558971 marinoquinoline A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:67841 Marinoquinoline C skos:exactMatch mesh C000600029 marinoquinoline C lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:67845 Phomoarcherin A skos:exactMatch mesh C558973 phomoarcherin A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:67846 Phomoarcherin B skos:exactMatch mesh C558972 phomoarcherin B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:67847 Phomoarcherin C skos:exactMatch mesh C558974 phomoarcherin C lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:67850 cudraflavone B skos:exactMatch mesh C542041 cudraflavone B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:67862 coptisine skos:exactMatch mesh C034384 coptisine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:67873 pedunculosumoside A skos:exactMatch mesh C559102 pedunculosumoside A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:67875 pedunculosumoside C skos:exactMatch mesh C559103 pedunculosumoside C lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:67888 Timosaponin A-III skos:exactMatch mesh C543146 timosaponin AIII lexical 0.9 https://github.com/indralab/panacea_indra/blob/master/panacea_indra/make_ctd_tests.py +chebi CHEBI:67890 sotolone skos:exactMatch mesh C054511 4,5-dimethyl-3-hydroxy-2(5H)-furanone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:67893 ferruginene C skos:exactMatch mesh C559163 ferruginene C lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:67894 uvaol skos:exactMatch mesh C013330 uvaol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:67896 23-hydroxyursolic acid skos:exactMatch mesh C469884 23-hydroxyursolic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:67897 farrerol skos:exactMatch mesh C015881 farrerol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:67904 Vaby D skos:exactMatch mesh C574899 vaby D lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:67914 euscaphic acid skos:exactMatch mesh C007695 euscaphic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:67915 19alpha-hydroxyasiatic acid skos:exactMatch mesh C511643 23-hydroxytormentic acid lexical 0.9 https://github.com/indralab/panacea_indra/blob/master/panacea_indra/make_ctd_tests.py +chebi CHEBI:67917 19alpha-hydroxyasiatic acid-28-O-beta-D-glucopyrannoside skos:exactMatch mesh C090725 niga-ichigoside F1 lexical 0.9 https://github.com/indralab/panacea_indra/blob/master/panacea_indra/make_ctd_tests.py +chebi CHEBI:67924 comosone A skos:exactMatch mesh C559167 comosone A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:67927 astragalin heptaacetate skos:exactMatch mesh C562213 astragalin heptaacetate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:67959 Conoideocrellide A skos:exactMatch mesh C559180 conoideocrellide A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:6796 Metarhodopsin skos:exactMatch mesh C013110 metarhodopsins lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:67966 zeorin skos:exactMatch mesh C048779 zeorin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:67969 ES-242-1 skos:exactMatch mesh C073561 ES 242-1 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:6797 Metaxalone skos:exactMatch mesh C011301 metaxalone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:67973 Pseudoginsenoside RT1 butyl ester skos:exactMatch mesh C559166 pseudoginsenoside RT1 butyl ester lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:67974 Taibaienoside I skos:exactMatch mesh C442152 taibaienoside I lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:6798 metazachlor skos:exactMatch mesh C521990 metazachlor lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:67986 ginsenoside Rf skos:exactMatch mesh C055328 ginsenoside Rf lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:67988 ginsenoside Rd skos:exactMatch mesh C049863 ginsenoside Rd lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:6799 metazocine skos:exactMatch mesh C047238 metazocine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:67991 (20S)-ginsenoside Rg3 skos:exactMatch mesh C097367 ginsenoside Rg3 lexical 0.9 https://github.com/indralab/panacea_indra/blob/master/panacea_indra/make_ctd_tests.py +chebi CHEBI:67994 Panaxjapyne A skos:exactMatch mesh C552292 panaxjapyne A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:67995 Panaxjapyne B skos:exactMatch mesh C552293 panaxjapyne B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:67996 Panaxjapyne C skos:exactMatch mesh C552294 panaxjapyne C lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:68006 lehualide F skos:exactMatch mesh C559104 lehualide F lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:68024 macaranone B skos:exactMatch mesh C540606 macaranone B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:6803 Methabenzthiazuron skos:exactMatch mesh C011912 methabenzthiazuron lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:68035 Bathymodiolamide A skos:exactMatch mesh C559017 bathymodiolamide A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:68036 Bathymodiolamide B skos:exactMatch mesh C559016 bathymodiolamide B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:68039 12-O-acetyl-16-O-methylhyrtiolide skos:exactMatch mesh C476835 12-O-acetyl-16-O-methylhyrtiolide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:68048 pierreione B skos:exactMatch mesh C584582 pierreione B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:6805 methacycline skos:exactMatch mesh C009949 tri-methacycline lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:68053 Lithothamnin A skos:exactMatch mesh C560171 lithothamnin A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:68054 9alpha,11alpha-dihydroxyergosta-4,6,8(14),22-tetraen-3-one skos:exactMatch mesh C560172 9alpha,11alpha-dihydroxyergosta-4,6,8(14),22-tetraen-3-one lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:68055 protuboxepin A skos:exactMatch mesh C560174 protuboxepin A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:68056 protuboxepin B skos:exactMatch mesh C560173 protuboxepin B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:68057 protubonine A skos:exactMatch mesh C560175 protubonine A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:68058 protubonine B skos:exactMatch mesh C560176 protubonine B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:68059 kabiramide G skos:exactMatch mesh C572171 kabiramide G lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:68060 kabiramide J skos:exactMatch mesh C560177 kabiramide J lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:68061 kabiramide K skos:exactMatch mesh C560178 kabiramide K lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:68063 kabiramide C skos:exactMatch mesh C489776 kabiramide C lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:68064 kabiramide D skos:exactMatch mesh C112787 kabiramide D lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:68076 pyrrole-3-carboxylic acid skos:exactMatch mesh C554881 pyrrole-3-carboxylic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:6808 Methallenestril skos:exactMatch mesh C005194 methallenestril lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:68081 blazein skos:exactMatch mesh C534799 blazein lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:68083 cerevisterol skos:exactMatch mesh C006954 cerevisterol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:68089 Grandilodine C skos:exactMatch mesh C560044 grandilodine C lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:68093 lapidilectine B skos:exactMatch mesh C437203 lapidilectine B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:68094 kopsinine skos:exactMatch mesh C061491 kopsinine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:68095 Chisomicine A skos:exactMatch mesh C560179 chisomicine A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:68096 Chisomicine B skos:exactMatch mesh C560180 chisomicine B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:68097 Chisomicine C skos:exactMatch mesh C560181 chisomicine C lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:68102 3-O-acetyluncaric acid skos:exactMatch mesh C560317 3-O-acetyluncaric acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:68106 Pinnarine skos:exactMatch mesh C560318 pinnarine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:68107 Marianin A skos:exactMatch mesh C560284 marianin A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:68108 Marianin B skos:exactMatch mesh C560283 marianin B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:68109 penipanoid A skos:exactMatch mesh C560319 penipanoid A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:68110 penipanoid B skos:exactMatch mesh C560320 penipanoid B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:68111 penipanoid C skos:exactMatch mesh C560321 penipanoid C lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:68113 Metachromin U skos:exactMatch mesh C560322 metachromin U lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:68114 Metachromin V skos:exactMatch mesh C560323 metachromin V lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:68115 Metachromin W skos:exactMatch mesh C560324 metachromin W lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:68116 Nobilisitine A skos:exactMatch mesh C554884 nobilisitine A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:68117 JBIR-96 skos:exactMatch mesh C560285 JBIR-96 peptide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:68118 arthrobotrisin A skos:exactMatch mesh C561444 arthrobotrisin A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:68119 arthrobotrisin B skos:exactMatch mesh C561446 arthrobotrisin B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:68120 arthrobotrisin C skos:exactMatch mesh C561445 arthrobotrisin C lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:68121 Julocrotine skos:exactMatch mesh C428864 julocrotine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:68122 Pahayokolide A skos:exactMatch mesh C509972 pahayokolide A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:68123 Pahayokolide B skos:exactMatch mesh C520504 pahayokolide B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:68135 hydramacrophyllol B skos:exactMatch mesh C102409 hydramacrophyllol B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:68136 hydramacrophyllol A skos:exactMatch mesh C102408 hydramacrophyllol A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:68139 thunberginol F skos:exactMatch mesh C079057 thunberginol F lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:68169 meso-dihydroguaiaretic acid skos:exactMatch mesh C015816 dihydroguaiaretic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:68186 (E)-2-(hept-1-enyl)-3-(hydroxymethyl)-5-(3-methylbut-2-enyl)benzene-1,4-diol skos:exactMatch mesh C561556 (E)-2-(hept-1-enyl)-3-(hydroxymethyl)-5-(3-methylbut-2-enyl)benzene-1,4-diol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:68187 (E)-4-(hept-1-enyl)-7-(3-methylbut-2-enyl)-2,3-dihydrobenzofuran-2,5-diol skos:exactMatch mesh C561555 (E)-4-(hept-1-enyl)-7-(3-methylbut-2-enyl)-2,3-dihydrobenzofuran-2,5-diol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:68188 Flavoglaucin skos:exactMatch mesh C005001 flavoglaucin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:6819 Methaphenilene skos:exactMatch mesh C037531 methaphenilene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:68195 Myrocin D skos:exactMatch mesh C561557 myrocin D lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:68196 Libertellenone E skos:exactMatch mesh C561559 libertellenone E lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:68197 Libertellenone F skos:exactMatch mesh C561558 libertellenone F lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:68199 Myrocin A skos:exactMatch mesh C488323 myrocin A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:6820 methapyrilene skos:exactMatch mesh C030534 Reston lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:68201 Cytochalasin E skos:exactMatch mesh C007215 cytochalasin E lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:68202 asperaculin A skos:exactMatch mesh C561560 asperaculin A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:68203 asperparaline A skos:exactMatch mesh C109708 aspergillimide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:68204 Fumiformamide skos:exactMatch mesh C561562 fumiformamide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:68205 N,N'-((1Z,3Z)-1,4-bis(4-methoxyphenyl)buta-1,3-diene-2,3-diyl)diformamide skos:exactMatch mesh C561561 N,N'-((1Z,3Z)-1,4-bis(4-methoxyphenyl)buta-1,3-diene-2,3-diyl)diformamide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:68208 BU-4704 skos:exactMatch mesh C081423 BU 4704 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:68218 aspergillusene A skos:exactMatch mesh C561563 aspergillusene A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:68221 aspergillusone A skos:exactMatch mesh C561564 aspergillusone A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:68228 sydowinin B skos:exactMatch mesh C574680 sydowinin B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:68233 (Z)-3-butylidenephthalide skos:exactMatch mesh C026105 butylidenephthalide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:68234 myristicin skos:exactMatch mesh C005246 myristicin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:68246 platensimide A skos:exactMatch mesh C530506 platensimide A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:68249 platencin A1 skos:exactMatch mesh C543969 platencin A1 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:6825 Methenamine hippurate skos:exactMatch mesh C011481 methenamine hippurate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:68251 platencin A2 skos:exactMatch mesh C550372 platencin A2 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:68253 platencin A3 skos:exactMatch mesh C550374 platencin A3 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:68296 bunodosine 391 skos:exactMatch mesh C558251 bunodosine 391 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:68297 phomalevone A skos:exactMatch mesh C558350 phomalevone A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:68298 phomalevone B skos:exactMatch mesh C558349 phomalevone B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:68299 phomalevone C skos:exactMatch mesh C558347 phomalevone C lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:6831 Methitural skos:exactMatch mesh C005213 methitural lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:68323 bastadin 5 skos:exactMatch mesh C105188 bastadin 5 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:68324 bastadin 6 skos:exactMatch mesh C515158 bastadin 6 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:68325 bastadin 4 skos:exactMatch mesh C474669 bastadin 4 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:68327 robinetinidol skos:exactMatch mesh C570164 robinetinidol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:68329 syringic acid skos:exactMatch mesh C001945 syringic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:68345 Calceolarioside B skos:exactMatch mesh C529019 calceolarioside B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:68353 poricoic acid A skos:exactMatch mesh C455165 poricoic acid A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:68355 poricoic acid G skos:exactMatch mesh C455167 poricoic acid G lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:68356 poricoic acid H skos:exactMatch mesh C455166 poricoic acid H lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:68358 dehydroeburiconic acid skos:exactMatch mesh C492580 dehydroeburiconic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:68364 trichagmalin D skos:exactMatch mesh C557391 trichagmalin D lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:68366 15-acetyltrichagmalin E skos:exactMatch mesh C557392 15-acetyltrichagmalin E lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:68380 11alpha-hydroxyasiatic acid skos:exactMatch mesh C557421 11alpha-hydroxyasiatic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:68381 arjunolic acid skos:exactMatch mesh C061640 arjunolic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:68384 flavalin A skos:exactMatch mesh C557422 flavalin A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:68385 flavalin B skos:exactMatch mesh C557423 flavalin B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:68388 methyl spongoate skos:exactMatch mesh C520999 methyl spongoate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:68420 plakortone L skos:exactMatch mesh C000590291 plakortone L lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:68428 maltitol skos:exactMatch mesh C010745 maltitol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:68433 gamma-Glu-Leu skos:exactMatch mesh C100511 gamma-glutamyl-leucine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:68441 1-methyluric acid skos:exactMatch mesh C030530 1-methyluric acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:68443 1-methylxanthine skos:exactMatch mesh C053085 1-methylxanthine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:68447 1,3-dimethyluric acid skos:exactMatch mesh C031274 1,3-dimethyluric acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:68449 1,7-dimethyluric acid skos:exactMatch mesh C053084 1,7-dimethyluric acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:68454 2-hydroxy-2-methylbutyric acid skos:exactMatch mesh C521666 2-hydroxy-2-methylbutyric acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:68487 strigolactone skos:exactMatch mesh C000591191 GR24 strigolactone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:68499 3-methylcrotonyl glycine skos:exactMatch mesh C002163 beta-methylcrotonylglycine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:68508 diethyl maleate skos:exactMatch mesh C014476 diethyl maleate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:68517 17beta(H),21beta(H)-bishomohopanol skos:exactMatch mesh C071732 bacteriohopane-32-ol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:6852 Methyl 5-hydroxy-2-benzimidazole carbamate skos:exactMatch mesh C080388 methyl 5-hydroxy-2-benzimidazole carbamate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:68528 3-amino-3-phenylpropanoic acid skos:exactMatch mesh C064718 3-amino-3-phenylpropionic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:68531 3,7-dimethyluric acid skos:exactMatch mesh C066065 3,7-dimethyluric acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:68534 enzalutamide skos:exactMatch mesh C540278 MDV 3100 lexical 0.9 https://github.com/indralab/panacea_indra/blob/master/panacea_indra/make_ctd_tests.py +chebi CHEBI:68540 teriflunomide skos:exactMatch mesh C072876 A 771726 lexical 0.9 https://github.com/indralab/panacea_indra/blob/master/panacea_indra/make_ctd_tests.py +chebi CHEBI:68540 teriflunomide skos:exactMatch mesh C527525 teriflunomide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:68556 icatibant skos:exactMatch mesh C065679 icatibant lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:68566 3-methylglutaric acid skos:exactMatch mesh C033686 3-methylglutaric acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:6857 Methyl cinnamate skos:exactMatch mesh C025385 methyl cinnamate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:68572 2-aminonicotinic acid skos:exactMatch mesh C110415 2-aminonicotinic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:68578 5-aminonicotinic acid skos:exactMatch mesh C000603796 5-aminonicotinic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:68583 6-aminonicotinic acid skos:exactMatch mesh C044559 6-aminonicotinic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:68609 eritoran skos:exactMatch mesh C512420 eritoran lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:68621 boceprevir skos:exactMatch mesh C512204 N-(3-amino-1-(cyclobutylmethyl)-2,3-dioxopropyl)-3-(2-((((1,1-dimethylethyl)amino)carbonyl)amino)-3,3-dimethyl-1-oxobutyl)-6,6-dimethyl-3-azabicyclo(3.1.0)hexan-2-carboxamide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:68624 cis-abienol skos:exactMatch mesh C085761 abienol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:68625 valerena-4,7(11)-diene skos:exactMatch mesh C576163 valerena-4,7(11)-diene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:68636 p-hydroxyphenylbut-3-ene-2-one skos:exactMatch mesh C034785 4-hydroxycinnamoylmethane lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:68637 dexamethasone phosphate skos:exactMatch mesh C004180 dexamethasone 21-phosphate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:68660 FR901469 skos:exactMatch mesh C417112 FR 901469 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:68694 (22E,24R)-ergosta-7,22-diene-3beta,5alpha,6beta,9alpha-tetrol skos:exactMatch mesh C458720 9-hydroxycerevisterol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:68704 5'-hydroxyasperentin skos:exactMatch mesh C000607239 5'-hydroxyasperentin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:68705 globosumone A skos:exactMatch mesh C501373 globosumone A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:68706 globosumone B skos:exactMatch mesh C501374 globosumone B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:68707 globosumone C skos:exactMatch mesh C501375 globosumone C lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:68708 7,8-dihydroxy-3-methyl-10-oxo-10H-chromeno[3,2-c]pyridine-9-carboxylic acid skos:exactMatch mesh C466664 SB 236049 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:68709 7,8-dihydroxy-1-methoxy-3-methyl-10-oxo-4,10-dihydro-1H,3H-pyrano[4,3-b]chromene-9-carboxylic acid skos:exactMatch mesh C466665 SB 236050 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:68710 7,8-dihydroxy-1-methoxy-3-methyl-10-oxo-1H,10H-pyrano[4,3-b]chromene-9-carboxylic acid skos:exactMatch mesh C466666 SB 238569 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:68712 globosuxanthone A skos:exactMatch mesh C580986 globosuxanthone A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:68717 1,3,6,8-tetrahydroxyanthraquinone skos:exactMatch mesh C544948 1,3,6,8-tetrahydroxyanthraquinone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:68730 chaetomugilin D skos:exactMatch mesh C539431 chaetomugilin D lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:68741 chetomin skos:exactMatch mesh C001598 chetomin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:68742 flavipin skos:exactMatch mesh C000621062 flavipin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:68745 chetoseminudin A skos:exactMatch mesh C483272 chetoseminudin A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:68746 chetoseminudin C skos:exactMatch mesh C483274 chetoseminudin C lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:68747 chaetocin skos:exactMatch mesh C002511 chaetocin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:68748 sch 210971 skos:exactMatch mesh C513451 Sch 210971 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:68749 sch 210972 skos:exactMatch mesh C513452 Sch 210972 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:68750 chaetochalasin A skos:exactMatch mesh C000597996 chaetochalasin A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:68751 19-O-acetylchaetoglobosin D skos:exactMatch mesh C529252 19-O-acetylchaetoglobosin D lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:68753 19-O-acetylchaetoglobosin B skos:exactMatch mesh C529253 19-O-acetylchaetoglobosin B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:68779 pochonin D skos:exactMatch mesh C502130 pochonin D lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:68781 chaetomanone skos:exactMatch mesh C469373 chaetomanone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:68784 echinuline skos:exactMatch mesh C001132 echinuline lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:68788 chaetopyranin skos:exactMatch mesh C516755 chaetopyranin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:68794 neoechinulin A skos:exactMatch mesh C490266 neoechinulin A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:68797 trichodion skos:exactMatch mesh C412103 trichodion lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:68804 monocillin I skos:exactMatch mesh C444505 monocillin I lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:68808 cochliodinol skos:exactMatch mesh C004557 cochliodinol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:68809 chetoseminudin B skos:exactMatch mesh C483273 chetoseminudin B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:68830 O-decanoylcarnitine skos:exactMatch mesh C002893 decanoylcarnitine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:68841 gadobutrol skos:exactMatch mesh C090600 gadobutrol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:68845 azilsartan medoxomil skos:exactMatch mesh C557413 azilsartan medoxomil lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:68857 Nordidemnin B skos:exactMatch mesh C067388 nordidemnin B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:68858 Ganodermanontriol skos:exactMatch mesh C558586 ganodermanontriol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:68860 arugosin C skos:exactMatch mesh C006635 arugosin C lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:68861 Aspirochlorine skos:exactMatch mesh C119402 aspirochlorine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:68885 Streptobactin skos:exactMatch mesh C569545 streptobactin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:68888 benarthin skos:exactMatch mesh C076470 benarthin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:68889 hydroxytyrosol skos:exactMatch mesh C005975 3,4-dihydroxyphenylethanol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:6891 Methylripariochromene A skos:exactMatch mesh C401287 methylripariochromene A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:68916 cucurbitacin E 2-O-beta-D-glucopyranoside skos:exactMatch mesh C569546 cucurbitacin E 2-O-beta-D-glucopyranoside lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:68918 khekadaengoside K skos:exactMatch mesh C450221 khekadaengoside K lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:68920 bruceolline I skos:exactMatch mesh C000622968 bruceolline I lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:68921 bruceolline J skos:exactMatch mesh C586357 bruceolline J lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:68926 bruceolline E skos:exactMatch mesh C586356 bruceolline E lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:68931 bruceine D skos:exactMatch mesh C030412 bruceine D lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:68939 Tracheloside skos:exactMatch mesh C079169 tracheloside lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:6895 Methysticin skos:exactMatch mesh C076881 methysticin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:68965 Icariside E4 skos:exactMatch mesh C000605636 icariside E4 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:68971 uvarigrandin A skos:exactMatch mesh C437401 uvarigrandin A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:68972 bullatacin skos:exactMatch mesh C061022 bullatacin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:68992 nantenine skos:exactMatch mesh C041615 nantenine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:68995 Stenusine skos:exactMatch mesh C011112 stenusin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:68996 (Z)-3-(2-methyl-1-butenyl)pyridine skos:exactMatch mesh C569079 (Z)-3-(2-methyl-1-butenyl)pyridine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:6900 Metocurine skos:exactMatch mesh C032943 metocurine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:69008 Dysolenticin J skos:exactMatch mesh C569080 dysolenticin J lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:69013 alphitonin skos:exactMatch mesh C569082 alphitonin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:69015 Malabaricone C skos:exactMatch mesh C071787 malabaricone C lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:69016 Farinamycin skos:exactMatch mesh C569083 farinamycin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:69017 physalin B skos:exactMatch mesh C033270 physalin B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:69018 physalin D skos:exactMatch mesh C441429 physalin D lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:6902 metolachlor skos:exactMatch mesh C051786 metolachlor lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:69020 physalin G skos:exactMatch mesh C569084 physalin G lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:69021 berkeleydione skos:exactMatch mesh C493366 berkeleydione lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:69022 berkeleytrione skos:exactMatch mesh C493367 berkeleytrione lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:69023 preaustinoid A skos:exactMatch mesh C473688 preaustinoid A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:69031 Cyclo(glycyltryptophyl) skos:exactMatch mesh C569085 cyclo(glycyltryptophyl) lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:69037 Omubioside skos:exactMatch mesh C568797 omubioside lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:69038 Katimborine skos:exactMatch mesh C568798 katimborine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:69040 Seselin skos:exactMatch mesh C516746 seselin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:69041 suberosin skos:exactMatch mesh C518975 suberosin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:69042 7-demethylsuberosin skos:exactMatch mesh C030736 7-demethylsuberosin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:69052 Thiocoraline skos:exactMatch mesh C109005 thiocoraline lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:69057 2-Bromo-N-methyltryptamine skos:exactMatch mesh C568804 2-bromo-N-methyltryptamine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:69058 3-Bromo-N-methyltyramine skos:exactMatch mesh C568805 3-bromo-N-methyltyramine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:69060 6-Hydroxytetrahydro-beta-carboline skos:exactMatch mesh C009762 5-hydroxytryptoline lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:69063 1,3,7-trimethylisoguanine skos:exactMatch mesh C414697 1,3,7-trimethylisoguanine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:69064 Glionitrin B skos:exactMatch mesh C568803 glionitrin B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:69065 Serinolamide A skos:exactMatch mesh C568801 serinolamide A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:6907 metoxuron skos:exactMatch mesh C454323 3-(3-chloro-4-methoxyphenyl)-1,1-dimethylurea lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:69074 linderalactone skos:exactMatch mesh C477965 linderalactone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:69086 glycyrin skos:exactMatch mesh C000602096 glycyrin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:69088 vestitol skos:exactMatch mesh C515147 vestitol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:69091 dihydrolicoisoflavone A skos:exactMatch mesh C094794 dihydrolicoisoflavone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:69093 semilicoisoflavone B skos:exactMatch mesh C554447 semilicoisoflavone B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:69096 1-methoxyficifolinol skos:exactMatch mesh C000604345 1-methoxyficifolinol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:69098 licocoumarone skos:exactMatch mesh C000617177 licocoumarone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:69119 sitoindoside IX skos:exactMatch mesh C467020 sitoindoside IX lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:69127 latrunculol A skos:exactMatch mesh C555732 latrunculol A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:69132 aignopsanoic acid A skos:exactMatch mesh C540379 aignopsanoic acid A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:69134 fijianolide B skos:exactMatch mesh C117305 laulimalide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:69135 fijianolide A skos:exactMatch mesh C117306 isolaulimalide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:69137 mycothiazole skos:exactMatch mesh C508681 mycothiazole lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:691622 1,3,7-trimethyluric acid skos:exactMatch mesh C039222 1,3,7-trimethyluric acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:69177 18-hydroxymanool skos:exactMatch mesh C471145 18-hydroxy-manool lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:6918 Mezerein skos:exactMatch mesh C011309 mezerein lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:69180 trigochinin B skos:exactMatch mesh C549984 trigochinin B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:69185 JBIR-85 skos:exactMatch mesh C570344 JBIR-85 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:69187 Methyl palmitate skos:exactMatch mesh C019012 methyl palmitate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:69189 Grassypeptolide D skos:exactMatch mesh C561844 grassypeptolide D lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:69190 Grassypeptolide E skos:exactMatch mesh C561845 grassypeptolide E lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:69191 Ibu-epidemethoxylyngbyastatin 3 skos:exactMatch mesh C561846 Ibu-epidemethoxylyngbyastatin 3 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:69192 Dolastatin 12 skos:exactMatch mesh C115556 dolastatin 12 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:69193 Grassypeptolide F skos:exactMatch mesh C561847 grassypeptolide F lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:69194 Grassypeptolide G skos:exactMatch mesh C561848 grassypeptolide G lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:69195 (S)-3,7-dihydroxychroman-4-one skos:exactMatch mesh C562119 (S)-3,7-dihydroxychroman-4-one lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:69199 3-deoxysappanone B skos:exactMatch mesh C000601539 deoxysappanone B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:692 10,16-Dihydroxyhexadecanoic acid skos:exactMatch mesh C474391 10,16-dihydroxyhexadecanoic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:69202 protosappanin A skos:exactMatch mesh C090723 protosappanin A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:69204 fellutamide C skos:exactMatch mesh C562120 fellutamide C lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:69205 fellutamide D skos:exactMatch mesh C562121 fellutamide D lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:69206 (8R)-3beta,8-dihydroxypolypoda-13E,17E,21-triene skos:exactMatch mesh C562122 (8R)-3beta,8-dihydroxypolypoda-13E,17E,21-triene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:69215 ethyl tumonoate A skos:exactMatch mesh C562123 ethyl tumonoate A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:69216 fatsicarpain A skos:exactMatch mesh C561843 fatsicarpain A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:6922 Micheliolide skos:exactMatch mesh C577928 micheliolide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:69232 caerulomycin C skos:exactMatch mesh C466842 caerulomycin C lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:69236 falcarindiol skos:exactMatch mesh C034379 falcarindiol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:69237 pinusolide skos:exactMatch mesh C101973 pinusolide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:69241 totarol skos:exactMatch mesh C078548 totarol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:69242 Pyridinopyrone A skos:exactMatch mesh C562124 pyridinopyrone A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:69243 Pyridinopyrone B skos:exactMatch mesh C562125 pyridinopyrone B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:69249 2-(2-hydroxy-4-methoxyphenyl)-5-(3-hydroxypropyl)benzofuran skos:exactMatch mesh C562126 2-(2-hydroxy-4-methoxyphenyl)-5-(3-hydroxypropyl)benzofuran lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:69255 rataniaphenol II skos:exactMatch mesh C452812 eupomatenoid 6 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:69270 Inflatin A skos:exactMatch mesh C561982 inflatin A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:69271 Inflatin B skos:exactMatch mesh C561983 inflatin B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:69276 aphidicolin-17-monoacetate skos:exactMatch mesh C037613 aphidicolin-17-monoacetate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:69277 isochlamydosporol skos:exactMatch mesh C090737 isochlamydosporol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:6928 Microlenin skos:exactMatch mesh C017538 microlenin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:69284 Suvanine skos:exactMatch mesh C582927 suvanine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:69300 Paecilocin A skos:exactMatch mesh C000591702 paecilocin A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:69304 cinnamtannin B-1 skos:exactMatch mesh C517872 cinnamtannin B-1 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:69308 Leubethanol skos:exactMatch mesh C562290 leubethanol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:69333 4beta,10alpha-dihydroxy-5alphaH-guai-1(2),11(13)-dien-12,8alpha-olide skos:exactMatch mesh C562145 4beta,10alpha-dihydroxy-5alphaH-guai-1(2),11(13)-dien-12,8alpha-olide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:69334 2alpha-acetoxy-4alpha,6alpha-dihydroxy-1beta,5alphaH-guai-9(10),11(13)-dien-12,8alpha-olide skos:exactMatch mesh C562146 2alpha-acetoxy-4alpha,6alpha-dihydroxy-1beta,5alphaH-guai-9(10),11(13)-dien-12,8alpha-olide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:69337 bigelovin skos:exactMatch mesh C099796 bigelovin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:69340 ergolide skos:exactMatch mesh C099797 ergolide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:69345 inuviscolide skos:exactMatch mesh C458886 inuviscolide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:69354 14-hydroxy-6,12-muuroloadien-15-oic acid skos:exactMatch mesh C000709021 14-hydroxy-6,12-muuroloadien-15-oic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:69357 skimmiarepin A skos:exactMatch mesh C567947 skimmiarepin A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:69358 skimmiarepin C skos:exactMatch mesh C486120 skimmiarepin C lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:6936 Mikanolide skos:exactMatch mesh C500662 1,10:2,3-diepoxy-6,8-dihydroxy-11-vinylgermacr-4-ene 12,14-di-gamma-lactone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:6937 Millettone skos:exactMatch mesh C480849 millettone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:69373 sieboldianoside A skos:exactMatch mesh C112799 kalopanax saponin H lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:69376 Cephalostatin 1 skos:exactMatch mesh C454806 cephalostatin I lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:69380 stemofoline skos:exactMatch mesh C430220 stemofoline lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:69381 Didehydrostemofoline skos:exactMatch mesh C481859 didehydrostemofoline lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:69382 croomine skos:exactMatch mesh C082845 croomine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:69386 neotuberostemonine skos:exactMatch mesh C468415 neotuberostemonine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:69388 oxyprotostemonine skos:exactMatch mesh C485493 oxyprotostemonine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:69389 stemocurtisinol skos:exactMatch mesh C485491 stemocurtisinol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:69390 oxystemokerrine skos:exactMatch mesh C576773 oxystemokerrine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:69391 stemocurtisine skos:exactMatch mesh C480054 stemocurtisine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:69392 stemokerrine skos:exactMatch mesh C576772 stemokerrine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:69404 pestalamide A skos:exactMatch mesh C515288 tensidol B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:69408 nygerone A skos:exactMatch mesh C538955 nygerone A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:69420 Polysiphenol skos:exactMatch mesh C562293 polysiphenol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:69422 actinopolysporin A skos:exactMatch mesh C562187 actinopolysporin A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:69423 actinopolysporin B skos:exactMatch mesh C562188 actinopolysporin B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:69424 actinopolysporin C skos:exactMatch mesh C562189 actinopolysporin C lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:69426 cordysinin B skos:exactMatch mesh C024341 2'-O-methyladenosine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:69435 4,4-dimethyl-5alpha-ergosta-8,24(28)-dien-3beta-ol skos:exactMatch mesh C075369 4,4-dimethylergosta-8,24(28)-dien-3-ol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:69436 3-O-feruloylcycloartenol skos:exactMatch mesh C055272 cycloartenol ferulic acid ester lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:69438 3-hydroxy-2-methyl-4-pyrone skos:exactMatch mesh C008316 maltol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:69439 cyclo(L-Pro-L-Val) skos:exactMatch mesh C424926 cyclo(prolyl-valyl) lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:6944 Mirasan skos:exactMatch mesh C002365 mirasan lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:69443 flazin skos:exactMatch mesh C055780 flazin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:69444 perlolyrine skos:exactMatch mesh C055781 perlolyrine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:69445 1-methyluracil skos:exactMatch mesh C002596 1-methyluracil lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:69447 diplotrin A skos:exactMatch mesh C562200 diplotrin A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:69448 diplotrin B skos:exactMatch mesh C562201 diplotrin B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:69449 diplotrin C skos:exactMatch mesh C562202 diplotrin C lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:69450 diplotasin skos:exactMatch mesh C562203 diplotasin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:69456 quercetin-3-O-beta-D-xylopyranoside skos:exactMatch mesh C000613606 reynoutrin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:69461 ircinolin A skos:exactMatch mesh C562204 ircinolin A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:69462 15-acetylirciformonin B skos:exactMatch mesh C562205 15-acetylirciformonin B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:69463 10-acetylirciformonin B skos:exactMatch mesh C562206 10-acetylirciformonin B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:69466 (2S,3S)-sulfated pterosin C skos:exactMatch mesh C562207 (2S,3S)-sulfated pterosin C lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:69468 (2R)-pterosin P skos:exactMatch mesh C557811 (2R)-pterosin P lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:69475 TAN-931 skos:exactMatch mesh C069914 4-(2,6-dihydroxybenzoyl)-3-formyl-5-hydroxybenzoic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:69477 cannabigerol skos:exactMatch mesh C037036 cannabigerol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:69479 sesquicannabigerol skos:exactMatch mesh C562209 sesquicannabigerol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:69483 Thailandepsin A skos:exactMatch mesh C574693 thailandepsin A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:69484 Thailandepsin B skos:exactMatch mesh C000613661 thailandepsin B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:69485 Spiruchostatin C skos:exactMatch mesh C568645 spiruchostatin C lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:6949 Miroestrol skos:exactMatch mesh C571572 miroestrol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:69494 Sphaeropsidin A skos:exactMatch mesh C570422 sphaeropsidin A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:69496 Sphaeropsidin D skos:exactMatch mesh C465318 sphaeropsidin D lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:69497 Sphaeropsidin E skos:exactMatch mesh C465319 sphaeropsidin E lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:69499 Bergenin skos:exactMatch mesh C006741 bergenin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:69518 rubiarbonol G skos:exactMatch mesh C000628490 rubiarbonol G lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:69522 2-methoxy-1,4-naphthoquinone skos:exactMatch mesh C096118 2-methoxy-1,4-naphthoquinone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:69527 rubiarbonone C skos:exactMatch mesh C000654633 rubiarbonone C lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:69531 rubianthraquinone skos:exactMatch mesh C480243 rubianthraquinone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:69532 1,6-dihydroxy-2-methyl-9,10-anthraquinone skos:exactMatch mesh C569240 soranjidiol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:69533 rubiadin skos:exactMatch mesh C072500 rubiadin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:69536 1,3,6-trihydroxy-2-methyl-9,10-anthraquinone-3-O-(6'-O-acetyl)-beta-D-glucopyranoside skos:exactMatch mesh C069463 1,3,6-trihydroxy-2-methyl-9,10-anthraquinone-3-O-(6'-acetylglucoside) lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:69542 (+)-isolariciresinol skos:exactMatch mesh C060284 isolariciresinol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:69549 7-demethoxyegonol oleate skos:exactMatch mesh C568753 7-demethoxyegonol oleate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:69557 7-demethoxyegonol skos:exactMatch mesh C419663 demethoxy-egonol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:6956 Mitragynine skos:exactMatch mesh C001801 mitragynine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:69565 Yuanhuadine skos:exactMatch mesh C039652 yuanhuadine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:6957 Mitraphylline skos:exactMatch mesh C509328 mitraphylline lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:69572 Alpinnanin B skos:exactMatch mesh C507475 alpinnanin B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:69577 3beta,23-dihydroxy-30-nor-olean-12,20-dien-28-oic acid skos:exactMatch mesh C568751 3beta,23-dihydroxy-30-nor-olean-12,20-dien-28-oic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:69578 3beta,4beta,23-trihydroxy-24-nor-olean-12-en-28-oic acid skos:exactMatch mesh C568752 3beta,4beta,23-trihydroxy-24-nor-olean-12-en-28-oic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:69580 23-Hydroxybetulinic acid skos:exactMatch mesh C468651 23-hydroxybetulinic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:69581 Paeonol skos:exactMatch mesh C013638 paeonol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:69583 Benzoylpaeoniflorin skos:exactMatch mesh C047591 benzoylpaeoniflorin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:69584 Palbinone skos:exactMatch mesh C080910 palbinone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:69598 1-Acetyl-beta-carboline skos:exactMatch mesh C583241 1-acetyl-beta-carboline lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:69599 Methylpendolmycin skos:exactMatch mesh C073640 methylpendolmycin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:6960 Moexipril skos:exactMatch mesh C058302 moexipril lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:69600 Pendolmycin skos:exactMatch mesh C059313 pendolmycin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:69608 clethroidoside H skos:exactMatch mesh C568757 clethroidoside H lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:69617 Guangomide A skos:exactMatch mesh C516611 guangomide A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:69619 Crotocin skos:exactMatch mesh C013454 crotocin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:6962 Molephantin skos:exactMatch mesh C026746 molephantin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:69621 Trichothecin skos:exactMatch mesh C025711 trichothecin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:6963 Molephantinin skos:exactMatch mesh C026747 molephantinin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:6964 molinate skos:exactMatch mesh C009821 molinate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:69653 22alpha,23alpha-epoxy-solanida-1,4,9-trien-3-one skos:exactMatch mesh C568799 22alpha,23alpha-epoxy-solanida-1,4,9-trien-3-one lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:69663 Ligraminol A skos:exactMatch mesh C569058 ligraminol A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:69679 Isochamanetin skos:exactMatch mesh C000709368 isochamanetin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:69681 Dichamanetin skos:exactMatch mesh C512547 dichamanetin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:69686 pellitorine skos:exactMatch mesh C008778 pellitorine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:69690 Salvadione C skos:exactMatch mesh C569060 salvadione C lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:69691 Perovskone B skos:exactMatch mesh C569059 perovskone B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:69698 Pestalospirane A skos:exactMatch mesh C569077 pestalospirane A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:69699 Pestalospirane B skos:exactMatch mesh C569078 pestalospirane B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:69726 Proliferin A skos:exactMatch mesh C562259 proliferin A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:69733 Xylarenone D skos:exactMatch mesh C561333 xylarenone D lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:69734 xylarenone E skos:exactMatch mesh C561334 xylarenone E lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:69741 mucusisoflavone A skos:exactMatch mesh C561335 mucusisoflavone A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:69742 mucusisoflavone B skos:exactMatch mesh C561336 mucusisoflavone B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:69743 mucusisoflavone C skos:exactMatch mesh C561337 mucusisoflavone C lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:69746 alpinumisoflavone skos:exactMatch mesh C000154 alpinumisoflavone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:69761 Mayteine skos:exactMatch mesh C096143 mayteine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:69774 loliolide skos:exactMatch mesh C030425 loliolide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:69783 shizukaol B skos:exactMatch mesh C000615622 shizukaol B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:69785 shizukaol D skos:exactMatch mesh C587032 shizukaol D lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:69786 shizukaol F skos:exactMatch mesh C583587 shizukaol F lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:69789 chlorahololide B skos:exactMatch mesh C519127 chlorahololide B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:69790 chloramultilide C skos:exactMatch mesh C527010 chloramultilide C lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:69793 Lavaudioside A skos:exactMatch mesh C561169 lavaudioside A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:69796 aucubin skos:exactMatch mesh C006650 aucubin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:69797 catalpol skos:exactMatch mesh C078040 catalpol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:69798 verproside skos:exactMatch mesh C512483 verproside lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:69799 verminoside skos:exactMatch mesh C506490 verminoside lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:69805 Helioside A skos:exactMatch mesh C561168 helioside A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:69808 14-Deoxy-11,12-didehydroandrographolide skos:exactMatch mesh C495626 14-deoxy-11,12-didehydroandrographolide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:69814 isovitexin 8-C-beta-glucoside skos:exactMatch mesh C530449 apigenin-6,8-di-C-glycopyranoside lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:69815 fischeroside A skos:exactMatch mesh C561171 fischeroside A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:69816 fischeroside B skos:exactMatch mesh C561172 fischeroside B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:69817 fischeroside C skos:exactMatch mesh C561173 fischeroside C lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:69818 prostratin skos:exactMatch mesh C070999 prostratin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:69825 jolkinolide A skos:exactMatch mesh C057915 jolkinolide A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:69827 jolkinolide B skos:exactMatch mesh C057914 jolkinolide B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:69830 oxypeucedanin skos:exactMatch mesh C031535 oxypeucadanin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:69832 osthole skos:exactMatch mesh C046627 osthol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:69833 Ostruthin skos:exactMatch mesh C008719 ostruthin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:69834 subereamine A skos:exactMatch mesh C561439 subereamine A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:69835 subereamine B skos:exactMatch mesh C561440 subereamine B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:69836 subereaphenol D skos:exactMatch mesh C561441 subereaphenol D lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:69838 aerothionin skos:exactMatch mesh C000603844 aerothionin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:69853 Heloside B skos:exactMatch mesh C561339 heloside B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:6989 Montanin skos:exactMatch mesh C024716 Montanin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:6990 Montanin A skos:exactMatch mesh C533579 montanin A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:69905 Ieodomycin A skos:exactMatch mesh C561379 Ieodomycin A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:6991 Montanol skos:exactMatch mesh C047278 montanol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:69916 sideroxylin skos:exactMatch mesh C561549 sideroxylin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:69919 Hydrastine skos:exactMatch mesh C013024 hydrastine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:69920 JBIR-56 skos:exactMatch mesh C561553 JBIR-56 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:69921 JBIR-57 skos:exactMatch mesh C561554 JBIR-57 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:69922 Clauraila A skos:exactMatch mesh C570570 clauraila A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:69926 Girinimbine skos:exactMatch mesh C034052 girinimbine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:69927 Heptaphylline skos:exactMatch mesh C557424 heptaphylline lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:69928 7-Methoxyheptaphylline skos:exactMatch mesh C557425 7-methoxyheptaphylline lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:69929 Xanthoxyletin skos:exactMatch mesh C477468 xanthoxyletin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:69930 Clausine E skos:exactMatch mesh C522708 clausine E lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:69934 Murrayanine skos:exactMatch mesh C476745 murrayanine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:69935 7-Methoxymurrayacine skos:exactMatch mesh C558546 7-methoxymurrayacine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:69936 Clausine O skos:exactMatch mesh C506703 clausine O lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:69939 Dentatin skos:exactMatch mesh C581591 dentatin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:69940 Nor-dentatin skos:exactMatch mesh C052084 nordentatin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:69958 Atractylenolide III skos:exactMatch mesh C424802 atractylenolide III lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:69959 Lauroside B skos:exactMatch mesh C557426 lauroside B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:6996 Morfamquat skos:exactMatch mesh C008547 morfamquat lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:6999 Morindaparvin A skos:exactMatch mesh C035011 morindaparvin A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:7000 Morindone skos:exactMatch mesh C575654 morindone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:70008 quercetin 3,4'-dimethyl ether skos:exactMatch mesh C549753 5,7,3'-trihydroxy-3,4'-dimethoxyflavone lexical 0.9 https://github.com/indralab/panacea_indra/blob/master/panacea_indra/make_ctd_tests.py +chebi CHEBI:70017 asperamide B skos:exactMatch mesh C524749 1-O-beta-D-glucopyranosyl-(2S,2'R,3R,3'E,4E,8E)-N-(2'-hydroxy-3'-hexadecenoyl)-9-methyl-4,8-icosadien-1,3-diol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:70023 sophoraflavanone A skos:exactMatch mesh C433578 sophoraflavanone A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:70027 Dinoxin B skos:exactMatch mesh C557515 dinoxin B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:70032 3'-O-methylorobol skos:exactMatch mesh C534996 3'-O-methylorobol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:70034 cajanol skos:exactMatch mesh C471767 cajanol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:70038 Sapotexanthin skos:exactMatch mesh C557427 sapotexanthin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:70039 Cytosporin D skos:exactMatch mesh C557251 cytosporin D lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:70040 Pestaloquinol A skos:exactMatch mesh C557252 pestaloquinol A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:70041 Pestaloquinol B skos:exactMatch mesh C557250 pestaloquinol B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:70042 Carijodienone skos:exactMatch mesh C557518 carijodienone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:70045 Stereumin H skos:exactMatch mesh C557388 stereumin H lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:70046 Stereumin I skos:exactMatch mesh C557390 stereumin I lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:70047 Stereumin J skos:exactMatch mesh C557389 stereumin J lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:70048 Xylopimarane skos:exactMatch mesh C557519 xylopimarane lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:70049 Clonostachydiol skos:exactMatch mesh C080565 clonostachydiol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:7005 morusin skos:exactMatch mesh C057451 morusin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:70052 Landomycin O skos:exactMatch mesh C503608 landomycin O lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:70053 Landomycin P skos:exactMatch mesh C558150 landomycin P lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:70056 Landomycin M skos:exactMatch mesh C503607 landomycin M lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:70059 Landomycinone skos:exactMatch mesh C490011 landomycinone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:70060 Landomycin D skos:exactMatch mesh C493499 landomycin D lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:70061 Landomycin F skos:exactMatch mesh C493498 landomycin F lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:70064 Landomycin A skos:exactMatch mesh C064648 landomycin A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:70066 Macrophyllionium skos:exactMatch mesh C558038 macrophyllionium lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:70067 Macrophylline A skos:exactMatch mesh C558037 macrophylline A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:70069 Rhynchophylline skos:exactMatch mesh C052714 rhyncophylline lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:70070 Corynoxine B skos:exactMatch mesh C000600670 corynoxine B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:70072 Corynoxine skos:exactMatch mesh C000600669 corynoxine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:70080 4-hydroxycordoin skos:exactMatch mesh C558040 4-hydroxycordoin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:701 licarbazepine skos:exactMatch mesh C039775 10,11-dihydro-10-hydroxycarbamazepine lexical 0.9 https://github.com/indralab/panacea_indra/blob/master/panacea_indra/make_ctd_tests.py +chebi CHEBI:70106 Schizanthine N skos:exactMatch mesh C557958 schizanthine N lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:70108 Schizanthine P skos:exactMatch mesh C557959 schizanthine P lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:70133 Ilimaquinone skos:exactMatch mesh C467077 ilimaquinone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:70135 Nakijinol B skos:exactMatch mesh C557954 nakijinol B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:70138 Agminoside A skos:exactMatch mesh C557960 agminoside A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:7014 mucronulatol skos:exactMatch mesh C530737 mucronulatol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:70143 robustaside E skos:exactMatch mesh C558043 robustaside E lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:70144 robustaside F skos:exactMatch mesh C558044 robustaside F lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:70145 robustaside G skos:exactMatch mesh C558045 robustaside G lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:70148 Monocerin skos:exactMatch mesh C485193 monocerin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:70161 Malyngamide 2 skos:exactMatch mesh C557964 malyngamide 2 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:70163 Wewakazole skos:exactMatch mesh C473357 wewakazole lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:70168 fellutanine skos:exactMatch mesh C118538 cyclo(tryptophyl-tryptophyl) lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:70169 Narciclasine skos:exactMatch mesh C010753 narciclasine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:70170 Pitiprolamide skos:exactMatch mesh C557968 pitiprolamide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:7018 mulberrofuran C skos:exactMatch mesh C550212 mulberrofuran C lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:70184 militarinone B skos:exactMatch mesh C476668 militarinone B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:70185 Tuberatolide A skos:exactMatch mesh C557963 tuberatolide A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:70192 2,3-bis(hydroxymethyl)-7-hydroxy-6-methoxy-1-tetralone skos:exactMatch mesh C558152 2,3-bis(hydroxymethyl)-7-hydroxy-6-methoxy-1-tetralone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:70193 (7R)-7-hydroxytaxiresinol skos:exactMatch mesh C558151 (7R)-7-hydroxytaxiresinol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:70194 isotaxiresinol skos:exactMatch mesh C508339 isotaxiresinol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:70196 tanegool skos:exactMatch mesh C493882 tanegool lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:70197 taxiresinol skos:exactMatch mesh C483062 taxiresinol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:70199 alpha-Conidendrin skos:exactMatch mesh C421915 conidendrin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:70206 maysin skos:exactMatch mesh C114429 maysin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:70207 Tunicyclin B skos:exactMatch mesh C555178 tunicyclin B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:70208 Tunicyclin C skos:exactMatch mesh C555180 tunicyclin C lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:70209 Tunicyclin D skos:exactMatch mesh C555179 tunicyclin D lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:7021 Multiflorine skos:exactMatch mesh C417683 multiflorine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:70227 1-acetyl-3-methoxycarbonyl-beta-carboline skos:exactMatch mesh C579744 1-acetyl-3-methoxycarbonyl-beta-carboline lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:70229 Izumiphenazine B skos:exactMatch mesh C555182 izumiphenazine B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:70230 Izumiphenazine C skos:exactMatch mesh C555183 izumiphenazine C lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:70233 Argutin B skos:exactMatch mesh C555184 argutin B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:70240 Candimine skos:exactMatch mesh C555185 candimine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:70241 Actein skos:exactMatch mesh C096064 actein lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:70254 3'-O-methylepicatechin skos:exactMatch mesh C424450 3'-O-methylepicatechin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:70255 (-)-epicatechin-3-O-gallate skos:exactMatch mesh D004562 Electrocardiography lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:70273 cabraleadiol monoacetate skos:exactMatch mesh C430224 cabraleadiol monoacetate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:70288 Torrubiellone C skos:exactMatch mesh C562285 torrubiellone C lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:70289 Torrubiellone D skos:exactMatch mesh C000609065 torrubiellone D lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:70290 Altechromone A skos:exactMatch mesh C555186 altechromone A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:70291 chloromonilicin skos:exactMatch mesh C045382 chloromonilicin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:70313 antcin K skos:exactMatch mesh C000602429 antcin K lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:70315 eburicol skos:exactMatch mesh C014520 ebericol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:70323 32-hydroxy-ent-guttiferone M skos:exactMatch mesh C554208 32-hydroxy-ent-guttiferone M lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:70324 6-epi-guttiferone J skos:exactMatch mesh C554207 6-epi-guttiferone J lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:70327 xanthochymol skos:exactMatch mesh C414432 xanthochymol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:70328 guttiferone E skos:exactMatch mesh C414433 guttiferone E lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:70329 isoxanthochymol skos:exactMatch mesh C515918 isoxanthochymol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:70331 (+)-morelloflavone skos:exactMatch mesh C105620 morelloflavone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:70332 7-nor-ergosterolide skos:exactMatch mesh C554204 7-nor-ergosterolide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:70333 3beta,11alpha-dihydroxyergosta-8,24(28)-dien-7-one skos:exactMatch mesh C554205 3beta,11alpha-dihydroxyergosta-8,24(28)-dien-7-one lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:70334 3beta-hydroxyergosta-8,24(28)-dien-7-one skos:exactMatch mesh C554206 3beta-hydroxyergosta-8,24(28)-dien-7-one lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:70348 Bussealin A skos:exactMatch mesh C575668 bussealin A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:70353 Apiole skos:exactMatch mesh C446539 apiole lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:70355 Eriocatisin A skos:exactMatch mesh C554209 eriocatisin A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:7037 Mutatochrome skos:exactMatch mesh C001792 citroxanthin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:70376 henryin skos:exactMatch mesh C586151 henryin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:70378 Enmein skos:exactMatch mesh C007594 enmein lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:70390 Lagunamide A skos:exactMatch mesh C554215 lagunamide A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:70391 Lagunamide B skos:exactMatch mesh C554216 lagunamide B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:70399 meleagrine skos:exactMatch mesh C060672 meleagrin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:70400 oxaline skos:exactMatch mesh C490207 oxaline lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:70403 citrinalin A skos:exactMatch mesh C554220 citrinalin A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:70404 citrinalin B skos:exactMatch mesh C554221 citrinalin B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:70406 stemocurtisine N-oxide skos:exactMatch mesh C554260 stemocurtisine N-oxide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:70407 stemofuran L skos:exactMatch mesh C554261 stemofuran L lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:70414 1,2-dehydro-2,3-secofriedelan-3-oic acid skos:exactMatch mesh C554262 1,2-dehydro-2,3-secofriedelan-3-oic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:70415 1beta-hydroxyfriedelin skos:exactMatch mesh C554263 1beta-hydroxyfriedelin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:70416 3beta-hydroxyfriedelan-23-oic acid skos:exactMatch mesh C554264 3beta-hydroxyfriedelan-23-oic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:70432 platyconic acid B lactone skos:exactMatch mesh C554267 platyconic acid B lactone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:70433 deapio-platyconic acid B lactone skos:exactMatch mesh C554268 deapio-platyconic acid B lactone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:70434 deapio-platycodin D2 skos:exactMatch mesh C554269 deapio-platycodin D2 lexical 0.9 https://github.com/indralab/panacea_indra/blob/master/panacea_indra/make_ctd_tests.py +chebi CHEBI:70436 platycodin D skos:exactMatch mesh C108953 platycodin D lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:70449 platycoside E skos:exactMatch mesh C121315 platycoside E lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:70453 Dillapiole skos:exactMatch mesh C498255 5-allyl 6,7-dimethoxy 1,3-benzodioxole lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:70455 2'''-episilvestrol skos:exactMatch mesh C554318 2'''-episilvestrol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:70456 2''',5'''-diepisilvestrol skos:exactMatch mesh C554317 2''',5'''-diepisilvestrol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:70482 (S)-1'-methylbutyl caffeate skos:exactMatch mesh C554319 (S)-1'-methylbutyl caffeate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:70483 (S)-1'-methylhexyl caffeate skos:exactMatch mesh C554320 (S)-1'-methylhexyl caffeate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:70484 (S)-1'-methyloctyl caffeate skos:exactMatch mesh C554321 (S)-1'-methyloctyl caffeate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:70491 Justiflorinol skos:exactMatch mesh C501782 justiflorinol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:70501 N(4)-demethyl-12-methoxyalstogustine skos:exactMatch mesh C508461 N(4)-demethyl-12-methoxyalstogustine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:70505 picrinine skos:exactMatch mesh C528220 picrinine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:70507 (-)-vincadifformine skos:exactMatch mesh C456406 vincadifformine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:7051 myosmine skos:exactMatch mesh C002398 myosmine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:70514 leuconoxine skos:exactMatch mesh C000590191 leuconoxine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:70526 (20S)-5-Stigmastene-3beta,7alpha,16beta,20-tetrol skos:exactMatch mesh C554323 (20S)-5-stigmastene-3beta,7alpha,16beta,20-tetrol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:70529 methyl kulonate skos:exactMatch mesh C574807 methyl kulonate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:70545 Pimelotide A skos:exactMatch mesh C546246 pimelotide A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:70548 simplexin skos:exactMatch mesh C011110 simplexin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:70549 huratoxin skos:exactMatch mesh C044222 huratoxin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:70576 (+)-pisiferic acid skos:exactMatch mesh C060710 pisiferic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:70582 Watasemycin A skos:exactMatch mesh C456030 watasemycin A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:70585 Pulicatin B skos:exactMatch mesh C000622966 pulicatin B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:70589 Scytonemide A skos:exactMatch mesh C554485 scytonemide A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:70590 Scytonemide B skos:exactMatch mesh C554486 scytonemide B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:70592 Essramycin skos:exactMatch mesh C532326 essramycin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:70593 Abyssomicin I skos:exactMatch mesh C554487 abyssomicin I lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:70594 Penasin A skos:exactMatch mesh C554488 penasin A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:70595 Penasin B skos:exactMatch mesh C554489 penasin B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:70605 Gumosin skos:exactMatch mesh C554490 gumosin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:70606 Gumoside A skos:exactMatch mesh C554491 gumoside A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:70607 Gumoside B skos:exactMatch mesh C554492 gumoside B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:70609 feselol skos:exactMatch mesh C551210 feselol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:7061 myxochelin B skos:exactMatch mesh C438374 myxochelin B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:70618 4,4',6-Tribromo-2,2'-biphenol skos:exactMatch mesh C554494 4,4',6-tribromo-2,2'-biphenol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:70619 pentabromopseudilin skos:exactMatch mesh C094409 pentabromopseudilin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:70622 lippiolide skos:exactMatch mesh C554210 lippiolide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:70623 lippiolidolic acid skos:exactMatch mesh C554211 lippiolidolic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:70624 lippiolic acid skos:exactMatch mesh C554212 lippiolic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:70632 2',3-dihydroxy-5-methoxybiphenyl skos:exactMatch mesh C000628500 2',3-dihydroxy-5-methoxybiphenyl lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:70644 Pseudocolumbamine skos:exactMatch mesh C000605911 pseudocolumbamine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:70645 Dehydrocorydalmine skos:exactMatch mesh C007233 dehydrocorydalmine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:70647 Pseudopalmatine skos:exactMatch mesh C000605894 pseudopalmatine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:70650 Lysicamine skos:exactMatch mesh C069090 lysicamine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:70661 (2S)-8-formyl-5-hydroxy-7-methoxy-6-methylflavanone skos:exactMatch mesh C520277 (2S)-8-formyl-5-hydroxy-7-methoxy-6-methylflavanone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:70672 Boehmenan skos:exactMatch mesh C000611654 boehmenan lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:70684 Rotundic acid skos:exactMatch mesh C572089 rotundic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:70721 clethodim skos:exactMatch mesh C441919 clethodim lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:70726 hesperadin skos:exactMatch mesh C474723 hesperadin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:70729 ceftaroline skos:exactMatch mesh C490727 T 91825 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:70738 UDP-N-acetyl-alpha-D-mannosaminouronic acid skos:exactMatch mesh C020949 uridine diphosphate N-acetyl-D-mannosaminuronic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:70749 O-hexanoylcarnitine skos:exactMatch mesh C061301 hexanoylcarnitine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:70777 7-hydroxytryptophan skos:exactMatch mesh C461139 7-hydroxytryptophan lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:70778 GW 7647 skos:exactMatch mesh C453899 GW 7647 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:70800 CDP-4-dehydro-3,6-dideoxy-alpha-D-glucose skos:exactMatch mesh C007213 cytidine diphosphate-4-keto-3,6-dideoxyglucose lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:70824 m-hydroxyhippuric acid skos:exactMatch mesh C535238 3-hydroxyhippuric acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:70867 3'-O-methylguanosine skos:exactMatch mesh C037626 3'-O-methylguanosine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:7087 N-(3,5-Dichlorophenyl)succinimide skos:exactMatch mesh C007352 N-(3,5-dichlorophenyl)succinimide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:7091 N-(5-phospho-beta-D-ribosyl)anthranilic acid skos:exactMatch mesh C063777 N-(5'-phosphoribosyl)anthranilate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:70960 alpha-methylhistidine skos:exactMatch mesh C046181 alpha-methylhistidine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:70961 histidine methyl ester skos:exactMatch mesh C053861 histidine methyl ester lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:70966 1-methyl-5-imidazoleacetic acid skos:exactMatch mesh C055224 pros-methylimidazoleacetic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:70971 7-methylinosine skos:exactMatch mesh C034907 7-methylinosine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:70973 monoethyl phthalate skos:exactMatch mesh C581825 monoethyl phthalate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:70979 N-isobutyrylglycine skos:exactMatch mesh C026847 N-isobutyrylglycine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:70984 N-isovalerylglycine skos:exactMatch mesh C005916 N-isovalerylglycine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:70992 strospeside skos:exactMatch mesh C003352 strospeside lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:71004 20,22-dihydrodigoxigenin skos:exactMatch mesh C037826 20,22-dihydrodigoxigenin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:71016 ouabagenin skos:exactMatch mesh C008721 ouabagenin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:71022 acovenoside A skos:exactMatch mesh C048124 acovenoside A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:71023 alcaftadine skos:exactMatch mesh C557708 alcaftadine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:71025 ulipristal acetate skos:exactMatch mesh C555622 ulipristal acetate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:71028 carglumic acid skos:exactMatch mesh C528449 carglumic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:71045 bisdemethoxycurcumin skos:exactMatch mesh C034786 bis(4-hydroxycinnamoyl)methane lexical 0.9 https://github.com/indralab/panacea_indra/blob/master/panacea_indra/make_ctd_tests.py +chebi CHEBI:71062 quinol sulfate skos:exactMatch mesh C038506 quinol sulfate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:71063 N-retinylidenephosphatidylethanolamine skos:exactMatch mesh C497343 N-retinylidene-phosphatidylethanolamine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:71169 succinyladenosine skos:exactMatch mesh C043565 succinyladenosine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:71179 O-tiglylcarnitine skos:exactMatch mesh C104275 tiglylcarnitine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:71182 trans-3-hydroxycotinine skos:exactMatch mesh C001381 hydroxycotinine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:71197 tofacitinib citrate skos:exactMatch mesh C540455 CP-690,550-10 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:71199 hydroxymethylphosphonate(1-) skos:exactMatch mesh C542570 hydroxymethylphosphonate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:71223 pralatrexate skos:exactMatch mesh C418863 10-propargyl-10-deazaaminopterin lexical 0.9 https://github.com/indralab/panacea_indra/blob/master/panacea_indra/make_ctd_tests.py +chebi CHEBI:71231 dihydrochalcone skos:exactMatch mesh C015812 dihydrochalcone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:71266 pyrazine-2-carboxylate skos:exactMatch mesh C553563 pyrazine-2-carboxylate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:71290 3-hydroxy-3-phenylpropionyl-CoA skos:exactMatch mesh C086434 3-hydroxy-3-phenylpropionyl-coenzyme A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:71314 cycloastragenol skos:exactMatch mesh C061014 cycloastragenol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:71457 actinidic acid skos:exactMatch mesh C432928 actinidic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:71464 palmitoyl ethanolamide skos:exactMatch mesh C005958 palmidrol lexical 0.9 https://github.com/indralab/panacea_indra/blob/master/panacea_indra/make_ctd_tests.py +chebi CHEBI:71465 palmitoleoyl ethanolamide skos:exactMatch mesh C054694 polyoxyethyleneamine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:71508 fluvirucin A1 skos:exactMatch mesh C070542 fluvirucin A1 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:71547 dihydroagarofuran skos:exactMatch mesh C079978 dihydroagarofuran lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:71575 friedelane skos:exactMatch mesh C421805 friedelane lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:71588 3-(3-amino-3-carboxypropyl)-5,6-dihydrouridine skos:exactMatch mesh C569434 3-(3-amino-3-carboxypropyl)-5,6-dihydrouridine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:71593 filicinic acid skos:exactMatch mesh C000627729 filicinic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:71596 mycocyclosin skos:exactMatch mesh C573447 mycocyclosin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:71599 pulcherriminic acid skos:exactMatch mesh C009108 pulcherriminic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:71609 albonoursin skos:exactMatch mesh C006442 albonoursin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:71610 cyclo(L-phenylalanyl-L-phenylalanyl) skos:exactMatch mesh C071496 cyclo(phenylalanyl-phenylalanyl) lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:71623 bacillaene skos:exactMatch mesh C096634 bacillaene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:71629 nisin skos:exactMatch mesh D009561 Nisin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:71637 versiconal hemiacetal acetate skos:exactMatch mesh C027121 versiconal hemiacetal acetate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:71639 versiconol skos:exactMatch mesh C072370 versiconol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:71659 epidermin skos:exactMatch mesh C050558 epidermin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:71690 staphyloxanthin skos:exactMatch mesh C031841 staphyloxanthin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:71954 BKM120 skos:exactMatch mesh C571178 NVP-BKM120 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:71961 lividomycin A skos:exactMatch mesh C100306 lividomycin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:71972 4-phenylcoumarin skos:exactMatch mesh C094411 4-phenylcoumarin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:71976 surfactin A skos:exactMatch mesh C000706152 surfactin A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:71980 N-retinylidene-N-retinylethanolamine skos:exactMatch mesh C112040 A2-E (N-retinylidene-N-retinylethanolamine) lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:71987 curamycin A skos:exactMatch mesh C023334 curamycin A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:72013 chromone skos:exactMatch mesh C068515 4-chromone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:7209 N-Acetylleucyl-leucyl-methioninal skos:exactMatch mesh C069861 calpain inhibitor 2 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:72296 apixaban skos:exactMatch mesh C522181 apixaban lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:72297 lomitapide skos:exactMatch mesh C473731 BMS201038 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:72317 cabozantinib skos:exactMatch mesh C558660 cabozantinib lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:72323 alogliptin skos:exactMatch mesh C520853 alogliptin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:724125 methyl 5-aminolevulinate skos:exactMatch mesh C475457 methyl 5-aminolevulinate lexical 0.9 https://github.com/indralab/panacea_indra/blob/master/panacea_indra/make_ctd_tests.py +chebi CHEBI:72441 englerin A skos:exactMatch mesh C534971 englerin A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:72442 sapintoxin D skos:exactMatch mesh C065374 sapintoxin D lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:72451 hexaammineiridium(3+) skos:exactMatch mesh C523109 iridium(III) hexaammine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:72457 2-fluoroadenine skos:exactMatch mesh C038208 2-fluoroadenine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:72474 5-azacytosine skos:exactMatch mesh C039854 5-azacytosine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:72574 hypoxanthine 3-N-oxide skos:exactMatch mesh C017423 hypoxanthine 3-oxide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:72578 coumestan skos:exactMatch mesh C505898 coumestan lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:72583 WR-1065 skos:exactMatch mesh C020174 WR 1065 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:72590 rhizoxin skos:exactMatch mesh C041443 rhizoxin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:72596 papulacandin skos:exactMatch mesh C014732 papulacandins lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:72600 spiroketal skos:exactMatch mesh C520774 spiroketal lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:72606 11-HETE skos:exactMatch mesh C027356 11-hydroxy-5,8,12,14-eicosatetraenoic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:72627 15-HEPE skos:exactMatch mesh C059164 15-hydroxy-5,8,11,13,17-eicosapentaenoic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:72637 (4Z,7Z,10Z,13Z,15E,19Z)-17-hydroxydocosahexaenoic acid skos:exactMatch mesh C062894 17-hydroxy-4,7,10,13,15,19-docosahexaenoic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:72638 1-deoxycapsidiol skos:exactMatch mesh C471079 1-deoxycapsidiol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:72641 13-HOTrE skos:exactMatch mesh C466708 13-hydroxyoctadecatrienic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:72643 8-HETE skos:exactMatch mesh C047628 8-hydroxyeicosatetraenoic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:7265 2-dimethylaminoethylphosphonic acid skos:exactMatch mesh C050141 (2-(dimethylamino)ethyl)phosphonic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:72651 9-HODE skos:exactMatch mesh C024347 9-hydroxy-10,12-octadecadienoic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:72657 19,20-DiHDPA skos:exactMatch mesh C000602093 19,20-dihydroxydocosapentaenoic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:72686 4-phospho-3-deoxy-D-manno-oct-2-ulosonic acid skos:exactMatch mesh C077091 3-deoxy-2-octulosonate-4-phosphate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:72687 bacilysin skos:exactMatch mesh C006674 bacilysin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:7270 N-Ethylmaleimide-S-glutathione skos:exactMatch mesh C054449 N-ethylmaleimide-S-glutathione lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:72714 tetracosahexaenoic acid skos:exactMatch mesh C099831 tetracosahexaenoic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:72744 1-hexadecyl-2-hexadecanoyl-sn-glycero-3-phosphocholine skos:exactMatch mesh C082824 1-hexadecyl-2-palmitoyl-sn-glycero-3-phosphocholine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:72754 bisphenol AF skos:exactMatch mesh C583074 4,4'-hexafluorisopropylidene diphenol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:72760 tryprostatin B skos:exactMatch mesh C097859 tryprostatin B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:72761 tryprostatin A skos:exactMatch mesh C097858 tryprostatin A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:72765 verruculogen skos:exactMatch mesh C009658 verruculogen lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:72766 fumitremorgin A skos:exactMatch mesh C024743 Fumitremorgin A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:72767 demethoxyfumitremorgin C skos:exactMatch mesh C100698 demethoxyfumitremorgin C lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:72775 methyl benzoate skos:exactMatch mesh C044605 methyl benzoate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:72776 kunzeaol skos:exactMatch mesh C514849 kunzeaol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:72781 6-tuliposide A skos:exactMatch mesh C046169 6-tuliposide A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:72801 5-HEPE skos:exactMatch mesh C058722 5-hydroxy-6,8,11,14,17-eicosapentaenoic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:72811 dimethylindole red skos:exactMatch mesh C572069 dimethylindole red lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:72818 5-fluoroindole skos:exactMatch mesh C095066 5-fluoroindole lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:72821 1-methyltryptophan skos:exactMatch mesh C525396 1-methyltryptophan lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:72822 6-methoxyquinoline skos:exactMatch mesh C015986 6-methoxyquinoline lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:72849 agigenin skos:exactMatch mesh C586172 agigenin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:72998 1-hexadecanoyl-sn-glycero-3-phosphocholine skos:exactMatch mesh C089215 1-palmitoyl-2-lysophosphatidylcholine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:72999 1,2-dihexadecanoyl-sn-glycero-3-phosphocholine skos:exactMatch mesh C081581 colfosceril palmitate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:73011 germacranolide skos:exactMatch mesh C432449 germacranolide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:73018 tiglylglycine skos:exactMatch mesh C003603 tiglylglycine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:73024 O-acetylcarnitine skos:exactMatch mesh D000108 Acetylcarnitine lexical 0.9 https://github.com/indralab/panacea_indra/blob/master/panacea_indra/make_ctd_tests.py +chebi CHEBI:73025 O-isovalerylcarnitine skos:exactMatch mesh C027333 3-methylbutyrylcarnitine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:73027 3-hydroxyisovalerylcarnitine skos:exactMatch mesh C098116 3-hydroxyisovalerylcarnitine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:73039 O-octanoylcarnitine skos:exactMatch mesh C008698 octanoylcarnitine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:73041 tilmacoxib skos:exactMatch mesh C110453 4-(4-cyclohexyl-2-methyloxazol-5-yl)-2-fluorobenzenesulfonamide lexical 0.9 https://github.com/indralab/panacea_indra/blob/master/panacea_indra/make_ctd_tests.py +chebi CHEBI:73058 madecassic acid skos:exactMatch mesh C001669 madecassic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:73085 colterol skos:exactMatch mesh C011595 colterol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:73086 protobassic acid skos:exactMatch mesh C485321 protobassic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:73097 mallotophilippen E skos:exactMatch mesh C530785 mallotophilippen E lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:73124 1-hexadecanoyl-2-(9Z-octadecenoyl)-sn-glycero-3-phosphoethanolamine skos:exactMatch mesh C000608529 1-palmitoyl-2-oleoyl-sn-glycero-3-phosphoethanolamine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:73141 9-beta-D-arabinofuranosylguanine skos:exactMatch mesh C028771 9-arabinofuranosylguanine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:73159 pyrabactin skos:exactMatch mesh C540973 pyrabactin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:73162 paclobutrazol skos:exactMatch mesh C053370 paclobutrazol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:73163 oryzalin skos:exactMatch mesh C012465 oryzalin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:73171 ancymidol skos:exactMatch mesh C053577 ancymidol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:73172 acifluorfen skos:exactMatch mesh C018425 acifluorfen lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:73175 2,3,5-triiodobenzoic acid skos:exactMatch mesh C052968 2,3,5-triiodobenzoic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:73177 brassinazole skos:exactMatch mesh C412342 brassinazole lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:73179 2,6-dichloroisonicotinic acid skos:exactMatch mesh C077261 2,6-dichloroisonicotinic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:73199 massadine skos:exactMatch mesh C478874 massadine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:73219 arabidopside A skos:exactMatch mesh C513955 arabidopside A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:73221 arabidopside C skos:exactMatch mesh C501143 arabidopside C lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:73222 aloin skos:exactMatch mesh C006457 alloin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:73225 arabidopside D skos:exactMatch mesh C501144 arabidopside D lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:73226 arborescin skos:exactMatch mesh C000592744 arborescin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:73228 arglabin skos:exactMatch mesh C083346 arglabin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:73229 1,2-dihexadecanoyl-sn-glycero-3-phospho-D-myo-inositol skos:exactMatch mesh C074858 dipalmitoyl phosphatidylinositol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:73239 tatridin B skos:exactMatch mesh C000627998 tatridin B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:73244 methyl anthranilate skos:exactMatch mesh C038892 methyl anthranilate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:73245 cucurbitane skos:exactMatch mesh C514277 cucurbitane lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:73266 fradafiban skos:exactMatch mesh C107917 fradafiban lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:73271 archaeosine skos:exactMatch mesh C081066 archaeosine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:73280 sodium 2-amino-5-[(1-methoxy-2-methylindolizin-3-yl)carbonyl]benzoate skos:exactMatch mesh C000593029 SSR128129E lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:73282 DPCPX skos:exactMatch mesh C051360 1,3-dipropyl-8-cyclopentylxanthine lexical 0.9 https://github.com/indralab/panacea_indra/blob/master/panacea_indra/make_ctd_tests.py +chebi CHEBI:73283 CGS-21680 skos:exactMatch mesh C061282 2-(4-(2-carboxyethyl)phenethylamino)-5'-N-ethylcarboxamidoadenosine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:73286 3-iodobenzyl-5'-N-methylcarboxamidoadenosine skos:exactMatch mesh C478920 CF101 lexical 0.9 https://github.com/indralab/panacea_indra/blob/master/panacea_indra/make_ctd_tests.py +chebi CHEBI:73287 2-methoxyidazoxan skos:exactMatch mesh C058525 2-methoxyidazoxan lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:73301 tirucallane skos:exactMatch mesh C514393 tirucallane lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:73303 aminopotentidine skos:exactMatch mesh C103275 aminopotentidine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:73304 (dT)10 skos:exactMatch mesh C096493 decathymidylic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:73305 (dT)15 skos:exactMatch mesh C406744 pentadecathymidylic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:73313 Ala-Ala-Ala skos:exactMatch mesh C039944 alanyl-alanyl-alanine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:73343 trans-anol skos:exactMatch mesh C001803 tempol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:73357 U69593 skos:exactMatch mesh C045444 U 69593 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:73380 GR 113808 skos:exactMatch mesh C082871 GR 113808 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:73387 caldariellaquinone skos:exactMatch mesh C014380 caldariellaquinone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:73388 caldariellaquinol skos:exactMatch mesh C103358 caldariellaquinol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:73393 Ala-Pro skos:exactMatch mesh C038123 alanylproline lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:73420 fingolimod phosphate skos:exactMatch mesh C525008 FTY 720P lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:73425 Asn-Pro skos:exactMatch mesh C113843 asparaginyl-proline lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:73446 Asp-Asp skos:exactMatch mesh C108952 aspartyl-aspartic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:73450 Asp-Gly skos:exactMatch mesh C017033 aspartylglycine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:73455 Asp-Tyr skos:exactMatch mesh C078779 aspartyltyrosine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:73458 NS-398 skos:exactMatch mesh C080955 N-(2-cyclohexyloxy-4-nitrophenyl)methanesulfonamide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:73461 Cys-Pro skos:exactMatch mesh C028962 cysteinylproline lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:73479 D-xylo-phytosphingosine skos:exactMatch mesh C458140 xylo-phytosphingosine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:73507 Glu-Met skos:exactMatch mesh C406458 glutamylmethionine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:73515 Gly-His skos:exactMatch mesh C027787 glycylhistidine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:73517 Gly-Tyr skos:exactMatch mesh C022013 glycyltyrosine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:73527 Leu-Ala skos:exactMatch mesh C470014 leucyl-alanine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:73534 (9Z,12Z)-octadecadien-1-ol skos:exactMatch mesh C059691 linoleyl alcohol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:73583 Leu-Lys skos:exactMatch mesh C000600949 leucyl-lysine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:73585 Leu-Phe skos:exactMatch mesh C119108 leucyl-phenylalanine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:73591 Leu-Tyr skos:exactMatch mesh C080057 leucyltyrosine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:73604 Lys-Gly skos:exactMatch mesh C437951 lysylglycine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:73607 Lys-Val skos:exactMatch mesh C110469 lysylvaline lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:73623 tolerogen skos:exactMatch mesh C029248 Tolerogen lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:73646 Pro-Pro skos:exactMatch mesh C448039 prolyl-proline lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:73648 Pro-Ser skos:exactMatch mesh C465982 prolyl-serine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:73669 5'-(N(6)-L-lysine)-L-tyrosylquinone skos:exactMatch mesh C100796 lysine tyrosylquinone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:73670 cysteine tryptophylquinone skos:exactMatch mesh C447619 cysteine tryptophylquinone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:73685 N(2)-acetylglutamine skos:exactMatch mesh C032007 aceglutamide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:73688 Ac-Asp-Glu skos:exactMatch mesh C027172 isospaglumic acid lexical 0.9 https://github.com/indralab/panacea_indra/blob/master/panacea_indra/make_ctd_tests.py +chebi CHEBI:73689 methyl isobutyrate skos:exactMatch mesh C547767 methyl 2-methylpropanoate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:73696 Val-Pro-Pro skos:exactMatch mesh C489031 valyl-prolyl-proline lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:73702 wax skos:exactMatch mesh D014885 Waxes lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:73703 Val-Tyr skos:exactMatch mesh C414029 valyltyrosine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:73705 gamma-Glu-Glu skos:exactMatch mesh C082810 gamma-glutamylglutamate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:73707 gamma-Glu-Gln skos:exactMatch mesh C047442 gamma-glutamylglutamine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:73712 bromosuccinic acid skos:exactMatch mesh C033594 bromosuccinic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:73722 hexadecanedioic acid skos:exactMatch mesh C012346 hexadecanedioic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:73723 N-oleoylglycine skos:exactMatch mesh C516666 N-oleoylglycine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:73727 gadoterate meglumine skos:exactMatch mesh C072417 gadoterate meglumine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:73741 prostaglandin F2alpha dimethylamine skos:exactMatch mesh C034145 N-dimethylaminoprostaglandin F2alpha lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:73771 Ala-His skos:exactMatch mesh C061116 alanylhistidine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:73774 enterobacterial common antigen skos:exactMatch mesh C017286 enterobacterial common antigen lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:73788 Ala-Gln skos:exactMatch mesh C054122 alanylglutamine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:73811 Arg-Arg skos:exactMatch mesh C076685 arginylarginine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:73813 Arg-Gln skos:exactMatch mesh C578860 arginyl-glutamine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:73816 Arg-Lys skos:exactMatch mesh C104090 arginyllysine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:73818 Arg-Phe skos:exactMatch mesh C067582 arginylphenylalanine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:73823 Arg-Val skos:exactMatch mesh C110470 arginylvaline lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:73828 Asp-Glu skos:exactMatch mesh C038676 aspartylglutamate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:7383 N3-Methyladenine skos:exactMatch mesh C580784 N3-methyladenine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:73830 Asp-Phe skos:exactMatch mesh C045207 aspartyl-phenylalanine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:73848 Gln-Gly skos:exactMatch mesh C432806 glutaminyl-glycine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:73882 1-deoxytetradecasphinganine skos:exactMatch mesh C476391 xestoaminol C lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:73898 Gly-Gln skos:exactMatch mesh C039788 glycylglutamine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:73904 Gly-Gly-Leu skos:exactMatch mesh C000591538 glycyl-glycyl-leucine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:73912 Gly-Phe skos:exactMatch mesh C029660 glycylphenylalanine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:73914 3,5-dinitrobenzoic acid skos:exactMatch mesh C026017 3,5-dinitrobenzoic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:73920 Gly-Thr skos:exactMatch mesh C061951 glycyl-threonine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:73922 Gly-Val skos:exactMatch mesh C035810 glycylvaline lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:73927 1alpha,25-dihydroxy-2beta-(3-hydroxypropoxy)vitamin D3 skos:exactMatch mesh C547512 eldecalcitol lexical 0.9 https://github.com/indralab/panacea_indra/blob/master/panacea_indra/make_ctd_tests.py +chebi CHEBI:73947 benzene-1,4-disulfonic acid skos:exactMatch mesh C064910 benzene-1,4-disulfonic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:73961 1-salicylate glucuronide skos:exactMatch mesh C049960 1-salicylate glucuronide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:73979 2-acetamidoglucal skos:exactMatch mesh C019231 2-acetamidoglucal lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:74003 2,3,4,5-tetranor-thromboxane B1 skos:exactMatch mesh C089758 2,3,4,5-tetranorthromboxane B1 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:74020 diosgenin 3-O-beta-D-glucoside skos:exactMatch mesh C051985 diosgenin glucoside lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:74021 2-oxobut-3-enoic acid skos:exactMatch mesh C059218 vinylglyoxylate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:74023 dioscin skos:exactMatch mesh C019357 dioscin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:74024 2-pyridylethylamine skos:exactMatch mesh C006183 2-(2-aminoethyl)pyridine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:74027 3-dimethylsulfoniopropionaldehyde skos:exactMatch mesh C095438 3-dimethylsulfoniopropionaldehyde lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:74039 perillene skos:exactMatch mesh C090823 perillene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:74048 5-hydroxypipecolic acid skos:exactMatch mesh C053574 5-hydroxypipecolic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:74049 5-methoxytryptophan skos:exactMatch mesh C027986 5-methoxytryptophan lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:74077 S-allylcysteine skos:exactMatch mesh C065299 S-allylcysteine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:74079 allylthiourea skos:exactMatch mesh C009842 allylthiourea lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:74092 biotin sulfone skos:exactMatch mesh C104349 biotin sulfone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:74096 caproylcholine skos:exactMatch mesh C005076 hexanoylcholine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:74104 3-[(2-hydroxyethyl)disulfanyl]-L-alanine skos:exactMatch mesh C107248 S-(2-hydroxyethylmercapto)-L-cysteine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:74106 erucoyl-CoA skos:exactMatch mesh C024901 erucyl-coenzyme A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:74111 2-(difluoromethyl)lysine skos:exactMatch mesh C043833 2-(difluoromethyl)lysine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:74112 3-hydroxynorvaline skos:exactMatch mesh C010994 3-hydroxynorvaline lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:74135 Gly-Pro-Hyp skos:exactMatch mesh C088188 glycyl-prolyl-hydroxyproline lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:74138 2-hydroxystearoyl-CoA skos:exactMatch mesh C025987 2-hydroxyoctadecanoyl-coenzyme A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:74144 p-nitrophenyl thymidine 5'-monophosphate skos:exactMatch mesh C032579 thymidine 5'-4-nitrophenyl phosphate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:74165 (E)-1,3-pentadiene skos:exactMatch mesh C011970 1,3-pentadiene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:74168 D-ribono-1,4-lactone skos:exactMatch mesh C474981 D-ribono-1,4-lactone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:74221 aspernidine A skos:exactMatch mesh C551571 aspernidine A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:74252 rhizobactin 1021 skos:exactMatch mesh C505710 rhizobactin-1021 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:743 pedilstatin skos:exactMatch mesh C470237 pedilstatin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:74326 Ile-Tyr skos:exactMatch mesh C493687 isoleucyl-tyrosine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:74327 Ile-Val skos:exactMatch mesh C041115 isoleucylvaline lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:74350 N-diazoacetylnorleucine methyl ester skos:exactMatch mesh C000909 N-diazoacetylnorleucine methyl ester lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:74351 aclacinomycin T skos:exactMatch mesh C004406 aklavin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:74357 S-methyl methanethiosulfonate skos:exactMatch mesh C014674 methyl methanethiosulfonate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:74397 heptadecanoyl-CoA skos:exactMatch mesh C032420 heptadecanoyl-coenzyme A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:74410 N-acetylcysteamine skos:exactMatch mesh C023704 2-acetamidoethanethiol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:74422 4'-demethylepipodophyllotoxin skos:exactMatch mesh C072088 4'-demethylepipodophyllotoxin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:74448 senegasaponin b skos:exactMatch mesh C098155 senegasaponin b lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:74453 senegasaponin a skos:exactMatch mesh C098154 senegasaponin a lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:74456 4-hydroxy-5-methyl-3-furanone skos:exactMatch mesh C113254 4-hydroxy-5-methyl-3(2H)-furanone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:74498 5-fluoroorotic acid skos:exactMatch mesh C001242 5-fluoroorotic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:7453 Nagilactone C skos:exactMatch mesh C004552 nagilactone C lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:74561 Lys-Leu skos:exactMatch mesh C000600950 lysyl-leucine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:7457 Nalmefene skos:exactMatch mesh C038981 nalmefene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:74620 15-demethylaclacinomycin T skos:exactMatch mesh C478392 15-demethoxyaclacinomycin T lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:74661 parabanic acid skos:exactMatch mesh C005411 parabanic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:7468 nandrolone phenpropionate skos:exactMatch mesh C008580 nandrolone phenpropionate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:74684 dopaminoquinone skos:exactMatch mesh C104705 dopamine quinone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:7469 Napelline skos:exactMatch mesh C109326 napelline lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:74702 Met-Glu skos:exactMatch mesh C406459 methionylglutamic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:74707 Met-Met skos:exactMatch mesh C034758 methionylmethionine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:74708 Met-Phe skos:exactMatch mesh C075870 methionylphenylalanine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:74709 Met-Trp skos:exactMatch mesh C075587 methionyltryptophan lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:74712 Phe-Glu skos:exactMatch mesh C041371 phenylalanylglutamate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:74725 5-methylcytidine 5'-monophosphate skos:exactMatch mesh C008426 5-methylcytidylic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:74732 3-methyluracil skos:exactMatch mesh C055991 3-methyluracil lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:74733 6-methyluracil skos:exactMatch mesh C008378 6-methyluracil lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:74739 5-methyl-pyrazole-3-carboxylic acid skos:exactMatch mesh C005210 5-methylpyrazole-3-carboxylic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:74750 Phe-Pro skos:exactMatch mesh C088360 phenylalanylproline lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:74751 Phe-Trp skos:exactMatch mesh C028281 phenylalanyltryptophan lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:74759 alpha-methylhistamine skos:exactMatch mesh C069357 alpha-methylhistamine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:74760 4-methylhistamine skos:exactMatch mesh C025566 4-methylhistamine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:74761 2-methylhistamine skos:exactMatch mesh C026259 2-methylhistamine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:74763 1,3-dimethyluracil skos:exactMatch mesh C002451 1,3-dimethyluracil lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:74765 1,5-dimethyluracil skos:exactMatch mesh C030630 1-methylthymine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:74766 3,5-dimethyluracil skos:exactMatch mesh C002347 3-methylthymine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:74768 aluminium sulfate (anhydrous) skos:exactMatch mesh C041524 aluminum sulfate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:74794 sulfolane skos:exactMatch mesh C013693 sulfolane lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:74798 O-methylserine skos:exactMatch mesh C095928 O-methylserine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:74799 Pro-Tyr skos:exactMatch mesh C074016 prolyl-tyrosine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:74800 Pro-Val skos:exactMatch mesh C034446 prolylvaline lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:74803 furaltadone skos:exactMatch mesh C007795 furaltadon lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:74810 delphinidin 3-O-beta-D-sambubioside skos:exactMatch mesh C505011 delphinidin 3-sambubioside lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:74811 cyanidin 3-O-beta-D-sambubioside skos:exactMatch mesh C546691 cyanidin 3-sambubioside lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:7482 Narcotoline skos:exactMatch mesh C059402 narcotoline lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:74820 Ser-Pro skos:exactMatch mesh C465983 seryl-proline lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:74848 pentan-1-amine skos:exactMatch mesh C005264 n-amylamine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:74856 antimony trichloride skos:exactMatch mesh C054672 antimony trichloride lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:74859 Thr-Gly skos:exactMatch mesh C400974 threonyl-glycine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:74870 Trp-Gly skos:exactMatch mesh C016810 tryptophylglycine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:74871 Trp-Leu skos:exactMatch mesh C509811 tryptophan-leucine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:74875 dichlofluanid skos:exactMatch mesh C016370 dichlofluanid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:74876 Trp-Trp skos:exactMatch mesh C000606701 tryptophyltryptophan lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:74878 Trp-Tyr skos:exactMatch mesh C029951 tryptophyltyrosine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:7489 neamine skos:exactMatch mesh C488396 neamine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:74899 fluticasone furoate skos:exactMatch mesh C523187 fluticasone furoate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:74903 isocaproic acid skos:exactMatch mesh C034527 isocaproic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:7491 Neburon skos:exactMatch mesh C028818 neburon lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:74960 homoeriodictyol skos:exactMatch mesh C503231 homoeriodictyol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:74991 Tyr-Gly-Gly skos:exactMatch mesh C044757 tyrosyl-glycyl-glycine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:75004 Tyr-Lys skos:exactMatch mesh C114808 tyrosyl-lysine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:75013 Val-Leu skos:exactMatch mesh C041390 valylleucine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:75014 Val-Lys skos:exactMatch mesh C074992 valyllysine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:7502 neoeriocitrin skos:exactMatch mesh C553460 neoeriocitrin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:75030 malvin skos:exactMatch mesh C502603 malvin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:75034 1-stearoyl-2-oleoyl-sn-glycero-3-phosphocholine skos:exactMatch mesh C027891 1-stearoyl-2-oleoyl-sn-glycero-3-phosphocholine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:75037 vilanterol skos:exactMatch mesh C550468 vilanterol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:75046 phleomycin D1 skos:exactMatch mesh C037798 phleomycin D1 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:75049 cerberin skos:exactMatch mesh C006951 cerberin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:7505 Neoisostegane skos:exactMatch mesh C043524 neoisostegane lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:75051 2-amino-5-chlorophenol skos:exactMatch mesh C099673 2-amino-5-chlorophenol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:75055 5-bromo-4-chloro-3-indolyl beta-D-galactoside skos:exactMatch mesh C044888 5-bromo-4-chloro-3-indolyl beta-galactoside lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:7506 Neolinustatin skos:exactMatch mesh C023031 neolinustatin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:7509 Neopine skos:exactMatch mesh C516599 neopine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:75095 chrysin skos:exactMatch mesh C043561 chrysin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:7512 Neoquassin skos:exactMatch mesh C539436 neoquassin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:75142 N-benzyloxycarbonyl-L-leucyl-L-leucyl-L-leucinal skos:exactMatch mesh C072553 benzyloxycarbonylleucyl-leucyl-leucine aldehyde lexical 0.9 https://github.com/indralab/panacea_indra/blob/master/panacea_indra/make_ctd_tests.py +chebi CHEBI:75144 lactamide skos:exactMatch mesh C013083 lactamide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:7518 cis-trans-nepetalactone skos:exactMatch mesh C115644 nepetalactone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:75182 tolylfluanid skos:exactMatch mesh C070021 N-dichlorofluoromethylthio-N',N'-dimethyl-N-p-tolylsulfamide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:75193 tetrazolium violet skos:exactMatch mesh C531352 tetrazolium violet lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:7520 Nepodin skos:exactMatch mesh C583965 nepodin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:75212 dazomet skos:exactMatch mesh C012864 dazomet lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:75229 sodium bromate skos:exactMatch mesh C060553 sodium bromate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:7524 nerolidol skos:exactMatch mesh C037055 nerolidol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:75247 pridinol skos:exactMatch mesh C009185 pridinol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:75251 picropodophyllotoxin skos:exactMatch mesh C415032 picropodophyllin lexical 0.9 https://github.com/indralab/panacea_indra/blob/master/panacea_indra/make_ctd_tests.py +chebi CHEBI:75258 penimepicycline skos:exactMatch mesh C005470 penimepicycline lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:75261 arotinoid acid skos:exactMatch mesh C038864 4-(2-(5,6,7,8-tetrahydro-5,5,8,8-tetramethyl-2-naphthalenyl)-1-propenyl)benzoic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:75272 splitomicin skos:exactMatch mesh C444426 splitomicin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:75276 ikarugamycin skos:exactMatch mesh C074292 ikarugamycin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:75277 N-phthaloyl-L-glutamic acid skos:exactMatch mesh C034741 N-phthaloylglutamic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:75291 epsilon-rhodomycinone skos:exactMatch mesh C015490 rhodomycinone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:75299 melibionic acid skos:exactMatch mesh C017485 melibionic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:75305 glutamine hydroxamate skos:exactMatch mesh C050614 glutamate-gamma-hydroxamic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:75321 nitrosulindac skos:exactMatch mesh C431582 nitrosulindac lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:75324 excipient skos:exactMatch mesh D005079 Excipients lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:75331 benzotriazole skos:exactMatch mesh C012771 benzotriazole lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:75375 dichlorprop skos:exactMatch mesh C062806 4,4-dicarboxy-5-pyridoxylproline lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:75379 blebbistatin skos:exactMatch mesh C472645 blebbistatin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:75382 monastrol skos:exactMatch mesh C400223 monastrol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:75390 3-[3-(tert-butylsulfanyl)-1-(4-chlorobenzyl)-5-(propan-2-yl)-1H-indol-2-yl]-2,2-dimethylpropanoic acid skos:exactMatch mesh C060893 MK-886 lexical 0.9 https://github.com/indralab/panacea_indra/blob/master/panacea_indra/make_ctd_tests.py +chebi CHEBI:75391 hydroxy-2-naphthalenyl-methyl phosphonic acid trisacetoxymethylester skos:exactMatch mesh C519736 hydroxy-2-naphthalenyl-methyl phosphonic acid trisacetoxymethylester lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:75392 LM-1685 skos:exactMatch mesh C501175 LM-1685 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:75399 NU 1025 skos:exactMatch mesh C115774 NU 1025 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:75400 calmidazolium skos:exactMatch mesh C031938 calmidazolium lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:75404 tyrphostin AG 1478 skos:exactMatch mesh C101044 RTKI cpd lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:75417 dibenzoylmethane skos:exactMatch mesh C061481 dibenzoylmethane lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:75419 L-arginine hydroxamate skos:exactMatch mesh C042715 argininehydroxamic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:7542 neurotensin skos:exactMatch mesh C481221 neurotensin (1-13) lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:75425 guanazole skos:exactMatch mesh C500457 3,5-diamino-1,2,4-triazole lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:75430 Gly-His-Lys skos:exactMatch mesh C020905 glycyl-histidyl-lysine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:75432 2''-O-(beta-D-glucosyl)isovitexin skos:exactMatch mesh C469540 isovitexin 2''-O-glucoside lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:75437 gastrin-34 skos:exactMatch mesh C013706 big gastrin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:75439 7-O-(beta-D-glucosyl)isovitexin skos:exactMatch mesh C457771 saponarin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:75442 1-naphthyl dihydrogen phosphate skos:exactMatch mesh C014694 naphthyl phosphate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:7545 nevadensin skos:exactMatch mesh C023982 nevadensin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:75456 2-stearoylglycerol skos:exactMatch mesh C065689 2-stearoylglycerol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:75494 serine hydroxamate skos:exactMatch mesh C028002 serine hydroxamate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:75500 5-p-coumaroylquinic acid skos:exactMatch mesh C000631386 5-p-coumaroylquinic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:75539 1-monolauroylglycerol skos:exactMatch mesh C106022 1-monomyristin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:7554 nicosulfuron skos:exactMatch mesh C416723 nicosulfuron lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:75544 feruloylagmatine skos:exactMatch mesh C419343 feruloylagmatine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:75555 1-monostearoylglycerol skos:exactMatch mesh C048159 glyceryl monostearate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:75584 palmityl palmitate skos:exactMatch mesh C006957 cetyl palmitate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:75586 1,2-hexadecanediol skos:exactMatch mesh C470411 1,2-hexadecanediol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:75589 isoschaftoside skos:exactMatch mesh C515113 isoschaftoside lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:756 14-dihydroxycornestin skos:exactMatch mesh C071795 cornexistin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:75621 procyanidin B5 skos:exactMatch mesh C479582 procyanidin B5 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:75622 palmityl oleate skos:exactMatch mesh C402677 palmityl oleate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:75625 stearyl oleate skos:exactMatch mesh C031206 stearyl oleate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:75626 oleyl oleate skos:exactMatch mesh C066528 oleyl oleate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:7563 N-nicotinoylglycine skos:exactMatch mesh C002477 nicotinuric acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:75632 procyanidin B2 skos:exactMatch mesh C479580 procyanidin B2 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:75633 procyanidin B1 skos:exactMatch mesh C479579 procyanidin B1 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:75643 procyanidin C1 skos:exactMatch mesh C000630864 procyanidin trimer C1 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:75654 5-(carboxymethyl)uridine skos:exactMatch mesh C000668 5-carboxymethyluridine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:75688 1,3-dipalmitoyl-2-oleoylglycerol skos:exactMatch mesh C500680 1,3-dipalmitoyl-2-oleoylglycerol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:75704 2-(4-chloro-2-methylphenoxy)propanoic acid skos:exactMatch mesh C008340 mecoprop lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:75718 genkwanin skos:exactMatch mesh C014568 genkwanin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:7572 Niguldipine skos:exactMatch mesh C054074 niguldipine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:75726 luteolin 3'-O-glucuronide skos:exactMatch mesh C428530 luteolin 3'-glucuronide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:75728 1-stearoyl-2-arachidonoyl-sn-glycerol skos:exactMatch mesh C075809 1-stearoyl-2-arachidonoylglycerol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:75735 1,3-dioleoylglycerol skos:exactMatch mesh C089743 1,3-diolein lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:75750 isorhamnetin 3-O-beta-D-glucopyranoside skos:exactMatch mesh C432511 isorhamnetin 3-O-glucoside lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:7578 Nitidine skos:exactMatch mesh C013615 nitidine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:75807 myricetin 3-O-glucuronide skos:exactMatch mesh C072578 myricetin 3-O-glucuronide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:75810 N-(deoxyguanosin-8-yl)-2-acetylaminofluorene skos:exactMatch mesh C018776 N-(deoxyguanosin-8-yl)acetylaminofluorene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:75816 myricetin 3'-O-beta-D-glucopyranoside skos:exactMatch mesh C523881 cannabiscitrin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:75819 8-oxo-ETE skos:exactMatch mesh C107629 8-keto-5,9,11,14-eicosatetraenoic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:75832 iron(2+) sulfate (anhydrous) skos:exactMatch mesh C020748 ferrous sulfate lexical 0.9 https://github.com/indralab/panacea_indra/blob/master/panacea_indra/make_ctd_tests.py +chebi CHEBI:75839 quercetin 4'-O-beta-D-glucopyranoside skos:exactMatch mesh C080613 spiraeoside lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:75842 dihydrodaidzein skos:exactMatch mesh C433163 dihydrodaidzein lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:75844 1,2,3-trilinoleoylglycerol skos:exactMatch mesh C009564 trilinolein lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:75845 1,2,3-trilinolenoylglycerol skos:exactMatch mesh C101314 trilinolenin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:75846 1,3-dioleoyl-2-palmitoylglycerol skos:exactMatch mesh C095376 1,3-dioleoyl-2-palmitoylglycerol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:75848 1,2-dioleoyl-3-palmitoylglycerol skos:exactMatch mesh C106818 1,2-dioleoyl-3-palmitoylglycerol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:75850 1,3-dilinoleoylglycerol skos:exactMatch mesh C494175 1,3-dilinoleoylglycerol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:75861 arsenopyrite skos:exactMatch mesh C064510 arsenopyrite lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:75881 cuevaene A skos:exactMatch mesh C410789 cuevaene A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:75897 iron(2+) sulfides skos:exactMatch mesh C022597 ferrous sulfide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:7590 nitrofen skos:exactMatch mesh C007350 nitrofen lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:75926 4-hydroxy-2-quinolone skos:exactMatch mesh C586058 4-hydroxyquinolin-2(1H)-one lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:75936 1-O-palmityl-2-acetyl-sn-glycerol skos:exactMatch mesh C055394 1-palmityl-2-acetylglycerol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:75937 monooleoylglycerol skos:exactMatch mesh C005953 monoolein lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:75940 depsidone skos:exactMatch mesh C000875 depsidone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:75951 protopanaxatriol skos:exactMatch mesh C081552 protopanaxatriol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:75958 solution skos:exactMatch mesh D012996 Solutions lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:75982 poly[d(GA)] skos:exactMatch mesh C000622116 poly(glycyl-alanyl) lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:7599 Nivalenol skos:exactMatch mesh C038405 nivalenol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:76 (-)-annonaine skos:exactMatch mesh C098138 anonaine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:76005 abafungin skos:exactMatch mesh C534167 abafungin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:76010 dolutegravir skos:exactMatch mesh C562325 dolutegravir lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:76018 riociguat skos:exactMatch mesh C542595 riociguat lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:76023 thioflavine T skos:exactMatch mesh C009462 thioflavin T lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:76031 poly[d(G)].poly[d(C)] skos:exactMatch mesh C019530 poly(dC-dG) lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:7607 Nodakenin skos:exactMatch mesh C471579 nodakenin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:76072 nicotinic acid-adenine dinucleotide phosphate skos:exactMatch mesh C024376 NAADP lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:7609 nomilin skos:exactMatch mesh C059405 nomilin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:7611 nonacosan-10-ol skos:exactMatch mesh C468854 10-nonacosanol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:76121 tryptophan N-glucoside skos:exactMatch mesh C416666 tryptophan N-glucoside lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:76127 cimicoxib skos:exactMatch mesh C493522 cimicoxib lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:76133 droxicam skos:exactMatch mesh C049073 droxicam lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:76138 flunixin skos:exactMatch mesh C014557 flunixin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:7614 Nonactin skos:exactMatch mesh C050476 nonactin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:76144 flunixin meglumine skos:exactMatch mesh C014558 flunixin meglumine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:76154 flunoxaprofen skos:exactMatch mesh C045356 flunoxaprofen lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:76160 ibuproxam skos:exactMatch mesh C025377 ibuproxam lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:76163 isoxicam skos:exactMatch mesh C013580 isoxicam lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:76164 lonazolac skos:exactMatch mesh C017472 lonazolac lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:76173 pallidol skos:exactMatch mesh C535072 pallidol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:76192 quadrangularin A skos:exactMatch mesh C000603014 quadrangularin A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:76193 (E)-trans-miyabenol C skos:exactMatch mesh C585842 miyabenol C lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:76196 trans-diptoindonesin B skos:exactMatch mesh C479960 trans-diptoindonesin B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:76201 clonixin lysine salt skos:exactMatch mesh C089163 lysine clonixinate lexical 0.9 https://github.com/indralab/panacea_indra/blob/master/panacea_indra/make_ctd_tests.py +chebi CHEBI:76207 mavacoxib skos:exactMatch mesh C515247 PHA-739521 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:76212 triphenylmethane skos:exactMatch mesh C046945 triphenylmethane lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:7623 Norbixin skos:exactMatch mesh C099823 norbixin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:76243 ferrous ammonium sulfate (anhydrous) skos:exactMatch mesh C038178 ammonium ferrous sulfate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:76244 sapienic acid skos:exactMatch mesh C090151 delta(6)-hexadecenoic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:76249 miroprofen skos:exactMatch mesh C017978 miroprofen lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:76255 oxametacin skos:exactMatch mesh C019028 oxamethacin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:76260 1-chloropropan-2-ol skos:exactMatch mesh C015750 1-chloro-2-propanol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:76261 1-nitropropane skos:exactMatch mesh C035314 1-nitropropane lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:76263 proglumetacin skos:exactMatch mesh C019541 proglumetacin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:76269 robenacoxib skos:exactMatch mesh C551524 robenacoxib lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:76277 tepoxalin skos:exactMatch mesh C073135 tepoxalin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:76279 2''-O-acetyl-ADP-D-ribose skos:exactMatch mesh C449679 2-O-acetyl-ADP-ribose lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:76287 pentachloroethane skos:exactMatch mesh C016036 pentachloroethane lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:76293 azadirone skos:exactMatch mesh C487479 azadirone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:76308 tetradecanedioic acid skos:exactMatch mesh C441251 1,14-tetradecanedioic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:7632 norlichexanthone skos:exactMatch mesh C568539 norlichexanthone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:76323 matteucinol skos:exactMatch mesh C049059 matteucinol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:76324 N-nitrosopiperidine skos:exactMatch mesh C002743 N-nitrosopiperidine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:76326 N-nitrosomorpholine skos:exactMatch mesh C002741 N-nitrosomorpholine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:7633 Normorphine skos:exactMatch mesh C010616 normorphine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:76343 4-acetylaminofluorene skos:exactMatch mesh C028676 4-acetylaminofluorene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:7635 2-hydroxychrysophanol skos:exactMatch mesh C061026 2-hydroxychrysophanol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:7637 norswertianin skos:exactMatch mesh C551472 1,2,6,8-tetrahydroxyxanthone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:7638 norswertianolin skos:exactMatch mesh C056208 norswertianolin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:76380 I11 skos:exactMatch mesh C026760 antibiotic I-11 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:7639 Nortrachelogenin skos:exactMatch mesh C020436 nortrachelogenin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:7645 nuarimol skos:exactMatch mesh C067672 nuarimol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:76452 dialuric acid skos:exactMatch mesh C004718 dialuric acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:76503 monobutyrin skos:exactMatch mesh C063895 1-butyrylglycerol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:76578 diradylglycerol skos:exactMatch mesh C035561 diarachidonyl diglyceride lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:76591 (25R)-cholest-5-ene-3beta,26-diol skos:exactMatch mesh C076996 27-hydroxycholesterol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:76601 2-(chloromethyl)pyridine skos:exactMatch mesh C091423 2-chloromethylpyridine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:76604 MeIQx skos:exactMatch mesh C036990 2-amino-3,8-dimethylimidazo(4,5-f)quinoxaline lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:76606 methyl carbamate skos:exactMatch mesh C036868 methyl carbamate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:76611 flutemetamol ((18)F) skos:exactMatch mesh C581552 flutemetamol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:76612 ibrutinib skos:exactMatch mesh C551803 PCI 32765 lexical 0.9 https://github.com/indralab/panacea_indra/blob/master/panacea_indra/make_ctd_tests.py +chebi CHEBI:76614 3-hydroxyoctadecanoate skos:exactMatch mesh C024708 3-hydroxyoctadecanoate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:76617 EC 2.7.10.2 (non-specific protein-tyrosine kinase) inhibitor skos:exactMatch mesh D000075242 Janus Kinase Inhibitors lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:76649 astressin skos:exactMatch mesh C104416 astressin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:76777 poly(inosinic acid) skos:exactMatch mesh D011069 Poly I lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:76792 5-(hydroxymethyl)cytosine skos:exactMatch mesh C011865 5-hydroxymethylcytosine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:76794 5-formylcytosine skos:exactMatch mesh C560973 5-formylcytosine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:76795 EC 3.4.22.36 (caspase-1) inhibitor skos:exactMatch mesh C074641 interleukin-1beta-converting enzyme inhibitor lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:76822 EC 3.2.1.31 (beta-glucuronidase) inhibitor skos:exactMatch mesh C011473 beta-glucuronidase inhibitor lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:76851 isoxazolin-5-one skos:exactMatch mesh C013076 isoxazolin-5-one lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:76937 11-hydroxylauric acid skos:exactMatch mesh C069441 11-hydroxydodecanoic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:76945 manool skos:exactMatch mesh C482828 manool lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:76980 2-hydroxybehenic acid skos:exactMatch mesh C060440 2-hydroxydocosanoic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:76987 metacetamol skos:exactMatch mesh C026137 3-hydroxyacetanilide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:77011 5-O-mycaminosyltylonolide skos:exactMatch mesh C032964 mycaminosyltylonolide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:77014 boron-10 atom skos:exactMatch mesh C000615219 Boron-10 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:77021 cellobionic acid skos:exactMatch mesh C006938 cellobionic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:77029 3-(5-oxoisoxazolin-2-yl)-L-alanine skos:exactMatch mesh C074507 (isoxazolin-5-on-2-yl)alanine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:77052 cetylpyridinium bromide skos:exactMatch mesh C521901 hexadecylpyridinium bromide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:77053 closantel skos:exactMatch mesh C023342 closantel lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:77058 trimethylselenonium skos:exactMatch mesh C003717 trimethylselenonium lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:77064 Ac-Asp-Glu-Glu skos:exactMatch mesh C561047 N-acetyl-aspartyl-glutamyl-glutamic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:77069 eperisone skos:exactMatch mesh C030848 eperisone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:77086 O-lauroyl-L-carnitine skos:exactMatch mesh C091947 lauroylcarnitine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:77095 flubendazole skos:exactMatch mesh C018945 flubendazole lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:77097 1-stearoyl-2-linoleoyl-sn-glycerol skos:exactMatch mesh C097357 1-stearoyl-2-linoleoyl-sn-glycerol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:7713 Obacunone skos:exactMatch mesh C067207 obacunone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:77138 3-sulfopropanediol(1-) skos:exactMatch mesh C551265 2,3-dihydroxypropane-1-sulfonate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:7714 Obamegine skos:exactMatch mesh C034784 obamegine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:77145 ginsenoside F2 skos:exactMatch mesh C407883 ginsenoside F2 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:77148 ginsenoside Re skos:exactMatch mesh C049864 ginsenoside Re lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:77150 ginsenoside F1 skos:exactMatch mesh C055327 ginsenoside F1 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:77151 ginsenoside Rg2 skos:exactMatch mesh C026474 ginsenoside Rg2 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:77152 ginsenoside Rb2 skos:exactMatch mesh C048026 ginsenoside Rb2 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:77153 ginsenoside Rb3 skos:exactMatch mesh C044463 ginsenoside Rb3 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:77154 ginsenoside Rc skos:exactMatch mesh C044462 ginsenoside Rc lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:77198 6-sulfo-D-quinovose skos:exactMatch mesh C009358 sulfoquinovose lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:77245 lead tetraacetate skos:exactMatch mesh C029433 lead tetraacetate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:77267 3-sulfopropanediol skos:exactMatch mesh C009357 3-sulfopropanediol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:77270 11-hydroxy-Delta(9)-tetrahydrocannabinol skos:exactMatch mesh C001427 11-hydroxy-delta(9)-tetrahydrocannabinol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:77273 11-nor-9-carboxy-Delta(9)-tetrahydrocannabinol skos:exactMatch mesh C016780 11-nor-delta(9)-tetrahydrocannabinol-9-carboxylic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:7728 octan-1-amine skos:exactMatch mesh C008699 octylamine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:77282 dexamisole skos:exactMatch mesh C028075 dexamisole lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:77325 diisopropyl methylphosphonate skos:exactMatch mesh C023477 diisopropyl methylphosphonate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:77327 CL-20 skos:exactMatch mesh C083639 hexanitrohexaazaisowurzitane lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:7734 okanin skos:exactMatch mesh C550307 okanin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:77363 ramiprilat skos:exactMatch mesh C052549 ramiprilat lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:77386 tricaproin skos:exactMatch mesh C037544 tricaproin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:77389 trilaurin skos:exactMatch mesh C004565 trilaurin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:77416 (13Z)-docosen-1-ol skos:exactMatch mesh C027036 erucyl alcohol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:77421 4-bromophenyl phenyl ether skos:exactMatch mesh C000626479 4-bromodiphenyl ether lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:77438 11-methyldodecan-1-ol skos:exactMatch mesh C553989 isotridecan-1-ol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:77439 p-coutaric acid skos:exactMatch mesh C515102 coutaric acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:7747 oleuropein skos:exactMatch mesh C002769 oleuropein lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:77474 (9Z,12Z,15Z)-octadecatrien-1-ol skos:exactMatch mesh C037936 linolenyl alcohol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:77477 nitrone skos:exactMatch mesh C015388 nitrones lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:77491 ginsenoside Mc skos:exactMatch mesh C482461 ginsenoside Mc lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:77498 2-hydroxy-3-(2-methoxyphenoxy)propyl carbamate skos:exactMatch mesh C000595753 2-hydroxy-3-(2-methoxyphenoxy)propyl carbamate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:77507 1-hexadecene skos:exactMatch mesh C010734 cetene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:77509 2,2,4,6,6-pentamethylheptane skos:exactMatch mesh C469781 2,2,4,6,6-pentamethylheptane lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:7751 oligomycin B skos:exactMatch mesh C048335 oligomycin B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:77512 3-ethyltoluene skos:exactMatch mesh C029719 3-ethyltoluene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:7752 oligomycin C skos:exactMatch mesh C042075 oligomycin C lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:77543 ebselen skos:exactMatch mesh C042986 ebselen lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:77572 tranilast skos:exactMatch mesh C012293 tranilast lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:7767 Olivacine skos:exactMatch mesh C011521 olivacine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:7768 Olivanic acid skos:exactMatch mesh C020786 olivanic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:77692 peloruside A skos:exactMatch mesh C414085 peloruside A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:77699 methyl formate skos:exactMatch mesh C025468 methyl formate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:77701 nitromethane skos:exactMatch mesh C008640 nitromethane lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:77707 diethylamine NONOate skos:exactMatch mesh C084012 1,1-diethyl-2-hydroxy-2-nitrosohydrazine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:77729 tenovin-6 skos:exactMatch mesh C574854 tenovin-6 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:77732 cadmium nitrate skos:exactMatch mesh C035196 cadmium nitrate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:77735 ossamycin skos:exactMatch mesh C008717 ossamycin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:7776 Onopordopicrin skos:exactMatch mesh C075494 onopordopicrin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:77762 syringomycin E skos:exactMatch mesh C105246 syringomycin E lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:77772 ilicicolin H skos:exactMatch mesh C433880 ilicicolin H lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:77773 sodium selenide skos:exactMatch mesh C037341 sodium selenide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:77774 SCH-351591 skos:exactMatch mesh C459379 SCH 351591 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:77788 temafloxacin skos:exactMatch mesh C054745 temafloxacin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:7779 Orchinol skos:exactMatch mesh C505280 orchinol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:77818 3-mercaptohexyl acetate skos:exactMatch mesh C513640 3-mercaptohexyl acetate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:7782 Oripavine skos:exactMatch mesh C005283 oripavine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:77829 rac-nortilidine skos:exactMatch mesh C062490 nortilidine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:77834 lancovutide skos:exactMatch mesh C477246 Moli1901 lexical 0.9 https://github.com/indralab/panacea_indra/blob/master/panacea_indra/make_ctd_tests.py +chebi CHEBI:77837 5-fluorotryptophan skos:exactMatch mesh C026927 5-fluorotryptophan lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:77845 7-aminocholesterol skos:exactMatch mesh C088771 7-aminocholesterol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:77861 cincreasin skos:exactMatch mesh C504073 cincreasin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:77867 ferrirubin skos:exactMatch mesh C067500 ferrirhodin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:77880 boromycin skos:exactMatch mesh C000302 boromycin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:77890 1-O-palmitoyl-2-O-(5-oxovaleryl)-sn-glycero-3-phosphocholine skos:exactMatch mesh C400184 1-palmitoyl-2-(5-oxovaleroyl)-sn-glycero-3-phosphorylcholine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:77918 mutalomycin skos:exactMatch mesh C016007 mutalomycin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:77922 isopentenol skos:exactMatch mesh C056744 isopentenol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:77927 nonan-2-one skos:exactMatch mesh C026636 2-nonanone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:77928 tridecan-2-one skos:exactMatch mesh C009541 2-tridecanone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:77940 alborixin skos:exactMatch mesh C012708 alborixin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:7795 Orthosporin skos:exactMatch mesh C437445 orthosporin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:77954 2-(2-amino-3-methoxyphenyl)chromen-4-one skos:exactMatch mesh C093973 2-(2-amino-3-methoxyphenyl)-4H-1-benzopyran-4-one lexical 0.9 https://github.com/indralab/panacea_indra/blob/master/panacea_indra/make_ctd_tests.py +chebi CHEBI:77957 m-fluoro-L-phenylalanine skos:exactMatch mesh C027218 3-fluorophenylalanine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:7797 Osajin skos:exactMatch mesh C485800 osajin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:77986 dibenziodolium skos:exactMatch mesh C007517 diphenyleneiodonium lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:77995 4,7-diphenyl-1,10-phenanthroline skos:exactMatch mesh C006686 bathophenanthroline lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:77996 N-oleoylsphingosine skos:exactMatch mesh C031412 oleoylsphingosine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:7800 Osladin skos:exactMatch mesh C103830 osladin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:78002 hexamethyldisiloxane skos:exactMatch mesh C015917 hexamethyldisiloxane lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:78008 wiskostatin skos:exactMatch mesh C489942 wiskostatin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:78014 5,5,5-trifluoroleucine skos:exactMatch mesh C035177 5',5',5'-trifluoroleucine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:78018 dodecylphosphocholine skos:exactMatch mesh C028810 dodecylphosphocholine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:78029 toralactone skos:exactMatch mesh C005505 toralactone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:7803 Otobain skos:exactMatch mesh C000610866 otobain lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:78037 polyhydroxyalkanoate skos:exactMatch mesh D010381 Pelger-Huet Anomaly lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:78042 5-fluoroanthranilic acid skos:exactMatch mesh C586441 2-amino-5-fluorobenzoic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:78074 tin(II) chloride dihydrate skos:exactMatch mesh C023599 stannous chloride lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:78159 4,7-diphenyl-1,10-phenanthroline 4',4''-disulfonic acid skos:exactMatch mesh C017049 bathophenanthroline disulfonic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:7821 Oxantel pamoate skos:exactMatch mesh C037225 oxantel pamoate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:78226 1,2-dicapryl-sn-glycero-3-phosphocholine skos:exactMatch mesh C480658 didecanoylphosphatidylcholine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:7825 oxiconazole skos:exactMatch mesh C022155 oxiconazole lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:78250 valerylsalicylic acid skos:exactMatch mesh C117223 valerylsalicylic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:78256 oryzalexin D skos:exactMatch mesh C584122 oryzalexin D lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:78259 oryzalexin E skos:exactMatch mesh C584123 oryzalexin E lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:78273 9-cis-retinal skos:exactMatch mesh C031390 9-cis-retinal lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:78288 elloramycin A skos:exactMatch mesh C047329 elloramycin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:78304 2-nonanol skos:exactMatch mesh C526153 2-nonanol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:78306 ambrein skos:exactMatch mesh C074170 ambrein lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:78307 ambroxan skos:exactMatch mesh C413580 ambrox lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:78317 civetone skos:exactMatch mesh C056157 civetone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:78321 ethyl 2-hydroxypropanoate skos:exactMatch mesh C015866 ethyl lactate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:78337 methyl isothiocyanate skos:exactMatch mesh C005227 methyl isothiocyanate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:78370 cyclooctatin skos:exactMatch mesh C078947 cyclooctatin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:78373 chelerythrine skos:exactMatch mesh C016299 chelerythrine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:78407 ethyl mandelate skos:exactMatch mesh C086822 ethyl mandelate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:78411 tricosan-1-ol skos:exactMatch mesh C469890 1-tricosanol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:78420 icariin skos:exactMatch mesh C056599 icariin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:7849 oxolucidine B skos:exactMatch mesh C029836 serratanine B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:78496 mastoparan skos:exactMatch mesh C037500 mastoparan lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:78507 mastoparan-AF skos:exactMatch mesh C575417 mastoparan-AF lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:78510 dorsomorphin skos:exactMatch mesh C516138 dorsomorphin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:78538 tafamidis skos:exactMatch mesh C547076 tafamidis lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:78539 zofenopril skos:exactMatch mesh C044958 zofenopril lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:78546 nemadipine-A skos:exactMatch mesh C510591 nemadipine-A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:78549 pipamperone skos:exactMatch mesh C005569 pipamperone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:7855 oxyayanin B skos:exactMatch mesh C501183 3',5,6-trihydroxy-3,4',7-trimethoxyflavone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:78570 beta-aminoarteether maleate skos:exactMatch mesh C550182 beta-aminoarteether maleate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:7858 oxycarboxin skos:exactMatch mesh C008742 oxycarboxin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:78582 aflatoxin Q1 skos:exactMatch mesh C033759 aflatoxin Q1 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:78595 21-dehydrocortisol skos:exactMatch mesh C026547 21-dehydrocortisol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:78600 11-dehydrocorticosterone skos:exactMatch mesh C003552 11-dehydrocorticosterone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:78621 monepantel skos:exactMatch mesh C533978 monepantel lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:78646 N-hexadecanoylsphingosine-1-phosphocholine skos:exactMatch mesh C033171 palmitoylsphingomyelin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:78665 royal jelly skos:exactMatch mesh C058787 royal jelly lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:78672 rubidium chloride skos:exactMatch mesh C032710 rubidium chloride lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:78677 6-anilino-5,8-quinolinedione skos:exactMatch mesh C041715 6-anilino-5,8-quinolinedione lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:7868 Oxyphencyclimine skos:exactMatch mesh C100201 oxyphencyclimine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:78683 1-(4-butylbenzyl)isoquinoline skos:exactMatch mesh C479572 1-(4-butylbenzyl)isoquinoline lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:78695 cantharidic acid skos:exactMatch mesh C000626960 cantharidic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:78696 cercosporamide skos:exactMatch mesh C085452 cercosporamide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:78701 (5alpha)-3-oxocholestan-26-oic acid skos:exactMatch mesh C533800 dafachronic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:78726 25-azacoprostane skos:exactMatch mesh C046857 25-azacoprostane lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:78738 2,4,5-trimethylthiazole skos:exactMatch mesh C424603 2,4,5-trimethylthiazole lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:78739 emodepside skos:exactMatch mesh C468987 emodepside lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:78759 N,N-dimethylsphingosine skos:exactMatch mesh C061800 N,N-dimethylsphingosine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:78770 ethylene glycol monododecyl ether skos:exactMatch mesh C515063 ethylene glycol mono-n-dodecyl ether lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:78780 pyraclostrobin skos:exactMatch mesh C513428 pyrachlostrobin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:78782 pyrrolidine dithiocarbamate skos:exactMatch mesh C020972 pyrrolidine dithiocarbamic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:78816 5-hydroxyhexan-2-one skos:exactMatch mesh C535060 5-hydroxy-2-hexanone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:7883 PR-toxin skos:exactMatch mesh C015483 PR Toxin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:78843 CK-666 skos:exactMatch mesh C543733 CK-0944666 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:78854 naphthalene-1,2,3,4-tetrone skos:exactMatch mesh C003020 oxoline lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:78862 tetracosapentaenoic acid skos:exactMatch mesh C099830 tetracosapentaenoic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:78864 hexacosatetraenoic acid skos:exactMatch mesh C063979 hexacosatetraenoic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:78877 1,3-indandione skos:exactMatch mesh C001445 1,3-indandione lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:78878 4-chloro-7-nitrobenzofurazan skos:exactMatch mesh C000609866 4-chloro-7--nitrobenzo-2-oxa-1,3-diazole lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:7889 paeoniflorin skos:exactMatch mesh C015423 peoniflorin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:78904 4,4-dimethyl-8,14-cholestadien-3beta-ol skos:exactMatch mesh C071868 4,4-dimethylcholesta-8,14-dien-3-ol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:78909 12-HPEPE skos:exactMatch mesh C048579 12-hydroperoxy-5,8,11,14,17-eicosapentaenoic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:78913 copovidone skos:exactMatch mesh C402301 poly(vinylpyrrolidone-co-vinyl-acetate) lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:78915 triacontatetraenoic acid skos:exactMatch mesh C088763 triacontatetraenoic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:78918 dotriacontatetraenoic acid skos:exactMatch mesh C086311 dotriacontatetraenoic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:78933 tetratriacontahexaenoic acid skos:exactMatch mesh C086312 tetratriacontahexaenoic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:7902 Palustrine skos:exactMatch mesh C099474 palustrine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:79030 S-adenosyl-3-thiopropylamine skos:exactMatch mesh C012703 S-adenosyl-3-thiopropylamine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:79040 umeclidinium bromide skos:exactMatch mesh C573971 GSK573719 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:79042 tasimelteon skos:exactMatch mesh C478745 tasimelteon lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:79059 2-arachidonoyl-sn-glycero-3-phosphate skos:exactMatch mesh C459464 2-arachidonoyl-sn-glycero-3-phosphate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:79065 4,4'-diaponeurosporenal skos:exactMatch mesh C011751 4,4'-diaponeurosporen-4-al lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:79068 crocin-1 skos:exactMatch mesh D027622 Crocus lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:79071 selenoneine skos:exactMatch mesh C550322 selenoneine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:79075 1,2-dioctanoyl-sn-glycero-3-phosphate skos:exactMatch mesh C084527 dioctanoylphosphatidic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:79079 (4S)-4-hydroxy-L-isoleucine skos:exactMatch mesh C502516 (2S,3S,4R)-gamma-hydroxyisoleucine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:79090 SB-202190 skos:exactMatch mesh C090942 4-(4-fluorophenyl)-2-(4-hydroxyphenyl)-5-(4-pyridyl)imidazole lexical 0.9 https://github.com/indralab/panacea_indra/blob/master/panacea_indra/make_ctd_tests.py +chebi CHEBI:79095 N(5)-hydroxy-L-ornithine skos:exactMatch mesh C004976 delta-N-hydroxyornithine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:7910 paniculatin skos:exactMatch mesh C452987 paniculatin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:7911 Panipenem skos:exactMatch mesh C039536 panipenem lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:79121 9-hydroxynonanoic acid skos:exactMatch mesh C528063 9-hydroxynonanoic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:79162 8-hydroxyoctanoic acid skos:exactMatch mesh C083377 8-hydroxyoctanoic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:7919 Papyriferic acid skos:exactMatch mesh C548136 papyriferic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:7921 Paramethadione skos:exactMatch mesh C005731 paramethadione lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:79222 3-sulfinopropionic acid skos:exactMatch mesh C009351 3-sulfinopropionic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:7926 Parasorbic acid skos:exactMatch mesh C005408 parasorbic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:79284 trehalulose skos:exactMatch mesh C042003 trehalulose lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:79285 leucrose skos:exactMatch mesh C060525 leucrose lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:79296 indigoidine skos:exactMatch mesh C446045 indigoidine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:79310 R24 skos:exactMatch mesh C575121 2-N-(3-chloro-4-methylphenyl)quinazoline-2,4-diamine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:79311 glucoraphanin skos:exactMatch mesh C119494 glucoraphanin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:79332 1-alkyl-2-acyl-3-(3-O-sulfo-beta-D-galactosyl)-sn-glycerol skos:exactMatch mesh C009233 seminolipid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:7938 Parthenin skos:exactMatch mesh C022097 parthenin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:79385 YW3548 skos:exactMatch mesh C109532 YW 3548 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:79390 furanomycin skos:exactMatch mesh C063753 furanomycin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:79391 (-)-chuangxinmycin skos:exactMatch mesh C014414 chuangxinmycin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:79399 Piperazine citrate skos:exactMatch mesh C006589 piperazine citrate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:7940 patchouli alcohol skos:exactMatch mesh C052983 patchouli alcohol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:79404 Y 23684 skos:exactMatch mesh C074367 Y 23684 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:7941 Patrinoside skos:exactMatch mesh C008771 patrinoside lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:7943 Paucin skos:exactMatch mesh C008772 paucin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:79437 1,2,4,5-Tetrahydrotestolactone skos:exactMatch mesh C045023 1,2,4,5-tetrahydrotestolactone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:79441 Nirvanol skos:exactMatch mesh C014544 ethylphenylhydantoin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:79477 2-(3,4,5-trimethoxyphenyl)-5,6,7,8-tetramethoxy-4H-1-benzopyran-4-one skos:exactMatch mesh C522041 5,6,7,8,3',4',5'-heptamethoxyflavone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:7948 Pedunculagin skos:exactMatch mesh C000606212 pedunculagin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:7949 Peganine skos:exactMatch mesh C019592 vasicine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:79496 3-Deoxyestrone skos:exactMatch mesh C002006 3-deoxyestrone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:79516 Nonylphenol skos:exactMatch mesh C025256 nonylphenol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:79548 L-365260 skos:exactMatch mesh C058121 L 365260 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:79560 GYKI 52466 skos:exactMatch mesh C061950 GYKI 52466 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:79628 gardenin B skos:exactMatch mesh C000591222 gardenin B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:7968 penicilloic acid skos:exactMatch mesh C008782 penicilloic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:79736 ziram skos:exactMatch mesh D015039 Ziram lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:79843 Fluorofelbamate skos:exactMatch mesh C518913 2-fluoro-2-phenyl-1,3-propanediyl dicarbamate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:79859 Cholesta-3,5-dien-7-one skos:exactMatch mesh C071069 cholesta-3,5-dien-7-one lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:7988 Pepsinostreptin skos:exactMatch mesh C035121 pepsinostreptin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:79916 1-Phenyl-5-mercaptotetrazole skos:exactMatch mesh C025766 1-phenyl-5-mercaptotetrazole lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:79928 Asiaticoside skos:exactMatch mesh C004446 asiaticoside lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:79948 S 1033 skos:exactMatch mesh C091523 S 1033 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:79951 Doisynoestrol skos:exactMatch mesh C004995 doisynoestrol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:79967 U 0521 skos:exactMatch mesh C006104 U 0521 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:79978 PD 123177 skos:exactMatch mesh C066253 PD 123177 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:79989 GW 6471 skos:exactMatch mesh C449302 GW 6471 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:79990 GW 409544 skos:exactMatch mesh C442829 GW 409544 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:79991 GW 0742 skos:exactMatch mesh C479979 GW0742 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:79992 GW 1929 skos:exactMatch mesh C120099 GW 1929 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:79994 CGP 52608 skos:exactMatch mesh C092451 CGP 52608 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:79995 GW 3965 skos:exactMatch mesh C473027 GW 3965 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:79999 XCT 790 skos:exactMatch mesh C488234 XCT790 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80000 GSK 4716 skos:exactMatch mesh C545235 GSK 4716 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80003 Fexaramine skos:exactMatch mesh C474615 fexaramine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80005 Kni 102 skos:exactMatch mesh C073513 KNI 102 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80006 Kynostatin 272 skos:exactMatch mesh C077822 kynostatin 272 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80009 A 80987 skos:exactMatch mesh C092970 A 80987 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80011 B 823-08 skos:exactMatch mesh C049708 B 823-08 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80012 Ro 18-5364 skos:exactMatch mesh C048199 Ro 18-5364 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80015 Leinamycin skos:exactMatch mesh C059000 leinamycin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80016 Chalcomycin skos:exactMatch mesh C002018 chalcomycin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80017 Lankamycin skos:exactMatch mesh C100149 kujimycin B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80020 Mycinamicin VIII skos:exactMatch mesh C063105 mycinamicin VIII lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80021 Protomycinolide IV skos:exactMatch mesh C033386 protomycinolide IV lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80022 Arthrofactin skos:exactMatch mesh C083714 arthrofactin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80023 Vicenistatin skos:exactMatch mesh C082785 vicenistatin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80024 aureothin skos:exactMatch mesh C012198 aureothin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80025 Salinomycin skos:exactMatch mesh C010327 salinomycin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80028 Barbamide skos:exactMatch mesh C100545 barbamide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80029 epothilone C skos:exactMatch mesh C426624 epothilone C lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80030 Melithiazol A skos:exactMatch mesh C401242 melithiazol A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80033 syringolin A skos:exactMatch mesh C407267 syringolin A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80034 Tubulysin A skos:exactMatch mesh C510756 tubulysin A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80035 Tubulysin B skos:exactMatch mesh C546650 tubulysin B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80036 Tubulysin D skos:exactMatch mesh C502386 tubulysin D lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80038 Spinosyn H skos:exactMatch mesh C408427 spinosyn H lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80039 Spinosyn J skos:exactMatch mesh C408428 spinosyn J lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80040 Spinosyn K skos:exactMatch mesh C408426 spinosyn K lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80042 Phoslactomycin B skos:exactMatch mesh C060449 phoslactomycin B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80043 Nodularin skos:exactMatch mesh C063998 nodularin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80049 coelichelin skos:exactMatch mesh C412862 coelichelin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80050 Lyngbyatoxin skos:exactMatch mesh D008235 Lyngbya Toxins lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80051 Triostin A skos:exactMatch mesh C031945 triostin A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80053 Nostocyclopeptide A1 skos:exactMatch mesh C428166 nostocyclopeptide A1 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80054 Nostocyclopeptide A2 skos:exactMatch mesh C428167 nostocyclopeptide A2 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80057 Chivosazole A skos:exactMatch mesh C096623 chivosazol A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80062 Chivosazole F skos:exactMatch mesh C547318 chivosazole F lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80063 Patellamide A skos:exactMatch mesh C085274 patellamide A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80064 Patellamide C skos:exactMatch mesh C460800 patellamide C lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80065 Patellamide B skos:exactMatch mesh C460799 patellamide B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80066 Patellamide D skos:exactMatch mesh C059972 patellamide D lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80067 Ascidiacyclamide skos:exactMatch mesh C075813 ascidiacyclamide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80068 Westiellamide skos:exactMatch mesh C074972 westiellamide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80069 Methylsulfomycin I skos:exactMatch mesh C402917 methylsulfomycin I lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80071 Cyanopeptolin S skos:exactMatch mesh C094593 cyanopeptolin S lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80080 Lienomycin skos:exactMatch mesh C008279 lienomycin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80081 Dihydroalbocycline skos:exactMatch mesh C016380 dihydroalbocycline lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80082 Septacidin skos:exactMatch mesh C015502 septacidin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80083 Dihydropicromycin skos:exactMatch mesh C012911 dihydropicromycin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80089 Coronafacic acid skos:exactMatch mesh C084266 coronafacic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80090 Halstoctacosanolide A skos:exactMatch mesh C509638 halstoctacosanolide A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80107 CE-108 skos:exactMatch mesh C485858 CE-108 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80117 A28086B skos:exactMatch mesh C013374 A28086B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80122 Luzopeptin skos:exactMatch mesh C083808 luzopeptin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80124 Arenomycin B skos:exactMatch mesh C006625 arenomycin B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80127 Angiotensin IV skos:exactMatch mesh C012877 angiotensin II, des-Asp(1)-des-Arg(2)-Ile(5)- lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80128 angiotensin (1-9) skos:exactMatch mesh C506331 angiotensin I (1-9) lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80129 Angiotensin (1-5) skos:exactMatch mesh C000625519 angiotensin II (1-5) lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80131 apelin-13 skos:exactMatch mesh C495199 apelin-13 peptide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80136 Buccalin skos:exactMatch mesh C058692 buccalin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80137 Cerebellin skos:exactMatch mesh C046788 cerebellin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80144 kinetensin skos:exactMatch mesh C048812 kinetensin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80146 Kemptide skos:exactMatch mesh C037642 kemptide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80147 Katacalcin skos:exactMatch mesh C037553 katacalcin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80149 Rhodovibrin skos:exactMatch mesh C522079 rhodovibrin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:8015 Peptidyl-tRNA skos:exactMatch mesh C019037 tRNA, peptidyl- lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80155 Dermaseptin skos:exactMatch mesh C070905 dermaseptin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80156 Endomorphin-1 skos:exactMatch mesh C105293 endomorphin 1 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80157 Endomorphin-2 skos:exactMatch mesh C105294 endomorphin 2 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80162 Hydroxyspheroidene skos:exactMatch mesh C005638 hydroxyspheroidene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80163 Galantide skos:exactMatch mesh C074975 galantide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80167 chlorobactene skos:exactMatch mesh C006980 chlorobactene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80170 Granuliberin R skos:exactMatch mesh C015908 granuliberin R lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80174 Helospectin I skos:exactMatch mesh C043046 helospectin I lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80176 Helospectin II skos:exactMatch mesh C043047 helospectin II lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80177 Myxol skos:exactMatch mesh C488895 myxol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80183 Leucokinin I skos:exactMatch mesh C083926 leucokinin I lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80187 4-Hydroxymyxol skos:exactMatch mesh C510260 4-hydroxymyxol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80196 Isorenieratene skos:exactMatch mesh C577433 isorenieratene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80200 Myomodulin skos:exactMatch mesh C053302 myomodulin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80206 Thermozeaxanthin-15 skos:exactMatch mesh C402114 thermozeaxanthin-15 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80214 3'-hydroxyechinenone skos:exactMatch mesh C500734 3'-hydroxyechinenone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80217 adonixanthin skos:exactMatch mesh C539602 adonixanthin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80231 Urodilatin skos:exactMatch mesh C056452 Ularitide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80233 Atrial natriuretic peptide skos:exactMatch mesh D009320 Atrial Natriuretic Factor lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80236 Uroguanylin skos:exactMatch mesh C084362 uroguanylin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80238 T-kinin skos:exactMatch mesh C039065 T-kinin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80254 Melanin-concentrating hormone skos:exactMatch mesh C019463 melanin-concentrating hormone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80274 Parathyroid hormone-related peptide (1-36) skos:exactMatch mesh C079957 parathyroid hormone-related peptide (1-36) lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80292 Urotensin I skos:exactMatch mesh C029676 urotensin I lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:8030 petasin skos:exactMatch mesh C418727 petasin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80304 kisspeptin-54 skos:exactMatch mesh D059648 Kisspeptins lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:8031 Petasitenine skos:exactMatch mesh C014738 petasitenine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80318 Neuropeptide EI skos:exactMatch mesh C522850 neuropeptide EI lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80322 Adrenorphin skos:exactMatch mesh C039700 adrenorphin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80325 Neuropeptide AF skos:exactMatch mesh C061209 A18Famide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80326 Neuropeptide FF skos:exactMatch mesh C053651 phenylalanyl-leucyl-phenylalanyl-glutaminyl-prolyl-glutaminyl-arginyl-phenylalaninamide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:8034 peucedanin skos:exactMatch mesh C587828 peucedanin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80347 Dynorphin B skos:exactMatch mesh C036200 rimorphin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80356 Exendin-2 skos:exactMatch mesh C040442 heliodermin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:8036 Pfaffic acid skos:exactMatch mesh C000613691 pfaffic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80360 Litorin skos:exactMatch mesh C010212 litorin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80361 Ranatensin skos:exactMatch mesh C003291 ranatensin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80372 malonylgenistin skos:exactMatch mesh C521200 malonylgenistin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80408 N-Acetylgalactosamine 4-sulfate skos:exactMatch mesh C046735 N-acetylgalactosamine 4-sulfate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80409 3-Chloro-2-hydroxymuconic semialdehyde skos:exactMatch mesh C112601 3-chloro-2-hydroxymuconic semialdehyde lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80410 Cyclopropanecarboxyl-CoA skos:exactMatch mesh C047215 S-cyclopropanecarboxyl-coenzyme A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80417 Okenone skos:exactMatch mesh C510819 okenone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80418 Thiobenzamide skos:exactMatch mesh C015539 thiobenzamide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80421 Nostoxanthin skos:exactMatch mesh C533811 nostoxanthin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80447 9(S)-HOTrE skos:exactMatch mesh C062142 9-hydroxy-10,12,15-octadecatrienoic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80462 Volicitin skos:exactMatch mesh C419781 volicitin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80464 Deinoxanthin skos:exactMatch mesh C547822 deinoxanthin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:8047 phaseolotoxin skos:exactMatch mesh C021234 phaseolotoxin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80473 5-Acetylamino-6-amino-3-methyluracil skos:exactMatch mesh C054188 5-acetylamino-6-amino-3-methyluracil lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:8048 phellamurin skos:exactMatch mesh C016043 phellamurin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80484 pinocembrin chalcone skos:exactMatch mesh C117518 pinocembrin chalcone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80486 phlorizin chalcone skos:exactMatch mesh C027321 isosalipurposide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:8049 Phenacemide skos:exactMatch mesh C005396 phenacemide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80491 pinostrobin skos:exactMatch mesh C411294 pinostrobin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80495 benzidine skos:exactMatch mesh C029876 benzidine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80502 N'-Nitrosonornicotine skos:exactMatch mesh C008655 N'-nitrosonornicotine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80503 Radium-224 skos:exactMatch mesh C026062 thorium X lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80504 Radium-226 skos:exactMatch mesh C000615152 Radium-226 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80505 Radium-228 skos:exactMatch mesh C000615153 Radium-228 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80515 4-Fluorocatechol skos:exactMatch mesh C072305 4-fluorocatechol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80518 4-Fluoromuconolactone skos:exactMatch mesh C065584 4-fluoromuconolactone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80535 methyl farnesoate skos:exactMatch mesh C032429 methyl farnesoate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80549 13,16,19-Docosatrienoic acid skos:exactMatch mesh C098879 13,16,19-docosatrienoic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80553 alpha-Hydroxytamoxifen skos:exactMatch mesh C110902 alpha-hydroxytamoxifen lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80554 N-Desmethyltamoxifen skos:exactMatch mesh C028787 N-desmethyltamoxifen lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80555 4-Hydroxy-N-desmethyltamoxifen skos:exactMatch mesh C055492 4-hydroxy-N-desmethyltamoxifen lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80556 N,N-Didesmethyltamoxifen skos:exactMatch mesh C122072 N,N-didesmethyltamoxifen lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80558 Dechloroethylcyclophosphamide skos:exactMatch mesh C064445 dechloroethylcyclophosphamide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80559 Alcophosphamide skos:exactMatch mesh C052572 alcophosphamide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80561 4-Ketoifosfamide skos:exactMatch mesh C038006 4-ketoifosfamide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80562 2-Dechloroethylifosfamide skos:exactMatch mesh C038007 dechloroethylifosfamide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80564 Carboxyifosfamide skos:exactMatch mesh C064446 carboxyifosfamide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80567 3-Hydroxylidocaine skos:exactMatch mesh C075860 3-hydroxylidocaine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80572 Homotrypanothione skos:exactMatch mesh C091387 homotrypanothione lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80575 3-Hydroxymonoethylglycinexylidide skos:exactMatch mesh C091002 3-hydroxy-monoethylglycinexylidide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80580 Codeine-6-glucuronide skos:exactMatch mesh C061773 codeine-6-glucuronide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80581 Morphine-6-glucuronide skos:exactMatch mesh C035349 morphine-6-glucuronide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80586 3-Carbamoyl-2-phenylpropionaldehyde skos:exactMatch mesh C104537 3-carbamoyl-2-phenylpropionaldehyde lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80593 4-Hydroxy-5-phenyltetrahydro-1,3-oxazin-2-one skos:exactMatch mesh C438109 4-hydroxy-5-phenyl-1,3-oxazaperhydroin-2-one lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80594 5-Phenyl-1,3-oxazinane-2,4-dione skos:exactMatch mesh C407022 5-phenyl-1,3-oxazinane-2,4-dione lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80596 2-Hydroxycarbamazepine skos:exactMatch mesh C056205 2-hydroxycarbamazepine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80597 3-Hydroxycarbamazepine skos:exactMatch mesh C000606157 3-hydroxycarbamazepine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80598 2,3-Dihydroxycarbamazepine skos:exactMatch mesh C531583 2,3-dihydroxycarbamazepine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80603 Demethylcitalopram skos:exactMatch mesh C514709 demethylcitalopram lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80604 Didemethylcitalopram skos:exactMatch mesh C514710 didemethylcitalopram lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80610 6-Mercaptopurine ribonucleoside 5'-diphosphate skos:exactMatch mesh C042296 6-mercaptopurine ribonucleoside 5'-diphosphate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80611 6-Mercaptopurine ribonucleoside triphosphate skos:exactMatch mesh C001707 6-thioinosine-5'-triphosphate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80612 6-Thioxanthine 5'-monophosphate skos:exactMatch mesh C074054 6-thioxanthine 5'-monophosphate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80613 6-Thioguanosine monophosphate skos:exactMatch mesh C003964 6-thioguanylic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80616 N,N'-Diacetylhydrazine skos:exactMatch mesh C042228 N,N'-diacetylhydrazine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80617 Isonicotinylglycine skos:exactMatch mesh C009895 isonicotinuric acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80620 Albendazole sulfone skos:exactMatch mesh C027187 albendazole sulfone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80621 Albendazole-2-aminosulfone skos:exactMatch mesh C085926 albendazole-2-aminosulfone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80625 alpha-Fluoro-beta-ureidopropionic acid skos:exactMatch mesh C045635 alpha-fluoro-beta-ureidopropionic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80626 alpha-Fluoro-beta-alanine skos:exactMatch mesh C032348 alpha-fluoro-beta-alanine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80627 5'-Deoxy-5-fluorocytidine skos:exactMatch mesh C418208 5'-deoxy-5-fluorocytidine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80631 Morphine-3-glucuronide skos:exactMatch mesh C018108 morphine-3-glucuronide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80640 2-n-Propyl-3-pentenoic acid skos:exactMatch mesh C113682 delta(3) valproic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80642 2-Propyl-2,4-pentadienoic acid skos:exactMatch mesh C069738 2-propyl-2,4-pentadienoic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80645 2-Ethylidene-1,5-dimethyl-3,3-diphenylpyrrolidine skos:exactMatch mesh C010724 2-ethylidene-1,5-dimethyl-3,3-diphenylpyrrolidine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80649 Tryparedoxin skos:exactMatch mesh C114110 tryparedoxin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:8065 Phenindamine skos:exactMatch mesh C005430 phenindamine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80656 all-trans-4-oxoretinoic acid skos:exactMatch mesh C002202 4-oxoretinoic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80658 5,6-epoxyretinoic acid skos:exactMatch mesh C018058 5,6-epoxyretinoic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80662 mannopine skos:exactMatch mesh C041352 mannopine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80664 Dolichotheline skos:exactMatch mesh C010133 dolichotheline lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80674 O-Methylandrocymbine skos:exactMatch mesh C115662 O-methylandrocymbine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80676 Deacetylcolchicine skos:exactMatch mesh C003707 trimethylcolchicinic acid methyl ether lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80683 Pumiloside skos:exactMatch mesh C530309 pumiloside lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80684 Strictosamide skos:exactMatch mesh C539462 strictosamide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80687 Cinchonamine skos:exactMatch mesh C035339 cinchonamine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80695 Corynantheal skos:exactMatch mesh C570573 corynantheal lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80699 Spongothymidine skos:exactMatch mesh C010032 thymine arabinoside lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80700 Discodermolide skos:exactMatch mesh C071229 discodermolide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80701 Spergualin skos:exactMatch mesh C033797 spergualin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80704 Acevaltrate skos:exactMatch mesh C090810 acevaltrate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80705 Aflatoxin G2 skos:exactMatch mesh C029754 aflatoxin G2 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80706 Aflatoxin G1 skos:exactMatch mesh C027955 aflatoxin G1 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80709 Aloe emodin anthrone skos:exactMatch mesh C059635 aloe emodin anthrone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80710 Neosurugatoxin skos:exactMatch mesh C036793 neosurugatoxin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80711 Luteoskyrin skos:exactMatch mesh C100224 luteoskyrin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80712 Rugulosin skos:exactMatch mesh C029548 rugulosin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80713 Citreoviridin skos:exactMatch mesh C014416 citreoviridin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80716 aplysiatoxin skos:exactMatch mesh C006610 aplysiatoxin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80720 Bisabolol oxide B skos:exactMatch mesh C585301 bisabololoxide B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80721 Dendrolasin skos:exactMatch mesh C454810 dendrolasin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80727 AK-toxin I skos:exactMatch mesh C421190 AK-toxin I lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80728 pyriculol skos:exactMatch mesh C000623120 pyriculol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80729 toxoflavin skos:exactMatch mesh C548732 PKF118-310 lexical 0.9 https://github.com/indralab/panacea_indra/blob/master/panacea_indra/make_ctd_tests.py +chebi CHEBI:80730 Coronatine skos:exactMatch mesh C058487 coronatine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80731 Halichondrin B skos:exactMatch mesh C070519 halichondrin B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80732 Panaxytriol skos:exactMatch mesh C057682 panaxytriol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80733 Islandicin skos:exactMatch mesh C015286 funiculosin (anthraquinone) lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80734 sennoside C skos:exactMatch mesh C029839 sennoside C lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80739 Glucofrangulin A skos:exactMatch mesh C000589164 glucofrangulin A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80740 Glucofrangulin B skos:exactMatch mesh C000589165 glucofrangulin B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80741 Coumachlor skos:exactMatch mesh C412550 coumachlor lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80742 Coumatetralyl skos:exactMatch mesh C004699 coumatetralyl lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80743 Difenacoum skos:exactMatch mesh C012903 difenacoum lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80744 isosilybin skos:exactMatch mesh C075820 isosilybin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80746 Baldrinal skos:exactMatch mesh C047843 baldrinal lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80747 Homobaldrinal skos:exactMatch mesh C047844 homobaldrinal lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80748 Valeranone skos:exactMatch mesh C016179 valeranone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:8075 phenoxyacetic acid skos:exactMatch mesh D031785 Poa lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80750 Ginkgolide M skos:exactMatch mesh C469722 ginkgolide M lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80751 Goitrin skos:exactMatch mesh C004333 goitrin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80753 k-Strophanthin-beta skos:exactMatch mesh C017899 K-strophanthin-beta lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80755 9-Aminocamptothecin skos:exactMatch mesh C080125 9-aminocamptothecin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80765 Squalamine skos:exactMatch mesh C079655 squalamine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80766 SQ 26180 skos:exactMatch mesh C033584 SQ 26180 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80770 Brevetoxin B skos:exactMatch mesh C043466 brevetoxin B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80773 2,5,6-Tribromo-1-methylgramine skos:exactMatch mesh C446283 2,5,6-tribromo-1-methylgramine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80777 Gambieric acid A skos:exactMatch mesh C080898 gambieric acid A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80778 Gambieric acid B skos:exactMatch mesh C080900 gambieric acid B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80779 Gambieric acid C skos:exactMatch mesh C521443 gambieric acid C lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80781 Pahutoxin skos:exactMatch mesh C052962 pahutoxin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80782 Callystatin A skos:exactMatch mesh C421091 callystatin A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80783 Stellettamide A skos:exactMatch mesh C108119 stellettamide A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80787 Anabaseine skos:exactMatch mesh C091713 anabaseine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80788 1,4-cineole skos:exactMatch mesh C058951 1,4-cineole lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80789 Acutumine skos:exactMatch mesh C442344 acutumine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:8079 Phensuximide skos:exactMatch mesh C100129 phensuximide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80791 Anemonin skos:exactMatch mesh C028304 anemonin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80793 Arctiin skos:exactMatch mesh C077992 arctiin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80795 Atractylodin skos:exactMatch mesh C106914 atractylodin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80798 bufadienolide skos:exactMatch mesh C087925 bufadienolide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80799 Bufotalin skos:exactMatch mesh C004600 bufotalin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80800 Byakangelicol skos:exactMatch mesh C462034 byakangelicol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80805 Cinobufagin skos:exactMatch mesh C002471 cinobufagin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80806 Cinobufotalin skos:exactMatch mesh C063451 cinobufotalin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80808 Cnidilide skos:exactMatch mesh C058581 cnidilide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80809 carthamidin skos:exactMatch mesh C012808 carthamidin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80810 Carthamin skos:exactMatch mesh C103141 carthamine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80811 Curcumenol skos:exactMatch mesh C552245 curcumenol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80814 Cyperolone skos:exactMatch mesh C572274 cyperolone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80815 Decanoyl acetaldehyde skos:exactMatch mesh C023969 decanoyl acetaldehyde lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80816 Dehydrocurdione skos:exactMatch mesh C117943 dehydrocurdione lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80818 Deoxyschizandrin skos:exactMatch mesh C034734 schizandrin A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:8082 phenyl acetate skos:exactMatch mesh C570634 phenyl acetate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80821 Evocarpine skos:exactMatch mesh C059242 evocarpine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80822 Fargesin skos:exactMatch mesh C539377 fargesin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80823 Fernenol skos:exactMatch mesh C028769 3-hydroxydiploptene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80824 Furanodiene skos:exactMatch mesh C442489 furanodiene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80825 Furanodienone skos:exactMatch mesh C559478 furanodienone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80828 Gastrodin skos:exactMatch mesh C045345 gastrodin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80829 Genipin 1-beta-gentiobioside skos:exactMatch mesh C058967 genipin 1-gentiobioside lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80833 Hinesol skos:exactMatch mesh C065858 hinesol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80834 Hirsuteine skos:exactMatch mesh C063774 hirsuteine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80836 Isocyperol skos:exactMatch mesh C000617123 isocyperol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80837 Isoelemicin skos:exactMatch mesh C026730 isoelemicin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80838 Isokobusone skos:exactMatch mesh C586976 isokobusone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80840 isomangiferin skos:exactMatch mesh C061492 isomangiferin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80841 Kakuol skos:exactMatch mesh C579139 2-hydroxy-4,5-methylenedioxypropiophenone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80843 Leonurine skos:exactMatch mesh C013587 leonurine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80846 Magnocurarine skos:exactMatch mesh C048506 magnocurarine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80851 Pavoninin 1 skos:exactMatch mesh C111198 pavoninin 1 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80852 Morroniside skos:exactMatch mesh C488401 morroniside lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80853 Neocnidilide skos:exactMatch mesh C087913 neocnidilide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80857 Mycalamide A skos:exactMatch mesh C059646 mycalamide A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80858 Mycalamide B skos:exactMatch mesh C059647 mycalamide B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80862 Nemertelline skos:exactMatch mesh C482881 nemertelline lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80864 Navenone B skos:exactMatch mesh C000593077 navenone B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80879 Ophiopogonin B skos:exactMatch mesh C046997 ophiopogonin B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80880 Obtusifolin skos:exactMatch mesh C546709 obtusifolin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80883 Ophiopogonin D skos:exactMatch mesh C046996 ophiopogonin D lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80885 Pachymic acid skos:exactMatch mesh C102487 pachymic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80886 Phellodendrine skos:exactMatch mesh C079418 phellodendrine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80887 Phellopterin skos:exactMatch mesh C104601 phellopterin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80888 Forsythin skos:exactMatch mesh C075528 phillyrin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80895 plantaginin skos:exactMatch mesh C000600965 plantaginin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80897 rhamnocitrin skos:exactMatch mesh C541117 kaempferol-7-methyl ether lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80899 Salicifoline skos:exactMatch mesh C058227 salicifoline lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80900 Schizandrin skos:exactMatch mesh C011105 schizandrin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80907 Sweroside skos:exactMatch mesh C049412 sweroside lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80908 Telocinobufagin skos:exactMatch mesh C009391 telocinobufagin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80913 Worenine skos:exactMatch mesh C546729 worenine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80915 Zederone skos:exactMatch mesh C586942 zederone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80918 6-Chloroindole skos:exactMatch mesh C000598892 6-chloroindole lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80919 alpha-Cyperone skos:exactMatch mesh C583938 alpha-cyperone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80923 Caulerpin skos:exactMatch mesh C000392 caulerpin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80924 Lanosol skos:exactMatch mesh C420505 lanosol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80940 beta-gurjunene skos:exactMatch mesh C087929 beta-gurjunene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80946 3-octanone skos:exactMatch mesh C017582 3-octanone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80949 Halistanol sulfate skos:exactMatch mesh C072244 halistanol trisulfate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80954 Sceptrin skos:exactMatch mesh C077210 sceptrin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80955 Eudistomin C skos:exactMatch mesh C507825 eudistomin C lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80956 Eudistomin H skos:exactMatch mesh C056221 eudistomin H lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80957 Eudistomin N skos:exactMatch mesh C056224 eudistomin N lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:80961 5-formyluracil skos:exactMatch mesh C007777 5-formyluracil lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81003 AL-294 skos:exactMatch mesh C067636 AL 294 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81004 AL-321 skos:exactMatch mesh C037217 AL 321 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81005 Cilazaprilat skos:exactMatch mesh C045980 cilazaprilat lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81036 Northienamycin skos:exactMatch mesh C039616 northienamycin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81037 PS-5 skos:exactMatch mesh C016883 PS 5 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81038 PS-6 skos:exactMatch mesh C025707 PS-6 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81048 Ferrous lactate skos:exactMatch mesh C101012 ferrous lactate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81051 Cycleanine skos:exactMatch mesh C037098 cycleanine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81055 Calcium sulfide skos:exactMatch mesh C033907 calcium sulfide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81056 methyl hesperidin skos:exactMatch mesh C052037 methyl hesperidin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81057 Karounidiol skos:exactMatch mesh C088116 karounidiol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81063 Penicillin F skos:exactMatch mesh C067075 penicillin F lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81064 Penicillin K skos:exactMatch mesh C065221 penicillin K lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81065 Penicillin X skos:exactMatch mesh C037825 penicillin X lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81069 Acetylshikonin skos:exactMatch mesh C073944 acetylshikonin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81073 Onjisaponin F skos:exactMatch mesh C442859 onjisaponin F lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81079 Dicentrine skos:exactMatch mesh C067342 dicentrine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81093 kurarinol skos:exactMatch mesh C526229 kurarinol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81094 kuraridinol skos:exactMatch mesh C526228 kuraridinol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81100 Paeonilactone A skos:exactMatch mesh C408125 paeonilactone A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81101 Paeonilactone B skos:exactMatch mesh C527905 paeonilactone B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81103 Alisol A skos:exactMatch mesh C000050 alisol A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81104 Alisol B skos:exactMatch mesh C457232 alisol B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81106 Alismol skos:exactMatch mesh C053720 alismol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81107 Nupharamine skos:exactMatch mesh C520122 nupharamine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81109 Parishin C skos:exactMatch mesh C554064 parishin C lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81110 Methylprotodioscin skos:exactMatch mesh C425324 methyl protodioscin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81111 Pseudoprotodioscin skos:exactMatch mesh C000606215 pseudo-protodioscin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81120 Fraxidin skos:exactMatch mesh C401933 fraxiden lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81123 Hamaudol skos:exactMatch mesh C001324 hamaudol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81125 Coryneine skos:exactMatch mesh C012856 coryneine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81126 Furanogermenone skos:exactMatch mesh C035193 furanogermenone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81128 Zedoarol skos:exactMatch mesh C000601582 zedoarol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81130 Curcumenone skos:exactMatch mesh C582256 curcumenone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81131 Curdione skos:exactMatch mesh C504126 curdione lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81135 Galanolactone skos:exactMatch mesh C069419 galanolactone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81136 Notopterol skos:exactMatch mesh C082412 notopterol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81137 Cyperotundone skos:exactMatch mesh C541832 cyperotundone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81139 Cnidilin skos:exactMatch mesh C560695 cnidilin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81141 Cyperene skos:exactMatch mesh C000606812 cyperene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81148 4-o-Galloylbergenin skos:exactMatch mesh C496120 4-O-galloylbergenin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:8115 Phomenone skos:exactMatch mesh C016657 phomenone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81151 gamma-Terpineol skos:exactMatch mesh C000599268 gamma-terpineol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81153 11-o-Galloylbergenin skos:exactMatch mesh C556377 11-O-galloylbergenin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81163 plantagoside skos:exactMatch mesh C062295 plantagoside lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81166 Cylindrin skos:exactMatch mesh C031022 cylindrin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81170 Chikusetsusaponin III skos:exactMatch mesh C052777 chikusetsusaponin III lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81190 Lotusine skos:exactMatch mesh C498221 lotusine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81193 Bluensomycin skos:exactMatch mesh C006786 bluensomycin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81201 Uncarine A skos:exactMatch mesh C019589 uncarine A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81203 Uncarine C skos:exactMatch mesh C431785 uncarine C lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81205 Uncarine E skos:exactMatch mesh C431786 uncarine E lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81206 Uncarine F skos:exactMatch mesh C509327 uncarine F lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81209 Kikkanol A skos:exactMatch mesh C119778 kikkanol A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:8121 phosalone skos:exactMatch mesh C019211 agria 1060 A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81210 Kikkanol B skos:exactMatch mesh C119779 kikkanol B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81211 Kikkanol C skos:exactMatch mesh C119780 kikkanol C lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81212 Kikkanol D skos:exactMatch mesh C413249 kikkanol D lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81213 Kikkanol E skos:exactMatch mesh C413247 kikkanol E lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81214 Kikkanol F skos:exactMatch mesh C413248 kikkanol F lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81216 Chrysanthetriol skos:exactMatch mesh C076943 chrysanthetriol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81217 chrysanthemol skos:exactMatch mesh C056121 chrysanthemol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81220 Kukoamine A skos:exactMatch mesh C096274 kukoamine A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81221 Kukoamine B skos:exactMatch mesh C557784 kukoamine B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81225 Epomediol skos:exactMatch mesh C031365 epomediol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81227 cinnamtannin A2 skos:exactMatch mesh C425558 cinnamtannin A2 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81240 ursocholic acid skos:exactMatch mesh C030712 ursocholic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81257 3-phenylpropyl acetate skos:exactMatch mesh C577735 3-phenylpropyl acetate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81259 2-Phenylpropyl acetate skos:exactMatch mesh C577824 2-phenylpropyl acetate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81272 Neoarctin B skos:exactMatch mesh C088330 neoarctin B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81278 4-(4-Hydroxyphenyl)-2-butanol skos:exactMatch mesh C000598249 4-(4-hydroxyphenyl)-2-butanol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81281 Antibiotic JI-20A skos:exactMatch mesh C030243 antibiotic JI 20A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81282 Antibiotic JI-20B skos:exactMatch mesh C030244 antibiotic JI 20B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81284 Fortimicin B skos:exactMatch mesh C023385 fortimicin B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81285 Sannamycin A skos:exactMatch mesh C025264 sannamycin A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81286 Sannamycin B skos:exactMatch mesh C025265 sannamycin B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81292 Tenitramine skos:exactMatch mesh C009395 tenitramine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81293 Vinyl ether skos:exactMatch mesh C100195 vinyl ether lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81294 Narcobarbital skos:exactMatch mesh C010308 pronarcon lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81296 Ethadione skos:exactMatch mesh C007637 ethadione lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81297 Heptabarbital skos:exactMatch mesh C084640 heptabarbital lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81304 Magnesium peroxide skos:exactMatch mesh C517394 magnesium peroxide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81306 Acetoxolone skos:exactMatch mesh C013384 acetylglycyrrhetinic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81308 allocholic acid skos:exactMatch mesh C002001 allocholic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81323 Sarcostin skos:exactMatch mesh C116955 sarcostin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81324 Lithospermoside skos:exactMatch mesh C070237 griffonin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81337 cirsimaritin skos:exactMatch mesh C007072 cirsimaritin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81338 6-Demethoxycapillarisin skos:exactMatch mesh C514569 6-demethoxycapillarisin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81341 Capillartemisin A skos:exactMatch mesh C038181 capillartemisin A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81342 Dehydrocorydaline skos:exactMatch mesh C007232 dehydrocorydalin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81343 Capillartemisin B skos:exactMatch mesh C038182 capillartemisin B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81346 Clemaphenol A skos:exactMatch mesh C475449 clemaphenol A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81348 Citreorosein skos:exactMatch mesh C540595 citreorosein lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81352 Gomisin B skos:exactMatch mesh C082090 schisantherin B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81354 3,4,5-Trimethoxytoluene skos:exactMatch mesh C017776 3,4,5-trimethoxytoluene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81358 Hexahydrocurcumin skos:exactMatch mesh C569902 hexahydrocurcumin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81360 spinosin skos:exactMatch mesh C055669 spinosin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81361 Dehydrozingerone skos:exactMatch mesh C052933 methyl-3-methoxy-4-hydroxystyryl ketone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81363 Magnosalin skos:exactMatch mesh C069674 magnosalin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81364 Dioxation skos:exactMatch mesh C004838 dioxathion lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81366 Zhebeinine skos:exactMatch mesh C071593 zhebeinine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81370 Menisdaurilide skos:exactMatch mesh C438745 menisdaurilide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81372 Ephedroxane skos:exactMatch mesh C046118 ephedroxane lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81377 (+)-nootkatone skos:exactMatch mesh C050302 nootkatone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81378 beta-nootkatol skos:exactMatch mesh C041991 Nootkatol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81390 Immepip skos:exactMatch mesh C085755 4-(1H-imidazol-4-ylmethyl)piperidine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81391 Thioperamide skos:exactMatch mesh C052075 thioperamide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81393 Phaeomelanin skos:exactMatch mesh C016042 phaeomelanin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81396 Rhizocticin B skos:exactMatch mesh C096640 rhizocticin B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81400 Rhizocticin A skos:exactMatch mesh C063847 rhizocticin A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81403 2-phosphinomethylmalic acid skos:exactMatch mesh C043280 2-phosphinomethylmalic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81405 N-Acetyldemethylphosphinothricin skos:exactMatch mesh C046087 N-acetyldemethylphosphinothricin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81407 N-Acetylbialaphos skos:exactMatch mesh C046088 N-acetylbialaphos lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81408 Grandifloric acid skos:exactMatch mesh C007885 grandifloric acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81409 irigenin skos:exactMatch mesh C509874 irigenin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81410 Irisflorentin skos:exactMatch mesh C570745 irisflorentin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81412 Rhizocticin C skos:exactMatch mesh C541525 isoleucyl-arginyl-2-amino-5-phosphono-3-pentenoic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81413 Rhizocticin D skos:exactMatch mesh C541526 leucyl-arginyl-2-amino-5-phosphono-3-pentenoic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81415 Colchicoside skos:exactMatch mesh C014419 colchicoside lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81419 kasugamycin skos:exactMatch mesh C100305 kasugamycin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81420 Minosaminomycin skos:exactMatch mesh C008531 minosaminomycin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81421 Spenolimycin skos:exactMatch mesh C044528 spenolimycin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81431 1-Epidactimicin skos:exactMatch mesh C059812 1-epidactimicin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81449 Saccharocin skos:exactMatch mesh C038754 saccharocin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81456 Ethylmalonyl-CoA skos:exactMatch mesh C102829 ethylmalonyl-coenzyme A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81466 5-Deoxystrigol skos:exactMatch mesh C528323 5-deoxystrigol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81481 11beta-hydroxytestosterone skos:exactMatch mesh C037914 11-hydroxytestosterone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81485 osthenol skos:exactMatch mesh C114745 osthenol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81486 Sphondin skos:exactMatch mesh C039410 sphondin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81500 Deltorphin C skos:exactMatch mesh C060208 deltorphin I, Ala(2)- lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81502 1,2,3,4,7,8-Hexachlorodibenzodioxin skos:exactMatch mesh C078219 1,2,3,4,7,8-hexachlorodibenzodioxin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81503 1,2,3,6,7,8-Hexachlorodibenzodioxin skos:exactMatch mesh C046838 1,2,3,6,7,8-hexachlorodibenzodioxin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81505 1,2,3,4,6,7,8-Heptachlorodibenzodioxin skos:exactMatch mesh C046839 1,2,3,4,6,7,8-heptachlorodibenzodioxin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81506 2,3,7,8-Tetrachlorodibenzofuran skos:exactMatch mesh C014211 2,3,7,8-tetrachlorodibenzofuran lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81507 1,2,3,7,8-Pentachlorodibenzofuran skos:exactMatch mesh C057584 1,2,3,7,8-pentachlorodibenzofuran lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81508 2,3,4,7,8-Pentachlorodibenzofuran skos:exactMatch mesh C038890 2,3,4,7,8-pentachlorodibenzofuran lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81509 1,2,3,4,7,8-Hexachlorodibenzofuran skos:exactMatch mesh C051412 1,2,3,4,7,8-hexachlorodibenzofuran lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81513 1,2,3,4,6,7,8-Heptachlorodibenzofuran skos:exactMatch mesh C473650 1,2,3,4,6,7,8-heptachlorodibenzofuran lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81517 3,4,5,3',4',5'-Hexachlorobiphenyl skos:exactMatch mesh C027309 3,4,5,3',4',5'-hexachlorobiphenyl lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81519 2,3,4,4',5-Pentachlorobiphenyl skos:exactMatch mesh C035834 2,3,4,4'5-pentachlorobiphenyl lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81520 2,3',4,4',5-Pentachlorobiphenyl skos:exactMatch mesh C070055 2,3',4,4',5-pentachlorobiphenyl lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81522 2,3,3',4,4',5-Hexachlorobiphenyl skos:exactMatch mesh C087667 2,3,3',4,4',5-hexachlorobiphenyl lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81524 2,3',4,4',5,5'-Hexachlorobiphenyl skos:exactMatch mesh C038372 2,4,5,3',4',5'-hexachlorobiphenyl lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81527 beta-Funaltrexamine skos:exactMatch mesh C024524 beta-funaltrexamine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81528 Naltrindole skos:exactMatch mesh C055382 naltrindole lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81530 Deoxyshikonin skos:exactMatch mesh C056013 deoxyshikonin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81535 2,2',4,4',5,6'-Hexabromodiphenyl ether skos:exactMatch mesh C555859 2,2',4,4',5,6'-hexabromodiphenyl ether lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81537 2,2',3,4,4',5',6-Heptabromodiphenyl ether skos:exactMatch mesh C483839 2,2',3,4,4',5',6-heptabromodiphenyl ether lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81541 Oxychlordane skos:exactMatch mesh C008743 oxychlordane lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81542 Octachlorostyrene skos:exactMatch mesh C014138 octachlorostyrene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81543 Tributyltin oxide skos:exactMatch mesh C005961 bis(tri-n-butyltin)oxide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81549 17-Oxosparteine skos:exactMatch mesh C035707 17-oxosparteine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81553 Bacteriochlorophyll d skos:exactMatch mesh C459779 bacteriochlorophyll d lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81555 Enterolactone skos:exactMatch mesh C029497 2,3-bis(3'-hydroxybenzyl)butyrolactone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81558 Diacylglyceryl-N,N,N-trimethylhomoserine skos:exactMatch mesh C021660 1(3),2-diacylglyceryl-3(1)-O-4'-(N,N,N-trimethyl)homoserine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81559 resolvin E1 skos:exactMatch mesh C499823 5S,12R,18R-trihydroxy-6Z,8E,10E,14Z,16E-eicosapentaenoic acid lexical 0.9 https://github.com/indralab/panacea_indra/blob/master/panacea_indra/make_ctd_tests.py +chebi CHEBI:81575 all-trans-3-Hydroxyretinal skos:exactMatch mesh C049427 3-hydroxyretinal lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81578 cathelicidin skos:exactMatch mesh D054804 Cathelicidins lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81583 2,2',4,5'-Tetrabromodiphenyl ether skos:exactMatch mesh C572625 2,2',4,5'-tetrabromodiphenyl ether lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81584 2,2',4,4'-Tetrabromodiphenyl ether skos:exactMatch mesh C511295 2,2',4,4'-tetrabromodiphenyl ether lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81587 Activin B skos:exactMatch mesh C044147 activin B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81589 Jamaicamide A skos:exactMatch mesh C494603 jamaicamide A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81590 Jamaicamide B skos:exactMatch mesh C494604 jamaicamide B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81591 Jamaicamide C skos:exactMatch mesh C494605 jamaicamide C lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81596 Cytochrome cL skos:exactMatch mesh C058498 cytochrome C(L) lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81599 1,1-Dichloroethane skos:exactMatch mesh C501196 1,1-dichloroethane lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81610 1-Methoxypyrene skos:exactMatch mesh C106055 1-methoxypyrene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81611 1,6-Dimethoxypyrene skos:exactMatch mesh C106056 1,6-dimethoxypyrene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81638 Monocyte locomotion inhibitory factor skos:exactMatch mesh C430647 monocyte locomotion inhibitory factor lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81651 2,4-Dichlorotoluene skos:exactMatch mesh C056009 2,4-dichlorotoluene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81666 4-methyl-5-nitrocatechol skos:exactMatch mesh C087486 4-methyl-5-nitrocatechol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81668 2,4,5-Trihydroxytoluene skos:exactMatch mesh C087485 2,4,5-trihydroxytoluene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81670 4-Amino-2-nitrotoluene skos:exactMatch mesh C029333 4-amino-2-nitrotoluene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81684 5-Carboxyvanillic acid skos:exactMatch mesh C466307 5-carboxyvanillic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81689 4-n-Butylresorcinol skos:exactMatch mesh C508220 4-n-butylresorcinol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81697 4-Aminocatechol skos:exactMatch mesh C026669 4-aminocatechol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81705 Dihydrogranaticin skos:exactMatch mesh C048598 dihydrogranaticin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81708 Sodium iodate skos:exactMatch mesh C032285 sodium iodate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81713 Osaterone acetate skos:exactMatch mesh C069297 osaterone acetate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81716 Calcium propionate skos:exactMatch mesh C514136 calcium propionate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81723 Sulfamoyldapsone skos:exactMatch mesh C003361 SDDS lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81727 Disophenol skos:exactMatch mesh C004862 disophenol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81728 Anilofos skos:exactMatch mesh C435690 anilofos lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81729 Methyridine skos:exactMatch mesh C100211 methyridine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:8173 Phrymarolin I skos:exactMatch mesh C000589481 phrymarolin I lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81730 Dichlofenthion skos:exactMatch mesh C011445 dichlofenthion lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81731 tolclofos-methyl skos:exactMatch mesh C426783 tolclofos-methyl lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81733 desmedipham skos:exactMatch mesh C001984 desmedipham lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81734 phenmedipham skos:exactMatch mesh C100128 phenmedipham lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81740 Flucetosulfuron skos:exactMatch mesh C000710349 flucetosulfuron lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81743 Karbutilate skos:exactMatch mesh C014631 karbutilate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81744 Siduron skos:exactMatch mesh C009258 siduron lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81745 Tebuthiuron skos:exactMatch mesh C010346 tebuthiuron lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81748 Ethoxysulfuron skos:exactMatch mesh C544125 1-(4,6-dimethoxypyrimidin-2-yl)-3-(2-ethoxyphenoxysulfonyl)urea lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81749 Flazasulfuron skos:exactMatch mesh C477139 flazasulfuron lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81751 Imazosulfuron skos:exactMatch mesh C433346 1-(2-chloroimidazo(1,2-a)pyridin-3-ylsulfonyl)-3-(4,6-dimethoxypyrimidin-2-yl)urea lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81752 Pyrazosulfuron-ethyl skos:exactMatch mesh C433343 ethyl 5-(4,6-dimethoxypyrimidin-2-ylcarbamoylsulfamoyl)-1-methylpyrazole-4-carboxylate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81753 Dienochlor skos:exactMatch mesh C005406 dienochlor lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81755 propineb skos:exactMatch mesh C012509 propineb lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81756 Benfuresate skos:exactMatch mesh C480688 benfuresate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81758 cyproconazole skos:exactMatch mesh C093628 cyproconazole lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81760 difenoconazole skos:exactMatch mesh C115058 difenoconazole lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81762 fenbuconazole skos:exactMatch mesh C504383 fenbuconazole lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81763 fludioxonil skos:exactMatch mesh C108339 fludioxonil lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81764 fluopicolide skos:exactMatch mesh C557577 fluopicolide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81765 Flurprimidol skos:exactMatch mesh C516142 flurprimidol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81766 hexaconazole skos:exactMatch mesh C409722 hexaconazole lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81769 Indanofan skos:exactMatch mesh C464480 indanofan lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:8177 Phyllanthin skos:exactMatch mesh C517985 phyllanthin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81773 metconazole skos:exactMatch mesh C000627121 metconazole lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81776 Penoxsulam skos:exactMatch mesh C504402 penoxsulam lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81777 penthiopyrad skos:exactMatch mesh C539106 penthiopyrad lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81779 Pyriftalid skos:exactMatch mesh C433223 pyriftalid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:8178 Phyllanthostatin A skos:exactMatch mesh C058885 phyllanthostatin A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81782 tetraconazole skos:exactMatch mesh C524826 tetraconazole lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81783 tricyclazole skos:exactMatch mesh C041191 tricyclazole lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81786 Oxadiazon skos:exactMatch mesh C012466 oxadiazon lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81787 cafenstrole skos:exactMatch mesh C444649 cafenstrole lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81789 dimethenamid skos:exactMatch mesh C120861 dimethenamid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:8179 Phyllodulcin skos:exactMatch mesh C008903 phyllodulcin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81791 Fentrazamide skos:exactMatch mesh C503625 fentrazamide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81792 flutolanil skos:exactMatch mesh C475882 flutolanil lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81793 furametpyr skos:exactMatch mesh C417978 furametpyr lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81796 Chlorophacinone skos:exactMatch mesh C004662 chlorophacinone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81797 cyflufenamid skos:exactMatch mesh C000629566 cyflufenamid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81798 cyflumetofen skos:exactMatch mesh C572153 cyflumetofen lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81801 flusulfamide skos:exactMatch mesh C450479 flusulfamide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81802 mandipropamid skos:exactMatch mesh C550943 mandipropamid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81803 Metaflumizone skos:exactMatch mesh C528570 metaflumizone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81804 Empenthrin skos:exactMatch mesh C080074 empenthrin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81805 fluazifop skos:exactMatch mesh C050582 fluazifop lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81807 quizalofop-ethyl skos:exactMatch mesh C064835 quizalofop-ethyl lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81808 Clomeprop skos:exactMatch mesh C508213 (R,S)-2-(2,4-dichloro-m-tolyloxy)propionanilide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81809 Ethychlozate skos:exactMatch mesh C458560 ethychlozate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81810 1-naphthaleneacetamide skos:exactMatch mesh C576830 2-(1-naphthyl)acetamide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81812 benzobicyclon skos:exactMatch mesh C000603422 benzobicyclon lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81813 Dimethametryn skos:exactMatch mesh C077544 dimethametryn lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81815 Sethoxydim skos:exactMatch mesh C049437 sethoxydim lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81816 Tepraloxydim skos:exactMatch mesh C551920 tepraloxydim lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81817 trinexapac-ethyl skos:exactMatch mesh C478127 trinexapac-ethyl lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81820 cyenopyrafen skos:exactMatch mesh C000591892 cyenopyrafen lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81821 ioxynil skos:exactMatch mesh C008161 ioxynil lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81822 boscalid skos:exactMatch mesh C550088 2-chloro-N-(4-chlorobiphenyl-2-yl)nicotinamide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81824 diflufenican skos:exactMatch mesh C072847 diflufenican lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81827 Ethiprole skos:exactMatch mesh C472185 ethiprole lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81829 Benzofenap skos:exactMatch mesh C403945 benzofenap lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81832 orysastrobin skos:exactMatch mesh C570345 orysastrobin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81836 thallium sulfate skos:exactMatch mesh C013707 thallium sulfate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81839 Oxaziclomefone skos:exactMatch mesh C507381 oxaziclomefone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81843 fluazinam skos:exactMatch mesh C075780 fluazinam lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81845 Pyriprole skos:exactMatch mesh C532951 pyriprole lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81846 amisulbrom skos:exactMatch mesh C000708570 amisulbrom lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81847 Butralin skos:exactMatch mesh C006852 butralin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81848 dimethomorph skos:exactMatch mesh C076154 dimethomorph lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81853 fenhexamid skos:exactMatch mesh C451426 N-(2,3-dichloro-4-hydroxyphenyl)-1-methylcyclohexanecarboxamide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81855 Bromadiolone skos:exactMatch mesh C021636 bromadiolone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81857 imazamox skos:exactMatch mesh C494197 imazamox lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81858 Coumafuryl skos:exactMatch mesh C531383 coumafuryl lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81859 Dalapon skos:exactMatch mesh C004743 dalapon lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:8186 Physoperuvine skos:exactMatch mesh C543196 physoperuvine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81860 Sodium oleate skos:exactMatch mesh C013173 osteum lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81861 Forchlorfenuron skos:exactMatch mesh C116093 N-(2-chloro-4-pyridyl)-N'-phenylurea lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81863 Cyhalofop-butyl skos:exactMatch mesh C501583 cyhalofop-butyl lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:8188 Physovenine skos:exactMatch mesh C092643 physovenine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81880 Calcium arsenate skos:exactMatch mesh C045817 calcium arsenate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81881 lead arsenate skos:exactMatch mesh C045846 lead arsenate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81882 Mercuric oxide skos:exactMatch mesh C019468 mercuric oxide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81883 Dinoterb skos:exactMatch mesh C010937 dinoterb lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81884 Zinc phosphide skos:exactMatch mesh C009701 zinc phosphide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81887 jadomycin A skos:exactMatch mesh C506597 jadomycin A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81890 Landomycin H skos:exactMatch mesh C493496 landomycin H lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81891 Landomycin E skos:exactMatch mesh C113593 landomycin E lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81892 Brodifacoum skos:exactMatch mesh C013418 bromfenacoum lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81893 Difethialone skos:exactMatch mesh C060340 difethialone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81894 Flocoumafen skos:exactMatch mesh C048069 flocoumafen lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81895 Bromethalin skos:exactMatch mesh C040307 bromethalin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81896 Diphenadione skos:exactMatch mesh C100262 diphenadione lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81898 azaconazole skos:exactMatch mesh C044424 azaconazole lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81899 Bensulide skos:exactMatch mesh C001847 bensulide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81900 bromuconazole skos:exactMatch mesh C573694 bromuconazole lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81901 Butroxydim skos:exactMatch mesh C000609900 butroxydim lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81907 Copper hydroxide skos:exactMatch mesh C508959 copper hydroxide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81908 cuprous oxide skos:exactMatch mesh C000520 cuprous oxide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81910 Difenzoquat skos:exactMatch mesh C031394 difenzoquat lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81913 diniconazole skos:exactMatch mesh C049346 diniconazole lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81914 Dinobuton skos:exactMatch mesh C004789 dinobuton lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81915 Diphenamid skos:exactMatch mesh C004840 diphenamid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81919 Fluchloralin skos:exactMatch mesh C012322 fluchloralin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81922 flusilazole skos:exactMatch mesh C061365 flusilazole lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81924 Fluxofenim skos:exactMatch mesh C108005 fluxofenim lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81925 fomesafen skos:exactMatch mesh C088563 fomesafen lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81926 fuberidazole skos:exactMatch mesh C004198 fuberidazole lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81930 Mefluidide skos:exactMatch mesh C027882 Mefluidide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81934 nabam skos:exactMatch mesh C005270 nabam lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81935 nitrapyrin skos:exactMatch mesh C017560 nitrapyrin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81937 oxadixyl skos:exactMatch mesh C062370 oxadixyl lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81939 Pebulate skos:exactMatch mesh C017605 pebulate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:8194 Phytolaccoside B skos:exactMatch mesh C472597 phytolaccoside B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81940 Piperophos skos:exactMatch mesh C077545 piperophos lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81941 prosulfocarb skos:exactMatch mesh C105692 prosulfocarb lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81942 pyrazophos skos:exactMatch mesh C012523 pyrazophos lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81945 sulfluramid skos:exactMatch mesh C063732 sulfluramid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81948 tralkoxydim skos:exactMatch mesh C494054 tralkoxydim lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81952 bupirimate skos:exactMatch mesh C071704 bupirimate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81955 Cycloate skos:exactMatch mesh C017157 cycloate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81956 Dichlormid skos:exactMatch mesh C006284 dichlormid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81958 dimethirimol skos:exactMatch mesh C007448 dimethirimol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81959 Dinitramine skos:exactMatch mesh C002049 dinitramine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:8196 phytuberin skos:exactMatch mesh C008908 phytuberin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81960 dodemorph skos:exactMatch mesh C077547 4-cyclododecyl-2,6-dimethylmorpholine acetate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81962 Fosamine skos:exactMatch mesh C019397 fosamine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81964 Metobromuron skos:exactMatch mesh C008770 metobromuron lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81965 Monolinuron skos:exactMatch mesh C030651 monolinuron lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81969 ofurace skos:exactMatch mesh C062369 ofurace lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81970 penconazole skos:exactMatch mesh C087058 penconazole lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81971 Pyridate skos:exactMatch mesh C043100 pyridate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81972 pyrifenox skos:exactMatch mesh C501582 pyrifenox lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81975 spirotetramat skos:exactMatch mesh C570705 spirotetramat lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81977 Thidiazuron skos:exactMatch mesh C016785 thidiazuron lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81979 Trietazine skos:exactMatch mesh C060537 chlortriazine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:8198 trans-piceid skos:exactMatch mesh C058229 polydatin lexical 0.9 https://github.com/indralab/panacea_indra/blob/master/panacea_indra/make_ctd_tests.py +chebi CHEBI:81980 triticonazole skos:exactMatch mesh C412303 triticonazole lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81982 Cinosulfuron skos:exactMatch mesh C469574 cinosulfuron lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81984 Diclosulam skos:exactMatch mesh C415325 diclosulam lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81987 Dithiopyr skos:exactMatch mesh C071869 dithiopyr lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81988 Ethalfluralin skos:exactMatch mesh C027392 ethafluralin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81989 ethirimol skos:exactMatch mesh C007643 ethirimol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:8199 Picein skos:exactMatch mesh C050880 picein lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81992 Fenchlorazole-ethyl skos:exactMatch mesh C514516 fenchlorazole-ethyl lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81993 Fenclorim skos:exactMatch mesh C501523 fenclorim lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:81999 Dehydrogriseofulvin skos:exactMatch mesh C046407 dehydrogriseofulvin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82005 Spiramycin III skos:exactMatch mesh C087816 spiramycin III lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82008 Flumetralin skos:exactMatch mesh C000617134 flumetralin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82009 Florasulam skos:exactMatch mesh C413390 florasulam lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82010 flucarbazone-sodium skos:exactMatch mesh C466899 MKH 6562 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82011 Flumetsulam skos:exactMatch mesh C472634 N-(2,6-difluorophenyl)-5-methyl(1,2,4)-triazol(1,5-a)pyrimidine-2-sulfonamide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82016 Fluridone skos:exactMatch mesh C013351 fluridone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82017 fluroxypyr skos:exactMatch mesh C416382 4,5-amino-3,5-dichloro-6-fluoro-2-pyridinyloxyacetic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82019 folpet skos:exactMatch mesh C005020 folpet lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82021 imazapyr skos:exactMatch mesh C076656 imazapyr lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82022 Imazethapyr skos:exactMatch mesh C093630 imazethapyr lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82023 iprovalicarb skos:exactMatch mesh C488831 iprovalicarb lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82024 Metosulam skos:exactMatch mesh C106154 metosulam lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82025 napropamide skos:exactMatch mesh C010909 devrinol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82027 Oxabetrinil skos:exactMatch mesh C514517 oxabetrinil lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82029 Oxyfluorfen skos:exactMatch mesh C016027 oxyfluorofen lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82031 Primisulfuron skos:exactMatch mesh C412474 primisulfuron lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82033 propamocarb skos:exactMatch mesh C033205 propamocarb lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82035 propham skos:exactMatch mesh C100175 propham lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82036 prothioconazole skos:exactMatch mesh C550005 prothioconazole lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82041 Spinetoram skos:exactMatch mesh C548262 spinetoram lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82047 triflusulfuron-methyl skos:exactMatch mesh C413391 triflusulfuron-methyl lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82048 zoxamide skos:exactMatch mesh C451427 zoxamide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:8205 picrotin skos:exactMatch mesh C411705 picrotin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82051 Aldoxycarb skos:exactMatch mesh C030580 aldicarb sulfone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82052 benodanil skos:exactMatch mesh C037521 benodanil lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82053 Chloraniformethan skos:exactMatch mesh C011713 chloraniformethane lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82057 Pyracarbolid skos:exactMatch mesh C012522 pyracarbolid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82062 Fluoromidine skos:exactMatch mesh C026462 fluromidine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82069 Triamiphos skos:exactMatch mesh C005847 Triamphos lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82070 Dichlozoline skos:exactMatch mesh C007355 dichlozoline lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82072 Buthiobate skos:exactMatch mesh C016349 buthiobate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82074 triarimol skos:exactMatch mesh C009520 triarimol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82078 Fenaminosulf skos:exactMatch mesh C007287 dexon (fungicide), sodium salt lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82084 prothiocarb skos:exactMatch mesh C012516 prothiocarb lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82089 Butacarb skos:exactMatch mesh C006840 butacarb lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:8209 Pilosine skos:exactMatch mesh C561251 pilosine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82090 carbanolate skos:exactMatch mesh C000241 carbanolate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82092 Mexacarbate skos:exactMatch mesh C100037 mexacarbate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82093 Dioxacarb skos:exactMatch mesh C013967 dioxacarb lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82096 Promecarb skos:exactMatch mesh C009051 promecarb lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82097 Bromocyclen skos:exactMatch mesh C066635 bromocyclen lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82101 Kelevan skos:exactMatch mesh C001178 kelevan lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82102 Amidithion skos:exactMatch mesh C006493 amidithion lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82104 Bromofos skos:exactMatch mesh C100092 bromophos lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82106 Butonate skos:exactMatch mesh C006845 butonate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82107 Carbophenothion skos:exactMatch mesh C006901 carbophenothion lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82108 Chlorphoxim skos:exactMatch mesh C004159 chlorphoxim lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82109 Chlorthiophos skos:exactMatch mesh C012249 chlorthiophos lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82110 Crotoxyphos skos:exactMatch mesh C000518 crotoxyphos lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82111 Crufomate skos:exactMatch mesh C073267 crufomate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82112 Cyanofenphos skos:exactMatch mesh C002488 cyanophenphos lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82119 Dimefox skos:exactMatch mesh C012920 dimefox lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82120 Salithion skos:exactMatch mesh C032070 salithion lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82124 Etrimfos skos:exactMatch mesh C015871 etrimfos lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82125 Fenchlorphos skos:exactMatch mesh C091929 ronnel lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82126 Formothion skos:exactMatch mesh C067599 formothion lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:8213 Pimpinellin skos:exactMatch mesh C039409 pimpinellin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82136 Iodofenphos skos:exactMatch mesh C001968 iodofenphos lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82140 Menazon skos:exactMatch mesh C014649 menazon lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82141 Mephosfolan skos:exactMatch mesh C002300 mephosfolan lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82142 Mipafox skos:exactMatch mesh C005238 mipafox lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82145 Phosfolan skos:exactMatch mesh C002301 phosfolan lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82146 Pirimiphos-ethyl skos:exactMatch mesh C001976 pirimiphos-ethyl lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82153 binapacryl skos:exactMatch mesh C004540 binapacryl lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82154 Chlorfenethol skos:exactMatch mesh C004944 chlorfenethol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82155 Chlorfenson skos:exactMatch mesh C005285 ovex lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82158 Dialifor skos:exactMatch mesh C003620 dialifor lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82159 Fenazaflor skos:exactMatch mesh C007707 fenazaflor lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82160 Fenson skos:exactMatch mesh C048313 fenson lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82162 Tetrasul skos:exactMatch mesh C009442 tetrasul lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82164 Diamidafos skos:exactMatch mesh C013926 diamidfos lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82165 Thionazin skos:exactMatch mesh C005896 thionazin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82171 Benzoylprop-ethyl skos:exactMatch mesh C013842 benzoylprop-ethyl lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82178 Diethatyl-ethyl skos:exactMatch mesh C412491 diethatyl ethyl lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82181 Perfluidone skos:exactMatch mesh C011062 perfluidone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82185 Benzthiazuron skos:exactMatch mesh C006719 benzthiazuron lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82186 Chlorbufam skos:exactMatch mesh C034326 chlorbufam lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82189 Isopropalin skos:exactMatch mesh C008200 isopropalin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82190 Nitralin skos:exactMatch mesh C003499 nitralin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82191 Profluralin skos:exactMatch mesh C027642 profluralin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82192 Chlomethoxyfen skos:exactMatch mesh C054410 chlormethoxynil lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82194 Bromofenoxim skos:exactMatch mesh C047779 bromophenoxim lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82199 Buturon skos:exactMatch mesh C011414 buturon lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82200 chloroxuron skos:exactMatch mesh C012829 chloroxuron lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82212 Phenobenzuron skos:exactMatch mesh C018126 phenobenzuron lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82214 Ethidimuron skos:exactMatch mesh C514786 ethidimuron lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82215 Thiazafluron skos:exactMatch mesh C070144 thiazafluron lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82218 Sulfallate skos:exactMatch mesh C016122 CDEC lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82220 atraton skos:exactMatch mesh C017035 atratone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82221 Aziprotryne skos:exactMatch mesh C012418 mesoranil lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82222 Desmetryn skos:exactMatch mesh C009232 semeron lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82223 Dipropetryn skos:exactMatch mesh C010449 dipropetryn lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82228 secbumeton skos:exactMatch mesh C001730 secbumetone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82229 Isomethiozin skos:exactMatch mesh C056887 isomethiozin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:8223 Pinolidoxin skos:exactMatch mesh C410769 pinolidoxin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82231 Cycluron skos:exactMatch mesh C012860 cycluron lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82234 Buthidazole skos:exactMatch mesh C025639 buthidazole lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82235 chlorfenac skos:exactMatch mesh C041190 chlorfenac lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82236 Chlorfenprop-methyl skos:exactMatch mesh C012822 chlorfenpropmethyl lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82240 Dinoseb acetate skos:exactMatch mesh C027783 aretit lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82241 Dixanthogen skos:exactMatch mesh C000171 dixanthogen lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82243 Hexachloroacetone skos:exactMatch mesh C032052 hexachloroacetone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82244 Methazole skos:exactMatch mesh C004184 methazole lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82246 Naphthalic anhydride skos:exactMatch mesh C012514 1,8-naphthalenedicarboxylic acid anhydride lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82251 Tridiphane skos:exactMatch mesh C051460 tridiphane lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82256 ANTU skos:exactMatch mesh C005277 alpha-naphthyl thiourea lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82258 Crimidine skos:exactMatch mesh C004579 crimidine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82259 Norbormide skos:exactMatch mesh C005321 norbormide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82260 Phosacetim skos:exactMatch mesh C005009 phosacetim lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82261 Pindone skos:exactMatch mesh C014152 pindone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82262 Butopyronoxyl skos:exactMatch mesh C052596 butopyronoxyl lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82264 Trifenmorph skos:exactMatch mesh C001958 trifenmorph lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82265 Propyl isome skos:exactMatch mesh C005580 propyl isome lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82266 Sesamex skos:exactMatch mesh C100180 sesamex lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82271 Chloromethyl methyl ether skos:exactMatch mesh C073317 chloromethyl methyl ether lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82272 Erionite skos:exactMatch mesh C083174 erionite lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82273 Benzal chloride skos:exactMatch mesh C032732 benzal chloride lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82274 (trichloromethyl)benzene skos:exactMatch mesh C018847 benzotrichloride lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82275 benzoyl chloride skos:exactMatch mesh C013409 benzoyl chloride lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82277 Chlorozotocin skos:exactMatch mesh C007028 chlorozotocin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82280 Dimethylcarbamoyl chloride skos:exactMatch mesh C001036 dimethylcarbamyl chloride lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82281 Indium phosphide skos:exactMatch mesh C090882 indium phosphide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82283 Tungsten carbide skos:exactMatch mesh C002802 tungsten carbide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82289 Antimony trioxide skos:exactMatch mesh C037554 antimony trioxide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82296 beta-Butyrolactone skos:exactMatch mesh C013426 beta-butyrolactone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82298 Poligeenan skos:exactMatch mesh C014157 poligeenan lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82299 3-Chloro-4-(dichloromethyl)-5-hydroxy-2(5H)-furanone skos:exactMatch mesh C054121 3-chloro-4-(dichloromethyl)-5-hydroxy-2(5H)-furanone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82300 1-Chloro-2-methylpropene skos:exactMatch mesh C051950 1-chloro-2-methylpropene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82304 1-Amino-2,4-dibromoanthraquinone skos:exactMatch mesh C047777 1-amino-2,4-dibromoanthraquinone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82307 para-Cresidine skos:exactMatch mesh C013453 cresidine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82308 N,N'-Diacetylbenzidine skos:exactMatch mesh C007291 N,N'-diacetylbenzidine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82309 2,4-Diaminoanisole skos:exactMatch mesh C007294 4-methoxy-3-phenylenediamine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82316 3,3'-Dichloro-4,4'-diaminodiphenyl ether skos:exactMatch mesh C016372 3,3'-dichloro-4,4'-diaminodiphenyl ether lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82317 1,2-Diethylhydrazine skos:exactMatch mesh C010112 1,2-diethylhydrazine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82318 Diglycidyl resorcinol ether skos:exactMatch mesh C013488 diglycidyl resorcinol ether lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82319 Dihydrosafrole skos:exactMatch mesh C035396 dihydrosafrole lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82320 Diisopropyl sulfate skos:exactMatch mesh C088205 diisopropyl sulfate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82323 3,7-Dinitrofluoranthene skos:exactMatch mesh C052116 3,7-dinitrofluoranthene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82324 3,9-Dinitrofluoranthene skos:exactMatch mesh C062117 3,9-dinitrofluoranthene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82325 Disperse Blue 1 skos:exactMatch mesh C048853 Disperse Blue 1 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82326 1,2-Epoxybutane skos:exactMatch mesh C027488 1,2-epoxybutane lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82327 Ethyl acrylate skos:exactMatch mesh C040833 ethyl acrylate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82329 Fusarin C skos:exactMatch mesh C041403 fusarin C lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82331 Glu-P-2 skos:exactMatch mesh C023847 Glu-P-2 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82332 Glycidaldehyde skos:exactMatch mesh C007871 glycinaldehyde lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:8234 Piperaduncin B skos:exactMatch mesh C424504 piperaduncin B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82340 2-Methylaziridine skos:exactMatch mesh C031132 propyleneimine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82342 5-Methylchrysene skos:exactMatch mesh C008422 5-methylchrysene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82343 4,4'-Methylene bis(2-methylaniline) skos:exactMatch mesh C010229 4,4'-methylene bis(2-methylaniline) lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82344 Methyl isobutyl ketone skos:exactMatch mesh C005458 methyl isobutyl ketone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82345 2-Methyl-1-nitroanthraquinone skos:exactMatch mesh C016581 2-methyl-1-nitroanthraquinone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82347 4,4'-Bis(dimethylamino)benzophenone skos:exactMatch mesh C014682 Michler's ketone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82350 5-Nitroacenaphthene skos:exactMatch mesh C033999 5-nitroacenaphthene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82351 6-Nitrochrysene skos:exactMatch mesh C035986 6-nitrochrysene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82355 4-Nitropyrene skos:exactMatch mesh C062494 4-nitropyrene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82356 N-Nitrosodi-n-butylamine skos:exactMatch mesh C012279 dibutylnitrosamine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82357 N-Nitrosodiethanolamine skos:exactMatch mesh C014129 N-nitrosodiethanolamine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82358 N-Nitrosodi-n-propylamine skos:exactMatch mesh C013161 N-nitroso(di-n-propyl)amine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82363 N-nitrososarcosine skos:exactMatch mesh C013162 N-nitrososarcosine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82365 Palygorskite skos:exactMatch mesh C026325 attapulgite lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82367 Phenyl glycidyl ether skos:exactMatch mesh C016050 phenylglycidyl ether lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82368 Ponceau 3R skos:exactMatch mesh C020478 ponceau 3R lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82370 1,3-Propane sultone skos:exactMatch mesh C003218 1,3-propane sultone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82374 4,4'-Thiodianiline skos:exactMatch mesh C011749 4,4'-thiodianiline lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82377 4-Vinylcyclohexene skos:exactMatch mesh C013733 4-vinylcyclohexene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82379 Allyl chloride skos:exactMatch mesh C023698 allyl chloride lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82380 Allyl isovalerate skos:exactMatch mesh C047023 allyl isovalerate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82382 1-Amino-2-methylanthraquinone skos:exactMatch mesh C034090 1-amino-2-methylanthraquinone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82383 2-Amino-4-nitrophenol skos:exactMatch mesh C036645 2-amino-4-nitrophenol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82384 2-Amino-5-nitrophenol skos:exactMatch mesh C087594 2-amino-5-nitrophenol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82385 4-Amino-2-nitrophenol skos:exactMatch mesh C013399 4-amino-2-nitrophenol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82386 2-Amino-5-nitrothiazole skos:exactMatch mesh C034870 2-amino-5-nitrothiazole lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82387 11-Aminoundecanoic acid skos:exactMatch mesh C023820 11-aminoundecanoic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82389 Anthanthrene skos:exactMatch mesh C001575 anthanthrene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82390 Antimony trisulfide skos:exactMatch mesh C064234 antimony trisulfide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82392 Arsenobetaine skos:exactMatch mesh C038992 arsenobetaine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82404 para-Benzoquinone dioxime skos:exactMatch mesh C035388 1,4-benzoquinone dioxime lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82407 1,2-Bis(chloromethoxy)ethane skos:exactMatch mesh C121968 1,2-bis(chloromethoxy)ethane lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82408 1,4-Bis(chloromethoxymethyl)benzene skos:exactMatch mesh C121969 1,4-bis(chloromethoxymethyl)benzene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82409 Bis(2-chloro-1-methylethyl)ether skos:exactMatch mesh C052560 bis(2-chloro-1-methylethyl) ether lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:8241 Piplartine skos:exactMatch mesh C479506 piplartine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82410 Bis(2,3-epoxycyclopentyl)ether skos:exactMatch mesh C019272 bis(2,3-epoxycyclopentyl)ether lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82411 Brilliant Blue skos:exactMatch mesh C006796 brilliant blue lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82412 Bromochloroacetonitrile skos:exactMatch mesh C121970 bromochloroacetonitrile lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82414 Carmoisine skos:exactMatch mesh C006671 azo rubin S lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82415 Chloramine skos:exactMatch mesh C030816 chloramine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82416 Chloroacetonitrile skos:exactMatch mesh C069277 chloroacetonitrile lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82417 Chlorodifluoromethane skos:exactMatch mesh C009755 fluorocarbon 22 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82418 Chlorofluoromethane skos:exactMatch mesh C039310 chlorofluoromethane lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82419 3-Chloro-2-methylpropene skos:exactMatch mesh C050660 3-chloro-2-methylprop-1-ene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82424 Chrysoidine skos:exactMatch mesh C005562 chrysoidine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82425 CI Acid Orange 3 skos:exactMatch mesh C087592 CI acid orange 3 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82429 Cinnamyl anthranilate skos:exactMatch mesh C007068 cinnamyl anthranilate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82430 meta-Cresidine skos:exactMatch mesh C034085 2-methyl-4-methoxyaniline lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82432 Cyclochlorotine skos:exactMatch mesh C018925 chloropeptide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:8244 Piquerol A skos:exactMatch mesh C077449 piquerol A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82444 Dichloroacetonitrile skos:exactMatch mesh C051716 dichloroacetonitrile lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82445 Dibromoacetonitrile skos:exactMatch mesh C051715 dibromoacetonitrile lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82448 N,N'-diethylthiourea skos:exactMatch mesh C035318 diethylthiourea lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:8245 Pirbuterol skos:exactMatch mesh C009118 pirbuterol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82450 Dimethoxane skos:exactMatch mesh C001012 dimethoxane lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82452 4,4'-Dimethylangelicin skos:exactMatch mesh C038161 4,4'-dimethylangelicin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82453 4,5'-Dimethylangelicin skos:exactMatch mesh C021665 4,5'-dimethylangelicin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82454 Dimethyl hydrogen phosphite skos:exactMatch mesh C047356 dimethyl hydrogen phosphite lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82455 1,4-Dimethylphenanthrene skos:exactMatch mesh C035676 1,4-dimethylphenanthrene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82456 1,3-Dinitropyrene skos:exactMatch mesh C037413 1,3-dinitropyrene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82457 Dinitrosopentamethylenetetramine skos:exactMatch mesh C007499 dinitrosopentamethylenetetramine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82458 3,5-Dinitrotoluene skos:exactMatch mesh C033749 3,5-dinitrotoluene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82460 Doxefazepam skos:exactMatch mesh C008020 doxefazepam lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82461 Doxylamine succinate skos:exactMatch mesh C035385 doxylamine succinate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82462 Dulcin skos:exactMatch mesh C004352 dulcin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82465 2-Ethylhexyl acrylate skos:exactMatch mesh C036758 2-ethylhexyl acrylate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82469 Glycidyl oleate skos:exactMatch mesh C013542 glycidyl oleate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82470 Glycidyl stearate skos:exactMatch mesh C013543 glycidyl stearate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82472 HC Blue No. 2 skos:exactMatch mesh C053869 HC Blue No. 2 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82473 HC Red No. 3 skos:exactMatch mesh C053868 HC Red No. 3 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82474 HC Yellow No. 4 skos:exactMatch mesh C087593 2-((2-(2-hydroxyethoxy)-4-nitrophenyl)amino)ethanol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82475 4-Hydroxyazobenzene skos:exactMatch mesh C524594 4-hydroxyazobenzene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82476 Hydroxysenkirkine skos:exactMatch mesh C013570 hydroxysenkirkine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82478 Iron sorbitex skos:exactMatch mesh C008170 citric acid, iron, sorbitol drug combination lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82479 Lauroyl peroxide skos:exactMatch mesh C035089 lauroyl peroxide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82482 Methyl acrylate skos:exactMatch mesh C035956 methyl acrylate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82483 5-Methylangelicin skos:exactMatch mesh C023026 5-methylangelicin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82486 3-Methylchrysene skos:exactMatch mesh C529617 3-methylchrysene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82487 4-Methylchrysene skos:exactMatch mesh C529618 4-methylchrysene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82488 6-Methylchrysene skos:exactMatch mesh C047249 6-methylchrysene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82490 2-Methylfluoranthene skos:exactMatch mesh C035917 2-methylfluoranthene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82491 3-Methylfluoranthene skos:exactMatch mesh C035918 3-methylfluoranthene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82492 N-Methylolacrylamide skos:exactMatch mesh C066443 N-methylolacrylamide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82495 Musk ambrette skos:exactMatch mesh C020422 musk ambrette (artificial) lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82500 Nithiazide skos:exactMatch mesh C038975 nithiazide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82501 9-Nitroanthracene skos:exactMatch mesh C035016 9-nitroanthracene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82504 4-Nitrobiphenyl skos:exactMatch mesh C040438 4-nitrobiphenyl lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82505 3-Nitroperylene skos:exactMatch mesh C035987 3-nitroperylene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82506 2-Nitropyrene skos:exactMatch mesh C049029 2-nitropyrene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82507 N'-Nitrosoanabasine skos:exactMatch mesh C010257 N'-nitrosoanabasine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82508 N'-Nitrosoanatabine skos:exactMatch mesh C032978 N'-nitrosoanatabine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82511 N-Nitrosoguvacine skos:exactMatch mesh C047761 N-nitrosoguvacine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82512 N-Nitrosoguvacoline skos:exactMatch mesh C036676 N-nitrosoguvacoline lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82515 N-Nitrosoproline skos:exactMatch mesh C010259 nitrosoproline lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82519 Nylon 6 skos:exactMatch mesh C009916 nylon 6 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82520 Estradiol mustard skos:exactMatch mesh C023758 estradiol mustard lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82527 Ptaquiloside skos:exactMatch mesh C043680 ptaquiloside lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82529 Ripazepam skos:exactMatch mesh C009116 ripazepam lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82537 Sudan Red 7B skos:exactMatch mesh C046548 fat red 7B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82538 Sunset Yellow FCF skos:exactMatch mesh C005842 6-hydroxy-5-((p- sulfophenyl)azo)-2-naphthalenesulfonic acid disodium salt lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82540 2,2',5,5'-Tetrachlorobenzidine skos:exactMatch mesh C034088 2,2',5,5'-tetrachlorobenzidine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82541 Trichloroacetonitrile skos:exactMatch mesh C029549 trichloroacetonitrile lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82543 4,4',6-Trimethylangelicin skos:exactMatch mesh C041621 4,4',6-trimethylangelicin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82544 2,4,5-Trimethylaniline skos:exactMatch mesh C034089 2,4,5-trimethylaniline lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82545 2,4,6-Trimethylaniline skos:exactMatch mesh C013724 2,4,6-trimethylaniline lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82547 1,2,3-Tris(chloromethoxy)propane skos:exactMatch mesh C121971 1,2,3-tris(chloromethoxy)propane lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82548 Vat Yellow 4 skos:exactMatch mesh C065025 Vat Yellow 4 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82550 Vinylidene fluoride skos:exactMatch mesh C007384 1,1-difluoroethylene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82555 Yellow OB skos:exactMatch mesh C034742 yellow OB lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82556 Tris(2-methyl-1-aziridinyl)phosphine oxide skos:exactMatch mesh C036460 metepa lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82557 Treosulfan skos:exactMatch mesh C018404 treosulfan lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:8256 Plantamajoside skos:exactMatch mesh C421173 plantamajoside lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82578 Aflatoxicol skos:exactMatch mesh C012170 aflatoxicol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82579 Aflatoxin P1 skos:exactMatch mesh C042410 aflatoxin P1 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82586 Polyurethane foam skos:exactMatch mesh C028279 polyurethane foam lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82596 eprinomectin skos:exactMatch mesh C101434 eprinomectin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82603 zofenoprilat arginine skos:exactMatch mesh C069188 SQ 26703 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82607 alpha-Neu5Ac-(2->3)-beta-D-Gal-(1->3)-[alpha-Neu5Ac-(2->6)]-beta-D-GalNAc-(1->4)-beta-D-Gal-(1->4)-beta-D-Glc-(1<->1')-Cer skos:exactMatch mesh C064020 ganglioside GD1alpha lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82608 alpha-Neu5Ac-(2->3)-beta-D-Gal-(1->3)-[alpha-Neu5Ac-(2->6)]-beta-D-GalNAc-(1->4)-[alpha-Neu5Ac-(2->3)]-beta-D-Gal-(1->4)-beta-D-Glc-(1<->1')-Cer skos:exactMatch mesh C084318 GT1aalpha ganglioside lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82609 alpha-Neu5Ac-(2->3)-beta-D-Gal-(1->3)-[alpha-Neu5Ac-(2->6)]-beta-D-GalNAc-(1->4)-[alpha-Neu5Ac-(2->8)-alpha-Neu5Ac-(2->3)]-beta-D-Gal-(1->4)-beta-D-Glc-(1<->1')-Cer skos:exactMatch mesh C084317 GQ1balpha ganglioside lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82619 icariside II skos:exactMatch mesh C060988 baohuoside I lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82623 zinc-65 atom skos:exactMatch mesh C000615420 Zinc-65 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82636 dodecyl(triphenyl)phosphonium skos:exactMatch mesh C001115 dodecyltriphenylphosphonium lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:8264 Platyphylline skos:exactMatch mesh C008937 platyphylline lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82642 dihydromotuporamine C skos:exactMatch mesh C510298 dihydromotuporamine C lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82644 ractopamine skos:exactMatch mesh C060897 ractopamine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82648 butopamine skos:exactMatch mesh C026597 butopamine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82660 curvularol skos:exactMatch mesh C423645 curvularol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82661 diatomaceous earth skos:exactMatch mesh C033787 diatomite lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:8268 Plenolin skos:exactMatch mesh C026745 plenolin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:8269 Pleuromutilin skos:exactMatch mesh C004262 pleuromutilin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82691 alpha-D-GalpA-(1->4)-alpha-D-GalpA-(1->4)-alpha-D-GalpA skos:exactMatch mesh C065008 O-galactopyranosyluronic acid-(1-4)-O-galactopyranosyluronic acid-(1-4)-galactopyranosyluronic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82698 suvorexant skos:exactMatch mesh C551624 suvorexant lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82700 olodaterol skos:exactMatch mesh C549647 olodaterol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82702 vorapaxar skos:exactMatch mesh C530299 vorapaxar lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82713 SB220025 skos:exactMatch mesh C110631 SB 220025 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82718 efinaconazole skos:exactMatch mesh C431707 efinaconazole lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:8272 Plicatic acid skos:exactMatch mesh C008938 plicatic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:8274 Plumericin skos:exactMatch mesh C068511 plumericin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:8275 Plumieride skos:exactMatch mesh C110080 plumieride lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82751 cholesteryl arachidonate skos:exactMatch mesh C029382 cholesteryl arachidonate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82752 eliglustat skos:exactMatch mesh C522917 eliglustat lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82755 mertansine skos:exactMatch mesh C488736 N(2')-deacetyl-N(2')-(3-mercapto-1-oxopropyl)maytansine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:8279 Podolide skos:exactMatch mesh C009929 podolide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82800 (R)-cembrene A skos:exactMatch mesh C108204 cembrene A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82806 agrocinopine B skos:exactMatch mesh C109409 agrocinopin B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82809 agrocin 84 skos:exactMatch mesh C013799 agrocin 84 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82818 Z-Val-Phe-H skos:exactMatch mesh C058076 calpain inhibitor III lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82822 mollisoside A skos:exactMatch mesh C502645 mollisoside A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82824 calpain inhibitor skos:exactMatch mesh C039304 calpain inhibitors lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82825 neothyonidioside skos:exactMatch mesh C573010 neothyonidioside lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82832 (5Z,11Z,14Z)-icosatrienoic acid skos:exactMatch mesh C045533 eicosa-5,11,14-trienoic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82835 (5Z,11Z,14Z,17Z)-icosatetraenoic acid skos:exactMatch mesh C437903 juniperonic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82841 N-octanoyldihydrosphingosine skos:exactMatch mesh C108139 N-octanoylsphinganine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82856 ethaboxam skos:exactMatch mesh C492076 ethaboxam lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82862 eberconazole skos:exactMatch mesh C118963 eberconazole lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82863 fenticonazole skos:exactMatch mesh C033486 fenticonazole lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82864 flutrimazole skos:exactMatch mesh C076986 flutrimazole lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82865 isoconazole skos:exactMatch mesh C020382 isoconazole lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82866 sertaconazole skos:exactMatch mesh C061131 sertaconazole lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82914 p-cresol sulfate skos:exactMatch mesh C408690 4-cresol sulfate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82956 2-ethylhydracrylic acid skos:exactMatch mesh C007674 2-ethylhydracrylic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82969 gamma-Glu-Tyr skos:exactMatch mesh C054674 gamma-glutamyltyrosine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82975 naloxegol skos:exactMatch mesh C000589308 naloxegol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82985 mevinolinic acid skos:exactMatch mesh C040295 mevinolinic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:82992 (3E)-dec-3-en-1-yl sulfate skos:exactMatch mesh C575703 (3E)-dec-3-en-1-yl sulfate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:8303 Polycarpine skos:exactMatch mesh C475052 polycarpine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:83036 7alpha-hydroxy-3-oxo-4-cholestenoic acid skos:exactMatch mesh C056891 7 alpha-hydroxy-3-oxo-4-cholestenoic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:83037 androsterone sulfate skos:exactMatch mesh C026905 androsterone sulfate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:83044 5-dodecenoic acid skos:exactMatch mesh C078125 5-dodecenoic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:8305 Polygodial skos:exactMatch mesh C034380 polygodial lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:83065 isofetamid skos:exactMatch mesh C000708869 isofetamid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:83070 fluopyram skos:exactMatch mesh C572868 N-(2-(3-chloro-5-(trifluoromethyl)-2-pyridyl)ethyl)-alpha,alpha,alpha-trifluoro-o-toluamide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:83079 chrysopine skos:exactMatch mesh C093775 chrysopine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:83092 benzovindiflupyr skos:exactMatch mesh C000603433 benzovindiflupyr lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:83101 coprogen skos:exactMatch mesh C010896 coprogen lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:83107 2,6-dimethylheptyl sulfate skos:exactMatch mesh C420912 2,6-dimethylheptyl sulfate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:83113 fluxapyroxad skos:exactMatch mesh C000591719 fluxapyroxad lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:83125 desferricoprogen skos:exactMatch mesh C047664 desferricoprogen lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:83133 penflufen skos:exactMatch mesh C000615580 penflufen lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:83152 elisidepsin skos:exactMatch mesh C522358 elisidepsin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:83154 1,4-bis(diphospho)-1D-myo-inositol tetrakisphosphate skos:exactMatch mesh C079848 bis(1,4)-diphosphoinositol tetrakisphosphate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:83155 adenosine 5'-hexadecylphosphate skos:exactMatch mesh C407009 adenosine 5'-hexadecylphosphate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:83163 molasses skos:exactMatch mesh D008965 Molasses lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:83165 venturicidin skos:exactMatch mesh C429005 venturicidin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:83173 sedaxane skos:exactMatch mesh C583365 N-(2-(1,1'-bicyclopropyl)-2-ylphenyl)-3-(difluoromethyl)-1-methyl-1H-pyrazole-4-carboxamide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:83185 coumoxystrobin skos:exactMatch mesh C575069 methyl 2-(2-(3-n-butyl-4-methylcoumarin-7-yloxymethyl)phenyl)-3-methoxyacrylate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:83187 enoxastrobin skos:exactMatch mesh C000595440 enestroburin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:83197 picoxystrobin skos:exactMatch mesh C556557 picoxystrobin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:83205 mandestrobin skos:exactMatch mesh C000708856 mandestrobin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:83207 albomycin skos:exactMatch mesh C015657 albomycin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:8321 Polyproline skos:exactMatch mesh C011083 polyproline lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:83220 fenaminstrobin skos:exactMatch mesh C000599257 fenaminstrobin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:83221 methyl 2-hydroxypropionate skos:exactMatch mesh C028444 methyl lactate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:83265 papuamide B skos:exactMatch mesh C474171 papuamide B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:83268 oxathiapiprolin skos:exactMatch mesh C000592431 oxathiapiprolin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:83272 1-O-(alpha-D-galactosyl)-N-[(15Z)-tetracos-15-enoyl]phytosphingosine skos:exactMatch mesh C000614458 PBS-44 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:83275 hypothemycin skos:exactMatch mesh C120440 hypothemycin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:83279 3-iodoprop-2-yn-1-yl butylcarbamate skos:exactMatch mesh C106572 3-iodo-2-propynylbutylcarbamate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:8329 Pomiferin skos:exactMatch mesh C474837 pomiferin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:83318 ovothiol A skos:exactMatch mesh C061475 ovothiol A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:83326 tedizolid phosphate skos:exactMatch mesh C515040 tedizolid phosphate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:83328 pyrazolone skos:exactMatch mesh C038362 pyrazolone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:8333 Populin skos:exactMatch mesh C058045 populin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:83345 metrafenone skos:exactMatch mesh C511340 metrafenone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:83354 benzamidoxime skos:exactMatch mesh C053561 benzamidoxime lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:8337 porphyrin skos:exactMatch mesh C107018 porphine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:83372 meptyldinocap skos:exactMatch mesh C556327 meptyldinocap lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:83379 dinocap skos:exactMatch mesh C007500 dinocap lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:8338 Porphyropsin skos:exactMatch mesh C010507 porphyropsin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:83385 2,5-diformylfuran skos:exactMatch mesh C476922 2,5-diformylfuran lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:8339 Porritoxin skos:exactMatch mesh C466610 porritoxin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:83393 silthiofam skos:exactMatch mesh C576345 silthiofam lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:83398 ametoctradin skos:exactMatch mesh C000601857 ametoctradin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:83428 flumorph skos:exactMatch mesh C528737 flumorph lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:83454 trinexapac skos:exactMatch mesh C478126 trinexapac lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:83457 N(4)-acetylsulfamethazine skos:exactMatch mesh C477731 N(4)-acetylsulfamethazine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:83465 sulcotrione skos:exactMatch mesh C079906 sulcotrione lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:8349 pradimicin A skos:exactMatch mesh C058036 pradimicin A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:83491 perfluoropentanoic acid skos:exactMatch mesh C000619812 perfluoropentanoic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:83492 perfluorohexanoic acid skos:exactMatch mesh C479228 perfluorohexanoic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:83493 perfluoroundecanoic acid skos:exactMatch mesh C586085 perfluoroundecanoic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:83497 ranitidine-S-oxide skos:exactMatch mesh C045907 ranitidine-S-oxide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:83498 ranitidine N-oxide skos:exactMatch mesh C038169 ranitidine N-oxide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:83499 climbazole skos:exactMatch mesh C108286 climbazole lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:8350 pradimicin B skos:exactMatch mesh C058037 pradimicin B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:83500 tritosulfuron skos:exactMatch mesh C520886 tritosulfuron lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:83503 neotame skos:exactMatch mesh C404525 neotame lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:83504 clopidogrel carboxylic acid skos:exactMatch mesh C528640 clopidogrel carboxylic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:83511 2-methyl-4-amino-6-methoxy-s-triazine skos:exactMatch mesh C001749 CV 399 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:83516 N,N-Dimethylsulfamide skos:exactMatch mesh C554434 N,N-dimethylsulfamide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:83517 iooxitalamic acid skos:exactMatch mesh C002587 ioxitalamic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:83518 4,5-dichloro-2-n-octyl-3(2H)-isothiazolone skos:exactMatch mesh C080469 Kathon 930 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:83520 propachlor OXA skos:exactMatch mesh C019442 N-isopropyl-N-phenyloxamic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:83522 terbutylazine-desethyl skos:exactMatch mesh C000598075 desethylterbuthylazine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:83523 pethoxamide skos:exactMatch mesh C000613349 pethoxamid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:83524 pinoxaden skos:exactMatch mesh C542519 pinoxaden lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:83525 N-desmethylvenlafaxine skos:exactMatch mesh C434332 N-desmethylvenlafaxine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:83526 4-formylaminoantipyrine skos:exactMatch mesh C011256 4-formylaminoantipyrine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:83528 D617 skos:exactMatch mesh C482241 2-(3,4-dimethoxyphenyl)-5-amino-2-isopropylvaleronitrile lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:83529 N,O-didesmethylvenlafaxine skos:exactMatch mesh C434333 N,O-didesmethylvenlafaxine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:83533 diazoxon skos:exactMatch mesh C000912 diazoxon lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:83535 neohesperidin dihydrochalcone skos:exactMatch mesh C013613 neohesperidin dihydrochalcone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:83555 proquinazid skos:exactMatch mesh C544537 proquinazid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:8357 pramocaine skos:exactMatch mesh C005548 pramoxine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:83601 benthiavalicarb skos:exactMatch mesh C000611525 benthiavalicarb lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:83605 3,5-diethoxycarbonyl-1,4-dihydrocollidine skos:exactMatch mesh C530773 3,5-diethoxycarbonyl-1,4-dihydrocollidine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:83620 B 581 skos:exactMatch mesh C088459 B 581 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:83631 octyl gallate skos:exactMatch mesh C016627 octyl gallate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:83641 juvenile hormone I skos:exactMatch mesh C008442 juvenile hormone I lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:83663 pyrimorph skos:exactMatch mesh C550850 pyrimorph lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:83696 CIGB-300 skos:exactMatch mesh C532510 CIGB-300 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:83718 1,2-distearoyl-sn-glycero-3-phosphocholine skos:exactMatch mesh C010942 1,2-distearoyllecithin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:83745 validamycins skos:exactMatch mesh C003749 validamycins lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:83776 3-oxo-23,24-bisnorchol-4-en-22-oic acid skos:exactMatch mesh C450019 3-oxo-4-pregnene-20-carboxylic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:8381 Prednisolone tebutate skos:exactMatch mesh C009021 prednisolone tebutate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:83832 oxpoconazole skos:exactMatch mesh C481307 oxpoconazole lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:83865 androst-5-ene-3,17-dione skos:exactMatch mesh C003528 5-androstene-3,17-dione lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:83894 ceanothic acid skos:exactMatch mesh C107972 ceanothic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:8390 Premarrubiin skos:exactMatch mesh C105732 premarrubiin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:83923 fluquinconazole skos:exactMatch mesh C587323 fluquinconazole lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:83924 strobilurin B skos:exactMatch mesh C032657 strobilurin B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:8393 Prenyl caffeate skos:exactMatch mesh C057078 prenyl caffeate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:83934 zaragozic acid C skos:exactMatch mesh C079090 zaragozic acid C lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:83953 omega-hydroxygeranylgeraniol skos:exactMatch mesh C487915 16-hydroxygeranylgeraniol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:83959 hygrolidin skos:exactMatch mesh C465999 hygrolidin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:83981 3-hydroxyaspartic acid skos:exactMatch mesh C011274 3-hydroxyaspartic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:8402 Pretazettine skos:exactMatch mesh C010766 pretazettine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:84035 pyridoxatin skos:exactMatch mesh C069924 pyridoxatin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:84037 ravidomycin skos:exactMatch mesh C038314 ravidomycin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:84046 pyoverdine skos:exactMatch mesh C042453 pyoverdin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:84058 ophthalmic acid skos:exactMatch mesh C016632 ophthalmic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:84059 octyl palmitate skos:exactMatch mesh C032207 ethylhexyl palmitate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:84067 tetradecanal skos:exactMatch mesh C019102 tetradecanal lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:84069 pentanal skos:exactMatch mesh C046012 pentanal lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:84073 aminocandin skos:exactMatch mesh C476911 aminocandin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:8411 Primidolol skos:exactMatch mesh C025720 primidolol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:8413 primin skos:exactMatch mesh C014773 primin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:8415 Prinomide skos:exactMatch mesh C052921 prinomide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:84156 methyl palmitoleate skos:exactMatch mesh C068012 methyl palmitoleate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:8416 Pristimerin skos:exactMatch mesh C009043 pristimerin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:84178 sennoside E skos:exactMatch mesh C029837 sennoside E lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:84192 teixobactin skos:exactMatch mesh C000594838 teixobactin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:84199 quinmerac skos:exactMatch mesh C465640 7-chloro-3-methyl-quinoline-8-carboxylic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:84212 furan-2,5-dicarboxylic acid skos:exactMatch mesh C551400 2,5-furandicarboxylic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:84248 pentan-3-amine skos:exactMatch mesh C090758 diethylmethylamine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:84260 ethyl phenylglyoxylate skos:exactMatch mesh C015870 ethyl phenylglyoxylate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:84262 isopropyl palmitate skos:exactMatch mesh C005060 isopropyl palmitate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:84268 nonanal skos:exactMatch mesh C008664 nonanal lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:84278 1,1,3,3-tetramethylurea skos:exactMatch mesh C004168 1,1,3,3-tetramethylurea lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:84289 tetratetracontane skos:exactMatch mesh C045932 n-tetratetracontane lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:84298 2,5-S,S'-dicysteinyldopa skos:exactMatch mesh C034512 2,5-S,S-dicysteinyldopa lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:84304 cholesteryl myristate skos:exactMatch mesh C032561 cholesteryl myristate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:84338 synthalin A skos:exactMatch mesh C005748 synthalin A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:8434 prochloraz skos:exactMatch mesh C045362 prochloraz lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:84340 hydrazinocurcumin skos:exactMatch mesh C475807 hydrazinocurcumin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:84341 cholesteryl linolenate skos:exactMatch mesh C095270 cholesteryl linolenate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:84360 cetoniacytone A skos:exactMatch mesh C466782 cetoniacytone A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:84361 5-epi-valiolone skos:exactMatch mesh C433384 5-epi-(6-(2)H2)valiolone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:84373 chitotriose skos:exactMatch mesh C041161 chitotriose lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:84380 chondramide A skos:exactMatch mesh C097819 chondramide A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:84381 chondramide B skos:exactMatch mesh C097820 chondramide B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:84382 chondramide C skos:exactMatch mesh C097821 chondramide C lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:84383 chondramide D skos:exactMatch mesh C097822 chondramide D lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:84407 cleistanthin B skos:exactMatch mesh C078281 cleistanthin B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:84425 9-PAHSA skos:exactMatch mesh C000631240 9-PAHSA lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:84457 5-PAHSA skos:exactMatch mesh C000629639 5-PAHSA lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:84559 2,4-dinitroanisole skos:exactMatch mesh C539360 2,4-dinitroanisole lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:84582 schizokinen skos:exactMatch mesh C000766 schizokinen lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:84585 vibrioferrin skos:exactMatch mesh C090126 vibrioferrin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:84607 7-deaza-cAMP skos:exactMatch mesh C009608 tubercidin 3',5'-cyclic phosphate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:84613 8-(6-aminohexylamino)-cAMP skos:exactMatch mesh C067297 8-aminohexylamino cAMP lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:8463 Pronethalol skos:exactMatch mesh C084832 pronethalol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:8464 prontosil skos:exactMatch mesh C003359 sulfamidochrysoidine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:84677 MANT-GDP skos:exactMatch mesh C065197 3'-(methylanthraniloyl)-2'-deoxy-guanosine diphosphate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:84684 rhamnan skos:exactMatch mesh C065836 rhamnan lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:84698 bromochlorodifluoromethane skos:exactMatch mesh C037990 bromochlorodifluoromethane lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:84711 staphyloferrin A skos:exactMatch mesh C063851 staphyloferrin A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:84731 rhodotorulic acid skos:exactMatch mesh C003305 rhodotorulic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:8475 Propanethial S-oxide skos:exactMatch mesh C012059 thiopropanal S-oxide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:84808 1-tetradecanoyl-2-[(9Z)-octadecenoyl]-sn-glycero-3-phosphocholine skos:exactMatch mesh C533738 1-myristoyl-2-oleoyl-sn-glycero-3-phosphocholine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:84814 1-[(9Z)-octadecenoyl]-2-[(4Z,7Z,10Z,13Z,16Z,19Z)-docosahexaenoyl]-sn-glycero-3-phosphocholine skos:exactMatch mesh C084316 1-oleoyl-2-docosahexaenoyl phosphatidylcholine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:84829 1-octadecanoyl-2-(4Z,7Z,10Z,13Z,16Z,19Z-docosahexaenoyl)-sn-glycero-3-phosphocholine skos:exactMatch mesh C409542 1-stearoyl-2-docosahexaenoyl-sn-glycero-3-phosphocholine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:84842 (R)-3-hydroxybutyrylcarnitine skos:exactMatch mesh C513202 hydroxybutyrylcarnitine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:84849 ethyl myristate skos:exactMatch mesh C032396 ethyl myristate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:8485 Proparacaine skos:exactMatch mesh C005717 proxymetacaine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:84851 ethyl linolenate skos:exactMatch mesh C039896 ethyl linolenate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:84858 2-hydroxytricosanoic acid skos:exactMatch mesh C060439 2-hydroxytricosanoic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:84873 ethyl arachidonate skos:exactMatch mesh C035723 ethyl arachidonate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:84877 18-methylicosanoic acid skos:exactMatch mesh C111345 18-methyleicosanoic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:84883 ethyl (5Z,8Z,11Z,14Z,17Z)-icosapentaenoate skos:exactMatch mesh C035276 eicosapentaenoic acid ethyl ester lexical 0.9 https://github.com/indralab/panacea_indra/blob/master/panacea_indra/make_ctd_tests.py +chebi CHEBI:84894 hexane-2,5-diol skos:exactMatch mesh C007938 2,5-hexanediol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:84903 22-methyltricosanoic acid skos:exactMatch mesh C113060 22-methyltricosanoic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:8491 propiomazine skos:exactMatch mesh C084591 propiomazine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:8493 Propiverine skos:exactMatch mesh C015586 propiverine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:84932 ethyl hexadecanoate skos:exactMatch mesh C007680 ethyl palmitate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:84940 ethyl oleate skos:exactMatch mesh C033180 ethyl oleate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:84971 (2E,6E,10E)-geranylgeranic acid skos:exactMatch mesh C040155 geranylgeranic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:85005 anticapsin skos:exactMatch mesh C000097 anticapsin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:85043 H3K4Me3 skos:exactMatch mesh C000626468 histone H3 trimethyl Lys4 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:85057 2-methylhexadecanoic acid skos:exactMatch mesh C034839 2-methylhexadecanoic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:85061 N,N-dimethylformamide dimethyl acetal skos:exactMatch mesh C022083 dimethylformamide-dimethylacetal lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:85081 cedr-8(15)-en-9-ol skos:exactMatch mesh C534303 cedr-8(15)-en-9-ol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:85085 KT 5720 skos:exactMatch mesh C057416 KT 5720 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:85098 ethyl isothiocyanate skos:exactMatch mesh C039155 ethyl isothiocyanate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:85102 KT 5823 skos:exactMatch mesh C073601 KT 5823 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:85103 phenyl isothiocyanate skos:exactMatch mesh C005441 phenylisothiocyanate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:85106 N-acetyl-alpha-L-talosaminuronic acid skos:exactMatch mesh C041665 N-acetyltalosaminuronic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:85114 KT 5926 skos:exactMatch mesh C063769 KT 5926 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:85138 cobalt(II) acetate skos:exactMatch mesh C521309 cobalt(II) acetate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:85148 3-hydroxytetradecanoic acid skos:exactMatch mesh C009893 beta-hydroxymyristic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:85155 netupitant skos:exactMatch mesh C508854 netupitant lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:85164 nintedanib skos:exactMatch mesh C530716 nintedanib lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:85176 finafloxacin skos:exactMatch mesh C560572 finafloxacin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:85177 Viekira Pak skos:exactMatch mesh C000607373 Viekira Pak lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:85182 dasabuvir skos:exactMatch mesh C588260 ABT-333 lexical 0.9 https://github.com/indralab/panacea_indra/blob/master/panacea_indra/make_ctd_tests.py +chebi CHEBI:85183 ombitasvir skos:exactMatch mesh C586094 ABT-267 lexical 0.9 https://github.com/indralab/panacea_indra/blob/master/panacea_indra/make_ctd_tests.py +chebi CHEBI:8523 Prosulfuron skos:exactMatch mesh C459097 prosulfuron lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:85235 gamma-caprolactone skos:exactMatch mesh C430364 4-hexanolide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:85248 gellan gum skos:exactMatch mesh C048288 gellan gum lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:85249 hydroxyethylcellulose skos:exactMatch mesh C002283 hydroxyethylcellulose lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:85259 diethylamine skos:exactMatch mesh C034281 diethylamine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:85262 N-(tetradecanoyl)ethanolamine skos:exactMatch mesh C534530 N-myristoylethanolamine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:85263 N-(dodecanoyl)ethanolamine skos:exactMatch mesh C090359 N-lauroylethanolamine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:85267 flumequine skos:exactMatch mesh C012976 flumequine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:85290 biocytinamide skos:exactMatch mesh C065209 biocytinamide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:85303 N-(hexanoyl)ethanolamine skos:exactMatch mesh C499478 N-(hexanoyl)ethanolamine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:85310 2-(3,4-dihydroxyphenyl)-2-oxoethyl thiocyanate skos:exactMatch mesh C527742 1-(3,4-dihydroxyphenyl)-2-thiocyanate-ethanone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:85347 N(3)-fumaramoyl-(S)-2,3-diaminopropanoic acid skos:exactMatch mesh C041360 N(beta)-fumarylcarboxyamido-2,3-diaminopropionic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:85361 tetramethylsilane skos:exactMatch mesh C073196 tetramethylsilane lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:85364 ammonium bromide skos:exactMatch mesh C051470 ammonium bromide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:85381 sodium 8-methoxypyrene-1,3,6-trisulfonate skos:exactMatch mesh C529640 8-methoxypyrene-1,3,6-trisulfonic acid trisodium salt lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:85429 phosphatidylethanol skos:exactMatch mesh C051521 phosphatidylethanol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:85430 11-deoxy-beta-rhodomycin zwitterion skos:exactMatch mesh C478393 10-decarboxymethylaclacinomycin T lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:85431 1,2-dipalmitoyl-sn-glycero-3-phosphoethanol skos:exactMatch mesh C104363 1,2-dipalmitoyl-sn-glycero-3-phosphatidylethanol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:85487 3-(trimethylsilyl)propionic acid skos:exactMatch mesh C523397 3-(trimethylsilyl)propionic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:85537 4-hydroxy-3-methoxybenzene-1-sulfonic acid skos:exactMatch mesh C013710 guaiacolsulfonic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:85542 egualen skos:exactMatch mesh C061956 azuletil lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:85549 9alpha-hydroxyandrost-4-en-3,17-dione skos:exactMatch mesh C076717 9-hydroxy-4-androstene-3,17-dione lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:85603 1-tuberculosinyladenosine(1+) skos:exactMatch mesh C587948 1-tuberculosinyladenosine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:85610 JM335 skos:exactMatch mesh C089656 JM 335 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:85611 triplatin tetranitrate skos:exactMatch mesh C114062 BBR 3464 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:85616 viridicatumtoxin skos:exactMatch mesh C042170 viridicatumtoxin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:85627 picarbutrazox skos:exactMatch mesh C000625512 picarbutrazox lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:85645 p-nitrophenyl palmitate skos:exactMatch mesh C050015 4-nitrophenyl palmitate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:85646 avilamycin A skos:exactMatch mesh C436976 avilamycin A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:85675 3-phenylpropanoyl-CoA skos:exactMatch mesh C078024 phenylpropionyl-coenzyme A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:857 2,2'-iminodipropanoic acid skos:exactMatch mesh C026051 alanopine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:85782 heptachlorobiphenyl skos:exactMatch mesh C034559 2,3,4,5,3',4',5'-heptachlorobiphenyl lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:85785 monodechloroaminopyrrolnitrin skos:exactMatch mesh C057130 4-(2-amino-3-chlorophenyl)pyrrole lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:85786 aminopyrrolnitrin skos:exactMatch mesh C084035 WB 2838 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:8589 Protoemetine skos:exactMatch mesh C570574 protoemetine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:85911 3-oxo-23,24-bisnorchola-1,4-dien-22-oic acid skos:exactMatch mesh C031976 20-carboxy-1,4-pregnadien-3-one lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:85913 2,4-dihydroxy-5-methyl-6-oxo-2,4-hexadienoic acid skos:exactMatch mesh C087487 2,4-dihydroxy-5-methyl-6-oxo-2,4-hexadienoic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:8596 Protoverine skos:exactMatch mesh C012011 protoverine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:85962 1,2-dioleoyl-sn-glycero-3-phospho-N-methylethanolamine skos:exactMatch mesh C065399 N-methyl-1,2-dioleoylphosphatidylethanolamine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:85984 avibactam skos:exactMatch mesh C543519 avibactam lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:85989 Avycaz skos:exactMatch mesh C000595613 avibactam, ceftazidime drug combination lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:85997 sangivamycin skos:exactMatch mesh C005699 sangivamycin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:86007 bohemine skos:exactMatch mesh C118034 bohemine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:86012 oxetanocin A skos:exactMatch mesh C051061 oxetanocin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:8602 pseudobaptigenin skos:exactMatch mesh C060800 psi-baptigenin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:8603 Pseudoconhydrine skos:exactMatch mesh C568413 pseudoconhydrine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:8605 Pseudohypericin skos:exactMatch mesh C056602 pseudohypericin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:86068 5-hydroxyconiferyl alcohol skos:exactMatch mesh C000616851 5-hydroxyconiferyl alcohol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:8607 pseudopelletierine skos:exactMatch mesh C000626616 pseudopelletierine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:86092 1-[(9Z)-octadecenoyl]-2-tetradecanoyl-sn-glycero-3-phosphocholine skos:exactMatch mesh C533737 1-oleoyl-2-myristoyl-sn-glycero-3-phosphocholine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:86126 fast yellow skos:exactMatch mesh C561341 C.I. acid yellow 9 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:86128 2-methyl-L-tryptophan skos:exactMatch mesh C095863 2-methyltryptophan lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:86135 (5Z,9Z,12Z,15Z)-octadecatetraenoic acid skos:exactMatch mesh C432390 coniferonic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:86145 (7alpha,22R)-dihydroxycholesterol skos:exactMatch mesh C060725 cholest-5-ene-3,7,22-triol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:86148 (8E,10E,12Z)-octadecatrienoic acid skos:exactMatch mesh C428441 calendic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:8617 psorospermin skos:exactMatch mesh C025543 psorospermin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:86180 4-hydroxynon-2-enoic acid skos:exactMatch mesh C091766 4-hydroxy-2-nonenoic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:86194 4-(diethylamino)benzaldehyde skos:exactMatch mesh C055506 4-(diethylamino)benzaldehyde lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:86204 chromium trinitrate skos:exactMatch mesh C041167 chromium nitrate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:8621 Psychotridine skos:exactMatch mesh C051766 psychotridine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:86218 cresol red skos:exactMatch mesh C009743 Cresol red lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:8622 Psychotrine skos:exactMatch mesh C116895 psychotrine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:86235 ferrous carbonate skos:exactMatch mesh C486982 siderite lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:86257 lead chromate skos:exactMatch mesh C031895 lead chromate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:86267 nitrotyrosine skos:exactMatch mesh C002744 3-nitrotyrosine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:86290 6-bromoindirubin-3'-oxime skos:exactMatch mesh C483321 6-bromoindirubin-3'-oxime lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:8632 Pteryxin skos:exactMatch mesh C019546 pteryxin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:86320 1alpha,25-dihydroxyvitamin D2 skos:exactMatch mesh C003564 1,25-dihydroxyergocalciferol lexical 0.9 https://github.com/indralab/panacea_indra/blob/master/panacea_indra/make_ctd_tests.py +chebi CHEBI:86325 BDA-366 skos:exactMatch mesh C000610367 BDA-366 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:8633 puerarin skos:exactMatch mesh C033607 puerarin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:8634 Pukateine skos:exactMatch mesh C119869 pukateine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:86364 manganese(II) sulfate monohydrate skos:exactMatch mesh C039798 manganese sulfate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:86365 2-methyl-3-ketovaleric acid skos:exactMatch mesh C017517 2-methyl-3-oxovaleric acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:86366 N-(2-methylbutanoyl)glycine skos:exactMatch mesh C016567 2-methylbutyrylglycine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:86367 2-methylerythritol skos:exactMatch mesh C043904 3-C-methylerythritol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:86371 3,4-dihydroxybutyric acid skos:exactMatch mesh C041038 3,4-dihydroxybutanoic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:86374 ninhydrin skos:exactMatch mesh C000707814 2,2-dihydroxyindane-1,3-dione lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:8638 (9Z,11E,13Z)-octadecatrienoic acid skos:exactMatch mesh C519714 punicic acid lexical 0.9 https://github.com/indralab/panacea_indra/blob/master/panacea_indra/make_ctd_tests.py +chebi CHEBI:86384 5beta-dihydrodeoxycorticosterone skos:exactMatch mesh C084598 hydroxydione lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:86391 4-deoxythreonic acid skos:exactMatch mesh C546216 4-deoxythreonic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:86400 levodione skos:exactMatch mesh C494596 levodione lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:86455 optochin skos:exactMatch mesh C017303 ethylhydrocupreine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:86468 dimethylarginine skos:exactMatch mesh C487735 dimethylarginine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:86512 calycosin-7-O-beta-D-glucoside skos:exactMatch mesh C526426 calycosin-7-O-beta-D-glucoside lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:86529 1,2,3-trimethoxybenzene skos:exactMatch mesh C091694 1,2,3-trimethoxybenzene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:86537 2,2-dimethylsuccinic acid skos:exactMatch mesh C473110 2,2-dimethylsuccinic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:86549 3,4-dimethoxycinnamic acid skos:exactMatch mesh C065784 3-(3,4-dimethoxyphenyl)propenoic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:86553 3-hydroxymandelic acid skos:exactMatch mesh C024037 3-hydroxymandelic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:86555 pyridine-3-carbaldehyde oxime skos:exactMatch mesh C037033 3-pyridine-aldoxime lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:86562 4-allyl-2,6-dimethoxyphenol skos:exactMatch mesh C112468 4-allyl-2,6-dimethoxyphenol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:86583 isoeugenol acetate skos:exactMatch mesh C400781 2-methoxy-4-prop-1-enylphenyl acetate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:86590 apocynol skos:exactMatch mesh C534597 apocynol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:86603 Dehydrodiisoeugenol skos:exactMatch mesh C496603 dehydrodiisoeugenol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:86604 Dehydrodivanillin skos:exactMatch mesh C050236 dehydrodivanillin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:8661 Pyrethrosin skos:exactMatch mesh C003255 pyrethrosin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:86610 Dihydrodehydrodiisoeugenol skos:exactMatch mesh C588254 dihydrodehydrodiisoeugenol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:86612 dihydroferulic acid skos:exactMatch mesh C520807 dihydroferulic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:86618 ethyl heptanoate skos:exactMatch mesh C032206 ethyl oenanthate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:86655 homoveratric acid skos:exactMatch mesh C531921 (3,4-dimethoxyphenyl)acetic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:8674 pyrimethanil skos:exactMatch mesh C108337 pyrimethanil lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:8687 pyrvinium skos:exactMatch mesh C024631 pyrvinium lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:8689 Quadrigemine A skos:exactMatch mesh C051765 quadrigemine A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:8690 Quadrone skos:exactMatch mesh C016711 quadrone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:86903 methyl p-anisate skos:exactMatch mesh C539391 methyl 4-anisate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:86905 methyl sinapate skos:exactMatch mesh C006605 antithiamine factor lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:86907 monoethyl malonate skos:exactMatch mesh C540852 monoethyl malonate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:86918 p-Methoxybenzyl alcohol skos:exactMatch mesh C066943 anisyl alcohol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:86919 phenyl benzoate skos:exactMatch mesh C062963 diphenylcarboxylate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:8692 Quassin skos:exactMatch mesh C010317 quassin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:86940 simulanol skos:exactMatch mesh C473506 simulanol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:86963 veratrylglycerol beta-guaiacyl ether skos:exactMatch mesh C047159 veratrylglycerol-beta-guaiacyl ether lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:87032 flexirubins skos:exactMatch mesh C017313 flexirubins lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:87040 agaropectin skos:exactMatch mesh C038194 agaropectin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:87057 lanost-8-ene-3beta,30-diol skos:exactMatch mesh C050483 32-hydroxy-24,25-dihydrolanosterol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:87060 3beta-hydroxylanost-8-en-32-al skos:exactMatch mesh C032444 lanosten-3-ol-32-al lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:87073 naphthol green B skos:exactMatch mesh C574940 naphthol green B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:87085 35-aminobacteriohopane-30,31,32,33,34-pentol skos:exactMatch mesh C047450 35-aminobacteriohopane-30,31,32,33,34-pentol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:87094 acid red 4 skos:exactMatch mesh C523279 Acid Red 4 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:87106 acid red 29 skos:exactMatch mesh C070620 chromotrope 2R lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:87123 tulipalin B skos:exactMatch mesh C048810 tulipalin B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:87124 6-tuliposide B skos:exactMatch mesh C551332 6-tuliposide B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:87158 SU1498 skos:exactMatch mesh C483044 SU 1498 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:8717 quinethazone skos:exactMatch mesh C050700 quinethazone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:87175 propamidine isethionate skos:exactMatch mesh C046651 propamidine isethionate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:87184 hexamidine skos:exactMatch mesh C018961 hexamidine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:87185 florfenicol skos:exactMatch mesh C035534 florfenicol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:87186 Biebrich scarlet skos:exactMatch mesh C105009 Biebrich Scarlet lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:87206 azocarmine G skos:exactMatch mesh C025171 azocarmine G lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:87219 naphthol yellow S skos:exactMatch mesh C009824 naphthol yellow lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:87221 flavianic acid skos:exactMatch mesh C438653 flavianic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:87226 lissamine flavine FF skos:exactMatch mesh C026796 brilliant sulfaflavine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:87235 metanil yellow skos:exactMatch mesh C005108 metanil yellow lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:87248 ethyl glucuronide skos:exactMatch mesh C093924 ethyl glucuronide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:87263 estra-1,5(10)-diene-3,4,17-trione skos:exactMatch mesh C044208 1,5(10)-estradiene-3,4,17-trione lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:8731 Quinquangulin skos:exactMatch mesh C015486 quinquangulin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:87316 7-amino-4-hydroxy-2-naphthalenesulfonic acid skos:exactMatch mesh C103885 7-amino-4-hydroxy-2-naphthalenesulfonic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:87319 diethyl glutarate skos:exactMatch mesh C073363 diethyl glutarate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:8732 Quinupristin skos:exactMatch mesh C113825 quinupristin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:87321 N-methylacetamide skos:exactMatch mesh C018595 N-methylacetamide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:87328 benzocyclobutene skos:exactMatch mesh C079040 benzocyclobutene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:8733 Quinupristin-dalfopristin skos:exactMatch mesh C062940 quinupristin-dalfopristin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:87344 diethylene glycol diacetate skos:exactMatch mesh C017221 diethylene glycol diacetate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:87347 acridine red 3B skos:exactMatch mesh C032527 acridine red lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:87352 alcian yellow skos:exactMatch mesh C030318 Alcian Yellow lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:87358 alizarin red S skos:exactMatch mesh C004468 Alizarin Red S lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:87363 4-oxopentanal skos:exactMatch mesh C575062 4-oxopentanal lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:87368 diethyl malate skos:exactMatch mesh C058705 diethyl malate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:87370 N-ethylacetamide skos:exactMatch mesh C047509 N-ethylacetamide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:87388 diethyl fumarate skos:exactMatch mesh C035088 diethyl fumarate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:87392 2-ethylhexyl acetate skos:exactMatch mesh C073401 2-ethylhexyl acetate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:87393 hexan-1-ol skos:exactMatch mesh C036260 1-hexanol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:87407 S-(4-nitrobenzyl)glutathione skos:exactMatch mesh C038391 S-(4-nitrobenzyl)glutathione lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:87408 S-[2-hydroxy-3-(4-nitrophenoxy)propyl]glutathione skos:exactMatch mesh C064606 1-(4-nitrophenoxy)-3-(S-glutathionyl)-2-propanol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:87411 dibenzyl ether skos:exactMatch mesh C076624 dibenzyl ether lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:87422 isoamyl butyrate skos:exactMatch mesh C000633780 isopentyl butanoate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:87425 juvenile hormone I acid skos:exactMatch mesh C026858 juvenile hormone I acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:87427 ethyl laurate skos:exactMatch mesh C007677 ethyl laurate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:87430 ethyl decanoate skos:exactMatch mesh C091960 ethyl decanoate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:87432 methyl octanoate skos:exactMatch mesh C039151 methyl octanoate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:87434 2-octanone skos:exactMatch mesh C037075 2-octanone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:87440 3-pyridinol skos:exactMatch mesh C023500 3-hydroxypyridine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:87464 azophloxine skos:exactMatch mesh C037541 red 2G lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:87484 fast red B skos:exactMatch mesh C541030 Fast Red B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:87495 octyl acetate skos:exactMatch mesh C059676 octyl acetate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:87500 isobutyl benzoate skos:exactMatch mesh C087766 isobutyl benzoate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:87506 2-methylthiolan-3-one skos:exactMatch mesh C554603 2-methyltetrahydrothiophen-3-one lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:87528 dihydromyrcenol skos:exactMatch mesh C542861 dihydromyrcenol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:87529 myrcenol skos:exactMatch mesh C534316 7-hydroxy-7-methyl-3-methylene-1-octene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:87543 fluazaindolizine skos:exactMatch mesh C000621530 fluazaindolizine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:87551 1-aminopentadecane skos:exactMatch mesh C575350 pentadecylamine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:87569 pydiflumetofen skos:exactMatch mesh C000656527 pydiflumetofen lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:87598 7alpha-hydroxyestradiol skos:exactMatch mesh C037863 estra-1,3,5(10)-triene-3,7,17-triol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:87602 4-hydroxyestrone skos:exactMatch mesh C026418 4-hydroxyestrone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:87628 16beta-hydroxyestrone skos:exactMatch mesh C026702 16-hydroxyestrone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:87629 fast blue B skos:exactMatch mesh C020747 Fast Blue B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:87637 azure A skos:exactMatch mesh C025818 Azure A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:87639 azure B skos:exactMatch mesh C025819 Azure B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:87641 azure C skos:exactMatch mesh C045363 Azure C lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:87643 victoria blue 4R skos:exactMatch mesh C016183 Victoria blue 4R lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:87645 night blue skos:exactMatch mesh C020923 night blue lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:87665 rosanilin skos:exactMatch mesh C025485 basic fuchsin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:87671 new fuchsin skos:exactMatch mesh C027071 new fuchsin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:87675 methylene green skos:exactMatch mesh C028673 methylene green lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:8768 rabeprazole skos:exactMatch mesh C073326 clofezone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:8773 Ramentaceone skos:exactMatch mesh C517013 7-methyljuglone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:87752 benzo[a]pyrene-7,8-dione skos:exactMatch mesh C076588 benzo(a)pyrene-7,8-dione lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:87755 pentan-3-one skos:exactMatch mesh C027452 diethyl ketone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:87766 2-(D-glucosyloxy)benzoic acid skos:exactMatch mesh C084746 salicylic acid glucoside lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:8778 Ranunculin skos:exactMatch mesh C039859 ranunculin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:87784 GR 65630 skos:exactMatch mesh C059068 GR 65630 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:8779 Rapanone skos:exactMatch mesh C054611 rapanone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:87809 2-ethylhexanal skos:exactMatch mesh C040669 2-ethylhexanal lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:87820 17-phenyl-18,19,20-trinor-prostaglandin E2 skos:exactMatch mesh C092396 17-phenyltrinorprostaglandin E2 lexical 0.9 https://github.com/indralab/panacea_indra/blob/master/panacea_indra/make_ctd_tests.py +chebi CHEBI:87841 4-pregnen-20,21-diol-3-one skos:exactMatch mesh C527598 4-pregnen-20,21-diol-3-one lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:87986 p-tolyl beta-D-glucuronide skos:exactMatch mesh C485699 4-cresylglucuronide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:87996 3-(m-hydroxyphenyl)propanoyl-CoA skos:exactMatch mesh C106927 3-(3-hydroxyphenyl)propionyl-coenzyme A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:87998 6-ketopiperidine-2-carboxylic acid skos:exactMatch mesh C030878 6-oxopiperidine-2-carboxylic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:88050 deoxycylindrospermopsin skos:exactMatch mesh C513692 7-deoxycylindrospermopsin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:8806 Resazurin skos:exactMatch mesh C005843 resazurin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:8809 resiniferatoxin skos:exactMatch mesh C024353 resiniferatoxin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:8810 Resiniferonol skos:exactMatch mesh C035114 resiniferonol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:88108 7alpha,12alpha-dihydroxy-3-oxo-5beta-cholan-24-oic acid skos:exactMatch mesh C017234 7,12-dihydroxy-3-oxocholanic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:88109 7alpha-hydroxy-3-oxochol-4-en-24-oic acid skos:exactMatch mesh C003019 3-oxo-7-hydroxychol-4-enoic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:88123 (R)-12-hydroxysqualene skos:exactMatch mesh C000608370 hydroxysqualene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:88153 tripropionin skos:exactMatch mesh C031627 tripropionin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:88159 3-hydroxy-O,5-dimethyl-L-tyrosine skos:exactMatch mesh C544271 3-hydroxy-5-methyl-O-methyltyrosine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:88164 3-chloroalanine skos:exactMatch mesh C006977 3-chloroalanine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:88173 brilliant green skos:exactMatch mesh C006798 brilliant green lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:88183 Celestin blue B skos:exactMatch mesh C007063 Celestine Blue lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:8821 Retronecine skos:exactMatch mesh C014795 retronecine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:88214 3,5-dichlorophenol skos:exactMatch mesh C116190 3,5-dichlorophenol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:88218 FluoZin-3 skos:exactMatch mesh C451182 FluoZin-3 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:8822 Retrorsine skos:exactMatch mesh C003300 retrorsine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:8824 trans-rhaponticin skos:exactMatch mesh C023538 rhapontin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:88246 2'-deoxytubercidin skos:exactMatch mesh C053222 2'-deoxytubercidin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:8825 Rhein skos:exactMatch mesh C020491 rhein lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:88255 nifurtoinol skos:exactMatch mesh C002848 nifurtoinol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:88271 letosteine skos:exactMatch mesh C018578 letosteine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:88274 aranotin skos:exactMatch mesh C002500 aranotin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:88290 5-hydroxyimidazole-4-carboxamide skos:exactMatch mesh C033758 4-carbamoylimidazolium 5-olate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:88297 9-hydroxyellipticine skos:exactMatch mesh C008009 9-hydroxyellipticine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:88298 FR171456 skos:exactMatch mesh C487953 FR171456 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:88305 lorglumide skos:exactMatch mesh C048181 lorglumide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:8832 Rhododendrin skos:exactMatch mesh C000627159 rhododendrin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:88327 dafadine A skos:exactMatch mesh C569572 4-(1-((5-((2,6-dimethylphenoxy)methyl)-3-isoxazolyl)carbonyl)-4-piperidinyl)pyridine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:88337 bisantrene skos:exactMatch mesh C031404 bisantrene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:88338 1-oleoyl-2-\{6-[(7-nitro-2-1,3-benzoxadiazol-4-yl)amino]hexanoyl\}-sn-glycero-3-phospho-L-serine skos:exactMatch mesh C034296 N-(7-nitro-2,1,3-benzoxadiazol-4-yl)phosphatidylserine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:88339 BMS-754807 skos:exactMatch mesh C545990 BMS 754807 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:88346 13,14-dihydroprostaglandin F2alpha skos:exactMatch mesh C026527 13,14-dihydroprostaglandin F2alpha lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:88348 15(S)-HETrE skos:exactMatch mesh C095123 15-hydroxyeicosatrienoic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:8835 Rhodoxanthin skos:exactMatch mesh C038054 rhodoxanthin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:88353 bryostatin 1 skos:exactMatch mesh C046785 bryostatin 1 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:8836 Rhoeadine skos:exactMatch mesh C019078 rhoeadine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:8837 Rhombifoline skos:exactMatch mesh C119591 rhombifoline lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:88374 2-Methylpentane skos:exactMatch mesh C094659 2-methylpentane lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:88375 3-Methyl-1-penten-3-ol skos:exactMatch mesh C575773 3-methyl-1-penten-3-ol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:88384 Methacrolein skos:exactMatch mesh C039175 methacrylaldehyde lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:88390 1-hydroxybutan-2-one skos:exactMatch mesh C487002 1-hydroxy-2-butanone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:88402 Vanilpyruvic acid skos:exactMatch mesh C016827 vanilpyruvic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:88427 alpha-CEHC skos:exactMatch mesh C084852 2,5,7,8-tetramethyl-2-(2'-carboxyethyl)-6-hydroxychroman lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:88428 3-Methyl-2-cyclohexen-1-one skos:exactMatch mesh C473568 3-methyl-2-cyclohexen-1-one lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:88456 8,15-DiHETE skos:exactMatch mesh C030722 8,15-leukotriene B4 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:88493 leukotriene B5 skos:exactMatch mesh C040212 leukotriene B5 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:88494 epsilon-(gamma-glutamyl)lysine skos:exactMatch mesh C001299 epsilon-(gamma-glutamyl)-lysine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:88526 Vanillactic acid skos:exactMatch mesh C003753 vanillactic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:88539 Pyridinoline skos:exactMatch mesh C015484 pyridinoline lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:88542 Butylparaben skos:exactMatch mesh C038091 butylparaben lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:88569 Hexylbenzene skos:exactMatch mesh C053762 n-hexylbenzene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:88614 Calamenene skos:exactMatch mesh C502644 calamenene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:8866 rimsulfuron skos:exactMatch mesh C447879 rimsulfuron lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:88662 6'-Hydroxy-O-desmethylangolensin skos:exactMatch mesh C000707255 6'-hydroxy-O-desmethylangolensin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:8870 Rishitin skos:exactMatch mesh C009188 rishitin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:88715 3,5-Dimethoxyphenol skos:exactMatch mesh C015155 phloroglucinol dimethyl ether lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:88719 3-Methoxyphenylacetic acid skos:exactMatch mesh C023699 3-methoxyphenylacetic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:88727 Estriol 3-sulfate 16-glucuronide skos:exactMatch mesh C027973 estriol 3-sulfate 16-glucuronide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:88728 Tetrahydroaldosterone-3-glucuronide skos:exactMatch mesh C013283 tetrahydroaldosterone 3 beta-glucosiduronic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:88730 5alpha-androstane-3beta,17beta-diol 3-O-(beta-D-glucuronide) skos:exactMatch mesh C054443 17-hydroxyandrostane-3-glucuronide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:88734 Aldosterone 18-glucuronide skos:exactMatch mesh C018447 aldosterone 18-glucuronide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:88739 Retinyl beta-glucuronide skos:exactMatch mesh C067655 retinylglucuronide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:88742 Gentisuric acid skos:exactMatch mesh C016471 gentisuric acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:88765 Pregnanediol-3-glucuronide skos:exactMatch mesh C022270 pregnanediol-3 alpha-glucuronide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:88770 Megastigmatrienone skos:exactMatch mesh C549856 (4Z)-4-((E)-but-2-enylidene)-3,5,5-trimethylcyclohex- 2-en-1-one lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:88773 Cortolone-3-glucuronide skos:exactMatch mesh C044900 cortolone-3-glucuronide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:88776 Dopamine glucuronide skos:exactMatch mesh C037719 dopamine glucuronide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:8878 robinin skos:exactMatch mesh C005183 robinin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:88806 Methyl butyrate skos:exactMatch mesh C043811 methyl butyrate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:88811 Suberylglycine skos:exactMatch mesh C013264 suberylglycine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:88824 N-acetylcadaverine skos:exactMatch mesh C025476 monoacetylcadaverine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:88839 Ethyl salicylate skos:exactMatch mesh C041835 ethyl salicylate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:88874 beta-Bourbonene skos:exactMatch mesh C542377 beta-bourbonene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:8888 ropinirole skos:exactMatch mesh C046649 ropinirole lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:88888 3-Sulfodeoxycholic acid skos:exactMatch mesh C045047 3-sulfodeoxycholic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:88900 1-Octen-3-one skos:exactMatch mesh C113805 1-octen-3-one lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:8891 Roridin A skos:exactMatch mesh C038849 roridin A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:88954 6-Methylnicotinamide skos:exactMatch mesh C099919 6-methylnicotinamide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:88965 ethyl cyclohexanecarboxylate skos:exactMatch mesh C517079 ethyl cyclohexanoate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:8899 rottlerin skos:exactMatch mesh C085746 rottlerin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:8900 Rotundifolone skos:exactMatch mesh C467828 rotundifolone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:89012 1-Methylpyrrole skos:exactMatch mesh C096654 N-methylpyrrole lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:8904 Royleanone skos:exactMatch mesh C103399 royleanone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:89058 2-Ethylhexanoic acid skos:exactMatch mesh C040668 2-ethylhexanoic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:89059 Dihydro-2(3H)-thiophenone skos:exactMatch mesh C083047 gamma-thiobutyrolactone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:89060 Chenodeoxycholic acid 3-sulfate skos:exactMatch mesh C027616 chenodeoxycholate sulfate conjugate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:89087 cotinine N-oxide skos:exactMatch mesh C001605 cotinine-N-oxide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:8909 Rufloxacin skos:exactMatch mesh C060328 rufloxacin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:89118 5-hydroxymethyl-2-furoic acid skos:exactMatch mesh C521074 5-hydroxymethyl-2-furoic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:8913 Ruscogenin skos:exactMatch mesh C012541 ruscogenin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:8917 Rutacridone skos:exactMatch mesh C059481 rutacridone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:8918 Rutacridone epoxide skos:exactMatch mesh C059482 rutacridone epoxide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:89185 1-nitrohexane skos:exactMatch mesh C025019 nitrohexane lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:8919 Rutaevin skos:exactMatch mesh C079993 rutaevin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:89195 2-Methyl-4-heptanone skos:exactMatch mesh C520062 2-methyl-4-heptanone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:89199 methyl tetradecanoate skos:exactMatch mesh C508363 methyl tetradecanoate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:8920 Rutamarin skos:exactMatch mesh C022850 rutamarin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:89205 3-Hydroxyadipic acid skos:exactMatch mesh C045052 3-hydroxyadipic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:89213 18-Oxocortisol skos:exactMatch mesh C038135 18-oxocortisol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:8922 Rutecarpine skos:exactMatch mesh C028632 rutecarpine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:8925 ryanodine skos:exactMatch mesh D031309 Ryania lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:89315 15-Keto-13,14-dihydroprostaglandin A2 skos:exactMatch mesh C025558 15-keto-13,14-dihydroprostaglandin A2 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:8932 S-(4-Azidophenacyl)glutathione skos:exactMatch mesh C024939 S-(4-azidophenacyl)glutathione lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:8939 flumioxazin skos:exactMatch mesh C106487 flumioxazin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:89405 3-Methoxy-4-hydroxyphenylglycol glucuronide skos:exactMatch mesh C037157 3-methoxy-4-hydroxyphenylglycol glucuronide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:89406 Norcotinine skos:exactMatch mesh C066333 norcotinine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:89421 3,4-DHPEA-EA skos:exactMatch mesh C121925 3,4-dixydroxyphenylethanol elenolic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:89455 18-Hydroxycortisol skos:exactMatch mesh C033689 18-hydroxycortisol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:89478 Putreanine skos:exactMatch mesh C000064 putreanine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:89479 lanthionine ketimine skos:exactMatch mesh C035499 lanthionine ketimine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:89481 Bisnorbiotin skos:exactMatch mesh C002143 bisnorbiotin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:89485 5-Hydroxydopamine skos:exactMatch mesh C027802 5-hydroxydopamine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:89487 3-Methyluridine skos:exactMatch mesh C008513 3-methyluridine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:89493 2,6-Dimethoxybenzoic acid skos:exactMatch mesh C472445 2,6-dimethoxybenzoic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:89510 Deoxypyridinoline skos:exactMatch mesh C036020 deoxypyridinoline lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:89561 butyl hexanoate skos:exactMatch mesh C046398 butyl caprylate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:89575 3,5-Diiodothyronine skos:exactMatch mesh C030103 3,5-diiodothyronine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:89598 theaspirane skos:exactMatch mesh C000705697 theaspirane lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:89605 Alpha-Linolenoyl ethanolamide skos:exactMatch mesh C000602094 alpha-linolenoyl ethanolamide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:89640 Nicotinamide N-oxide skos:exactMatch mesh C037645 nicotinamide N-oxide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:89700 3-Iodothyronamine skos:exactMatch mesh C487948 3-iodothyronamine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:89743 2,4-Nonadienal skos:exactMatch mesh C412886 2,4-nonadienal lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:89749 Monomethyl phthalate skos:exactMatch mesh C517284 monomethyl phthalate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:89751 1,2-dihexadecanoyl-3-octadecanoyl-sn-glycerol skos:exactMatch mesh C542594 1, 2-dipalmitoyl-3-stearoyl-sn-glycerol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:89762 2,5-Dimethylpyrazine skos:exactMatch mesh C075524 2,5-dimethylpyrazine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:8978 SB 221284 skos:exactMatch mesh C112099 SB 221284 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:89810 N-acetyl-5-aminosalicylic acid skos:exactMatch mesh C028836 N-acetyl-5-aminosalicylic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:89815 1-Tridecene skos:exactMatch mesh C028691 1-tridecene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:89818 2-Tetradecanone skos:exactMatch mesh C479160 2-tetradecanone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:8982 SC-57666 skos:exactMatch mesh C110286 SC 57666 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:8983 SC-58125 skos:exactMatch mesh C090859 1-((4-methylsulfonyl)phenyl)-3-trifluoromethyl-5-(4-fluorophenyl)pyrazole lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:89830 5-methoxysalicylic acid skos:exactMatch mesh C033304 5-methoxysalicylic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:89843 methylsuccinic acid skos:exactMatch mesh C039138 methylsuccinic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:89851 5-Methoxytryptophol skos:exactMatch mesh C002465 methoxytryptophol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:89853 1,3-Dimethoxybenzene skos:exactMatch mesh C031201 1,3-dimethoxybenzene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:8986 Benalfocin skos:exactMatch mesh C039139 benalfocin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:8987 SK&F 91581 skos:exactMatch mesh C028893 SK&F 91581 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:89878 Epinephrine sulfate skos:exactMatch mesh C036526 epinephrine sulfate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:89886 2-Methoxy-4-methylphenol skos:exactMatch mesh C025390 creosol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:89899 xanthurenic acid 8-O-sulfate skos:exactMatch mesh C526073 xanthurenic acid 8-O-sulfate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:8990 SN38 glucuronide skos:exactMatch mesh C441475 7-ethyl-10-hydroxycamptothecin glucuronide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:89907 disialyllacto-N-tetraose skos:exactMatch mesh C576246 disialyllacto-N-tetraose lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:8994 safrole skos:exactMatch mesh C571663 5-allyl-1,3-benzodioxol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:89944 1-Penten-3-ol skos:exactMatch mesh C068720 1-penten-3-ol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:89982 8-Dehydrocholesterol skos:exactMatch mesh C026359 cholesta-5,8-dien-3 beta-ol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:90000 Argininic acid skos:exactMatch mesh C000225 argininic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:90001 cystathionine ketimine skos:exactMatch mesh C038681 cystathionine ketimine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:90005 4-Hydroxyisovaleric acid skos:exactMatch mesh C030032 4-hydroxyisovaleric acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:90022 Norepinephrine sulfate skos:exactMatch mesh C017574 noradrenaline sulfate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:90046 Methylephedrine skos:exactMatch mesh C041707 N-methylephedrine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:90065 3-fucosyllactose skos:exactMatch mesh C035714 3'-fucosyllactose lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:90074 4-Ethylbenzoic acid skos:exactMatch mesh C051230 4-ethylbenzoic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:9008 salicyluric acid skos:exactMatch mesh C000693 salicylurate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:90086 N-benzoyl-L-arginine skos:exactMatch mesh C004464 N-benzoyl-L-arginine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:9009 Salidroside skos:exactMatch mesh C009172 rhodioloside lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:901 2,4,8-Trihydroxy-1-tetralone skos:exactMatch mesh C051971 2,4,8-trihydroxy-1-tetralone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:9010 Salmefamol skos:exactMatch mesh C100251 salmefamol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:90112 Guinee green B skos:exactMatch mesh C009885 guinea green B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:90116 hematein skos:exactMatch mesh C007915 hematein lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:90124 dibromoacetic acid skos:exactMatch mesh C088674 dibromoacetic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:90125 N-(2-hydroxy-1-methylethyl)-9-octadecenamide skos:exactMatch mesh C512990 N-(2-hydroxy-1-methylethyl)-9-octadecenamide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:90137 6-bromo-2-naphthyl beta-D-galactoside skos:exactMatch mesh C065297 6-bromo-2-naphthyl-beta-galactopyranoside lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:9014 salsalate skos:exactMatch mesh C014182 salicylsalicylic acid lexical 0.9 https://github.com/indralab/panacea_indra/blob/master/panacea_indra/make_ctd_tests.py +chebi CHEBI:90141 tyrosine betaine skos:exactMatch mesh C018168 tyrosine betaine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:90146 4-nitrophenyl beta-D-glucuronide skos:exactMatch mesh C002730 4-nitrophenylglucuronide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:9018 Samaderin A skos:exactMatch mesh C432979 samaderin A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:9019 Samidin skos:exactMatch mesh C000599090 samidin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:9020 Sanggenon C skos:exactMatch mesh C477157 sanggenone C lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:9021 Sanggenon D skos:exactMatch mesh C000630879 sanggenon D lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:90232 9-(tetrahydrofuryl)adenine skos:exactMatch mesh C017759 9-(tetrahydro-2-furyl)-adenine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:90235 spiruchostatin B skos:exactMatch mesh C529984 spiruchostatin B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:90236 (2E,6E)-farnesyl monophosphate skos:exactMatch mesh C059195 farnesyl monophosphate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:90249 2-naphthyl tetradecanoate skos:exactMatch mesh C030017 2-naphthylmyristate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:90250 2-naphthyl octanoate skos:exactMatch mesh C048448 2-naphthyl caprylate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:90252 2-naphthyl alpha-L-fucoside skos:exactMatch mesh C015376 naphthyl-alpha-L-fucoside lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:90253 4-nitrophenyl alpha-L-fucoside skos:exactMatch mesh C014125 4-nitrophenylfucoside lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:90275 lactucopicrin skos:exactMatch mesh C001458 intybin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:90282 N(1),N(12)-diethylspermine skos:exactMatch mesh C052614 N(1), N(12)-diethylspermine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:90343 4-nitrophenyl N-acetyl-beta-D-glucosaminide skos:exactMatch mesh C014124 4-nitrophenyl-N-acetyl-2-deoxyglucopyranoside lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:90355 phenylpropiolic acid skos:exactMatch mesh C019521 phenylpropiolic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:90364 S-(5-deoxy-beta-D-ribos-5-yl)-L-homocysteine skos:exactMatch mesh C487472 S-ribosyl-L-homocysteine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:90369 6-chloro-2,3,4,9-tetrahydro-1H-carbazole-1-carboxamide skos:exactMatch mesh C550547 6-chloro-2,3,4,9-tetrahydro-1H-carbazole-1-carboxamide lexical 0.9 https://github.com/indralab/panacea_indra/blob/master/panacea_indra/make_ctd_tests.py +chebi CHEBI:90413 N-benzoyl-D-phenylalanine skos:exactMatch mesh C053764 benzoylphenylalanine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:90425 N-(alpha-L-aspartyl)-2-naphthylamine skos:exactMatch mesh C044335 aspartic acid beta-naphthylamide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:90426 L-cysteine 2-naphthylamide skos:exactMatch mesh C026206 cysteine-beta-naphthylamide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:90428 L-cystine di-2-naphthylamide skos:exactMatch mesh C015769 cystine-di-beta-naphthylamide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:9044 Savinin skos:exactMatch mesh C425325 savinin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:90440 N-(alpha-L-glutamyl)-2-naphthylamine skos:exactMatch mesh C023861 gamma-glutamyl-2-naphthylamide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:90441 WIN 18446 skos:exactMatch mesh C002491 N,N'-bis(dichloroacetyl)-1,8-octamethylenediamine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:90454 lysophosphatidylglycerol skos:exactMatch mesh C026223 lysophosphatidylglycerol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:90476 L-leucine 2-naphthylamide skos:exactMatch mesh C040135 leucine-beta-naphthylamide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:9049 Schottenol skos:exactMatch mesh C031313 stigmast-7-enol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:90522 alkali blue 4B skos:exactMatch mesh C111519 alkali blue 6B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:9053 sclareol skos:exactMatch mesh C070760 sclareol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:90599 L-phenylalanine 2-naphthylamide skos:exactMatch mesh C079641 phenylalanine-beta-naphthylamide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:90601 5-oxo-L-proline 2-naphthylamide skos:exactMatch mesh C034099 pyrrolidonyl-beta-naphthylamide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:90605 monodecanoylglycerol skos:exactMatch mesh C004204 rac-glycerol 1-monodecanoate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:90626 AMG-208 skos:exactMatch mesh C000607903 AMG 208 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:90633 perfluorododecanoic acid skos:exactMatch mesh C522391 perfluorododecanoic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:90679 torkinib skos:exactMatch mesh C572919 PP242 lexical 0.9 https://github.com/indralab/panacea_indra/blob/master/panacea_indra/make_ctd_tests.py +chebi CHEBI:90681 SB-239063 skos:exactMatch mesh C406525 SB 239063 lexical 0.9 https://github.com/indralab/panacea_indra/blob/master/panacea_indra/make_ctd_tests.py +chebi CHEBI:90683 talmapimod skos:exactMatch mesh C499748 SCIO-469 lexical 0.9 https://github.com/indralab/panacea_indra/blob/master/panacea_indra/make_ctd_tests.py +chebi CHEBI:90685 pamapimod skos:exactMatch mesh C533858 pamapimod lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:90686 IC-87114 skos:exactMatch mesh C477872 IC 87114 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:90690 U-73122 skos:exactMatch mesh C060229 1-(6-((3-methoxyestra-1,3,5(10)-trien-17-yl)amino)hexyl)-1H-pyrrole-2,5-dione lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:90695 anthra[1,9-cd]pyrazol-6(2H)-one skos:exactMatch mesh C432165 pyrazolanthrone lexical 0.9 https://github.com/indralab/panacea_indra/blob/master/panacea_indra/make_ctd_tests.py +chebi CHEBI:90698 anthrapyrazole skos:exactMatch mesh C055925 anthrapyrazole lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:90703 gamendazole skos:exactMatch mesh C530949 gamendazole lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:90712 S-methyl-L-thiocitrulline skos:exactMatch mesh C086717 S-methylthiocitrulline lexical 0.9 https://github.com/indralab/panacea_indra/blob/master/panacea_indra/make_ctd_tests.py +chebi CHEBI:90721 N-[3-(aminomethyl)benzyl]acetamidine skos:exactMatch mesh C561963 W1400 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:90776 11-oxo-ETE skos:exactMatch mesh C571448 11-oxoeicosatetraenoic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:9079 Securinine skos:exactMatch mesh C000785 securinine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:9084 Seiricardine A skos:exactMatch mesh C000605024 seiricardine A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:90844 selexipag skos:exactMatch mesh C523468 selexipag lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:90863 sonidegib skos:exactMatch mesh C561435 sonidegib lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:90865 flibanserin skos:exactMatch mesh C098107 flibanserin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:90879 tipiracil skos:exactMatch mesh C000613754 tipiracil lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:90893 (-)-bursehernin skos:exactMatch mesh C023816 bursehernin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:90896 (-)-pluviatolide skos:exactMatch mesh C016678 pluviatolide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:90897 protoviolaceinic acid skos:exactMatch mesh C525089 protoviolaceinic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:90903 asperlicin E skos:exactMatch mesh C057103 asperlicin E lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:90904 asperlicin C skos:exactMatch mesh C057101 asperlicin C lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:90908 rolapitant skos:exactMatch mesh C578834 rolapitant lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:90924 aurachin A skos:exactMatch mesh C052094 aurachin A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:90926 tenofovir alafenamide skos:exactMatch mesh C442442 GS-7340 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:90929 lesinurad skos:exactMatch mesh C000593471 lesinurad lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:90930 aripiprazole lauroxil skos:exactMatch mesh C000603935 aripiprazole lauroxil lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:90933 cariprazine skos:exactMatch mesh C533287 cariprazine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:90941 sibiromycin skos:exactMatch mesh C100298 sibiromycin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:90942 ixazomib skos:exactMatch mesh C548400 ixazomib lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:90950 Orkambi skos:exactMatch mesh C000599212 lumacaftor, ivacaftor drug combination lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:90951 lumacaftor skos:exactMatch mesh C569105 lumacaftor lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:90979 5,20-DiHETE skos:exactMatch mesh C050601 5,20-dihydroxy-6,8,11,14-eicosatetraenoic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:90990 12,20-DiHETE skos:exactMatch mesh C040735 12,20-dihydroxy-5,8,10,14-eicosatetraenoic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:90994 3,3'-diaminobenzidine skos:exactMatch mesh C557039 3,3'-diaminobenzidene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:91017 trisporic acid skos:exactMatch mesh C004574 trisporic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:91026 astragaloside II skos:exactMatch mesh C580601 astragaloside II lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:91030 epithienamycin E skos:exactMatch mesh C056345 epithienamycin E lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:91032 fertaric acid skos:exactMatch mesh C515103 fertaric acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:9104 Sempervirine skos:exactMatch mesh C009234 sempervirine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:9105 Senaetnine skos:exactMatch mesh C053693 senaetnine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:91051 ethyl N-benzoyl-L-tyrosinate skos:exactMatch mesh C006716 benzoyltyrosine ethyl ester lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:91076 PD-153035 skos:exactMatch mesh C108081 AG 1517 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:9108 seneciphylline skos:exactMatch mesh C013678 seneciphylline lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:91084 beta-aminopropionitrile hemifumarate skos:exactMatch mesh C027243 beta-aminopropionitrile fumarate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:91107 SB 415286 skos:exactMatch mesh C417520 3-(3-chloro-4-hydroxyphenylamino)-4-(4-nitrophenyl)-1H-pyrrole-2,5-dione lexical 0.9 https://github.com/indralab/panacea_indra/blob/master/panacea_indra/make_ctd_tests.py +chebi CHEBI:91108 SB 431542 skos:exactMatch mesh C459179 4-(5-benzo(1,3)dioxol-5-yl-4-pyridin-2-yl-1H-imidazol-2-yl)benzamide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:9111 Senkirkine skos:exactMatch mesh C009238 senkirkine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:91116 4-methylumbelliferyl beta-D-galactoside skos:exactMatch mesh C026845 4-methylumbelliferyl-galactopyranoside lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:91117 4-methylumbelliferyl beta-D-glucoside skos:exactMatch mesh C014110 4-methylumbelliferyl glucoside lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:91122 4-nitrophenyl alpha-D-glucoside skos:exactMatch mesh C019502 4-nitrophenyl alpha-glucoside lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:91144 1-octadecylglycero-3-phosphocholine skos:exactMatch mesh C026564 stearoyl alpha-lysolecithin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:9115 Sergeolide skos:exactMatch mesh C045844 sergeolide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:91152 8-(methylsulfinyl)octyl isothiocyanate skos:exactMatch mesh C416763 8-methylsulfinoctyl isothiocyanate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:91172 guaiacylglycerol beta-coniferyl ether skos:exactMatch mesh C046051 guaiacylglycerol-beta-coniferyl ether lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:91184 dehydrodiconiferyl alcohol skos:exactMatch mesh C080686 dehydrodiconiferyl alcohol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:9119 serpentine skos:exactMatch mesh C009244 serpentine (alkaloid) lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:91198 LY 364947 skos:exactMatch mesh C506615 HTS 466284 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:91213 4-iodo-6-phenylpyrimidine skos:exactMatch mesh C532251 4-iodo-6-phenylpyrimidine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:91224 S3I-201 skos:exactMatch mesh C520337 NSC 74859 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:91231 piperaquine skos:exactMatch mesh C034759 piperaquine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:91238 calcium ammonium nitrate skos:exactMatch mesh C038015 calcium ammonium nitrate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:91249 ammonium molybdate skos:exactMatch mesh C022175 ammonium molybdate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:9126 Sesamol skos:exactMatch mesh C025583 sesamol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:91265 rotundifuran skos:exactMatch mesh C442858 rotundifuran lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:91270 viteagnusin I skos:exactMatch mesh C560384 viteagnusin I lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:91276 saintopin skos:exactMatch mesh C066552 saintopin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:91286 5(S),15(S)-DiHETE skos:exactMatch mesh C034922 5,15-dihydroxy-6,8,11,13-eicosatetraenoic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:9131 sexangularetin skos:exactMatch mesh C535251 sexangularetin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:9132 Shihunine skos:exactMatch mesh C071846 shihunine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:91326 4-(2,6-dichlorobenzamido)-N-(piperidin-4-yl)-pyrazole-3-carboxamide skos:exactMatch mesh C531230 4-(2,6-dichlorobenzoylamino)-1H-pyrazole-3-carboxylic acid piperidin-4-ylamide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:9136 Shiromodiol diacetate skos:exactMatch mesh C113438 shiromodiol diacetate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:9137 sibutramine skos:exactMatch mesh C058254 sibutramine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:91399 N-(5-\{[(5-tert-butyl-1,3-oxazol-2-yl)methyl]sulfanyl\}-1,3-thiazol-2-yl)piperidine-4-carboxamide skos:exactMatch mesh C484864 N-(5-(((5-(1,1-dimethylethyl)-2-oxazolyl)methyl)thio)-2-thiazolyl)-4-piperidinecarboxamide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:9144 silibinin skos:exactMatch mesh D012838 Silymarin lexical 0.9 https://github.com/indralab/panacea_indra/blob/master/panacea_indra/make_ctd_tests.py +chebi CHEBI:91460 KN-93 skos:exactMatch mesh C072105 KN 93 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:91462 SU6656 skos:exactMatch mesh C416927 SU 6656 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:9151 Sinalbin skos:exactMatch mesh C003313 sinalbin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:9159 sinensetin skos:exactMatch mesh C059295 sinensetin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:9163 Sinomenine skos:exactMatch mesh C009271 sinomenine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:9172 Skimmianine skos:exactMatch mesh C035932 skimmianine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:9173 slaframine skos:exactMatch mesh C009275 slaframine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:91784 eliprodil skos:exactMatch mesh C058083 eliprodil lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:9188 solanine skos:exactMatch mesh C514919 alpha-solanine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:9194 Solutol HS 15 skos:exactMatch mesh C067028 Solutol HS 15 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:9196 Songorine skos:exactMatch mesh C057217 songorine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:9198 Sophoramine skos:exactMatch mesh C055681 sophoramine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:9199 sophoranone skos:exactMatch mesh C461819 sophoranone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:91990 9-amino-1,2,3,4-tetrahydroacridin-1-ol skos:exactMatch mesh C056424 velnacrine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:9200 soraphen A skos:exactMatch mesh C086151 soraphen A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:9205 Sorgolactone skos:exactMatch mesh C485199 sorgolactone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:9208 Soularubinone skos:exactMatch mesh C024969 soularubinone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:9209 soyasapogenol B skos:exactMatch mesh C407096 soyasapogenol B lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:9211 soyasaponin I skos:exactMatch mesh C000602851 soyasaponin Bb lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:92360 2-chloro-6-(1-piperazinyl)pyrazine skos:exactMatch mesh C014896 6-chloro-2-(1-piperazinyl)pyrazine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:92369 SU4312 skos:exactMatch mesh C117011 3-(4-dimethylamino-benzylidenyl)-2-indolinone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:92386 xylazine skos:exactMatch mesh D014991 Xylazine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:92389 N-(4-hydroxyphenyl)eicosa-5,8,11,14-tetraenamide skos:exactMatch mesh C107594 N-(4-hydroxyphenyl)arachidonylamide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:9243 Sporidesmin skos:exactMatch mesh C001873 sporidesmin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:9244 Spruceanol skos:exactMatch mesh C024715 Spruceanol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:9246 Squamocin skos:exactMatch mesh C059660 squamocin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:92473 1-(10H-phenothiazin-2-yl)ethanone skos:exactMatch mesh C000598538 1-(10H-phenothiazin-2-yl)ethanone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:9259 Steganacin skos:exactMatch mesh C002858 steganacin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:92739 N-(6-aminohexyl)-1-naphthalenesulfonamide skos:exactMatch mesh C034700 N-(6-aminohexyl)-1-naphthalenesulfonamide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:92777 ML228 skos:exactMatch mesh C573773 ML228 probe lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:92809 Val-Trp skos:exactMatch mesh C055060 N-valyltryptophan lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:9283 streptobiosamine skos:exactMatch mesh C016762 streptobiosamine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:92842 dilazep skos:exactMatch mesh D004109 Dilazep lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:93239 8-hydroxy-5-quinolinecarboxylic acid skos:exactMatch mesh C000592885 5-carboxy-8-hydroxyquinoline lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:9325 sulconazole skos:exactMatch mesh C033308 sulconazole lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:9328 sulfadiazine skos:exactMatch mesh C000593296 4-amino-N-(pyrimidin-2-yl)benzenesulfonamide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:93335 6,7-dimethoxy-2-phenylquinoxaline skos:exactMatch mesh C407689 6,7-dimethoxy-2-phenylquinoxaline lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:9339 sulfentrazone skos:exactMatch mesh C475571 N-(2,4-dichloro-5-(4-(difluoromethyl)-4,5-dihydro-3-methyl-5-oxo-1H-1,2,4-triazol-1-yl)phenyl)methanesulfonamide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:93415 eicosa-11,14-dienoic acid skos:exactMatch mesh C015876 eicosa-11,14-dienoic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:93429 1,3-dicyclohexylurea skos:exactMatch mesh C000948 1,3-dicyclohexylurea lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:9349 sulfonyldimethane skos:exactMatch mesh C025910 dimethyl sulfone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:9360 Supinidine skos:exactMatch mesh C011549 supinidine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:9365 Surinamensin skos:exactMatch mesh C420461 surinamensin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:9369 swertiajaponin skos:exactMatch mesh C546516 swertiajaponin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:9370 Swertiamarin skos:exactMatch mesh C013270 swertiamarin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:93704 2-phenylethynesulfonamide skos:exactMatch mesh C545747 2-phenylacetylenesulfonamide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:9374 Symlandine skos:exactMatch mesh C433586 symlandine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:93778 cyclohexane-1,2-diamine skos:exactMatch mesh C030435 1,2-cyclohexanediamine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:9386 Tabernanthine skos:exactMatch mesh C027202 tabernanthine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:9388 Taccalonolide A skos:exactMatch mesh C475870 taccalonolide A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:93927 6-chrysenamine skos:exactMatch mesh C100101 6-chrysenamine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:93940 1,2,3,4,5,6-hexabromocyclohexane skos:exactMatch mesh C500162 1,2,3,4,5,6-hexabromocyclohexane lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:9395 tambulin skos:exactMatch mesh C000631767 tambulin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:9400 tangeretin skos:exactMatch mesh C059006 tangeretin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:9402 taraxerol skos:exactMatch mesh C005802 taraxerol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:9414 Tautomycin skos:exactMatch mesh C053079 tautomycin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:9419 Taxodione skos:exactMatch mesh C009387 taxodione lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:9420 Taxodone skos:exactMatch mesh C435787 taxodone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:9422 tebufenpyrad skos:exactMatch mesh C429623 4-chloro-N-((4-(1,1-dimethylethyl)phenyl)methyl)-3-ethyl-1-methyl-1H-pyrazole-5-carboxamide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:9424 Tecomine skos:exactMatch mesh C003380 tecomine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:9425 Tecostanine skos:exactMatch mesh C472748 tecostanine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:94287 erastin skos:exactMatch mesh C477224 erastin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:9429 tectorigenin skos:exactMatch mesh C120039 tectorigenin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:9433 Tellimagrandin I skos:exactMatch mesh C087926 tellimagrandin I lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:9437 temoporfin skos:exactMatch mesh C072269 temoporfin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:9439 tentoxin skos:exactMatch mesh C003384 tentoxin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:9441 Tenulin skos:exactMatch mesh C011124 tenulin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:9447 Terbacil skos:exactMatch mesh C011362 terbacil lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:94490 N-[5-[(2R)-2-methoxy-1-oxo-2-phenylethyl]-4,6-dihydro-1H-pyrrolo[3,4-c]pyrazol-3-yl]-4-(4-methyl-1-piperazinyl)benzamide skos:exactMatch mesh C523797 danusertib lexical 0.9 https://github.com/indralab/panacea_indra/blob/master/panacea_indra/make_ctd_tests.py +chebi CHEBI:94504 4-(4-chloro-2-methylphenoxy)-N-hydroxybutanamide skos:exactMatch mesh C554680 4-(4-chloro-2-methylphenoxy)-N-hydroxybutanamide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:9451 terconazole skos:exactMatch mesh C037815 terconazole lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:9454 Terminalin skos:exactMatch mesh C089437 terminalin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:9457 terpinolene skos:exactMatch mesh C027009 terpinolene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:94579 2-aminobenzenesulfonamide skos:exactMatch mesh C009720 2-aminobenzenesulfonamide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:94677 sulfabenzamide skos:exactMatch mesh C034094 sulfabenzamide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:94714 doxofylline skos:exactMatch mesh C029797 doxofylline lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:9477 Tetradymol skos:exactMatch mesh C013704 tetradymol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:9481 Tetrahydrocorticosterone skos:exactMatch mesh C003676 tetrahydrocorticosterone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:9485 Tetrahydroharmine skos:exactMatch mesh C035525 tetrahydroharmine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:949 2,6-dichlorothiobenzamide skos:exactMatch mesh C058670 2,6-dichlorothiobenzamide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:9497 Tetranactin skos:exactMatch mesh C003417 tetranactin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:94978 2-fluorohexadecanoic acid skos:exactMatch mesh C040514 2-fluorohexadecanoic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:94988 N-(1,3-benzodioxol-5-ylmethyl)-2,6-dichlorobenzamide skos:exactMatch mesh C531525 N-(1,3-benzodioxol-5-ylmethyl)-2,6-dichlorobenzamide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:95048 4-(4-octylphenyl)benzoic acid skos:exactMatch mesh C507710 4'-octyl-4-biphenylcarboxylic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:95067 4-iodo-3-nitrobenzamide skos:exactMatch mesh C090712 iniparib lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:9512 Thalidasine skos:exactMatch mesh C057069 thalidasine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:9518 Theasinensin A skos:exactMatch mesh C481298 theasinensin A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:9524 Thermospine skos:exactMatch mesh C059560 thermospine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:95323 2-chloropyrazine skos:exactMatch mesh C542780 2-chloropyrazine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:9538 Thiarubrine A skos:exactMatch mesh C044836 thiarubrine A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:9542 Thienamycin skos:exactMatch mesh C015537 thienamycin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:9543 thienodolin skos:exactMatch mesh C000594502 thienodolin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:9549 Thiocarbohydrazide skos:exactMatch mesh C011368 thiocarbohydrazide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:955 2,6-dimethoxyphenol skos:exactMatch mesh C010120 pyrogallol 1,3-dimethyl ether lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:9591 Tifluadom skos:exactMatch mesh C035470 tifluadom lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:9592 tiglic acid skos:exactMatch mesh C009489 tiglic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:9598 Tiludronic acid skos:exactMatch mesh C058651 tiludronic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:9602 Tingenone skos:exactMatch mesh C009492 tingenone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:9603 tinyatoxin skos:exactMatch mesh C026001 tinyatoxin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:9604 tioconazole skos:exactMatch mesh C020527 tioconazole lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:9630 tomatine skos:exactMatch mesh C484751 alpha-tomatine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:9631 Tomentosin skos:exactMatch mesh C454646 tomentosin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:9638 torulene skos:exactMatch mesh C078922 torulene lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:9643 Toxicarol skos:exactMatch mesh C501190 alpha-toxicarol lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:9647 Trachelogenin skos:exactMatch mesh C560586 trachelogenin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:9656 Tremetone skos:exactMatch mesh C000602909 tremetone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:9657 Tremulacin skos:exactMatch mesh C095421 tremulacin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:9658 Triacanthine skos:exactMatch mesh C000705450 triacanthine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:9665 triadimefon skos:exactMatch mesh C032910 triadimefon lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:9669 Triamcinolone diacetate skos:exactMatch mesh C030262 triamcinolone diacetate lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:9670 Triamcinolone hexacetonide skos:exactMatch mesh C005900 triamcinolone hexacetonide lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:9673 triasulfuron skos:exactMatch mesh C094039 triasulfuron lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:9682 trichlopyr skos:exactMatch mesh C032742 triclopyr lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:9690 tricholomic acid skos:exactMatch mesh C064598 alpha-amino-3-oxo-5-isoxazolidineacetic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:9695 Triclofos skos:exactMatch mesh C004345 triclofos lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:9697 Tricrozarin A skos:exactMatch mesh C053757 tricrozarin A lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:9714 Trifolirhizin skos:exactMatch mesh C526230 trifolirhizin lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:9752 tritriacontane-16,18-dione skos:exactMatch mesh C071369 n-tritriacontane-16,18-dione lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:9786 Tylophorine skos:exactMatch mesh C004218 tylophorine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:9798 ethyl L-tyrosinate skos:exactMatch mesh C051772 ethyl tyrosine ester lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:9847 UH-301 skos:exactMatch mesh C064282 UH 301 lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:9861 Uncinatone skos:exactMatch mesh C530229 uncinatone lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:9889 urea-1-carboxylic acid skos:exactMatch mesh C054306 allophanic acid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:9910 Usambarensine skos:exactMatch mesh C070902 usambarensine lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:9925 sodium valproate skos:exactMatch mesh C420746 Epilim lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:9954 Verbenalin skos:exactMatch mesh C000511 cornin iridoid lexical 0.95 generate_chebi_mesh_mappings.py +chebi CHEBI:9955 (R)-(+)-verbenone skos:exactMatch mesh C052875 verbenone lexical 0.95 generate_chebi_mesh_mappings.py +doid DOID:0050041 Astrakhan spotted fever skos:exactMatch umls C0549160 North Asian Tick Typhus lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050042 Indian tick typhus skos:exactMatch umls C0343768 India tick typhus lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050061 erysipeloid skos:exactMatch umls C0014736 Erysipelothrix infection lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050061 erysipeloid skos:exactMatch umls C1276801 Infection due to Erysipelothrix rhusiopathiae (disorder) lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050129 secretory diarrhea skos:exactMatch umls C0267557 Secretory diarrhea lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050130 osmotic diarrhea skos:exactMatch umls C0267556 Osmotic diarrhea lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050132 inflammatory diarrhea skos:exactMatch umls C0521604 Inflammatory diarrhea lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050134 cutaneous mycosis skos:exactMatch umls C0011630 Dermatomycoses lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050135 subcutaneous mycosis skos:exactMatch umls C5230306 Subcutaneous mycosis lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050136 systemic mycosis skos:exactMatch umls C0553576 Systemic mycosis lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050138 podoconiosis skos:exactMatch umls C1280469 Podoconiosis lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050140 acute diarrhea skos:exactMatch umls C0740441 Acute diarrhea lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050141 intestinal botulism skos:exactMatch umls C1443901 Intestinal botulism lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050147 otomycosis skos:exactMatch umls C0029895 Otomycosis lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050150 Pontiac fever skos:exactMatch mesh D007877 Legionnaires' Disease lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050150 Pontiac fever skos:exactMatch umls C0343528 Pontiac Fever lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050159 lymphoid interstitial pneumonia skos:exactMatch umls C0264511 Lymphoid interstitial pneumonia lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050160 inhalation anthrax skos:exactMatch umls C0155866 Inhalational anthrax lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050167 autoimmune polyendocrine syndrome type 1 skos:exactMatch umls C0085859 Polyglandular Type I Autoimmune Syndrome lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050168 autoimmune polyendocrine syndrome type 2 skos:exactMatch umls C0085860 Autoimmune Syndrome Type II, Polyglandular lexical 0.5301999587713874 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050169 cutaneous lupus erythematosus skos:exactMatch umls C0024137 Lupus Erythematosus, Cutaneous lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050192 Nipah virus encephalitis skos:exactMatch mesh D045464 Henipavirus Infections lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050192 Nipah virus encephalitis skos:exactMatch umls C4303115 Nipah Virus Encephalitis lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050200 Korean hemorrhagic fever skos:exactMatch umls C0019101 Hemorrhagic Fever with Renal Syndrome lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050201 nephropathia epidemica skos:exactMatch umls C0004698 Balkan Nephropathy lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050201 nephropathia epidemica skos:exactMatch umls C0242993 Nephropathia Epidemica lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050202 lujo hemorrhagic fever skos:exactMatch umls C4274433 Lujo hemorrhagic fever lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050204 Epstein-Barr virus hepatitis skos:exactMatch umls C0554114 Epstein-Barr virus hepatitis lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050211 swine influenza skos:exactMatch mesh D009976 Orthomyxoviridae Infections lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050211 swine influenza skos:exactMatch umls C0276357 Swine influenza lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050211 swine influenza skos:exactMatch umls C2076600 Influenza due to Influenza A virus subtype H1N1 lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050211 swine influenza skos:exactMatch umls C2729499 novel 2009 influenza A (H1N1) infection lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050242 primary amebic meningoencephalitis skos:exactMatch mesh D020808 Central Nervous System Protozoal Infections lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050242 primary amebic meningoencephalitis skos:exactMatch umls C0300934 Primary Amebic Meningoencephalitis lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050246 granulomatous amebic encephalitis skos:exactMatch umls C0338428 Granulomatous amebic encephalitis lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050251 coenurosis skos:exactMatch mesh D003551 Cysticercosis lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050251 coenurosis skos:exactMatch umls C0009225 Coenuriasis lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050251 coenurosis skos:exactMatch umls C0010678 Cysticercosis lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050253 mesocestoidiasis skos:exactMatch umls C0277108 Infection by Mesocestoides lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050259 baylisascariasis skos:exactMatch umls C0277150 Infection by Baylisascaris lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050261 thelaziasis skos:exactMatch umls C0344058 Infection by Thelazia lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050266 tungiasis skos:exactMatch umls C0277356 Tunga penetrans infestation lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050268 ophthalmomyiasis skos:exactMatch umls C0027034 Ophthalmic myiasis lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050278 basidiobolomycosis skos:exactMatch umls C0343965 Infection by Basidiobolus lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050279 conidiobolomycosis skos:exactMatch umls C0276712 Infection by Conidiobolus lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050288 penicilliosis skos:exactMatch umls C0348993 talaromycosis lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050308 Alkhurma hemorrhagic fever skos:exactMatch umls C5230236 Alkhurma hemorrhagic fever lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050331 LADD syndrome skos:exactMatch umls C0265269 Lacrimoauriculodentodigital syndrome lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050332 enlarged vestibular aqueduct skos:exactMatch mesh C566366 Deafness, Autosomal Recessive 4 lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050332 enlarged vestibular aqueduct skos:exactMatch umls C1863752 Enlarged Vestibular Aqueduct lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050336 hypophosphatemia skos:exactMatch umls C0085682 Hypophosphatemia lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050336 hypophosphatemia skos:exactMatch umls C0595888 Serum phosphate concentration below normal lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050336 hypophosphatemia skos:exactMatch umls C4554637 Hypophosphatemia, CTCAE lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050352 foodborne botulism skos:exactMatch umls C1739094 Foodborne botulism lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050387 nonpapillary renal cell carcinoma skos:exactMatch umls C0279702 Conventional (Clear Cell) Renal Cell Carcinoma lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050398 Carrion's disease skos:exactMatch mesh D001474 Bartonella Infections lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050398 Carrion's disease skos:exactMatch umls C0004771 Bartonella Infections lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050398 Carrion's disease skos:exactMatch umls C0029307 Oroya Fever lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050398 Carrion's disease skos:exactMatch umls C4552012 Bartonella bacilliformis Infection lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050419 complement factor I deficiency skos:exactMatch umls C3463916 Complement Factor I (C3 inactivator) deficiency lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050480 epidemic typhus skos:exactMatch mesh D014438 Typhus, Epidemic Louse-Borne lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050480 epidemic typhus skos:exactMatch umls C0041473 Typhus, Epidemic Louse-Borne lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050481 endemic typhus skos:exactMatch mesh D014437 Typhus, Endemic Flea-Borne lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050481 endemic typhus skos:exactMatch umls C0041472 Endemic Flea-Borne Typhus lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050485 sennetsu fever skos:exactMatch umls C0520779 Sennetsu Fever lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050488 early congenital syphilis skos:exactMatch umls C0275859 Early congenital syphilis (less than 2 years) lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050489 multinodular goiter skos:exactMatch umls C0342208 Multinodular goiter lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050515 paralytic poliomyelitis skos:exactMatch umls C1405301 paralytic poliomyelitis lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050518 Ross River fever skos:exactMatch umls C0919833 Ross river virus infection lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050521 Oropouche fever skos:exactMatch mesh D002044 Bunyaviridae Infections lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050521 Oropouche fever skos:exactMatch umls C0276386 Oropouche Orthobunyavirus Infection lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050524 maturity-onset diabetes of the young skos:exactMatch mesh C562772 Mason-Type Diabetes lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050524 maturity-onset diabetes of the young skos:exactMatch umls C0342276 Maturity onset diabetes mellitus in young lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050524 maturity-onset diabetes of the young skos:exactMatch umls C2984262 Maturity Onset Diabetes of the Young Pathway lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050524 maturity-onset diabetes of the young skos:exactMatch umls C3888631 Monogenic diabetes lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050526 Gamstorp-Wohlfart syndrome skos:exactMatch mesh D020386 Isaacs Syndrome lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050526 Gamstorp-Wohlfart syndrome skos:exactMatch umls C0242287 Isaacs syndrome lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050529 adult spinal muscular atrophy skos:exactMatch mesh D009134 Muscular Atrophy, Spinal lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050529 adult spinal muscular atrophy skos:exactMatch umls C0270765 Myelopathic Muscular Atrophy lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050545 visceral heterotaxy skos:exactMatch efo 0009081 Heterotaxia lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050545 visceral heterotaxy skos:exactMatch mesh D059446 Heterotaxy Syndrome lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050545 visceral heterotaxy skos:exactMatch umls C0266642 Situs ambiguus lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050547 familial medullary thyroid carcinoma skos:exactMatch umls C1833921 Familial medullary thyroid carcinoma lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050548 hereditary sensory neuropathy skos:exactMatch mesh D009477 Hereditary Sensory and Autonomic Neuropathies lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050548 hereditary sensory neuropathy skos:exactMatch umls C0699739 Sensory Neuropathy, Hereditary lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050549 Saldino-Noonan syndrome skos:exactMatch mesh D012779 Short Rib-Polydactyly Syndrome lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050549 Saldino-Noonan syndrome skos:exactMatch umls C0036069 Saldino-Noonan Syndrome lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050553 JMP syndrome skos:exactMatch umls C1850568 Nakajo syndrome lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050558 Ullrich congenital muscular dystrophy skos:exactMatch umls C0410179 Ullrich congenital muscular dystrophy 1 lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050558 Ullrich congenital muscular dystrophy skos:exactMatch umls C4551860 Ullrich congenital muscular dystrophy lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050559 Fukuyama congenital muscular dystrophy skos:exactMatch mesh D058494 Walker-Warburg Syndrome lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050559 Fukuyama congenital muscular dystrophy skos:exactMatch umls C0410174 Fukuyama Type Congenital Muscular Dystrophy lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050560 Walker-Warburg syndrome skos:exactMatch umls C0265221 Walker-Warburg congenital muscular dystrophy lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050567 orofacial cleft skos:exactMatch umls C3266076 Orofacial cleft lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050568 spondylocostal dysostosis skos:exactMatch umls C0265343 Jarcho-Levin syndrome lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050569 Seckel syndrome skos:exactMatch umls C0265202 Seckel syndrome lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050571 congenital disorder of glycosylation type II skos:exactMatch umls C1842836 CONGENITAL DISORDER OF GLYCOSYLATION, TYPE Ii lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050572 cone-rod dystrophy skos:exactMatch umls C3489532 Cone-Rod Dystrophy 2 lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050572 cone-rod dystrophy skos:exactMatch umls C4085590 Cone-Rod Dystrophies lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050572 cone-rod dystrophy skos:exactMatch umls C4551714 Rod-Cone Dystrophy lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050573 2-hydroxyglutaric aciduria skos:exactMatch umls C2746066 Combined D-2- and L-2-hydroxyglutaric aciduria lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050576 Senior-Loken syndrome skos:exactMatch umls C0403553 Renal dysplasia and retinal aplasia (disorder) lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050581 brachydactyly skos:exactMatch umls C0221357 Brachydactyly lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050585 congenital generalized lipodystrophy skos:exactMatch umls C0221032 Familial generalized lipodystrophy lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050587 trichotillomania skos:exactMatch umls C0040953 Trichotillomania lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050590 severe congenital neutropenia skos:exactMatch mesh C537592 Neutropenia, Severe Congenital, Autosomal Recessive 3 lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050590 severe congenital neutropenia skos:exactMatch umls C0340970 Congenital neutropenia lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050590 severe congenital neutropenia skos:exactMatch umls C1853118 Severe congenital neutropenia lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050592 asphyxiating thoracic dystrophy skos:exactMatch umls C0265275 Jeune thoracic dystrophy lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050593 primary congenital glaucoma skos:exactMatch umls C1533041 Primary congenital glaucoma lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050598 extrapulmonary tuberculosis skos:exactMatch umls C0679362 Tuberculosis, extrapulmonary lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050600 ABCD syndrome skos:exactMatch umls C1838099 ABCD syndrome lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050601 ADULT syndrome skos:exactMatch umls C1863204 ADULT SYNDROME lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050602 triple-A syndrome skos:exactMatch mesh C536008 Achalasia Addisonianism Alacrimia syndrome lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050602 triple-A syndrome skos:exactMatch umls C0271742 Glucocorticoid deficiency with achalasia lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050603 acheiropody skos:exactMatch umls C0265559 Acheiropodia lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050604 acrocapitofemoral dysplasia skos:exactMatch umls C1843096 Acrocapitofemoral Dysplasia lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050605 acrodermatitis enteropathica skos:exactMatch umls C0221036 Acrodermatitis enteropathica lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050606 acrokeratosis verruciformis skos:exactMatch mesh D007644 Darier Disease lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050606 acrokeratosis verruciformis skos:exactMatch umls C0265971 Acrokeratosis Verruciformis of Hopf lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050610 oral cavity carcinoma in situ skos:exactMatch umls C4520775 Stage 0 Oral Cavity Cancer AJCC v6 and v7 lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050611 pharynx carcinoma in situ skos:exactMatch umls C0347098 Stage 0 Pharynx Carcinoma lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050612 gallbladder carcinoma in situ skos:exactMatch umls C4520772 Stage 0 Gallbladder Cancer AJCC v6 and v7 lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050615 respiratory system cancer skos:exactMatch umls C0814136 respiratory system cancer lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050626 gastrointestinal neuroendocrine tumor skos:exactMatch umls C2930967 Gastro-enteropancreatic neuroendocrine tumor lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050628 advanced sleep phase syndrome skos:exactMatch mesh D020178 Sleep Disorders, Circadian Rhythm lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050628 advanced sleep phase syndrome skos:exactMatch umls C0751758 Advanced Sleep Phase Syndrome lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050629 Aicardi-Goutieres syndrome skos:exactMatch umls C0393591 AICARDI-GOUTIERES SYNDROME lexical 0.761698618841476 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050630 Aland Island eye disease skos:exactMatch umls C0268505 Ocular albinism, type II lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050631 Allan-Herndon-Dudley syndrome skos:exactMatch umls C0795889 Allan-Herndon-Dudley syndrome (AHDS) lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050631 Allan-Herndon-Dudley syndrome skos:exactMatch umls C1420103 SLC16A2 gene lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050632 oculocutaneous albinism skos:exactMatch umls C0078918 Albinism, Oculocutaneous lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050633 ocular albinism skos:exactMatch umls C0078917 Albinism, Ocular lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050634 alopecia universalis skos:exactMatch mesh C537055 Alopecia universalis lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050634 alopecia universalis skos:exactMatch umls C0263505 Alopecia universalis lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050635 alternating hemiplegia of childhood skos:exactMatch umls C0338488 Alternating hemiplegia of childhood lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050637 Finnish type amyloidosis skos:exactMatch umls C0155127 Familial Amyloid Polyneuropathy, Type V lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050637 Finnish type amyloidosis skos:exactMatch umls C1622345 Meretoja syndrome lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050638 transthyretin amyloidosis skos:exactMatch umls C0268407 Senile cardiac amyloidosis lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050638 transthyretin amyloidosis skos:exactMatch umls C2751492 AMYLOIDOSIS, HEREDITARY, TRANSTHYRETIN-RELATED lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050639 primary cutaneous amyloidosis skos:exactMatch efo 1001882 cutaneous nodular amyloidosis lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050639 primary cutaneous amyloidosis skos:exactMatch umls C0268397 Amyloidosis, Primary Cutaneous lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050640 anauxetic dysplasia 1 skos:exactMatch umls C4551965 ANAUXETIC DYSPLASIA 1 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050641 Rh deficiency syndrome skos:exactMatch umls C0272052 Rh Deficiency Syndrome lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050642 hypochromic microcytic anemia skos:exactMatch umls C0271901 Microcytic hypochromic anemia (disorder) lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050644 arterial calcification of infancy skos:exactMatch umls C1859727 Arterial calcification of infancy lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050645 arterial tortuosity syndrome skos:exactMatch umls C1859726 ARTERIAL TORTUOSITY SYNDROME lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050646 distal arthrogryposis skos:exactMatch umls C0265213 Distal arthrogryposis syndrome lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050648 atelosteogenesis skos:exactMatch umls C0265283 Atelosteogenesis, type 1 lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050649 atransferrinemia skos:exactMatch mesh C538259 Congenital atransferrinemia lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050649 atransferrinemia skos:exactMatch umls C0521802 Congenital atransferrinemia lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050650 familial atrial fibrillation skos:exactMatch mesh D001281 Atrial Fibrillation lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050650 familial atrial fibrillation skos:exactMatch umls C3468561 familial atrial fibrillation lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050655 Bamforth-Lazarus syndrome skos:exactMatch umls C1855794 Bamforth syndrome lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050656 pseudo-TORCH syndrome 1 skos:exactMatch umls C4552078 PSEUDO-TORCH SYNDROME 1 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050657 Bannayan-Riley-Ruvalcaba syndrome skos:exactMatch umls C0018553 Hamartoma Syndrome, Multiple lexical 0.5394763966192538 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050657 Bannayan-Riley-Ruvalcaba syndrome skos:exactMatch umls C0265326 Bannayan-Riley-Ruvalcaba Syndrome lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050658 Bart-Pumphrey syndrome skos:exactMatch umls C0266004 Knuckle pads, leuconychia and sensorineural deafness lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050659 biotin-responsive basal ganglia disease skos:exactMatch umls C1843807 Basal ganglia disease, biotin-responsive lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050660 Beare-Stevenson cutis gyrata syndrome skos:exactMatch mesh C565129 Cutis Gyrata Syndrome of Beare And Stevenson lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050660 Beare-Stevenson cutis gyrata syndrome skos:exactMatch umls C1852406 Cutis Gyrata Syndrome of Beare And Stevenson lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050661 vitelliform macular dystrophy skos:exactMatch umls C0339510 Vitelliform Macular Dystrophy lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050662 bestrophinopathy skos:exactMatch umls C2678493 BESTROPHINOPATHY lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050663 Bethlem myopathy skos:exactMatch umls C1834674 BETHLEM MYOPATHY 1 lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050664 Bietti crystalline corneoretinal dystrophy skos:exactMatch umls C1859486 BIETTI CRYSTALLINE CORNEORETINAL DYSTROPHY lexical 0.761698618841476 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050665 fetal alcohol syndrome skos:exactMatch umls C0015923 Fetal Alcohol Syndrome lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050665 fetal alcohol syndrome skos:exactMatch umls C1542327 Fetus or newborn affected by alcohol transmitted via placenta or breast milk lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050666 partial fetal alcohol syndrome skos:exactMatch umls C3661483 Partial Fetal Alcohol Syndrome lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050667 alcohol-related neurodevelopmental disorder skos:exactMatch umls C0814154 Alcohol Related Neurodevelopmental Disorder lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050668 alcohol-related birth defect skos:exactMatch umls C3146244 Alcohol Related Birth Defect lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050669 spastic cerebral palsy skos:exactMatch mesh D002547 Cerebral Palsy lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050669 spastic cerebral palsy skos:exactMatch umls C0338596 Spastic cerebral palsy lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050670 ataxic cerebral palsy skos:exactMatch mesh C562856 Cerebral Palsy, Ataxic, Autosomal Recessive lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050670 ataxic cerebral palsy skos:exactMatch umls C0394005 Ataxic cerebral palsy lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050671 female breast cancer skos:exactMatch umls C0007104 Female Breast Carcinoma lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050671 female breast cancer skos:exactMatch umls C0235653 Malignant neoplasm of female breast lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050672 dyskinetic cerebral palsy skos:exactMatch mesh D002547 Cerebral Palsy lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050672 dyskinetic cerebral palsy skos:exactMatch umls C0270742 Athetoid cerebral palsy lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050673 mixed cerebral palsy skos:exactMatch mesh D002547 Cerebral Palsy lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050673 mixed cerebral palsy skos:exactMatch umls C0751024 Cerebral Palsy, Mixed lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050675 Birk-Barel syndrome skos:exactMatch umls C2676770 Birk-Barel Mental Retardation Dysmorphism Syndrome lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050676 Birt-Hogg-Dube syndrome skos:exactMatch umls C0346010 Multiple fibrofolliculomas lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050678 Blau syndrome skos:exactMatch mesh C538157 Blau syndrome lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050678 Blau syndrome skos:exactMatch umls C1861303 SYNOVITIS, GRANULOMATOUS, WITH UVEITIS AND CRANIAL NEUROPATHIES (disorder) lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050678 Blau syndrome skos:exactMatch umls C5201146 Blau syndrome lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050679 blue cone monochromacy skos:exactMatch mesh C536238 Blue cone monochromatism lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050679 blue cone monochromacy skos:exactMatch umls C0339537 Cone monochromatism lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050680 Boomerang dysplasia skos:exactMatch umls C0432201 Boomerang dysplasia lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050682 Athabaskan brainstem dysgenesis syndrome skos:exactMatch umls C1832215 Athabaskan brainstem dysgenesis lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050683 Bothnia retinal dystrophy skos:exactMatch umls C1843816 Bothnia Retinal Dystrophy lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050685 small cell carcinoma skos:exactMatch mesh D018288 Carcinoma, Small Cell lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050688 anal canal cancer skos:exactMatch umls C0153445 Malignant neoplasm of anal canal lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050688 anal canal cancer skos:exactMatch umls C0563211 Carcinoma of anal canal lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050689 brachydactyly-syndactyly syndrome skos:exactMatch umls C1853137 BRACHYDACTYLY-SYNDACTYLY SYNDROME lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050690 brachyolmia skos:exactMatch umls C0432228 Brachyolmia lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050691 branchiooculofacial syndrome skos:exactMatch mesh D019280 Branchio-Oto-Renal Syndrome lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050691 branchiooculofacial syndrome skos:exactMatch umls C0376524 Branchio-Oculo-Facial Syndrome lexical 0.7621109049680478 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050692 Brody myopathy skos:exactMatch umls C1832918 Brody myopathy lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050693 Brooke-Spiegler syndrome skos:exactMatch mesh C536611 Familial cylindromatosis lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050694 Brown-Vialetto-Van Laere syndrome skos:exactMatch umls C0796274 Brown-Vialetto-Van Laere Syndrome 1 lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050694 Brown-Vialetto-Van Laere syndrome skos:exactMatch umls C4551777 Brown-Vialetto-Van Laere syndrome lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050696 fetal alcohol spectrum disorder skos:exactMatch umls C2985290 Fetal Alcohol Spectrum Disorders lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050697 chorioamnionitis skos:exactMatch umls C0008495 Chorioamnionitis lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050698 funisitis skos:exactMatch mesh D002821 Chorioamnionitis lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050698 funisitis skos:exactMatch umls C1275592 Funisitis (disorder) lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050709 early infantile epileptic encephalopathy skos:exactMatch mesh C567924 Infantile Epileptic-Dyskinetic Encephalopathy lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050709 early infantile epileptic encephalopathy skos:exactMatch umls C4552072 X-linked infantile spasms lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050710 3-Methylcrotonyl-CoA carboxylase deficiency skos:exactMatch umls C0268600 3-methylcrotonyl CoA carboxylase 1 deficiency lexical 0.5301999587713874 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050710 3-Methylcrotonyl-CoA carboxylase deficiency skos:exactMatch umls C4551505 Methylcrotonyl-CoA carboxylase deficiency lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050711 aceruloplasminemia skos:exactMatch mesh C536004 Familial apoceruloplasmin deficiency lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050711 aceruloplasminemia skos:exactMatch umls C0878682 Ceruloplasmin deficiency lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050712 AGAT deficiency skos:exactMatch umls C2675179 Arginine:Glycine Amidinotransferase Deficiency lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050720 ornithine translocase deficiency skos:exactMatch umls C0268540 HHH syndrome lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050722 PHGDH deficiency skos:exactMatch umls C1866174 Phosphoglycerate Dehydrogenase Deficiency lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050723 PSAT deficiency skos:exactMatch umls C1970253 Phosphoserine Aminotransferase Deficiency lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050725 tyrosinemia type II skos:exactMatch umls C0268487 Tyrosine Transaminase Deficiency Disease lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050726 tyrosinemia type I skos:exactMatch mesh D020176 Tyrosinemias lexical 0.5209235209235209 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050726 tyrosinemia type I skos:exactMatch umls C0268490 Tyrosinemia, Type I lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050727 tyrosinemia type III skos:exactMatch umls C0268623 Tyrosinemia, Type III lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050729 neutral lipid storage disease skos:exactMatch umls C0268238 Triglyceride storage disease with ichthyosis lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050731 vitamin B12 deficiency skos:exactMatch umls C0042847 Vitamin B 12 Deficiency lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050734 congenital intrinsic factor deficiency skos:exactMatch umls C0340957 Congenital deficiency of intrinsic factor lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050740 Qazi Markouizos syndrome skos:exactMatch umls C2931142 Qazi Markouizos syndrome lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050741 alcohol dependence skos:exactMatch mesh D000437 Alcoholism lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050741 alcohol dependence skos:exactMatch umls C0001973 Alcoholic Intoxication, Chronic lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050743 mature T-cell and NK-cell lymphoma skos:exactMatch umls C0079774 Peripheral T-Cell Lymphoma lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050744 anaplastic large cell lymphoma skos:exactMatch umls C0206180 Ki-1+ Anaplastic Large Cell Lymphoma lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050744 anaplastic large cell lymphoma skos:exactMatch umls C1332182 Adult Anaplastic Large Cell Lymphoma lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050744 anaplastic large cell lymphoma skos:exactMatch umls C1332942 Childhood Anaplastic Large Cell Lymphoma lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050745 diffuse large B-cell lymphoma skos:exactMatch umls C0079744 Diffuse Large B-Cell Lymphoma lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050745 diffuse large B-cell lymphoma skos:exactMatch umls C1332201 Adult Diffuse Large B-Cell Lymphoma lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050745 diffuse large B-cell lymphoma skos:exactMatch umls C1332967 Childhood Diffuse Large B-Cell Lymphoma lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050746 mantle cell lymphoma skos:exactMatch umls C0334634 Malignant lymphoma, lymphocytic, intermediate differentiation, diffuse lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050746 mantle cell lymphoma skos:exactMatch umls C4721414 Mantle cell lymphoma lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050748 marginal zone B-cell lymphoma skos:exactMatch mesh D018442 Lymphoma, B-Cell, Marginal Zone lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050748 marginal zone B-cell lymphoma skos:exactMatch umls C0242647 Mucosa-Associated Lymphoid Tissue Lymphoma lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050748 marginal zone B-cell lymphoma skos:exactMatch umls C1367654 Marginal Zone B-Cell Lymphoma lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050749 peripheral T-cell lymphoma skos:exactMatch umls C0079774 Peripheral T-Cell Lymphoma lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050750 splenic marginal zone lymphoma skos:exactMatch umls C0349632 Splenic Marginal Zone B-Cell Lymphoma lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050751 T-cell large granular lymphocyte leukemia skos:exactMatch mesh D054066 Leukemia, Large Granular Lymphocytic lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050751 T-cell large granular lymphocyte leukemia skos:exactMatch umls C1955861 T-Cell Large Granular Lymphocyte Leukemia lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050753 cerebellar ataxia skos:exactMatch umls C0007758 Cerebellar Ataxia lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050755 ataxia with oculomotor apraxia type 2 skos:exactMatch umls C1853761 SPINOCEREBELLAR ATAXIA, AUTOSOMAL RECESSIVE 1 lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050757 deafness-dystonia-optic neuronopathy syndrome skos:exactMatch umls C0796074 MOHR-TRANEBJAERG SYNDROME lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050758 metabolic acidosis skos:exactMatch mesh D000138 Acidosis lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050758 metabolic acidosis skos:exactMatch umls C0220981 Metabolic acidosis lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050760 X-linked myopathy with excessive autophagy skos:exactMatch umls C1839615 X-linked myopathy with excessive autophagy lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050763 ARC syndrome skos:exactMatch mesh C535382 Arthrogryposis renal dysfunction cholestasis syndrome lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050763 ARC syndrome skos:exactMatch umls C1859722 Arthrogryposis, renal dysfunction, and cholestasis 1 lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050763 ARC syndrome skos:exactMatch umls C4551984 Arthrogryposis with renal dysfunction and cholestasis syndrome lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050764 Armfield syndrome skos:exactMatch umls C4305022 X-linked intellectual disability Armfield type lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050765 neuroacanthocytosis skos:exactMatch umls C0393576 Chorea Acanthocytosis Syndrome lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050765 neuroacanthocytosis skos:exactMatch umls C1421537 XK gene lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050768 mitochondrial complex V (ATP synthase) deficiency, nuclear type 1 skos:exactMatch umls C3276276 MITOCHONDRIAL COMPLEX V (ATP SYNTHASE) DEFICIENCY, NUCLEAR TYPE 1 lexical 0.7338693052978766 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050769 N syndrome skos:exactMatch umls C2936859 N syndrome lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050770 polycystic liver disease skos:exactMatch mesh C536330 Polycystic liver disease lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050770 polycystic liver disease skos:exactMatch umls C0158683 Polycystic liver disease lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050770 polycystic liver disease skos:exactMatch umls C1418927 PRKCSH gene lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050771 pheochromocytoma skos:exactMatch umls C0031511 Pheochromocytoma lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050771 pheochromocytoma skos:exactMatch umls C4551683 Adrenal Gland Pheochromocytoma lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050775 schneckenbecken dysplasia skos:exactMatch umls C0432194 Schneckenbecken dysplasia lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050777 Joubert syndrome skos:exactMatch mesh C536293 Agenesis of Cerebellar Vermis lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050777 Joubert syndrome skos:exactMatch umls C0431399 Familial aplasia of the vermis lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050778 Meckel syndrome skos:exactMatch mesh C536133 Meckel syndrome type 1 lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050779 hydrolethalus syndrome skos:exactMatch umls C2931104 Hydrolethalus syndrome lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050780 Opitz-GBBB syndrome skos:exactMatch mesh C538387 Hypertelorism with esophageal abnormality and hypospadias lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050780 Opitz-GBBB syndrome skos:exactMatch umls C1801950 Opitz-G syndrome, type 2 lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050781 Ogden syndrome skos:exactMatch umls C3275447 Ogden syndrome lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050786 iridogoniodysgenesis syndrome skos:exactMatch umls C1842031 IRIDOGONIODYSGENESIS, TYPE 2 lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050787 juvenile polyposis syndrome skos:exactMatch umls C0345893 Juvenile polyposis syndrome lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050788 proximal symphalangism skos:exactMatch umls C1861385 SYMPHALANGISM, PROXIMAL lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050789 tarsal-carpal coalition syndrome skos:exactMatch umls C1861305 TARSAL-CARPAL COALITION SYNDROME lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050790 fibular hypoplasia and complex brachydactyly skos:exactMatch umls C1856738 Fibular hypoplasia and complex brachydactyly lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050793 short QT syndrome skos:exactMatch umls C2348199 Short Qt Syndrome lexical 0.761698618841476 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050794 multiple synostoses syndrome skos:exactMatch umls C0175700 Multiple synostosis syndrome lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050795 cone dystrophy skos:exactMatch umls C0730290 Cone Dystrophy lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050795 cone dystrophy skos:exactMatch umls C3665342 Progressive Cone Dystrophy lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050799 guanidinoacetate methyltransferase deficiency skos:exactMatch umls C0574080 Guanidinoacetate methyltransferase deficiency lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050800 creatine transporter deficiency skos:exactMatch mesh C535598 Creatine deficiency, X-linked lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050800 creatine transporter deficiency skos:exactMatch umls C1845862 Creatine deficiency, X-linked lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050801 androgenic alopecia skos:exactMatch umls C0162311 Androgenetic Alopecia lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050801 androgenic alopecia skos:exactMatch umls C4083212 Alopecia, Male Pattern lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050807 Kahrizi syndrome skos:exactMatch umls C2675185 Kahrizi Syndrome lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050809 mucopolysaccharidosis IX skos:exactMatch umls C4728144 Mucopolysaccharidosis IX lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050810 biotin deficiency skos:exactMatch umls C0268680 Biotin deficiency lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050810 biotin deficiency skos:exactMatch umls C2937225 Biotin deficiency disease lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050812 spondyloepimetaphyseal dysplasia, Pakistani type skos:exactMatch umls C2748515 Spondyloepimetaphyseal Dysplasia, Pakistani Type lexical 0.7338693052978766 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050813 spondyloepiphyseal dysplasia with congenital joint dislocations skos:exactMatch umls C1837657 Spondyloepiphyseal dysplasia, Omani type lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050816 urofacial syndrome skos:exactMatch umls C0403555 Ochoa syndrome lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050816 urofacial syndrome skos:exactMatch umls C1425482 HPSE2 gene lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050817 Stargardt disease skos:exactMatch mesh D000080362 Stargardt Disease lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050817 Stargardt disease skos:exactMatch umls C0271093 Stargardt's disease lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050817 Stargardt disease skos:exactMatch umls C1412063 ABCA4 gene lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050818 transcobalamin II deficiency skos:exactMatch umls C0342701 Transcobalamin II deficiency lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050821 first-degree atrioventricular block skos:exactMatch umls C0085614 First degree atrioventricular block lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050821 first-degree atrioventricular block skos:exactMatch umls C2108089 Continuous electrocardiogram first degree atrioventricular block lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050821 first-degree atrioventricular block skos:exactMatch umls C3715208 AV Block First Degree by ECG Finding lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050822 second-degree atrioventricular block skos:exactMatch umls C0264906 Second degree atrioventricular block lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050822 second-degree atrioventricular block skos:exactMatch umls C2108099 continuous electrocardiogram second degree atrioventricular block lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050822 second-degree atrioventricular block skos:exactMatch umls C3714697 AV Block Second Degree by ECG Finding lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050823 third-degree atrioventricular block skos:exactMatch umls C0151517 Complete atrioventricular block lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050823 third-degree atrioventricular block skos:exactMatch umls C2215935 Electrocardiogram atrioventricular block complete heart block lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050824 sinoatrial node disease skos:exactMatch umls C0037052 Sick Sinus Syndrome lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050827 rheumatic heart disease skos:exactMatch umls C0035439 Rheumatic Heart Disease lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050828 artery disease skos:exactMatch umls C0852949 Arteriopathic disease lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050830 peripheral artery disease skos:exactMatch umls C1704436 Peripheral Arterial Diseases lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050830 peripheral artery disease skos:exactMatch umls C4025272 Peripheral arterial stenosis lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050831 familial encephalopathy with neuroserpin inclusion bodies skos:exactMatch umls C1858680 Familial encephalopathy with neuroserpin inclusion bodies lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050833 orotic aciduria skos:exactMatch umls C0268128 Orotic aciduria lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050833 orotic aciduria skos:exactMatch umls C0268130 Hereditary orotic aciduria, type 1 lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050836 focal dystonia skos:exactMatch mesh D020821 Dystonic Disorders lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050836 focal dystonia skos:exactMatch umls C0743332 Focal Dystonia lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050838 segmental dystonia skos:exactMatch umls C1997740 Segmental dystonia lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050839 anismus skos:exactMatch umls C0267601 Anismus lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050840 cervical dystonia skos:exactMatch umls C0152116 Spasmodic torticollis lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050842 oculogyric crisis skos:exactMatch umls C0085637 Oculogyric crisis lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050843 oromandibular dystonia skos:exactMatch umls C2242577 Oromandibular dystonia lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050845 cranio-facial dystonia skos:exactMatch umls C4023011 Craniofacial dystonia lexical 0.7713873428159143 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050846 hemidystonia skos:exactMatch umls C1960561 Hemidystonia lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050850 diabetic encephalopathy skos:exactMatch umls C1868773 Diabetic encephalopathy lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050851 glomerulosclerosis skos:exactMatch umls C0178664 Glomerulosclerosis (disorder) lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050851 glomerulosclerosis skos:exactMatch umls C1417247 MPV17 gene lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050852 limb ischemia skos:exactMatch umls C2945695 Limb ischemia lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050853 chronic venous insufficiency skos:exactMatch umls C1306557 Chronic venous insufficiency lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050856 oppositional defiant disorder skos:exactMatch mesh D019958 Attention Deficit and Disruptive Behavior Disorders lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050856 oppositional defiant disorder skos:exactMatch umls C0029121 Oppositional Defiant Disorder lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050857 Perrault syndrome skos:exactMatch umls C0685838 Gonadal dysgenesis XX type deafness lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050858 Marshall-Smith syndrome skos:exactMatch umls C0265211 Marshall-Smith syndrome lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050859 hemorrhagic cystitis skos:exactMatch umls C0085692 Hemorrhagic cystitis lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050860 colorectal adenoma skos:exactMatch umls C1302401 Adenoma of large intestine lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050861 colorectal adenocarcinoma skos:exactMatch umls C1319315 Adenocarcinoma of large intestine lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050862 pyometritis skos:exactMatch umls C0686163 Pyometritis lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050863 arteritic anterior ischemic optic neuropathy skos:exactMatch umls C2242711 Arteritic anterior ischemic optic neuropathy lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050864 non-arteritic anterior ischemic optic neuropathy skos:exactMatch mesh D018917 Optic Neuropathy, Ischemic lexical 0.549165120593692 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050864 non-arteritic anterior ischemic optic neuropathy skos:exactMatch umls C1852242 Nonarteritic anterior ischemic optic neuropathy (NAION) lexical 0.549165120593692 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050866 oral squamous cell carcinoma skos:exactMatch mesh D000077195 Squamous Cell Carcinoma of Head and Neck lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050866 oral squamous cell carcinoma skos:exactMatch umls C0585362 Squamous cell carcinoma of mouth lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050868 hepatocellular adenoma skos:exactMatch mesh D018248 Adenoma, Liver Cell lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050868 hepatocellular adenoma skos:exactMatch umls C0206669 Hepatocellular Adenoma lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050869 villous adenoma skos:exactMatch umls C0206674 Adenoma, Villous lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050871 fibroma skos:exactMatch umls C0016045 fibroma lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050872 large cell neuroendocrine carcinoma skos:exactMatch umls C1265996 Large cell neuroendocrine carcinoma lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050873 follicular lymphoma skos:exactMatch umls C0024301 Lymphoma, Follicular lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050877 pancreatic agenesis skos:exactMatch umls C5195568 Pancreatic agenesis lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050880 Koolen de Vries syndrome skos:exactMatch umls C1864871 Chromosome 17q21.31 Deletion Syndrome lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050882 spinocerebellar ataxia type 5 skos:exactMatch umls C0752123 Spinocerebellar Ataxia Type 5 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050883 infantile cerebellar-retinal degeneration skos:exactMatch umls C3281192 Infantile cerebellar and retinal degeneration lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050884 triosephosphate isomerase deficiency skos:exactMatch mesh C566029 Triosephosphate Isomerase Deficiency lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050884 triosephosphate isomerase deficiency skos:exactMatch umls C1860808 Triosephosphate Isomerase Deficiency lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050885 IMAGe syndrome skos:exactMatch umls C1846009 Intrauterine growth restriction, metaphyseal dysplasia, adrenal hypoplasia congenita, and genital anomaly syndrome lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050886 Troyer syndrome skos:exactMatch umls C0393559 Troyer syndrome lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050887 Townes-Brocks syndrome skos:exactMatch mesh C536974 Townes-Brocks syndrome lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050887 Townes-Brocks syndrome skos:exactMatch umls C0265246 Townes syndrome lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050890 synucleinopathy skos:exactMatch umls C5191670 Synucleinopathies lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050891 adrenal cortical adenoma skos:exactMatch mesh D018246 Adrenocortical Adenoma lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050891 adrenal cortical adenoma skos:exactMatch umls C0206667 Adrenal Cortical Adenoma lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050892 adrenal gland pheochromocytoma skos:exactMatch umls C4551683 Adrenal Gland Pheochromocytoma lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050893 gallbladder adenoma skos:exactMatch umls C0238137 Gallbladder adenoma lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050894 ameloblastoma skos:exactMatch umls C0002448 Ameloblastoma lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050904 salivary gland carcinoma skos:exactMatch umls C0948750 Salivary gland carcinoma lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050905 inflammatory myofibroblastic tumor skos:exactMatch umls C0334121 Inflammatory Myofibroblastic Tumor lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050906 conjunctival nevus skos:exactMatch umls C0346363 Nevus of conjunctiva lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050909 MALT lymphoma skos:exactMatch umls C0242647 Mucosa-Associated Lymphoid Tissue Lymphoma lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050909 MALT lymphoma skos:exactMatch umls C1850900 Familial primary gastric lymphoma lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050911 appendix carcinoid tumor skos:exactMatch umls C0334298 Carcinoid tumor of appendix lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050912 colon adenoma skos:exactMatch umls C4551463 Colon adenoma lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050913 large intestine adenocarcinoma skos:exactMatch umls C1319315 Adenocarcinoma of large intestine lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050914 large intestine adenoma skos:exactMatch umls C1302401 Adenoma of large intestine lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050918 vaginal carcinoma skos:exactMatch umls C0262659 Vagina Carcinoma lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050920 tonsil squamous cell carcinoma skos:exactMatch umls C0280317 Squamous cell carcinoma of tonsil lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050922 gastrointestinal carcinoma skos:exactMatch umls C0151544 Gastrointestinal carcinoma lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050926 jejunal adenocarcinoma skos:exactMatch umls C4072935 Jejunal adenocarcinoma lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050928 ovarian melanoma skos:exactMatch umls C4761026 Ovarian melanoma lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050929 mucosal melanoma skos:exactMatch umls C3898222 Mucosal Melanoma lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050931 parotid gland adenoid cystic carcinoma skos:exactMatch umls C1335355 Adenoid cystic carcinoma of parotid gland lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050932 lung mucoepidermoid carcinoma skos:exactMatch umls C1708778 mucoepidermoid carcinoma of lung lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050933 ovarian serous carcinoma skos:exactMatch umls C1335177 Ovarian Serous Adenocarcinoma lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050934 ovarian clear cell carcinoma skos:exactMatch umls C3544205 Ovarian clear cell carcinoma lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050936 extra-adrenal pheochromocytoma skos:exactMatch mesh D010673 Pheochromocytoma lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050936 extra-adrenal pheochromocytoma skos:exactMatch umls C1257877 Pheochromocytoma, Extra-Adrenal lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050937 retroperitoneal neuroblastoma skos:exactMatch umls C2211613 neuroblastoma of retroperitoneum lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050940 endocervical adenocarcinoma skos:exactMatch umls C1263762 Endocervical adenocarcinoma lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050940 endocervical adenocarcinoma skos:exactMatch umls C1299237 Endocervical Carcinoma lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050946 Charlevoix-Saguenay spastic ataxia skos:exactMatch umls C1849140 SPASTIC ATAXIA, CHARLEVOIX-SAGUENAY TYPE lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050947 hereditary hypophosphatemic rickets with hypercalciuria skos:exactMatch umls C1853271 HYPOPHOSPHATEMIC RICKETS WITH HYPERCALCIURIA, HEREDITARY lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050948 autosomal dominant hypophosphatemic rickets skos:exactMatch umls C0342642 Autosomal dominant hypophosphatemic rickets lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050949 autosomal recessive hypophosphatemic rickets skos:exactMatch umls C0342643 Autosomal recessive hypophosphatemic vitamin D refractory rickets lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050951 hereditary ataxia skos:exactMatch mesh D013132 Spinocerebellar Degenerations lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050951 hereditary ataxia skos:exactMatch umls C0004138 Ataxias, Hereditary lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050952 spastic ataxia skos:exactMatch umls C1849156 Spastic Ataxia lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050954 spinocerebellar ataxia type 1 skos:exactMatch umls C0752120 Spinocerebellar Ataxia Type 1 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050955 spinocerebellar ataxia type 2 skos:exactMatch umls C0752121 Spinocerebellar Ataxia Type 2 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050956 spinocerebellar ataxia type 6 skos:exactMatch umls C0752124 Spinocerebellar Ataxia Type 6 (disorder) lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050958 spinocerebellar ataxia type 7 skos:exactMatch umls C0752125 Spinocerebellar Ataxia Type 7 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050959 spinocerebellar ataxia type 8 skos:exactMatch umls C1837454 SPINOCEREBELLAR ATAXIA 8 lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050960 spinocerebellar ataxia type 10 skos:exactMatch umls C1963674 Spinocerebellar Ataxia 10 lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050961 spinocerebellar ataxia type 11 skos:exactMatch umls C1858351 SPINOCEREBELLAR ATAXIA 11 lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050962 spinocerebellar ataxia type 12 skos:exactMatch umls C1858501 Spinocerebellar Ataxia 12 lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050963 spinocerebellar ataxia type 13 skos:exactMatch umls C1854488 Spinocerebellar ataxia 13 lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050964 spinocerebellar ataxia type 14 skos:exactMatch umls C1854369 Spinocerebellar ataxia 14 lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050967 spinocerebellar ataxia type 17 skos:exactMatch umls C1846707 SPINOCEREBELLAR ATAXIA 17 lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050969 spinocerebellar ataxia type 18 skos:exactMatch umls C1843884 SPINOCEREBELLAR ATAXIA 18 lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050970 spinocerebellar ataxia type 19/22 skos:exactMatch umls C5235656 Spinocerebellar Ataxia Type 19/22 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050971 spinocerebellar ataxia type 20 skos:exactMatch umls C1837541 SPINOCEREBELLAR ATAXIA 20 lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050972 spinocerebellar ataxia type 21 skos:exactMatch umls C1843891 SPINOCEREBELLAR ATAXIA 21 lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050973 spinocerebellar ataxia type 23 skos:exactMatch umls C1853250 SPINOCEREBELLAR ATAXIA 23 lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050974 spinocerebellar ataxia type 25 skos:exactMatch umls C1837518 Spinocerebellar ataxia 25 lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050975 spinocerebellar ataxia type 26 skos:exactMatch umls C1836395 SPINOCEREBELLAR ATAXIA 26 lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050976 spinocerebellar ataxia type 27 skos:exactMatch umls C1836383 SPINOCEREBELLAR ATAXIA 27 lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050977 spinocerebellar ataxia type 28 skos:exactMatch umls C1853249 SPINOCEREBELLAR ATAXIA 28 lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050978 spinocerebellar ataxia type 29 skos:exactMatch umls C1861732 SPINOCEREBELLAR ATAXIA 29 lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050979 spinocerebellar ataxia type 30 skos:exactMatch umls C2936793 Spinocerebellar ataxia 30 lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050980 spinocerebellar ataxia type 31 skos:exactMatch umls C1861736 SPINOCEREBELLAR ATAXIA 31 (disorder) lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050981 spinocerebellar ataxia type 34 skos:exactMatch umls C1851481 Erythrokeratodermia with ataxia lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050982 spinocerebellar ataxia type 35 skos:exactMatch umls C3888031 SPINOCEREBELLAR ATAXIA 35 lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050983 spinocerebellar ataxia type 36 skos:exactMatch umls C3472711 Spinocerebellar ataxia 36 lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050984 spinocerebellar ataxia type 37 skos:exactMatch umls C3889636 SPINOCEREBELLAR ATAXIA 37 lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050985 spinocerebellar ataxia type 38 skos:exactMatch umls C4518337 Spinocerebellar ataxia type 38 (disorder) lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050986 spinocerebellar ataxia type 40 skos:exactMatch umls C4518336 Spinocerebellar ataxia type 40 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050987 hypomyelinating leukoencephalopathy skos:exactMatch umls C3552720 Hypomyelinating leukoencephalopathy lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050989 episodic ataxia type 1 skos:exactMatch umls C1719788 Episodic ataxia type 1 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050990 episodic ataxia type 2 skos:exactMatch umls C1720416 Episodic ataxia type 2 (disorder) lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050991 episodic ataxia type 3 skos:exactMatch umls C1847839 Episodic Ataxia, Type 3 lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050992 episodic ataxia type 4 skos:exactMatch umls C1847843 EPISODIC ATAXIA, TYPE 4 lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050993 episodic ataxia type 5 skos:exactMatch umls C1866039 EPISODIC ATAXIA, TYPE 5 lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050994 episodic ataxia type 6 skos:exactMatch umls C2675211 EPISODIC ATAXIA, TYPE 6 (disorder) lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050995 episodic ataxia type 7 skos:exactMatch umls C2677843 Episodic Ataxia, Type 7 lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0050996 episodic ataxia type 8 skos:exactMatch umls C4015108 Episodic ataxia with slurred speech lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060000 infective endocarditis skos:exactMatch mesh D004696 Endocarditis lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060000 infective endocarditis skos:exactMatch umls C0014121 Bacterial Endocarditis lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060000 infective endocarditis skos:exactMatch umls C1541923 Infective endocarditis lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060002 C1 inhibitor deficiency skos:exactMatch mesh D054179 Angioedemas, Hereditary lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060002 C1 inhibitor deficiency skos:exactMatch umls C0019243 Angioedemas, Hereditary lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060010 Omenn syndrome skos:exactMatch mesh D016511 Severe Combined Immunodeficiency lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060010 Omenn syndrome skos:exactMatch umls C2700553 Omenn Syndrome lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060016 CD3delta deficiency skos:exactMatch umls C3810147 IMMUNODEFICIENCY 19 lexical 0.549165120593692 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060017 CD3epsilon deficiency skos:exactMatch umls C3810127 IMMUNODEFICIENCY 18 lexical 0.549165120593692 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060018 CD3gamma deficiency skos:exactMatch umls C3810107 IMMUNODEFICIENCY 17 lexical 0.549165120593692 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060022 CD40 ligand deficiency skos:exactMatch umls C2348037 CD40 Ligand Deficiency lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060028 Good syndrome skos:exactMatch umls C0221027 Immunodeficiency with thymoma lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060038 specific developmental disorder skos:exactMatch umls C0037785 specific developmental disorder lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060041 autism spectrum disorder skos:exactMatch umls C0524528 Pervasive Development Disorder lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060041 autism spectrum disorder skos:exactMatch umls C1510586 Autism Spectrum Disorders lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060042 atypical autism skos:exactMatch umls C0338986 Atypical autism lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060043 sexual disorder skos:exactMatch umls C0549622 Sexual Dysfunction lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060046 aphasia skos:exactMatch umls C0003537 Aphasia lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060047 writing disorder skos:exactMatch umls C0860614 Developmental writing disorder lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060048 nosophobia skos:exactMatch umls C0522182 Nosophobia lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060057 gluten allergy skos:exactMatch umls C5139492 Gluten allergy lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060060 non-Hodgkin lymphoma skos:exactMatch umls C0024305 Lymphoma, Non-Hodgkin lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060060 non-Hodgkin lymphoma skos:exactMatch umls C0220605 Adult Non-Hodgkin Lymphoma lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060060 non-Hodgkin lymphoma skos:exactMatch umls C0220612 Childhood Non-Hodgkin Lymphoma lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060060 non-Hodgkin lymphoma skos:exactMatch umls C3539720 NCI CTEP SDC Non-Hodgkin Lymphoma Sub-Category Terminology lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060060 non-Hodgkin lymphoma skos:exactMatch umls C4721532 Lymphoma, Non-Hodgkin, Familial lexical 0.5394763966192538 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060061 cutaneous T cell lymphoma skos:exactMatch umls C0079773 Lymphoma, T-Cell, Cutaneous lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060062 familial juvenile hyperuricemic nephropathy skos:exactMatch mesh C537696 Juvenile gout lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060062 familial juvenile hyperuricemic nephropathy skos:exactMatch umls C4551496 Hyperuricemic Nephropathy, Familial Juvenile 1 lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060066 pyridoxine-responsive sideroblastic anemia skos:exactMatch umls C0272027 Pyridoxine-responsive sideroblastic anemia lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060067 Pearson syndrome skos:exactMatch mesh C536353 VLCAD deficiency lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060067 Pearson syndrome skos:exactMatch umls C0342784 Pearson's marrow-pancreas syndrome lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060068 nonbacterial thrombotic endocarditis skos:exactMatch umls C0221390 Non-Bacterial Thrombotic Endocarditis lexical 0.7621109049680478 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060071 pre-malignant neoplasm skos:exactMatch umls C1335472 Premalignant Neoplasm lexical 0.7713873428159143 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060072 benign neoplasm skos:exactMatch umls C0086692 Benign Neoplasm lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060072 benign neoplasm skos:exactMatch umls C0497556 Benign respiratory neoplasm lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060072 benign neoplasm skos:exactMatch umls C0497566 Benign obstetric neoplasm lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060074 ductal carcinoma in situ skos:exactMatch umls C0007124 Noninfiltrating Intraductal Carcinoma lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060075 estrogen-receptor positive breast cancer skos:exactMatch umls C2938924 Estrogen receptor positive breast cancer lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060077 progesterone-receptor positive breast cancer skos:exactMatch umls C4733094 Progesterone receptor positive breast cancer lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060098 osteoblastoma skos:exactMatch umls C0029417 Osteoblastoma lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060102 cartilage cancer skos:exactMatch umls C0476147 Chondrogenic Neoplasm lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060103 central nervous system primitive neuroectodermal neoplasm skos:exactMatch umls C3887678 Central Nervous System Embryonal Tumor, Not Otherwise Specified lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060104 cerebellar medulloblastoma skos:exactMatch umls C4024934 Cerebellar medulloblastoma lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060106 brain meningioma skos:exactMatch umls C0349604 Intracranial Meningioma lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060106 brain meningioma skos:exactMatch umls C1332949 Childhood Brain Meningioma lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060108 brain glioma skos:exactMatch umls C3665419 Intracranial glioma lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060118 thoracic disease skos:exactMatch umls C0039978 Thoracic Diseases lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060126 alpha chain disease skos:exactMatch umls C0021071 Immunoproliferative Small Intestinal Disease lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060127 gamma heavy chain disease skos:exactMatch umls C0018854 gamma-Chain Disease lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060128 mu chain disease skos:exactMatch mesh D006362 Heavy Chain Disease lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060128 mu chain disease skos:exactMatch umls C0242310 mu-Chain Disease lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060131 alexithymia skos:exactMatch mesh D000342 Affective Symptoms lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060131 alexithymia skos:exactMatch umls C0002020 Alexithymia lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060132 amusia skos:exactMatch umls C0234497 Amusia lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060133 anosognosia skos:exactMatch umls C0234507 Anosognosia lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060135 apraxia skos:exactMatch umls C0003635 Apraxias lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060137 auditory agnosia skos:exactMatch umls C0234501 Auditory agnosia lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060138 autotopagnosia skos:exactMatch umls C0234511 Body-Image Agnosia lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060140 cortical deafness skos:exactMatch mesh D006313 Hearing Loss, Central lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060140 cortical deafness skos:exactMatch umls C0392704 Cortical Deafness lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060141 finger agnosia skos:exactMatch umls C0234509 Finger Agnosia lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060145 pain agnosia skos:exactMatch umls C0563625 Agnosia for Pain lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060148 simultanagnosia skos:exactMatch umls C2827429 Simultanagnosia lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060150 astereognosia skos:exactMatch umls C0234505 Tactile Agnosia lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060151 tactile agnosia skos:exactMatch umls C0234505 Tactile Agnosia lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060152 time agnosia skos:exactMatch umls C0234506 Time Agnosia lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060153 topographical agnosia skos:exactMatch umls C0271189 Topographical Agnosia lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060156 visual verbal agnosia skos:exactMatch umls C0751840 Alexia, Pure lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060163 body dysmorphic disorder skos:exactMatch umls C0005887 Body Dysmorphic Disorders lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060164 pain disorder skos:exactMatch mesh D013001 Somatoform Disorders lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060164 pain disorder skos:exactMatch umls C0391976 Pain Disorder lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060165 Kleine-Levin syndrome skos:exactMatch umls C0206085 Kleine-Levin Syndrome lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060167 seasonal affective disorder skos:exactMatch umls C0085159 Seasonal Affective Disorder lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060168 histidinemia skos:exactMatch umls C0220992 Histidinemia lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060170 generalized epilepsy with febrile seizures plus skos:exactMatch mesh C565808 Generalized Epilepsy with Febrile Seizures Plus lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060170 generalized epilepsy with febrile seizures plus skos:exactMatch umls C3502809 Generalized Epilepsy with Febrile Seizures Plus lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060172 juvenile absence epilepsy skos:exactMatch mesh D004832 Epilepsy, Absence lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060172 juvenile absence epilepsy skos:exactMatch umls C4317339 Juvenile Absence Epilepsy lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060173 Timothy syndrome skos:exactMatch umls C1832916 Timothy syndrome lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060175 succinic semialdehyde dehydrogenase deficiency skos:exactMatch umls C0268631 succinic semialdehyde dehydrogenase deficiency lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060177 homocarnosinosis skos:exactMatch umls C0268632 Homocarnosinosis lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060177 homocarnosinosis skos:exactMatch umls C3495554 Homocarnosinase deficiency lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060178 familial hemiplegic migraine skos:exactMatch mesh D020325 Migraine with Aura lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060179 Renpenning syndrome skos:exactMatch mesh C537761 Renpenning syndrome 1 lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060179 Renpenning syndrome skos:exactMatch umls C0796135 Renpenning syndrome 1 lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060190 ileocolitis skos:exactMatch mesh D003424 Crohn Disease lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060190 ileocolitis skos:exactMatch umls C0949272 IIeocolitis lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060196 amyotrophic lateral sclerosis type 4 skos:exactMatch umls C5191308 Amyotrophic lateral sclerosis type 4 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060213 frontotemporal dementia and/or amyotrophic lateral sclerosis-1 skos:exactMatch umls C3888102 Frontotemporal Dementia With Motor Neuron Disease lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060214 frontotemporal dementia and/or amyotrophic lateral sclerosis-2 skos:exactMatch umls C4014648 FRONTOTEMPORAL DEMENTIA AND/OR AMYOTROPHIC LATERAL SCLEROSIS 2 lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060220 physical urticaria skos:exactMatch umls C0343065 Dermatographic urticaria lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060220 physical urticaria skos:exactMatch umls C4551831 Physical urticaria lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060221 Maffucci syndrome skos:exactMatch mesh D004687 Enchondromatosis lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060221 Maffucci syndrome skos:exactMatch umls C0024454 Maffucci Syndrome lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060222 Scheie syndrome skos:exactMatch mesh D008059 Mucopolysaccharidosis I lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060222 Scheie syndrome skos:exactMatch umls C0026708 Mucopolysaccharidosis V lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060223 agraphia skos:exactMatch umls C0001825 Agraphia lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060225 3MC syndrome skos:exactMatch umls C4303860 Craniofacial ulnar renal syndrome lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060229 Baraitser-Winter syndrome skos:exactMatch umls C1853623 Fryns-Aftimos Syndrome lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060231 Bruck syndrome skos:exactMatch umls C0432253 Bruck syndrome lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060232 branchiootic syndrome skos:exactMatch umls C4273131 Branchiootic syndrome lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060233 cardiofaciocutaneous syndrome skos:exactMatch mesh C535579 Cardiofaciocutaneous syndrome lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060233 cardiofaciocutaneous syndrome skos:exactMatch umls C1275081 Cardio-facio-cutaneous syndrome lexical 0.7713873428159143 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060240 UV-sensitive syndrome skos:exactMatch umls C1833561 UV-Sensitive Syndrome lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060244 specific language impairment skos:exactMatch mesh D000080888 Specific Language Disorder lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060244 specific language impairment skos:exactMatch umls C0454651 Specific Language Disorder lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060245 Mast syndrome skos:exactMatch umls C1855346 MAST SYNDROME lexical 0.761698618841476 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060250 idiopathic scoliosis skos:exactMatch umls C0036440 Idiopathic scoliosis and kyphoscoliosis lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060250 idiopathic scoliosis skos:exactMatch umls C0595995 Idiopathic scoliosis lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060253 scapuloperoneal myopathy skos:exactMatch umls C2931268 Scapuloperoneal myopathy lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060255 rippling muscle disease 2 skos:exactMatch mesh C535686 Rippling muscle disease, 1 lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060258 reticulate acropigmentation of Kitamura skos:exactMatch mesh C562924 Dowling-Degos Disease lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060259 renal-hepatic-pancreatic dysplasia skos:exactMatch umls C2673883 RENAL-HEPATIC-PANCREATIC DYSPLASIA lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060276 pontocerebellar hypoplasia type 7 skos:exactMatch umls C3554226 Congenital pontocerebellar hypoplasia type 7 lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060277 pontocerebellar hypoplasia type 8 skos:exactMatch umls C3554209 Congenital pontocerebellar hypoplasia type 8 lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060281 photosensitive epilepsy skos:exactMatch mesh D020195 Epilepsy, Reflex lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060281 photosensitive epilepsy skos:exactMatch umls C0393720 Reflex Epilepsy, Photosensitive lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060283 peeling skin syndrome skos:exactMatch umls C1849193 PEELING SKIN SYNDROME lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060286 combined oxidative phosphorylation deficiency skos:exactMatch umls C4540031 Combined oxidative phosphorylation deficiency lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060287 cornea plana skos:exactMatch umls C0344529 Cornea plana lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060292 X-linked chondrodysplasia punctata 1 skos:exactMatch umls C3669395 X-Linked Chondrodysplasia Punctata 1 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060295 complement component 2 deficiency skos:exactMatch umls C3150275 COMPLEMENT COMPONENT 2 DEFICIENCY lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060297 complement component 4a deficiency skos:exactMatch umls C3280642 Complement Component 4a Deficiency lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060298 complement component 4b deficiency skos:exactMatch umls C3280641 Decreased serum complement C4b lexical 0.5116470830756544 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060299 complement component 6 deficiency skos:exactMatch umls C2676232 Complement Component 6 Deficiency lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060300 complement component 7 deficiency skos:exactMatch umls C1864694 Complement Component 7 Deficiency lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060303 complement component 9 deficiency skos:exactMatch umls C3151189 C9 Deficiency lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060310 uvulitis skos:exactMatch umls C0042174 Uvulitis lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060314 persistent generalized lymphadenopathy skos:exactMatch umls C0856916 Persistent generalized lymphadenopathy lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060323 breast abscess skos:exactMatch umls C0151463 Abscess of breast lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060323 breast abscess skos:exactMatch umls C0269246 Nonpuerperal abscess of breast lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060324 dental abscess skos:exactMatch umls C0518988 Dental abscess lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060328 anal fistula skos:exactMatch umls C0149889 Anorectal fistula lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060328 anal fistula skos:exactMatch umls C0205929 Anal Fistula lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060328 anal fistula skos:exactMatch umls C4552846 Anal Fistula, CTCAE 5 lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060330 Rapp-Hodgkin syndrome skos:exactMatch umls C1785148 RAPP-HODGKIN SYNDROME lexical 0.761698618841476 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060334 transient neonatal diabetes mellitus skos:exactMatch umls C0342273 Transient neonatal diabetes mellitus lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060336 3-methylglutaconic aciduria skos:exactMatch umls C3696376 3-Methylglutaconic Aciduria lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060339 chronic atrial and intestinal dysrhythmia skos:exactMatch umls C4015474 Chronic atrial and intestinal dysrhythmia lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060340 ciliopathy skos:exactMatch mesh D000072661 Ciliopathies lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060340 ciliopathy skos:exactMatch umls C4277690 Ciliopathies lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060341 agnathia-otocephaly complex skos:exactMatch umls C0265242 Otocephaly lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060342 acromelic frontonasal dysostosis skos:exactMatch umls C1863616 ACROMELIC FRONTONASAL DYSOSTOSIS lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060359 Sakati-Nyhan syndrome skos:exactMatch umls C1275079 Sakati syndrome lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060365 mandibulofacial dysostosis with alopecia skos:exactMatch umls C4225349 MANDIBULOFACIAL DYSOSTOSIS WITH ALOPECIA lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060377 orofaciodigital syndrome VII skos:exactMatch umls C0796100 Orofaciodigital Syndrome VII lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060379 acrofacial dysostosis skos:exactMatch umls C1332140 Acrofacial Dysostosis lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060380 orofaciodigital syndrome X skos:exactMatch umls C1833796 Orofaciodigital Syndrome X lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060389 chromosome 10q23 deletion syndrome skos:exactMatch umls C2677102 Chromosome 10q23 Deletion Syndrome lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060391 chromosome 13q14 deletion syndrome skos:exactMatch umls C3151302 Chromosome 13q14 deletion syndrome lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060392 chromosome 14q11-q22 deletion syndrome skos:exactMatch umls C3150707 CHROMOSOME 14q11-q22 DELETION SYNDROME lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060393 chromosome 15q11.2 deletion syndrome skos:exactMatch mesh C557830 Duplication 15q11-q13 Syndrome lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060394 chromosome 15q13.3 microdeletion syndrome skos:exactMatch umls C2677613 Chromosome 15q13.3 Microdeletion Syndrome lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060395 chromosome 15q24 deletion syndrome skos:exactMatch umls C3150674 CHROMOSOME 15q24 DELETION SYNDROME lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060396 chromosome 15q25 deletion syndrome skos:exactMatch umls C3280355 CHROMOSOME 15q25 DELETION SYNDROME lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060397 chromosome 15q26-qter deletion syndrome skos:exactMatch umls C2675463 Chromosome 15q26-Qter Deletion Syndrome lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060398 chromosome 16p11.2 deletion syndrome skos:exactMatch umls C3697355 16p11.2 Deletion Syndrome lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060399 chromosome 16p12.1 deletion syndrome skos:exactMatch umls C3149276 CHROMOSOME 16p12.1 DELETION SYNDROME, 520-KB lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060401 chromosome 16q22 deletion syndrome skos:exactMatch umls C3281152 CHROMOSOME 16q22 DELETION SYNDROME lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060402 chromosome 17p13.1 deletion syndrome skos:exactMatch umls C3151069 CHROMOSOME 17p13.1 DELETION SYNDROME lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060404 chromosome 17q12 deletion syndrome skos:exactMatch umls C3281138 CHROMOSOME 17q12 DELETION SYNDROME lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060405 chromosome 17q23.1-q23.2 deletion syndrome skos:exactMatch umls C3150607 CHROMOSOME 17q23.1-q23.2 DELETION SYNDROME lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060407 chromosome 18q deletion syndrome skos:exactMatch umls C0432443 Deletion of long arm of chromosome 18 lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060411 chromosome 1q21.1 deletion syndrome skos:exactMatch mesh C567291 Chromosome 1q21.1 Deletion Syndrome, 1.35-Mb lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060411 chromosome 1q21.1 deletion syndrome skos:exactMatch umls C2675897 Chromosome 1q21.1 Deletion Syndrome, 1.35-Mb lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060412 chromosome 1q41-q42 deletion syndrome skos:exactMatch umls C2675857 Holoprosencephaly 10 lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060413 chromosome 22q11.2 deletion syndrome, distal skos:exactMatch umls C2678480 Chromosome 22q11.2 Deletion Syndrome, Distal lexical 0.7338693052978766 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060414 chromosome 2p12-p11.2 deletion syndrome skos:exactMatch umls C3150804 CHROMOSOME 2p12-p11.2 DELETION SYNDROME lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060415 chromosome 2p16.1-p15 deletion syndrome skos:exactMatch umls C2675875 Chromosome 2p16.1-P15 Deletion Syndrome lexical 0.7338693052978766 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060416 chromosome 2q31.2 deletion syndrome skos:exactMatch umls C2676724 Chromosome 2q31.2 Deletion Syndrome lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060417 3p deletion syndrome skos:exactMatch umls C0795806 Chromosome 3, monosomy 3p lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060420 chromosome 4q21 deletion syndrome skos:exactMatch umls C3150756 CHROMOSOME 4q21 DELETION SYNDROME lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060421 chromosome 5q12 deletion syndrome skos:exactMatch umls C3810282 CHROMOSOME 5q12 DELETION SYNDROME lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060422 chromosome 6pter-p24 deletion syndrome skos:exactMatch umls C2675486 Chromosome 6pter-P24 Deletion Syndrome lexical 0.7338693052978766 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060423 chromosome 6q11-q14 deletion syndrome skos:exactMatch umls C3150790 CHROMOSOME 6q11-q14 DELETION SYNDROME lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060424 chromosome 6q24-q25 deletion syndrome skos:exactMatch umls C3150215 CHROMOSOME 6q24-q25 DELETION SYNDROME lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060425 chromosome 8q21.11 deletion syndrome skos:exactMatch umls C3280231 CHROMOSOME 8q21.11 DELETION SYNDROME lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060426 chromosome 19p13.13 deletion syndrome skos:exactMatch umls C3150894 19p13.13 microdeletion syndrome lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060427 chromosome Xp21 deletion syndrome skos:exactMatch umls C0795887 Complex Glycerol Kinase Deficiency lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060428 SATB2-associated syndrome skos:exactMatch umls C5243581 SATB2-associated syndrome lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060430 chromosome 16p11.2 duplication syndrome skos:exactMatch umls C3553407 CHROMOSOME 16p11.2 DUPLICATION SYNDROME lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060431 chromosome 16p13.3 duplication syndrome skos:exactMatch umls C3150708 CHROMOSOME 16p13.3 DUPLICATION SYNDROME lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060432 chromosome 17p13.3 duplication syndrome skos:exactMatch umls C2750748 Chromosome 17p13.3 Duplication Syndrome lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060433 chromosome 17q12 duplication syndrome skos:exactMatch umls C3281137 17q12 microduplication syndrome lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060434 chromosome 17q21.31 duplication syndrome skos:exactMatch umls C3150787 CHROMOSOME 17q21.31 DUPLICATION SYNDROME lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060435 chromosome 1q21.1 duplication syndrome skos:exactMatch umls C2675891 Chromosome 1q21.1 Duplication Syndrome lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060436 chromosome 22q11.2 microduplication syndrome skos:exactMatch umls C2675369 Chromosome 22q11.2 Microduplication Syndrome lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060437 chromosome 22q13 duplication syndrome skos:exactMatch umls C3809844 CHROMOSOME 22q13 DUPLICATION SYNDROME lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060443 corneal endothelial dystrophy skos:exactMatch umls C0544008 Chandler syndrome lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060443 corneal endothelial dystrophy skos:exactMatch umls C1857569 CORNEAL ENDOTHELIAL DYSTROPHY 2 lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060445 congenital stromal corneal dystrophy skos:exactMatch umls C1864738 Corneal Dystrophy, Congenital Stromal lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060446 X-linked endothelial corneal dystrophy skos:exactMatch umls C2749049 Corneal Dystrophy, Endothelial, X-Linked lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060447 epithelial basement membrane dystrophy skos:exactMatch umls C0271285 Epithelial basement membrane dystrophy lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060450 Lisch epithelial corneal dystrophy skos:exactMatch umls C2749050 Corneal Dystrophy, Lisch Epithelial lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060452 posterior amorphous corneal dystrophy skos:exactMatch umls C2748502 CORNEAL DYSTROPHY, POSTERIOR AMORPHOUS lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060454 subepithelial mucinous corneal dystrophy skos:exactMatch umls C2748503 Corneal Dystrophy, Subepithelial Mucinous lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060457 posterior polymorphous corneal dystrophy skos:exactMatch umls C0339284 Polymorphous corneal dystrophy lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060457 posterior polymorphous corneal dystrophy skos:exactMatch umls C1421473 VSX1 gene lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060457 posterior polymorphous corneal dystrophy skos:exactMatch umls C1852555 CORNEAL ENDOTHELIAL DYSTROPHY 1, AUTOSOMAL DOMINANT lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060458 chromosome 2q31.1 duplication syndrome skos:exactMatch umls C3150940 CHROMOSOME 2q31.1 DUPLICATION SYNDROME lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060460 chromosome 5p13 duplication syndrome skos:exactMatch umls C2750805 Chromosome 5p13 Duplication Syndrome lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060461 chromosome Xp11.23-p11.22 duplication syndrome skos:exactMatch umls C2749022 Chromosome Xp11.23-P11.22 Duplication Syndrome lexical 0.7338693052978766 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060464 Feingold syndrome skos:exactMatch umls C0796068 Oculodigitoesophagoduodenal syndrome lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060467 humeroradial synostosis skos:exactMatch umls C2930865 Ramer Ladda syndrome lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060472 Kindler syndrome skos:exactMatch umls C0406557 Poikiloderma of Kindler lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060476 Perlman syndrome skos:exactMatch umls C0027708 Nephroblastoma lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060476 Perlman syndrome skos:exactMatch umls C0796113 Nephroblastomatosis, fetal ascites, macrosomia and Wilms tumor lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060478 Zika fever skos:exactMatch umls C0276289 Zika Virus Infection lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060479 Shwachman-Diamond syndrome skos:exactMatch umls C0272170 Shwachman syndrome lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060480 left ventricular noncompaction skos:exactMatch umls C1960469 Left ventricular noncompaction lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060482 oculoauricular syndrome skos:exactMatch umls C2677500 Oculoauricular Syndrome lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060483 MEDNIK syndrome skos:exactMatch umls C1836330 ERYTHROKERATODERMIA VARIABILIS 3 (disorder) lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060486 Perry syndrome skos:exactMatch umls C1868594 Perry Syndrome lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060495 shellfish allergy skos:exactMatch umls C0577625 Shellfish allergy lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060496 respiratory allergy skos:exactMatch umls C3825727 Respiratory allergy lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060497 pollen allergy skos:exactMatch efo 0003956 seasonal allergic rhinitis lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060497 pollen allergy skos:exactMatch umls C0018621 Hay fever lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060497 pollen allergy skos:exactMatch umls C1548336 Pollen Allergy Allergen lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060499 autoimmune neuropathy skos:exactMatch umls C2748363 Autoimmune neuropathy lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060500 drug allergy skos:exactMatch umls C0013182 Drug Allergy lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060500 drug allergy skos:exactMatch umls C0455589 History of - drug allergy lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060500 drug allergy skos:exactMatch umls C1548333 Drug Allergy Allergen lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060500 drug allergy skos:exactMatch umls C3662272 Drug pseudoallergy lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060501 metal allergy skos:exactMatch umls C0577627 Allergy to metal lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060502 gastrointestinal allergy skos:exactMatch umls C0221034 gastrointestinal allergy lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060503 fruit allergy skos:exactMatch umls C0685901 Allergy to fruit lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060513 fish allergy skos:exactMatch umls C0856904 Allergy to fish lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060519 beta-lactam allergy skos:exactMatch umls C0741476 BETA LACTAM ALLERGY lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060520 penicillin allergy skos:exactMatch umls C0030824 Allergy to penicillin lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060521 cow milk allergy skos:exactMatch mesh D016269 Milk Hypersensitivity lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060521 cow milk allergy skos:exactMatch umls C0079840 Milk Allergy lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060521 cow milk allergy skos:exactMatch umls C0266815 Cow milk allergy lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060532 latex allergy skos:exactMatch umls C0577628 Latex allergy lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060532 latex allergy skos:exactMatch umls C1998401 History of allergy to latex lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060534 hepatoid adenocarcinoma skos:exactMatch umls C1266090 Hepatoid adenocarcinoma lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060535 Warsaw breakage syndrome skos:exactMatch umls C3150658 WARSAW BREAKAGE SYNDROME lexical 0.761698618841476 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060537 mitochondrial complex II deficiency skos:exactMatch umls C1855008 Mitochondrial Complex II Deficiency lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060538 purpura fulminans skos:exactMatch umls C0085650 Purpura Fulminans lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060539 Hermansky-Pudlak syndrome 1 skos:exactMatch umls C1415707 HPS1 gene lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060539 Hermansky-Pudlak syndrome 1 skos:exactMatch umls C2931875 Albinism with hemorrhagic diathesis and pigmented reticuloendothelial cells lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060540 Hermansky-Pudlak syndrome 2 skos:exactMatch umls C1842362 HERMANSKY-PUDLAK SYNDROME 2 lexical 0.7709750566893424 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060541 Hermansky-Pudlak syndrome 3 skos:exactMatch umls C1423606 HPS3 gene lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060541 Hermansky-Pudlak syndrome 3 skos:exactMatch umls C3888001 HERMANSKY-PUDLAK SYNDROME 3 lexical 0.7709750566893424 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060542 Hermansky-Pudlak syndrome 4 skos:exactMatch umls C1423767 HPS4 gene lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060542 Hermansky-Pudlak syndrome 4 skos:exactMatch umls C3484357 HERMANSKY-PUDLAK SYNDROME 4 lexical 0.7709750566893424 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060543 Hermansky-Pudlak syndrome 5 skos:exactMatch umls C1424692 HPS5 gene lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060543 Hermansky-Pudlak syndrome 5 skos:exactMatch umls C3888004 HERMANSKY-PUDLAK SYNDROME 5 lexical 0.7709750566893424 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060544 Hermansky-Pudlak syndrome 6 skos:exactMatch umls C1425796 HPS6 gene lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060544 Hermansky-Pudlak syndrome 6 skos:exactMatch umls C3888007 HERMANSKY-PUDLAK SYNDROME 6 lexical 0.7709750566893424 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060545 Hermansky-Pudlak syndrome 7 skos:exactMatch umls C3279756 HERMANSKY-PUDLAK SYNDROME 7 lexical 0.7709750566893424 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060546 Hermansky-Pudlak syndrome 8 skos:exactMatch umls C1538326 BLOC1S3 gene lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060546 Hermansky-Pudlak syndrome 8 skos:exactMatch umls C3888026 HERMANSKY-PUDLAK SYNDROME 8 lexical 0.7709750566893424 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060547 Hermansky-Pudlak syndrome 9 skos:exactMatch umls C3280026 HERMANSKY-PUDLAK SYNDROME 9 lexical 0.7709750566893424 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060551 poikiloderma with neutropenia skos:exactMatch umls C1824414 USB1 gene lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060551 poikiloderma with neutropenia skos:exactMatch umls C1858723 Poikiloderma with Neutropenia lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060560 lethal congenital contracture syndrome 2 skos:exactMatch umls C0812265 ERBB3 gene lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060560 lethal congenital contracture syndrome 2 skos:exactMatch umls C1843478 Lethal Congenital Contracture Syndrome 2 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060562 anomalous left coronary artery from the pulmonary artery skos:exactMatch umls C1735886 Bland White Garland Syndrome lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060563 Char syndrome skos:exactMatch umls C1868570 CHAR SYNDROME lexical 0.761698618841476 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060564 spinal disease skos:exactMatch umls C0037933 Spinal Diseases lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060571 Ritscher-Schinzel syndrome 1 skos:exactMatch umls C4551776 RITSCHER-SCHINZEL SYNDROME 1 lexical 0.7709750566893424 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060572 Ritscher-Schinzel syndrome 2 skos:exactMatch umls C4225419 RITSCHER-SCHINZEL SYNDROME 2 lexical 0.7709750566893424 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060575 3MC syndrome 1 skos:exactMatch umls C0796059 Oculopalatoskeletal syndrome lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060576 3MC syndrome 2 skos:exactMatch umls C0796279 Carnevale syndrome lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060577 3MC syndrome 3 skos:exactMatch umls C0796032 Malpuech facial clefting syndrome lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060578 Noonan syndrome 1 skos:exactMatch umls C1335280 PTPN11 gene lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060578 Noonan syndrome 1 skos:exactMatch umls C4551602 Noonan Syndrome 1 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060580 Noonan syndrome 2 skos:exactMatch umls C1854469 Noonan Syndrome 2 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060581 Noonan syndrome 3 skos:exactMatch umls C1860991 NOONAN SYNDROME 3 lexical 0.7709750566893424 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060582 Noonan syndrome 4 skos:exactMatch umls C1853120 Noonan Syndrome 4 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060583 Noonan syndrome 5 skos:exactMatch umls C1969057 Noonan Syndrome 5 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060584 Noonan syndrome 6 skos:exactMatch umls C2750732 Noonan Syndrome 6 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060585 Noonan syndrome 7 skos:exactMatch umls C3150970 NOONAN SYNDROME 7 lexical 0.7709750566893424 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060586 Noonan syndrome 8 skos:exactMatch umls C3809233 NOONAN SYNDROME 8 lexical 0.7709750566893424 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060587 Noonan syndrome 9 skos:exactMatch umls C4225282 NOONAN SYNDROME 9 lexical 0.7709750566893424 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060588 Noonan syndrome 10 skos:exactMatch umls C4225280 NOONAN SYNDROME 10 lexical 0.7709750566893424 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060590 XFE progeroid syndrome skos:exactMatch umls C1970416 XFE Progeroid Syndrome lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060592 B-cell adult acute lymphocytic leukemia skos:exactMatch umls C0279593 Adult B Acute Lymphoblastic Leukemia lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060601 alpha-2-plasmin inhibitor deficiency skos:exactMatch mesh C537777 Anti-plasmin deficiency, congenital lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060601 alpha-2-plasmin inhibitor deficiency skos:exactMatch umls C2752081 ALPHA-2-PLASMIN INHIBITOR DEFICIENCY lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060602 alpha-methylacyl-CoA racemase deficiency skos:exactMatch mesh C565768 Alpha-Methylacyl-CoA Racemase Deficiency lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060602 alpha-methylacyl-CoA racemase deficiency skos:exactMatch umls C3280428 Alpha-Methylacyl-CoA Racemase Deficiency lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060604 ankyloglossia skos:exactMatch umls C0152415 Ankyloglossia lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060604 ankyloglossia skos:exactMatch umls C4759698 ANKYLOGLOSSIA WITH OR WITHOUT TOOTH ANOMALIES lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060608 microcephalic osteodysplastic primordial dwarfism type I skos:exactMatch umls C1859452 MICROCEPHALIC OSTEODYSPLASTIC PRIMORDIAL DWARFISM, TYPE I lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060609 microcephalic osteodysplastic primordial dwarfism type II skos:exactMatch umls C0432246 Microcephalic Osteodysplastic Primordial Dwarfism, Type II lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060639 permanent neonatal diabetes mellitus skos:exactMatch mesh C563425 Diabetes Mellitus, Permanent Neonatal lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060639 permanent neonatal diabetes mellitus skos:exactMatch umls C1833104 DIABETES MELLITUS, PERMANENT NEONATAL lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060641 endocrine-cerebro-osteodysplasia syndrome skos:exactMatch umls C4509819 Endocrine-cerebro-osteodysplasia syndrome lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060642 recessive dystrophic epidermolysis bullosa skos:exactMatch umls C0079474 Hallopeau-Siemens Disease lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060645 chronic recurrent multifocal osteomyelitis skos:exactMatch umls C0410422 Chronic multifocal osteomyelitis lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060646 congenital chylothorax skos:exactMatch umls C0340014 Chylothorax, congenital lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060647 fetal encasement syndrome skos:exactMatch umls C3150891 FETAL ENCASEMENT SYNDROME lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060648 anterior segment dysgenesis skos:exactMatch umls C1862839 Anterior segment mesenchymal dysgenesis lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060649 congenital hereditary endothelial dystrophy of cornea skos:exactMatch umls C1857569 CORNEAL ENDOTHELIAL DYSTROPHY 2 lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060651 MYH-9 related disease skos:exactMatch umls C1854520 SEBASTIAN SYNDROME lexical 0.5553494124922697 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060653 lethal congenital contracture syndrome 3 skos:exactMatch umls C1969655 LETHAL CONGENITAL CONTRACTURAL SYNDROME 3 lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060654 lethal congenital contracture syndrome 4 skos:exactMatch umls C3554046 LETHAL CONGENITAL CONTRACTURE SYNDROME 4 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060668 anencephaly skos:exactMatch umls C0002902 Anencephaly lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060668 anencephaly skos:exactMatch umls C2021655 transvaginal ultrasound: anencephaly of fetus lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060669 cerebral cavernous malformation skos:exactMatch mesh D020786 Hemangioma, Cavernous, Central Nervous System lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060669 cerebral cavernous malformation skos:exactMatch umls C2919945 Cavernous Hemangioma of Brain lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060670 cerebral cavernous malformation 2 skos:exactMatch umls C1427709 CCM2 gene lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060673 Peters anomaly skos:exactMatch umls C0344559 Irido-corneo-trabecular dysgenesis (disorder) lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060674 catecholaminergic polymorphic ventricular tachycardia skos:exactMatch mesh C536334 Polymorphic catecholergic ventricular tachycardia lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060674 catecholaminergic polymorphic ventricular tachycardia skos:exactMatch umls C1631597 VENTRICULAR TACHYCARDIA, CATECHOLAMINERGIC POLYMORPHIC, 1 (disorder) lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060674 catecholaminergic polymorphic ventricular tachycardia skos:exactMatch umls C4025298 Effort-induced polymorphic ventricular tachycardia lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060680 pigment dispersion syndrome skos:exactMatch umls C1271398 Pigment dispersion syndrome (disorder) lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060681 autosomal dominant nocturnal frontal lobe epilepsy skos:exactMatch umls C3696898 Autosomal Dominant Nocturnal Frontal Lobe Epilepsy lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060689 atrichia with papular lesions skos:exactMatch umls C1859592 ATRICHIA WITH PAPULAR LESIONS lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060693 Brunner Syndrome skos:exactMatch umls C0796275 Brunner Syndrome lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060695 hyperekplexia skos:exactMatch umls C0234166 Hyperexplexia lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060696 hyperekplexia 1 skos:exactMatch umls C4551954 HYPEREKPLEXIA 1 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060697 hyperekplexia 2 skos:exactMatch umls C3553291 HYPEREKPLEXIA 2 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060698 hyperekplexia 3 skos:exactMatch umls C3553288 HYPEREKPLEXIA 3 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060699 familial hypocalciuric hypercalcemia skos:exactMatch mesh C537145 Hypocalciuric hypercalcemia, familial, type 1 lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060699 familial hypocalciuric hypercalcemia skos:exactMatch umls C0342637 Hypocalciuric hypercalcemia, familial, type 1 lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060699 familial hypocalciuric hypercalcemia skos:exactMatch umls C1809471 Familial benign hypercalcemia lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060704 lymphoproliferative syndrome skos:exactMatch umls C1420017 SH2D1A gene lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060705 X-linked lymphoproliferative syndrome 1 skos:exactMatch umls C4283963 SH2D1A Deficiency lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060707 lymphoproliferative syndrome 1 skos:exactMatch umls C3552634 LYMPHOPROLIFERATIVE SYNDROME 1 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060707 lymphoproliferative syndrome 1 skos:exactMatch umls C4283841 ITK Deficiency lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060708 lymphoproliferative syndrome 2 skos:exactMatch umls C3554540 LYMPHOPROLIFERATIVE SYNDROME 2 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060710 autosomal recessive congenital ichthyosis 2 skos:exactMatch umls C3888093 ICHTHYOSIS, CONGENITAL, AUTOSOMAL RECESSIVE 2 lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060728 NGLY1-deficiency skos:exactMatch umls C3808991 NGLY1 deficiency lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060731 congenital central hypoventilation syndrome skos:exactMatch umls C1275808 Congenital central hypoventilation lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060732 chromosome 9p deletion syndrome skos:exactMatch umls C0795830 CHROMOSOME 9p DELETION SYNDROME lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060733 junctional epidermolysis bullosa with pyloric atresia skos:exactMatch umls C1856934 Epidermolysis bullosa with pyloric atresia lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060738 junctional epidermolysis bullosa non-Herlitz type skos:exactMatch umls C0268374 Adult junctional epidermolysis bullosa (disorder) lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060739 hand-foot-genital syndrome skos:exactMatch umls C1841679 Hand foot uterus syndrome lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060740 methylmalonic aciduria due to methylmalonyl-CoA mutase deficiency skos:exactMatch mesh C565390 Methylmalonic Aciduria due to Methylmalonyl-CoA Mutase Deficiency lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060740 methylmalonic aciduria due to methylmalonyl-CoA mutase deficiency skos:exactMatch umls C1855114 Methylmalonic Aciduria due to Methylmalonyl-CoA Mutase Deficiency lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060742 methylmalonic acidemia cblA type skos:exactMatch mesh C537360 Methylmalonic aciduria cblA type lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060742 methylmalonic acidemia cblA type skos:exactMatch umls C1855109 Methylmalonic aciduria cblA type lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060745 Doyne honeycomb retinal dystrophy skos:exactMatch umls C1832174 DOYNE HONEYCOMB RETINAL DYSTROPHY lexical 0.761698618841476 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060746 basal laminar drusen skos:exactMatch umls C0730295 BASAL LAMINAR DRUSEN (disorder) lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060747 Duane-radial ray syndrome skos:exactMatch mesh D004370 Duane Retraction Syndrome lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060747 Duane-radial ray syndrome skos:exactMatch umls C1623209 Okihiro Syndrome lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060756 sclerosteosis 1 skos:exactMatch umls C0265301 Sclerosteosis lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060756 sclerosteosis 1 skos:exactMatch umls C4551483 SCLEROSTEOSIS 1 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060757 sclerosteosis 2 skos:exactMatch umls C3280402 SCLEROSTEOSIS 2 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060758 immunodeficiency with hyper-IgM type 2 skos:exactMatch umls C1720956 Hyper-IgM Immunodeficiency Syndrome, Type 2 lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060768 Smith-Magenis syndrome skos:exactMatch umls C0795864 Smith-Magenis syndrome lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060769 T-cell immunodeficiency, congenital alopecia, and nail dystrophy skos:exactMatch umls C1866426 T-cell immunodeficiency, congenital alopecia and nail dystrophy lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060770 dextro-looped transposition of the great arteries skos:exactMatch mesh D014188 Transposition of Great Vessels lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060770 dextro-looped transposition of the great arteries skos:exactMatch umls C0040761 Transposition of Great Vessels lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060773 cleft lip-palate-ectodermal dysplasia syndrome skos:exactMatch mesh C536726 Zlotogora-Ogur syndrome lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060773 cleft lip-palate-ectodermal dysplasia syndrome skos:exactMatch umls C2931488 Zlotogora-Ogur syndrome lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060775 microvillus inclusion disease skos:exactMatch umls C0341306 Microvillus inclusion disease lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060786 hypomyelinating leukodystrophy skos:exactMatch umls C2677112 Leukodystrophy, hypomyelinating lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060805 Prieto syndrome skos:exactMatch umls C1839730 Prieto X-linked mental retardation syndrome lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060814 Wilson-Turner syndrome skos:exactMatch umls C0796255 Wilson Turner syndrome lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060827 X-linked intellectual disability-psychosis-macroorchidism syndrome skos:exactMatch umls C3713418 Ppm-X Syndrome lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060831 Griscelli syndrome skos:exactMatch umls C0398794 Hypopigmentation-immunodeficiency disease lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060856 right atrial isomerism skos:exactMatch mesh D059446 Heterotaxy Syndrome lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060856 right atrial isomerism skos:exactMatch umls C3178806 Right Atrial Isomerism lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060858 hypotonia-cystinuria syndrome skos:exactMatch umls C1848030 Hypotonia-Cystinuria Syndrome lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060859 salmonellosis skos:exactMatch umls C0036114 Salmonella food poisoning lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060859 salmonellosis skos:exactMatch umls C0036117 Salmonella infections lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060861 microphthalmia with limb anomalies skos:exactMatch umls C0599973 Waardenburg Anophthalmia Syndrome lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060862 mal de Meleda skos:exactMatch mesh D007645 Keratoderma, Palmoplantar lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060862 mal de Meleda skos:exactMatch umls C0025221 Meleda Disease lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060867 macrocephaly-autism syndrome skos:exactMatch mesh C565342 Macrocephaly Autism Syndrome lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060867 macrocephaly-autism syndrome skos:exactMatch umls C1854416 MACROCEPHALY/AUTISM SYNDROME lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060868 leukoencephalopathy with vanishing white matter skos:exactMatch mesh D056784 Leukoencephalopathies lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060868 leukoencephalopathy with vanishing white matter skos:exactMatch umls C1858991 Childhood Ataxia with Central Nervous System Hypomyelinization lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060869 late-onset retinal degeneration skos:exactMatch umls C1854065 LATE-ONSET RETINAL DEGENERATION (disorder) lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060879 primary hypomagnesemia skos:exactMatch umls C0268448 Primary hypomagnesemia (disorder) lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060883 intestinal hypomagnesemia 1 skos:exactMatch umls C1865974 Hypomagnesemia 1, Intestinal lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060888 transient myeloproliferative syndrome skos:exactMatch umls C1834582 MYELOPROLIFERATIVE SYNDROME, TRANSIENT lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060889 prune belly syndrome skos:exactMatch umls C0033770 Prune Belly Syndrome lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060894 early-onset Parkinson's disease skos:exactMatch umls C4275179 Young onset Parkinson disease lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060903 thrombosis skos:exactMatch umls C0040053 Thrombosis lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060903 thrombosis skos:exactMatch umls C0302148 Blood Clot lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060903 thrombosis skos:exactMatch umls C2586211 Thrombosis of blood vessel lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0060911 karyomegalic interstitial nephritis skos:exactMatch umls C3553774 INTERSTITIAL NEPHRITIS, KARYOMEGALIC lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0070003 blastoma skos:exactMatch umls C0936282 Blastoma lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0070004 myeloid neoplasm skos:exactMatch umls C2939461 Myeloid neoplasm lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0070005 Seckel syndrome 9 skos:exactMatch umls C4225212 SECKEL SYNDROME 9 lexical 0.7709750566893424 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0070006 Seckel syndrome 6 skos:exactMatch umls C3553582 SECKEL SYNDROME 6 lexical 0.7709750566893424 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0070007 Seckel syndrome 1 skos:exactMatch umls C4551474 Seckel syndrome 1 lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0070008 Seckel syndrome 10 skos:exactMatch umls C4310647 SECKEL SYNDROME 10 lexical 0.7709750566893424 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0070009 Seckel syndrome 8 skos:exactMatch umls C3891452 SECKEL SYNDROME 8 lexical 0.7709750566893424 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0070010 Seckel syndrome 4 skos:exactMatch umls C1424863 CENPJ gene lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0070010 Seckel syndrome 4 skos:exactMatch umls C1826553 PCNT gene lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0070010 Seckel syndrome 4 skos:exactMatch umls C3888212 SECKEL SYNDROME 4 lexical 0.7709750566893424 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0070011 Seckel syndrome 7 skos:exactMatch umls C3553870 SECKEL SYNDROME 7 lexical 0.7709750566893424 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0070012 Seckel syndrome 5 skos:exactMatch umls C3151187 SECKEL SYNDROME 5 lexical 0.7709750566893424 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0070013 Seckel syndrome 2 skos:exactMatch umls C1419293 RBBP8 gene lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0070013 Seckel syndrome 2 skos:exactMatch umls C1847572 SECKEL SYNDROME 2 lexical 0.7709750566893424 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0070025 X-linked dyskeratosis congenita skos:exactMatch mesh D019871 Dyskeratosis Congenita lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0070025 X-linked dyskeratosis congenita skos:exactMatch umls C1148551 X-Linked Dyskeratosis Congenita lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0070026 Revesz syndrome skos:exactMatch mesh C538371 Revesz Debuse syndrome lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0070026 Revesz syndrome skos:exactMatch umls C1327916 REVESZ SYNDROME (disorder) lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0070039 NESCAV syndrome skos:exactMatch umls C5393830 NESCAV SYNDROME lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0070042 Coffin-Siris syndrome 1 skos:exactMatch umls C3281201 MENTAL RETARDATION, AUTOSOMAL DOMINANT 12 lexical 0.5487528344671202 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0070044 Coffin-Siris syndrome 2 skos:exactMatch umls C3553247 MENTAL RETARDATION, AUTOSOMAL DOMINANT 14 lexical 0.5487528344671202 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0070045 Coffin-Siris syndrome 3 skos:exactMatch umls C3553248 MENTAL RETARDATION, AUTOSOMAL DOMINANT 15 lexical 0.5487528344671202 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0070046 Coffin-Siris syndrome 4 skos:exactMatch umls C3553249 COFFIN-SIRIS SYNDROME 4 lexical 0.7709750566893424 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0070047 Schuurs-Hoeijmakers Syndrome skos:exactMatch umls C3554343 MENTAL RETARDATION, AUTOSOMAL DOMINANT 17 lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0070055 Xia-Gibbs Syndrome skos:exactMatch efo 0009015 AHDC1-related intellectual disability-obstructive sleep apnea-mild dysmorphism syndrome lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0070055 Xia-Gibbs Syndrome skos:exactMatch umls C4014419 AHDC1-related intellectual disability, obstructive sleep apnea, mild dysmorphism syndrome lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0070057 Coffin-Siris syndrome 9 skos:exactMatch umls C4014528 COFFIN-SIRIS SYNDROME 9 lexical 0.7709750566893424 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0070058 Helsmoortel-Van Der Aa Syndrome skos:exactMatch umls C4014538 ADNP-related multiple congenital anomalies, intellectual disability, autism spectrum disorder lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0070062 Arboleda-Tham syndrome skos:exactMatch umls C4225396 ARBOLEDA-THAM SYNDROME lexical 0.761698618841476 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0070067 White-Sutton syndrome skos:exactMatch umls C4225351 White Sutton syndrome lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0070077 schizophrenia 1 skos:exactMatch umls C0220702 SCHIZOPHRENIA 1 (disorder) lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0070078 schizophrenia 2 skos:exactMatch umls C1864010 SCHIZOPHRENIA 2 (disorder) lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0070079 schizophrenia 3 skos:exactMatch umls C1838069 SCHIZOPHRENIA 3 (disorder) lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0070080 schizophrenia 4 skos:exactMatch umls C1833247 SCHIZOPHRENIA 4 (disorder) lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0070081 schizophrenia 5 skos:exactMatch umls C1864153 SCHIZOPHRENIA 5 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0070082 schizophrenia 6 skos:exactMatch umls C1864275 SCHIZOPHRENIA 6 (disorder) lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0070083 schizophrenia 7 skos:exactMatch umls C1864152 SCHIZOPHRENIA 7 (disorder) lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0070084 schizophrenia 8 skos:exactMatch umls C1864124 SCHIZOPHRENIA 8 (disorder) lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0070085 schizophrenia 9 skos:exactMatch umls C1858050 SCHIZOPHRENIA 9 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0070086 schizophrenia 10 skos:exactMatch umls C0543918 SCHIZOPHRENIA 10 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0070087 schizophrenia 11 skos:exactMatch umls C1842605 SCHIZOPHRENIA 11 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0070088 schizophrenia 12 skos:exactMatch umls C1837893 SCHIZOPHRENIA 12 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0070089 schizophrenia 13 skos:exactMatch umls C2751663 SCHIZOPHRENIA 13 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0070090 schizophrenia 14 skos:exactMatch umls C2677614 SCHIZOPHRENIA 14 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0070091 schizophrenia 15 skos:exactMatch umls C3151380 SCHIZOPHRENIA 15 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0070092 schizophrenia 16 skos:exactMatch umls C3151408 SCHIZOPHRENIA 16 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0070093 schizophrenia 18 skos:exactMatch umls C3808913 SCHIZOPHRENIA 18 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0070096 oculocutaneous albinism type II skos:exactMatch umls C0268495 Oculocutaneous albinism type 2 lexical 0.7524221809936096 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0070097 oculocutaneous albinism type III skos:exactMatch umls C0342683 ALBINISM, OCULOCUTANEOUS, TYPE III lexical 0.530818387961245 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0070098 oculocutaneous albinism type IV skos:exactMatch umls C1847836 Oculocutaneous Albinism, Type IV lexical 0.530818387961245 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0070099 oculocutaneous albinism type V skos:exactMatch umls C3695273 Oculocutaneous albinism type 5 lexical 0.7524221809936096 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0070100 oculocutaneous albinism type VII skos:exactMatch umls C3695271 Oculocutaneous albinism type 7 lexical 0.7524221809936096 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0070111 Niemann-Pick disease type A skos:exactMatch umls C0268242 Niemann-Pick Disease, Type A lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0070112 Niemann-Pick disease type B skos:exactMatch umls C0268243 Niemann-Pick Disease, Type B lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0070114 Niemann-Pick disease type C2 skos:exactMatch umls C1843366 NIEMANN-PICK DISEASE, TYPE C2 lexical 0.5116470830756544 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0070117 Meckel syndrome 3 skos:exactMatch umls C4017204 MECKEL SYNDROME 3 lexical 0.7709750566893424 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0070149 hereditary sensory and autonomic neuropathy type 7 skos:exactMatch umls C3809882 Hereditary sensory and autonomic neuropathy type 7 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0070163 spermatogenic failure 21 skos:exactMatch umls C4539991 SPERMATOGENIC FAILURE 21 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0070164 spermatogenic failure 2 skos:exactMatch umls C1862459 SPERMATOGENIC FAILURE 2 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0070165 spermatogenic failure 18 skos:exactMatch umls C4539783 SPERMATOGENIC FAILURE 18 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0070166 spermatogenic failure 20 skos:exactMatch umls C4539824 SPERMATOGENIC FAILURE 20 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0070167 spermatogenic failure 6 skos:exactMatch umls C4225503 SPERMATOGENIC FAILURE 6 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0070168 spermatogenic failure 3 skos:exactMatch umls C4721889 SPERMATOGENIC FAILURE 3 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0070169 spermatogenic failure 8 skos:exactMatch umls C3151406 SPERMATOGENIC FAILURE 8 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0070170 spermatogenic failure 19 skos:exactMatch umls C4539818 SPERMATOGENIC FAILURE 19 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0070171 spermatogenic failure 12 skos:exactMatch umls C3809427 SPERMATOGENIC FAILURE 12 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0070172 spermatogenic failure 15 skos:exactMatch umls C4310779 SPERMATOGENIC FAILURE 15 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0070173 spermatogenic failure 7 skos:exactMatch umls C2751811 Spermatogenic Failure 7 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0070174 spermatogenic failure 17 skos:exactMatch umls C4310666 SPERMATOGENIC FAILURE 17 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0070176 spermatogenic failure 4 skos:exactMatch umls C0232981 Arrest of spermatogenesis lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0070177 spermatogenic failure 22 skos:exactMatch umls C4540179 SPERMATOGENIC FAILURE 22 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0070178 spermatogenic failure 10 skos:exactMatch umls C3553793 SPERMATOGENIC FAILURE 10 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0070179 spermatogenic failure 14 skos:exactMatch umls C4014454 SPERMATOGENIC FAILURE 14 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0070180 spermatogenic failure 11 skos:exactMatch umls C3554453 SPERMATOGENIC FAILURE 11 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0070181 spermatogenic failure 23 skos:exactMatch umls C4540185 SPERMATOGENIC FAILURE 23 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0070182 spermatogenic failure 13 skos:exactMatch umls C4014449 SPERMATOGENIC FAILURE 13 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0070184 spermatogenic failure 16 skos:exactMatch umls C4310674 SPERMATOGENIC FAILURE 16 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0070188 spermatogenic failure 1 skos:exactMatch umls C0403810 Oligosynaptic Infertility lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0070195 X-linked chronic granulomatous disease skos:exactMatch mesh D006105 Granulomatous Disease, Chronic lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0070195 X-linked chronic granulomatous disease skos:exactMatch umls C1844376 Granulomatous Disease, Chronic, X-Linked lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0070197 distal myopathy 1 skos:exactMatch mesh D049310 Distal Myopathies lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0070197 distal myopathy 1 skos:exactMatch umls C4552004 Distal Myopathy 1 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0070199 Miyoshi muscular dystrophy 1 skos:exactMatch mesh C537480 Miyoshi myopathy lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0070200 Miyoshi muscular dystrophy 2 skos:exactMatch umls C2750077 MIYOSHI MUSCULAR DYSTROPHY 2 (disorder) lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0070219 familial hyperinsulinemic hypoglycemia 1 skos:exactMatch mesh D044903 Congenital Hyperinsulinism lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0070219 familial hyperinsulinemic hypoglycemia 1 skos:exactMatch umls C2931832 Hyperinsulinemic hypoglycemia, familial, 1 lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0070221 progressive familial intrahepatic cholestasis skos:exactMatch mesh C535933 Cholestasis, progressive familial intrahepatic 1 lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0070224 progressive familial intrahepatic cholestasis 4 skos:exactMatch mesh C535442 Bile acid synthesis defect, congenital, 1 lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0070224 progressive familial intrahepatic cholestasis 4 skos:exactMatch umls C2931067 Cholestasis, progressive familial intrahepatic 4 lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0070227 intrahepatic cholestasis of pregnancy skos:exactMatch umls C0268318 Cholestasis of pregnancy lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0070233 Loeys-Dietz syndrome 4 skos:exactMatch umls C3553762 LOEYS-DIETZ SYNDROME 4 lexical 0.7709750566893424 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0070234 Loeys-Dietz syndrome 2 skos:exactMatch umls C2674574 Aortic aneurysm, familial thoracic 3 lexical 0.5487528344671202 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0070235 Loeys-Dietz syndrome 1 skos:exactMatch umls C4551955 Loeys-Dietz Syndrome, Type 1a lexical 0.5487528344671202 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0070236 Loeys-Dietz syndrome 5 skos:exactMatch umls C3810012 RIENHOFF SYNDROME lexical 0.5487528344671202 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0070237 Loeys-Dietz syndrome 3 skos:exactMatch umls C3151087 LOEYS-DIETZ SYNDROME 3 lexical 0.7709750566893424 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0070261 congenital disorder of glycosylation type IIi skos:exactMatch umls C3150876 COG5 congenital disorder of glycosylation lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0070263 congenital disorder of glycosylation type IIk skos:exactMatch umls C3553571 Carbohydrate deficient glycoprotein syndrome type 2k lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0070265 congenital disorder of glycosylation type IIm skos:exactMatch umls C3806688 Solute carrier family 35 member A2 congenital disorder of glycosylation lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0070271 Lynch syndrome 1 skos:exactMatch mesh D003123 Colorectal Neoplasms, Hereditary Nonpolyposis lexical 0.5301999587713874 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0070271 Lynch syndrome 1 skos:exactMatch umls C2936783 Colorectal cancer, hereditary nonpolyposis, type 1 lexical 0.5301999587713874 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0070274 hereditary nonpolyposis colorectal cancer type 2 skos:exactMatch umls C1333991 Hereditary Non-Polyposis Colon Cancer Type 2 lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0070296 primary autosomal recessive microcephaly skos:exactMatch mesh C579935 Autosomal Recessive Primary Microcephaly lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0070296 primary autosomal recessive microcephaly skos:exactMatch umls C3711387 Autosomal Recessive Primary Microcephaly lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0070297 primary microcephaly skos:exactMatch umls C0431350 Primary microcephaly lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0070304 multiple epiphyseal dysplasia 3 skos:exactMatch umls C1832998 EPIPHYSEAL DYSPLASIA, MULTIPLE, 3 lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0070305 multiple epiphyseal dysplasia due to collagen 9 anomaly skos:exactMatch umls C4707798 Multiple epiphyseal dysplasia due to collagen 9 anomaly lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0070306 post-cardiac arrest syndrome skos:exactMatch mesh D000080942 Post-Cardiac Arrest Syndrome lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0070306 post-cardiac arrest syndrome skos:exactMatch umls C4285706 Post-Cardiac Arrest Syndrome lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0070308 rippling muscle disease 1 skos:exactMatch umls C1838254 RIPPLING MUSCLE DISEASE 1 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0070309 absence epilepsy skos:exactMatch umls C0014553 Absence Epilepsy lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0070311 oligoasthenoteratozoospermia skos:exactMatch umls C0028960 Oligospermia lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0070313 thiamine deficiency disease skos:exactMatch umls C0039841 Thiamine Deficiency lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0070314 obstructive nephropathy skos:exactMatch umls C0149939 Obstructive nephropathy lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0070315 hypoplastic right heart syndrome skos:exactMatch umls C0344963 Right hypoplastic heart syndrome lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0070317 wet beriberi skos:exactMatch umls C0268669 Wet beriberi lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0070318 dry beriberi skos:exactMatch umls C0268670 Dry beriberi lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0070319 miliaria pustulosa skos:exactMatch umls C0026114 Miliaria pustulosa lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0070320 miliaria profunda skos:exactMatch umls C0263468 Miliaria profunda lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0070321 miliaria crystallina skos:exactMatch umls C3241961 Miliaria crystallina lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0070322 pediatric hepatocellular carcinoma skos:exactMatch umls C0279606 Childhood Hepatocellular Carcinoma lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0070323 childhood acute myeloid leukemia skos:exactMatch umls C0220621 Childhood Acute Myeloid Leukemia lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0070326 spitzoid melanoma skos:exactMatch umls C3495721 Spitzoid melanoma lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0070327 melanoma in congenital melanocytic nevus skos:exactMatch umls C1711221 Melanoma in Congenital Melanocytic Nevus lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0070330 multiple mitochondrial dysfunctions syndrome skos:exactMatch umls C3502075 Multiple Mitochondrial Dysfunctions Syndrome lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0070332 multiple mitochondrial dysfunctions syndrome 6 skos:exactMatch umls C4693741 MULTIPLE MITOCHONDRIAL DYSFUNCTIONS SYNDROME 6 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0070333 breast implant-associated anaplastic large cell lymphoma skos:exactMatch umls C4528210 Breast implant-associated anaplastic large cell lymphoma lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0070334 vegetable allergy skos:exactMatch umls C4552514 Vegetable allergy lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0070337 epithelial recurrent erosion dystrophy skos:exactMatch umls C1852551 Epithelial Recurrent Erosion Dystrophy lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0070338 cerebellar hypoplasia skos:exactMatch umls C0266470 Cerebellar Hypoplasia lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0070340 classic citrullinemia skos:exactMatch mesh D020159 Citrullinemia lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0070340 classic citrullinemia skos:exactMatch umls C4721769 Citrullinemia Type 1 lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0070344 ocular tuberculosis skos:exactMatch umls C0041322 Tuberculosis, Ocular lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0070345 vertebral anomalies and variable endocrine and T-cell dysfunction skos:exactMatch umls C4748741 VERTEBRAL ANOMALIES AND VARIABLE ENDOCRINE AND T-CELL DYSFUNCTION lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0070346 neurodevelopmental disorder with cataracts, poor growth, and dysmorphic facies skos:exactMatch umls C5231414 NEURODEVELOPMENTAL DISORDER WITH CATARACTS, POOR GROWTH, AND DYSMORPHIC FACIES lexical 0.7245928674500104 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0070347 encephalopathy due to defective mitochondrial and peroxisomal fission 1 skos:exactMatch umls C3280660 ENCEPHALOPATHY, LETHAL, DUE TO DEFECTIVE MITOCHONDRIAL AND PEROXISOMAL FISSION lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0070348 spinal muscular atrophy with lower extremity predominance skos:exactMatch umls C4750288 Spinal muscular atrophy with lower extremity predominance lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0070353 cataract 47 skos:exactMatch umls C4310806 CATARACT 47 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0070354 cataract 48 skos:exactMatch umls C5193082 CATARACT 48 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0070356 visual impairment and progressive phthisis bulbi skos:exactMatch umls C4748978 VISUAL IMPAIRMENT AND PROGRESSIVE PHTHISIS BULBI lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080000 muscular disease skos:exactMatch umls C0026848 Myopathy lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080014 chromosomal disease skos:exactMatch umls C0008626 Congenital chromosomal disease lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080015 physical disorder skos:exactMatch umls C0683323 physical illness lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080016 spina bifida skos:exactMatch umls C0080178 Spina Bifida lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080016 spina bifida skos:exactMatch umls C0158534 Spina bifida without mention of hydrocephalus, site unspecified lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080018 dysbaric osteonecrosis skos:exactMatch umls C3494941 Dysbaric osteonecrosis lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080019 metaphyseal dysplasia skos:exactMatch mesh C536252 Pyle disease lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080019 metaphyseal dysplasia skos:exactMatch umls C0265294 Pyle metaphyseal dysplasia lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080019 metaphyseal dysplasia skos:exactMatch umls C5194606 Metaphyseal dysplasia lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080021 Schmid metaphyseal chondrodysplasia skos:exactMatch umls C1413569 COL10A1 gene lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080026 otospondylomegaepiphyseal dysplasia, autosomal recessive skos:exactMatch umls C4520892 Otospondylomegaepiphyseal dysplasia lexical 0.5023706452277881 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080027 spondyloepimetaphyseal dysplasia skos:exactMatch umls C0432211 Spondyloepimetaphyseal disorder lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080028 spondyloepimetaphyseal dysplasia, Strudwick type skos:exactMatch mesh C537501 Strudwick syndrome lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080028 spondyloepimetaphyseal dysplasia, Strudwick type skos:exactMatch umls C0700635 Strudwick syndrome lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080030 spondyloepimetaphyseal dysplasia, Missouri type skos:exactMatch umls C1865832 Spondyloepimetaphyseal Dysplasia, Missouri Type lexical 0.7338693052978766 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080031 fibrous dysplasia skos:exactMatch umls C0259779 Fibrous Dysplasia lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080032 craniodiaphyseal dysplasia skos:exactMatch umls C0410539 Craniodiaphyseal dysplasia lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080033 craniometaphyseal dysplasia skos:exactMatch umls C0265292 Schwartz-Lelek syndrome lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080036 SOST-related sclerosing bone dysplasia skos:exactMatch mesh D010009 Osteochondrodysplasias lexical 0.5394763966192538 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080036 SOST-related sclerosing bone dysplasia skos:exactMatch umls C0432272 Van Buchem disease lexical 0.5394763966192538 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080037 Worth syndrome skos:exactMatch umls C0432273 Worth disease lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080038 pycnodysostosis skos:exactMatch umls C0238402 Pycnodysostosis lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080039 axial osteomalacia skos:exactMatch umls C1862372 Axial osteomalacia lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080043 achondrogenesis skos:exactMatch mesh C579878 Achondrogenesis lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080043 achondrogenesis skos:exactMatch umls C0001079 Achondrogenesis lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080044 hypochondrogenesis skos:exactMatch umls C0220685 Achondrogenesis type 2 lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080044 hypochondrogenesis skos:exactMatch umls C0542428 Hypochondrogenesis lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080045 Kniest dysplasia skos:exactMatch umls C0265279 Kniest dysplasia lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080046 Stickler syndrome skos:exactMatch mesh C537492 Stickler syndrome, type 1 lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080046 Stickler syndrome skos:exactMatch umls C0265253 Stickler syndrome (disorder) lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080046 Stickler syndrome skos:exactMatch umls C2020284 Stickler syndrome, type 1 lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080047 pseudoachondroplasia skos:exactMatch umls C0410538 Pseudoachondroplasia lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080049 acromesomelic dysplasia skos:exactMatch umls C5235036 Acromesomelic dysplasia syndrome lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080050 acromesomelic dysplasia, Maroteaux type skos:exactMatch umls C1334895 NPR2 gene lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080050 acromesomelic dysplasia, Maroteaux type skos:exactMatch umls C1864356 ACROMESOMELIC DYSPLASIA, MAROTEAUX TYPE lexical 0.7239744382601525 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080051 acromesomelic dysplasia, Hunter-Thompson type skos:exactMatch mesh C535658 Acromesomelic dysplasia lexical 0.5116470830756544 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080051 acromesomelic dysplasia, Hunter-Thompson type skos:exactMatch umls C2930970 Acromesomelic dysplasia Hunter-Thompson type lexical 0.5116470830756544 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080052 acromesomelic dysplasia, Grebe type skos:exactMatch umls C0265260 Chondrodysplasia, Grebe type lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080053 Albright's hereditary osteodystrophy skos:exactMatch umls C2931404 Albright's hereditary osteodystrophy lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080053 Albright's hereditary osteodystrophy skos:exactMatch umls C3494506 Pseudohypoparathyroidism, Type Ia lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080056 achondrogenesis type II skos:exactMatch mesh C536017 Achondrogenesis type 2 lexical 0.7524221809936096 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080056 achondrogenesis type II skos:exactMatch umls C0220685 Achondrogenesis type 2 lexical 0.7524221809936096 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080070 mucolipidosis II alpha/beta skos:exactMatch umls C2673377 MUCOLIPIDOSIS II ALPHA/BETA (disorder) lexical 0.5116470830756544 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080071 mucolipidosis III alpha/beta skos:exactMatch umls C0033788 Pseudo-Hurler Polydystrophy lexical 0.5116470830756544 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080072 intestinal pseudo-obstruction skos:exactMatch mesh D007418 Intestinal Pseudo-Obstruction lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080072 intestinal pseudo-obstruction skos:exactMatch umls C0021847 Intestinal Pseudo-Obstruction lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080073 spina bifida occulta skos:exactMatch umls C0080174 Spina Bifida Occulta lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080074 neural tube defect skos:exactMatch umls C0027794 Neural Tube Defects lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080075 Neu-Laxova syndrome 2 skos:exactMatch umls C4015019 NEU-LAXOVA SYNDROME 2 lexical 0.7709750566893424 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080076 Neu-Laxova syndrome 1 skos:exactMatch umls C4551478 NEU-LAXOVA SYNDROME 1 lexical 0.7709750566893424 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080091 spheroid body myopathy skos:exactMatch umls C1866785 Spheroid body myopathy lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080100 congenital myopathy skos:exactMatch umls C0270960 Congenital myopathy (disorder) lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080102 congenital fiber-type disproportion skos:exactMatch mesh D020914 Myopathies, Structural, Congenital lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080102 congenital fiber-type disproportion skos:exactMatch umls C0546264 Congenital Fiber Type Disproportion lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080103 cylindrical spirals myopathy skos:exactMatch umls C4706943 Cylindrical spirals myopathy lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080108 myoglobinuria skos:exactMatch umls C0027080 Myoglobinuria lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080109 infantile myofibromatosis skos:exactMatch umls C0206648 Myofibromatosis lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080109 infantile myofibromatosis skos:exactMatch umls C0432284 Infantile myofibromatosis lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080110 multiple pterygium syndrome skos:exactMatch umls C0265261 Multiple pterygium syndrome lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080119 mitochondrial DNA depletion syndrome 1 skos:exactMatch umls C4551995 Mitochondrial DNA Depletion Syndrome 1 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080121 mitochondrial DNA depletion syndrome 3 skos:exactMatch umls C4310935 MITOCHONDRIAL DNA DEPLETION SYNDROME 3 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080125 mitochondrial DNA depletion syndrome 6 skos:exactMatch umls C1850406 NAVAJO NEUROHEPATOPATHY lexical 0.5487528344671202 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080127 mitochondrial DNA depletion syndrome 8a skos:exactMatch umls C3711125 Mitochondrial DNA Depletion Syndrome 8A lexical 0.7338693052978766 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080129 mitochondrial DNA depletion syndrome 11 skos:exactMatch umls C3554462 MITOCHONDRIAL DNA DEPLETION SYNDROME 11 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080132 Sengers syndrome skos:exactMatch umls C1859317 Cataract and cardiomyopathy lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080133 multiple mitochondrial dysfunctions syndrome 1 skos:exactMatch umls C3276432 MULTIPLE MITOCHONDRIAL DYSFUNCTIONS SYNDROME 1 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080135 multiple mitochondrial dysfunctions syndrome 3 skos:exactMatch umls C3809165 MULTIPLE MITOCHONDRIAL DYSFUNCTIONS SYNDROME 3 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080136 multiple mitochondrial dysfunctions syndrome 4 skos:exactMatch umls C4225348 MULTIPLE MITOCHONDRIAL DYSFUNCTIONS SYNDROME 4 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080137 multiple endocrine neoplasia type 4 skos:exactMatch umls C1970712 Multiple Endocrine Neoplasia, Type IV lexical 0.5301999587713874 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080137 multiple endocrine neoplasia type 4 skos:exactMatch umls C4274947 Multiple endocrine neoplasia type 4 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080138 multiple congenital anomalies-hypotonia-seizures syndrome 1 skos:exactMatch umls C3279775 MULTIPLE CONGENITAL ANOMALIES-HYPOTONIA-SEIZURES SYNDROME 1 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080139 multiple congenital anomalies-hypotonia-seizures syndrome 2 skos:exactMatch umls C3275508 MULTIPLE CONGENITAL ANOMALIES-HYPOTONIA-SEIZURES SYNDROME 2 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080140 multiple congenital anomalies-hypotonia-seizures syndrome 3 skos:exactMatch umls C3809356 MULTIPLE CONGENITAL ANOMALIES-HYPOTONIA-SEIZURES SYNDROME 3 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080141 mosaic variegated aneuploidy syndrome 1 skos:exactMatch umls C1850343 Mosaic variegated aneuploidy syndrome 1 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080142 mosaic variegated aneuploidy syndrome 2 skos:exactMatch umls C3279843 MOSAIC VARIEGATED ANEUPLOIDY SYNDROME 2 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080144 childhood acute lymphocytic leukemia skos:exactMatch umls C0023452 Childhood Acute Lymphoblastic Leukemia lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080147 lymphoblastic lymphoma skos:exactMatch mesh D054198 Precursor Cell Lymphoblastic Leukemia-Lymphoma lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080147 lymphoblastic lymphoma skos:exactMatch umls C0079748 Precursor cell lymphoblastic lymphoma lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080147 lymphoblastic lymphoma skos:exactMatch umls C0278721 Adult Lymphoblastic Lymphoma lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080147 lymphoblastic lymphoma skos:exactMatch umls C0279525 Childhood Lymphoblastic Lymphoma lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080147 lymphoblastic lymphoma skos:exactMatch umls C1961102 Precursor Cell Lymphoblastic Leukemia Lymphoma lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080149 adult acute monocytic leukemia skos:exactMatch umls C0280634 Adult Acute Monocytic Leukemia lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080150 adrenocorticotropic hormone deficiency skos:exactMatch umls C0342388 Adrenocorticotropic hormone (ACTH) deficiency (disorder) lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080153 medium chain acyl-CoA dehydrogenase deficiency skos:exactMatch mesh C536038 Medium chain acyl CoA dehydrogenase deficiency lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080153 medium chain acyl-CoA dehydrogenase deficiency skos:exactMatch umls C0220710 Medium-chain acyl-coenzyme A dehydrogenase deficiency lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080154 short chain acyl-CoA dehydrogenase deficiency skos:exactMatch mesh C537596 Short chain Acyl CoA dehydrogenase deficiency lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080154 short chain acyl-CoA dehydrogenase deficiency skos:exactMatch umls C0342783 Deficiency of butyryl-CoA dehydrogenase lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080155 very long chain acyl-CoA dehydrogenase deficiency skos:exactMatch umls C3887523 Very long chain acyl-CoA dehydrogenase deficiency lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080156 X-linked adrenal hypoplasia congenita skos:exactMatch umls C0342482 X-linked Adrenal Hypoplasia lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080159 Cryptococcal meningitis skos:exactMatch umls C0085436 Meningitis, Cryptococcal lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080160 Cytomegalovirus retinitis skos:exactMatch umls C0206178 Cytomegalovirus Retinitis lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080161 cutaneous candidiasis skos:exactMatch umls C0006842 Candidiasis of skin and nails lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080161 cutaneous candidiasis skos:exactMatch umls C0006846 Cutaneous Candidiasis lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080162 lupus nephritis skos:exactMatch umls C0024143 Lupus Nephritis lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080163 otulipenia skos:exactMatch umls C4310614 OTULIN-related autoinflammatory syndrome lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080169 tricuspid atresia skos:exactMatch umls C0243002 Tricuspid Atresia lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080171 esophageal atresia/tracheoesophageal fistula skos:exactMatch umls C0341154 Esophageal atresia with tracheoesophageal fistula (disorder) lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080172 thiopurine S-methyltransferase deficiency skos:exactMatch umls C0342801 Thiopurine S methyltranferase deficiency lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080174 bladder exstrophy skos:exactMatch umls C0005689 Bladder Exstrophy lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080175 cloacal exstrophy skos:exactMatch umls C0345217 Exstrophy of cloaca sequence lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080175 cloacal exstrophy skos:exactMatch umls C1850321 Omphalocele exstrophy imperforate anus lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080176 meningococcal meningitis skos:exactMatch umls C0025294 Meningococcal meningitis lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080177 hepatic veno-occlusive disease skos:exactMatch umls C0019156 Hepatic Veno-Occlusive Disease lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080178 mucositis skos:exactMatch umls C0333355 Inflammatory disease of mucous membrane lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080178 mucositis skos:exactMatch umls C0521585 Gastrointestinal mucositis lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080179 haemophilus meningitis skos:exactMatch umls C0025292 Meningitis, Haemophilus lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080181 PHARC syndrome skos:exactMatch umls C4509920 Polyneuropathy, hearing loss, ataxia, retinitis pigmentosa, cataract syndrome lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080187 chronic neutrophilic leukemia skos:exactMatch umls C0023481 Chronic Neutrophilic Leukemia lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080188 chronic myelomonocytic leukemia skos:exactMatch mesh D015477 Leukemia, Myelomonocytic, Chronic lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080188 chronic myelomonocytic leukemia skos:exactMatch umls C0023480 Leukemia, Myelomonocytic, Chronic lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080188 chronic myelomonocytic leukemia skos:exactMatch umls C0349639 Juvenile Myelomonocytic Leukemia lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080189 malignant hemangioma skos:exactMatch umls C0474836 Malignant hemangioma lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080190 malignant epithelioid hemangioendothelioma skos:exactMatch umls C0334538 Epithelioid hemangioendothelioma, malignant lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080191 PTEN hamartoma tumor syndrome skos:exactMatch mesh D006223 Hamartoma Syndrome, Multiple lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080191 PTEN hamartoma tumor syndrome skos:exactMatch umls C1959582 PTEN Hamartoma Tumor Syndrome lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080193 superior semicircular canal dehiscence skos:exactMatch mesh D000084322 Semicircular Canal Dehiscence lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080193 superior semicircular canal dehiscence skos:exactMatch umls C3275929 Superior Semicircular Canal Dehiscence lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080194 Carey-Fineman-Ziter syndrome skos:exactMatch umls C1850746 Myopathy, congenital nonprogressive with Moebius and Robin sequences lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080195 Marinesco-Sjogren syndrome skos:exactMatch mesh D013132 Spinocerebellar Degenerations lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080195 Marinesco-Sjogren syndrome skos:exactMatch umls C0024814 Marinesco-Sjogren syndrome lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080195 Marinesco-Sjogren syndrome skos:exactMatch umls C1822725 SIL1 gene lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080196 mandibulofacial dysostosis, Guion-Almeida type skos:exactMatch umls C1864652 Growth and mental retardation, mandibulofacial dysostosis, microcephaly, and cleft palate lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080199 colorectal carcinoma skos:exactMatch mesh D015179 Colorectal Neoplasms lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080200 bilateral renal aplasia skos:exactMatch umls C3810360 Bilateral renal aplasia lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080201 Peters plus syndrome skos:exactMatch umls C0796012 Krause-Kivlin syndrome lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080202 adenoid cystic carcinoma skos:exactMatch umls C0010606 Adenoid Cystic Carcinoma lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080204 renal hypoplasia skos:exactMatch umls C0266295 Congenital hypoplasia of kidney lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080205 CAKUT skos:exactMatch mesh C566906 Cakut lexical 0.761698618841476 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080205 CAKUT skos:exactMatch umls C1968949 Cakut lexical 0.761698618841476 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080206 CAKUT1 skos:exactMatch umls C1835826 Renal Hypodysplasia, Nonsyndromic, 1 lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080207 CAKUT2 skos:exactMatch umls C0521619 Obstruction of pelviureteric junction lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080208 non-alcoholic fatty liver disease skos:exactMatch umls C0400966 Non-alcoholic Fatty Liver Disease lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080209 sideroblastic anemia with B-cell immunodeficiency, periodic fevers, and developmental delay skos:exactMatch umls C4015172 SIDEROBLASTIC ANEMIA WITH B-CELL IMMUNODEFICIENCY, PERIODIC FEVERS, AND DEVELOPMENTAL DELAY lexical 0.7338693052978766 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080211 nodal marginal zone lymphoma skos:exactMatch umls C0242647 Mucosa-Associated Lymphoid Tissue Lymphoma lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080211 nodal marginal zone lymphoma skos:exactMatch umls C0855139 Monocytoid B-cell lymphoma lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080212 polycystic kidney disease 4 skos:exactMatch umls C4540575 POLYCYSTIC KIDNEY DISEASE 4 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080213 punctate palmoplantar keratoderma type II skos:exactMatch umls C4707309 Punctate palmoplantar keratoderma type 2 lexical 0.7524221809936096 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080214 punctate palmoplantar keratoderma type I skos:exactMatch umls C1835662 Keratosis palmoplantaris papulosa lexical 0.5301999587713874 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080216 duodenal atresia skos:exactMatch umls C0266174 Duodenal atresia lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080218 primary spontaneous pneumothorax skos:exactMatch mesh D011030 Pneumothorax lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080218 primary spontaneous pneumothorax skos:exactMatch umls C1868193 PNEUMOTHORAX, PRIMARY SPONTANEOUS lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080219 dystransthyretinemic hyperthyroxinemia skos:exactMatch umls C2750824 Dystransthyretinemic Euthyroidal Hyperthyroxinemia lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080223 epidermolytic palmoplantar keratoderma skos:exactMatch umls C1416747 KRT9 gene lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080223 epidermolytic palmoplantar keratoderma skos:exactMatch umls C1721006 Keratoderma, Palmoplantar, Epidermolytic lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080234 Clark-Baraitser syndrome skos:exactMatch mesh C536208 Clark-Baraitser syndrome lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080234 Clark-Baraitser syndrome skos:exactMatch umls C2931130 Clark-Baraitser syndrome lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080245 Galloway-Mowat syndrome 3 skos:exactMatch umls C4540266 GALLOWAY-MOWAT SYNDROME 3 lexical 0.7709750566893424 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080246 Galloway-Mowat syndrome 4 skos:exactMatch umls C4540270 GALLOWAY-MOWAT SYNDROME 4 lexical 0.7709750566893424 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080247 Galloway-Mowat syndrome 5 skos:exactMatch umls C4540274 GALLOWAY-MOWAT SYNDROME 5 lexical 0.7709750566893424 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080248 erythrokeratodermia variabilis et progressiva 2 skos:exactMatch umls C4479618 ERYTHROKERATODERMIA VARIABILIS ET PROGRESSIVA 2 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080249 erythrokeratodermia variabilis et progressiva 3 skos:exactMatch umls C4479619 ERYTHROKERATODERMIA VARIABILIS ET PROGRESSIVA 3 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080250 erythrokeratodermia variabilis et progressiva 4 skos:exactMatch umls C4479620 ERYTHROKERATODERMIA VARIABILIS ET PROGRESSIVA 4 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080251 erythrokeratodermia variabilis et progressiva 5 skos:exactMatch umls C4540331 ERYTHROKERATODERMIA VARIABILIS ET PROGRESSIVA 5 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080253 Meckel syndrome 13 skos:exactMatch umls C4539714 MECKEL SYNDROME 13 lexical 0.7709750566893424 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080254 orofaciodigital syndrome XVI skos:exactMatch umls C4539729 OROFACIODIGITAL SYNDROME XVI lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080255 Meier-Gorlin syndrome 8 skos:exactMatch umls C4479655 MEIER-GORLIN SYNDROME 8 lexical 0.7709750566893424 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080256 Perrault syndrome 6 skos:exactMatch umls C4479656 PERRAULT SYNDROME 6 lexical 0.7709750566893424 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080264 exudative vitreoretinopathy 7 skos:exactMatch umls C4539767 EXUDATIVE VITREORETINOPATHY 7 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080273 polycystic kidney disease 5 skos:exactMatch umls C4539903 POLYCYSTIC KIDNEY DISEASE 5 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080274 multiple mitochondrial dysfunctions syndrome 5 skos:exactMatch umls C4539919 MULTIPLE MITOCHONDRIAL DYSFUNCTIONS SYNDROME 5 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080275 Joubert syndrome 30 skos:exactMatch umls C4539937 JOUBERT SYNDROME 30 lexical 0.7709750566893424 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080276 Joubert syndrome 29 skos:exactMatch umls C4539715 JOUBERT SYNDROME 29 lexical 0.7709750566893424 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080277 Joubert syndrome 31 skos:exactMatch umls C4540355 JOUBERT SYNDROME 31 lexical 0.7709750566893424 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080278 Joubert syndrome 32 skos:exactMatch umls C4540342 JOUBERT SYNDROME 32 lexical 0.7709750566893424 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080279 Joubert syndrome 33 skos:exactMatch umls C4540389 JOUBERT SYNDROME 33 lexical 0.7709750566893424 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080281 schizophrenia 19 skos:exactMatch umls C4539944 SCHIZOPHRENIA 19 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080286 spinocerebellar ataxia 44 skos:exactMatch umls C4521563 SPINOCEREBELLAR ATAXIA 44 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080287 spinocerebellar ataxia 45 skos:exactMatch umls C4540400 SPINOCEREBELLAR ATAXIA 45 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080288 spinocerebellar ataxia 46 skos:exactMatch umls C4540404 SPINOCEREBELLAR ATAXIA 46 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080289 orofaciodigital syndrome XVII skos:exactMatch umls C4693640 OROFACIODIGITAL SYNDROME XVII lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080292 retinitis pigmentosa 81 skos:exactMatch umls C4693443 RETINITIS PIGMENTOSA 81 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080293 short-rib thoracic dysplasia 18 with polydactyly skos:exactMatch umls C4693420 SHORT-RIB THORACIC DYSPLASIA 18 WITH POLYDACTYLY lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080295 short-rib thoracic dysplasia 19 with or without polydactyly skos:exactMatch umls C4693524 SHORT-RIB THORACIC DYSPLASIA 19 WITH OR WITHOUT POLYDACTYLY lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080297 Coffin-Siris syndrome 6 skos:exactMatch umls C4540499 COFFIN-SIRIS SYNDROME 6 lexical 0.7709750566893424 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080299 partial lipodystrophy skos:exactMatch umls C4316789 Partial lipodystrophy lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080300 acquired generalized lipodystrophy skos:exactMatch umls C0271693 Acquired generalized lipodystrophy lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080301 atypical hemolytic-uremic syndrome skos:exactMatch umls C2931788 Atypical Hemolytic Uremic Syndrome lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080304 lung mucinous cystadenocarcinoma skos:exactMatch umls C1708776 mucinous adenocarcinoma of lung lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080307 myofibrillar myopathy skos:exactMatch umls C2678065 Myofibrillar Myopathy lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080309 fatal infantile hypertonic myofibrillar myopathy skos:exactMatch umls C5190691 Fatal infantile hypertonic myofibrillar myopathy lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080312 neurodevelopmental disorder with midbrain and hindbrain malformations skos:exactMatch umls C4479613 NEURODEVELOPMENTAL DISORDER WITH MIDBRAIN AND HINDBRAIN MALFORMATIONS lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080316 megalencephalic leukoencephalopathy with subcortical cysts 1 skos:exactMatch umls C1424729 MLC1 gene lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080316 megalencephalic leukoencephalopathy with subcortical cysts 1 skos:exactMatch umls C1858854 MEGALENCEPHALIC LEUKOENCEPHALOPATHY WITH SUBCORTICAL CYSTS lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080318 megalencephalic leukoencephalopathy with subcortical cysts 2A skos:exactMatch umls C3151355 MEGALENCEPHALIC LEUKOENCEPHALOPATHY WITH SUBCORTICAL CYSTS 2A lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080322 polycystic kidney disease skos:exactMatch mesh D007690 Polycystic Kidney Diseases lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080322 polycystic kidney disease skos:exactMatch umls C0022680 Polycystic Kidney Diseases lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080323 pancreatic squamous cell carcinoma skos:exactMatch umls C2675993 Pancreatic squamous cell carcinoma lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080324 tuberous sclerosis 1 skos:exactMatch mesh C565346 Tuberous Sclerosis 1 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080324 tuberous sclerosis 1 skos:exactMatch umls C0694894 TSC1 gene lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080324 tuberous sclerosis 1 skos:exactMatch umls C1854465 TUBEROUS SCLEROSIS 1 (disorder) lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080325 tuberous sclerosis 2 skos:exactMatch mesh C566021 Tuberous Sclerosis 2 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080325 tuberous sclerosis 2 skos:exactMatch umls C0694895 TSC2 gene lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080325 tuberous sclerosis 2 skos:exactMatch umls C1860707 TUBEROUS SCLEROSIS 2 (disorder) lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080326 familial hypertrophic cardiomyopathy skos:exactMatch mesh D024741 Cardiomyopathy, Hypertrophic, Familial lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080326 familial hypertrophic cardiomyopathy skos:exactMatch umls C0949658 Cardiomyopathy, Hypertrophic, Familial lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080328 Culler-Jones syndrome skos:exactMatch umls C4014479 CULLER-JONES SYNDROME lexical 0.761698618841476 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080329 cold-induced sweating syndrome 1 skos:exactMatch mesh C536214 Crisponi syndrome lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080329 cold-induced sweating syndrome 1 skos:exactMatch umls C1848947 COLD-INDUCED SWEATING SYNDROME 1 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080330 cold-induced sweating syndrome 2 skos:exactMatch mesh C536214 Crisponi syndrome lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080330 cold-induced sweating syndrome 2 skos:exactMatch umls C1538472 CLCF1 gene lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080330 cold-induced sweating syndrome 2 skos:exactMatch umls C1853198 COLD-INDUCED SWEATING SYNDROME 2 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080332 bicuspid aortic valve disease skos:exactMatch umls C0149630 Bicuspid aortic valve lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080333 aortic valve disease 1 skos:exactMatch umls C3887892 Aortic Valve Disease 1 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080334 aortic valve disease 2 skos:exactMatch umls C3542024 AORTIC VALVE DISEASE 2 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080342 Simpson-Golabi-Behmel syndrome type 2 skos:exactMatch umls C1846175 SIMPSON-GOLABI-BEHMEL SYNDROME, TYPE 2 (disorder) lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080344 blepharocheilodontic syndrome skos:exactMatch mesh C536188 Blepharo-cheilo-dontic syndrome lexical 0.7713873428159143 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080344 blepharocheilodontic syndrome skos:exactMatch umls C1861536 Blepharo-cheilo-dontic syndrome lexical 0.7713873428159143 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080345 blepharocheilodontic syndrome 1 skos:exactMatch umls C4551988 BLEPHAROCHEILODONTIC SYNDROME 1 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080346 blepharocheilodontic syndrome 2 skos:exactMatch umls C4540127 BLEPHAROCHEILODONTIC SYNDROME 2 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080347 malignant pheochromocytoma skos:exactMatch umls C0334419 Malignant pheochromocytoma lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080350 retinitis pigmentosa 77 skos:exactMatch umls C4310626 RETINITIS PIGMENTOSA 77 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080351 CLOVES syndrome skos:exactMatch umls C2752042 Congenital Lipomatous Overgrowth, Vascular Malformations, and Epidermal Nevi lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080352 X-linked chondrodysplasia punctata 2 skos:exactMatch mesh D002806 Chondrodysplasia Punctata lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080352 X-linked chondrodysplasia punctata 2 skos:exactMatch umls C0282102 Chondrodysplasia punctata, X-linked dominant type lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080353 X-linked recessive hypophosphatemic rickets skos:exactMatch umls C0878681 Dent's disease lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080354 Phelan-McDermid syndrome skos:exactMatch mesh C536801 Telomeric 22q13 Monosomy Syndrome lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080354 Phelan-McDermid syndrome skos:exactMatch umls C1853490 22q13.3 Deletion Syndrome lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080356 IgG4-related disease skos:exactMatch umls C3203653 IgG4-Related Sclerosing Disease lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080356 IgG4-related disease skos:exactMatch umls C4087124 Immunoglobulin G4-Related Disease lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080361 trimethylaminuria skos:exactMatch umls C0342739 Trimethylaminuria lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080362 spondyloepiphyseal dysplasia tarda skos:exactMatch umls C0038015 Spondyloepiphyseal Dysplasia lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080362 spondyloepiphyseal dysplasia tarda skos:exactMatch umls C3541456 Spondyloepiphyseal Dysplasia Tarda, X-Linked lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080363 mitochondrial pyruvate carrier deficiency skos:exactMatch umls C3553607 MITOCHONDRIAL PYRUVATE CARRIER DEFICIENCY lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080364 malignant adenoma skos:exactMatch mesh D000230 Adenocarcinoma lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080364 malignant adenoma skos:exactMatch umls C0001418 Adenocarcinoma lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080365 endometrial hyperplasia skos:exactMatch umls C0014173 Endometrial Hyperplasia lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080366 desmoid tumor skos:exactMatch efo 0009907 Desmoid-type fibromatosis lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080366 desmoid tumor skos:exactMatch umls C0079218 Fibromatosis, Aggressive lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080367 chronic eosinophilic leukemia skos:exactMatch efo 1000178 Chronic Eosinophilic Leukemia, Not Otherwise Specified lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080367 chronic eosinophilic leukemia skos:exactMatch mesh C580364 Pdgfra-Associated Chronic Eosinophilic Leukemia lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080367 chronic eosinophilic leukemia skos:exactMatch umls C0346421 Chronic eosinophilic leukemia lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080374 gastroesophageal cancer skos:exactMatch umls C0346619 Malignant neoplasm of cardioesophageal junction of stomach lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080374 gastroesophageal cancer skos:exactMatch umls C1112160 Gastrooesophageal cancer lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080374 gastroesophageal cancer skos:exactMatch umls C3537823 NCI CTEP SDC Gastroesophageal Cancer Sub-Category Terminology lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080377 peroxisomal biogenesis disorder skos:exactMatch umls C0282528 Peroxisomal Disorders lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080383 nephrotic syndrome type 4 skos:exactMatch umls C0950121 Denys-Drash Syndrome lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080383 nephrotic syndrome type 4 skos:exactMatch umls C3151568 NEPHROTIC SYNDROME, TYPE 4 lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080395 orofacial cleft 1 skos:exactMatch mesh C566121 Orofacial Cleft 1 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080395 orofacial cleft 1 skos:exactMatch umls C1861537 OROFACIAL CLEFT 1 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080396 orofacial cleft 2 skos:exactMatch umls C1864323 OROFACIAL CLEFT 2 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080397 orofacial cleft 3 skos:exactMatch umls C1833369 OROFACIAL CLEFT 3 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080398 orofacial cleft 4 skos:exactMatch umls C1842143 Orofacial Cleft 4 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080399 orofacial cleft 5 skos:exactMatch umls C1837210 OROFACIAL CLEFT 5 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080400 orofacial cleft 7 skos:exactMatch umls C1833538 OROFACIAL CLEFT 7 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080401 orofacial cleft 8 skos:exactMatch umls C1851878 OROFACIAL CLEFT 8 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080402 orofacial cleft 9 skos:exactMatch umls C1835894 Orofacial Cleft 9 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080403 orofacial cleft 10 skos:exactMatch umls C1866070 OROFACIAL CLEFT 10 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080404 orofacial cleft 11 skos:exactMatch umls C2677434 OROFACIAL CLEFT 11 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080405 orofacial cleft 12 skos:exactMatch umls C2748505 Orofacial Cleft 12 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080406 orofacial cleft 13 skos:exactMatch umls C3151222 OROFACIAL CLEFT 13 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080407 orofacial cleft 14 skos:exactMatch umls C4014596 OROFACIAL CLEFT 14 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080408 orofacial cleft 15 skos:exactMatch umls C4225209 OROFACIAL CLEFT 15 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080409 familial adenomatous polyposis 1 skos:exactMatch umls C0032580 Adenomatous Polyposis Coli lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080410 familial adenomatous polyposis 2 skos:exactMatch umls C1837991 Colorectal Adenomatous Polyposis, Autosomal Recessive lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080411 familial adenomatous polyposis 3 skos:exactMatch umls C4225157 FAMILIAL ADENOMATOUS POLYPOSIS 3 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080412 familial adenomatous polyposis 4 skos:exactMatch umls C4310719 FAMILIAL ADENOMATOUS POLYPOSIS 4 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080422 Dravet syndrome skos:exactMatch mesh D004831 Epilepsies, Myoclonic lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080422 Dravet syndrome skos:exactMatch umls C0751122 Infantile Severe Myoclonic Epilepsy lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080422 Dravet syndrome skos:exactMatch umls C4750718 Cyclin-dependent kinase-like 5 deficiency lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080457 microcephaly, seizures, and developmental delay skos:exactMatch umls C3150667 MICROCEPHALY, SEIZURES, AND DEVELOPMENTAL DELAY lexical 0.7245928674500104 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080473 developmental delay and seizures with or without movement abnormalities skos:exactMatch umls C4693376 DEVELOPMENTAL DELAY AND SEIZURES WITH OR WITHOUT MOVEMENT ABNORMALITIES lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080475 psoriasis 2 skos:exactMatch umls C1864497 PSORIASIS 2 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080476 peroxisome biogenesis disorder 1A skos:exactMatch umls C4721541 PEROXISOME BIOGENESIS DISORDER 1A (ZELLWEGER) lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080477 peroxisome biogenesis disorder 2A skos:exactMatch umls C3550273 PEROXISOME BIOGENESIS DISORDER 2A (ZELLWEGER) lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080478 peroxisome biogenesis disorder 3A skos:exactMatch umls C3553929 PEROXISOME BIOGENESIS DISORDER 3A (ZELLWEGER) lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080479 peroxisome biogenesis disorder 4A skos:exactMatch umls C3553936 PEROXISOME BIOGENESIS DISORDER 4A (ZELLWEGER) lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080480 peroxisome biogenesis disorder 5A skos:exactMatch umls C3553940 PEROXISOME BIOGENESIS DISORDER 5A (ZELLWEGER) lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080481 peroxisome biogenesis disorder 6A skos:exactMatch umls C3553947 PEROXISOME BIOGENESIS DISORDER 6A (ZELLWEGER) lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080482 peroxisome biogenesis disorder 7A skos:exactMatch umls C3888385 PEROXISOME BIOGENESIS DISORDER 7A (ZELLWEGER) lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080483 peroxisome biogenesis disorder 8A skos:exactMatch umls C3553959 PEROXISOME BIOGENESIS DISORDER 8A (ZELLWEGER) lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080488 mucolipidosis skos:exactMatch umls C0026697 Mucolipidoses lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080489 GM1 gangliosidosis type 3 skos:exactMatch umls C0268273 Gangliosidosis, Generalized GM1, Type 3 lexical 0.5301999587713874 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080490 mucolipidosis type IV skos:exactMatch mesh D009081 Mucolipidoses lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080490 mucolipidosis type IV skos:exactMatch umls C0238286 Mucolipidosis Type IV lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080493 ovarian dysgenesis 1 skos:exactMatch umls C0949595 Gonadal Dysgenesis, 46,XX lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080494 ovarian dysgenesis 2 skos:exactMatch umls C1845294 Ovarian Dysgenesis 2 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080495 ovarian dysgenesis 3 skos:exactMatch umls C3280471 OVARIAN DYSGENESIS 3 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080496 ovarian dysgenesis 4 skos:exactMatch umls C4015409 OVARIAN DYSGENESIS 4 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080497 ovarian dysgenesis 5 skos:exactMatch umls C4540141 OVARIAN DYSGENESIS 5 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080498 ovarian dysgenesis 6 skos:exactMatch umls C4748084 OVARIAN DYSGENESIS 6 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080499 ovarian dysgenesis 7 skos:exactMatch umls C4748263 OVARIAN DYSGENESIS 7 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080500 ovarian dysgenesis 8 skos:exactMatch umls C4748626 OVARIAN DYSGENESIS 8 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080501 GM1 gangliosidosis type 2 skos:exactMatch umls C0268272 Gangliosidosis, Generalized GM1, Type 2 lexical 0.5301999587713874 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080502 GM1 gangliosidosis type 1 skos:exactMatch umls C0268271 Gangliosidosis, Generalized GM1, Type 1 (disorder) lexical 0.5116470830756544 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080505 Cornelia de Lange syndrome 1 skos:exactMatch umls C4551851 Cornelia de Lange Syndrome 1 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080506 Cornelia de Lange syndrome 2 skos:exactMatch mesh D003635 De Lange Syndrome lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080506 Cornelia de Lange syndrome 2 skos:exactMatch umls C1802395 Congenital muscular hypertrophy-cerebral syndrome lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080507 Cornelia de Lange syndrome 3 skos:exactMatch mesh D003635 De Lange Syndrome lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080507 Cornelia de Lange syndrome 3 skos:exactMatch umls C1853099 Cornelia de Lange Syndrome 3 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080508 Cornelia de Lange syndrome 4 skos:exactMatch umls C3553517 CORNELIA DE LANGE SYNDROME 4 lexical 0.7709750566893424 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080509 Cornelia de Lange syndrome 5 skos:exactMatch umls C3550903 CORNELIA DE LANGE SYNDROME 5 lexical 0.7709750566893424 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080512 Meier-Gorlin syndrome 1 skos:exactMatch umls C4552001 MEIER-GORLIN SYNDROME 1 lexical 0.7709750566893424 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080513 Meier-Gorlin syndrome 2 skos:exactMatch umls C3151097 MEIER-GORLIN SYNDROME 2 lexical 0.7709750566893424 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080514 Meier-Gorlin syndrome 3 skos:exactMatch umls C3151113 MEIER-GORLIN SYNDROME 3 lexical 0.7709750566893424 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080515 Meier-Gorlin syndrome 4 skos:exactMatch umls C3151120 MEIER-GORLIN SYNDROME 4 lexical 0.7709750566893424 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080516 Meier-Gorlin syndrome 5 skos:exactMatch umls C3151126 MEIER-GORLIN SYNDROME 5 lexical 0.7709750566893424 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080517 Meier-Gorlin syndrome 6 skos:exactMatch umls C4225188 MEIER-GORLIN SYNDROME 6 lexical 0.7709750566893424 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080518 Meier-Gorlin syndrome 7 skos:exactMatch umls C4310738 MEIER-GORLIN SYNDROME 7 lexical 0.7709750566893424 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080519 PAPA syndrome skos:exactMatch umls C1858361 Pyogenic Arthritis, Pyoderma Gangrenosum and Acne lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080520 Tn polyagglutination syndrome skos:exactMatch umls C0272137 Tn Syndrome lexical 0.5394763966192538 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080521 lung non-squamous non-small cell carcinoma skos:exactMatch umls C4324656 Non-squamous non-small cell lung cancer lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080522 thyroid gland anaplastic carcinoma skos:exactMatch umls C0238461 Anaplastic thyroid carcinoma lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080523 adult-onset leukoencephalopathy with axonal spheroids and pigmented glia skos:exactMatch umls C3711381 Hereditary Diffuse Leukoencephalopathy with Spheroids lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080524 thyroid gland adenocarcinoma skos:exactMatch umls C1704228 Thyroid Gland Adenocarcinoma lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080525 differentiated thyroid gland carcinoma skos:exactMatch efo 1002017 differentiated thyroid carcinoma lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080525 differentiated thyroid gland carcinoma skos:exactMatch umls C1337013 Differentiated Thyroid Gland Carcinoma lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080531 dedifferentiated liposarcoma skos:exactMatch mesh D008080 Liposarcoma lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080531 dedifferentiated liposarcoma skos:exactMatch umls C0205824 Liposarcoma, Dedifferentiated lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080533 Carney-Stratakis syndrome skos:exactMatch mesh C564650 Carney-Stratakis Syndrome lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080533 Carney-Stratakis syndrome skos:exactMatch umls C1847319 PARAGANGLIOMA AND GASTRIC STROMAL SARCOMA lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080534 myxofibrosarcoma skos:exactMatch umls C3714524 Fibromyxosarcoma lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080535 hypermanganesemia with dystonia skos:exactMatch umls C4708509 Hypermanganesemia with dystonia lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080536 hypermanganesemia with dystonia 1 skos:exactMatch umls C2750442 Hypermanganesemia with Dystonia Polycythemia and Cirrhosis lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080537 hypermanganesemia with dystonia 2 skos:exactMatch umls C4310765 Hypermanganesemia with dystonia 2 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080538 Sweeney-Cox syndrome skos:exactMatch umls C4540299 SWEENEY-COX SYNDROME lexical 0.761698618841476 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080539 PEHO syndrome skos:exactMatch umls C1850055 PEHO syndrome lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080540 galactosialidosis skos:exactMatch mesh C536411 Neuraminidase deficiency with beta-galactosidase deficiency lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080540 galactosialidosis skos:exactMatch umls C0268233 GALACTOSIALIDOSIS lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080541 hyperprolinemia skos:exactMatch umls C0268528 Hyperprolinemia lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080542 hyperprolinemia type 1 skos:exactMatch umls C0268529 Proline dehydrogenase deficiency lexical 0.5301999587713874 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080543 hyperprolinemia type 2 skos:exactMatch umls C2931835 Hyperprolinemia type 2 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080544 hyper IgM syndrome skos:exactMatch umls C0272236 Hyperimmunoglobulin M syndrome lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080545 hyper IgE syndrome skos:exactMatch umls C3887645 Job Syndrome lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080546 non-alcoholic fatty liver skos:exactMatch umls C0400966 Non-alcoholic Fatty Liver Disease lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080547 non-alcoholic steatohepatitis skos:exactMatch umls C3241937 Nonalcoholic Steatohepatitis lexical 0.7713873428159143 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080551 Naxos disease skos:exactMatch umls C1832600 Naxos disease lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080575 Larsen-like syndrome B3GAT3 type skos:exactMatch umls C4706575 Larsen-like syndrome B3GAT3 type lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080576 spondyloepimetaphyseal dysplasia, Genevieve-type skos:exactMatch mesh C535785 Spondyloepimetaphyseal dysplasia, Genevieve type lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080576 spondyloepimetaphyseal dysplasia, Genevieve-type skos:exactMatch umls C1864872 Spondyloepimetaphyseal dysplasia, Genevieve type lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080579 3-Methylcrotonyl-CoA carboxylase 1 deficiency skos:exactMatch umls C0268600 3-methylcrotonyl CoA carboxylase 1 deficiency lexical 0.5487528344671202 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080580 3-Methylcrotonyl-CoA carboxylase 2 deficiency skos:exactMatch umls C1859499 3-methylcrotonyl CoA carboxylase 2 deficiency lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080581 hyperekplexia 4 skos:exactMatch umls C4693933 HYPEREKPLEXIA 4 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080582 hypotrichosis 14 skos:exactMatch umls C4748930 HYPOTRICHOSIS 14 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080583 Wolfram syndrome, mitochondrial form skos:exactMatch umls C1838782 Wolfram Syndrome, Mitochondrial Form lexical 0.7338693052978766 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080585 Van Maldergem syndrome 1 skos:exactMatch umls C4551950 VAN MALDERGEM SYNDROME 1 lexical 0.7709750566893424 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080586 Van Maldergem syndrome 2 skos:exactMatch umls C3809875 VAN MALDERGEM SYNDROME 2 lexical 0.7709750566893424 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080588 agammaglobulinemia 5 skos:exactMatch umls C4225518 AGAMMAGLOBULINEMIA 5 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080590 Klippel-Feil syndrome 2 skos:exactMatch umls C4016650 KLIPPEL-FEIL SYNDROME 2 lexical 0.7709750566893424 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080597 Kleefstra syndrome skos:exactMatch mesh C563043 Kleefstra Syndrome lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080597 Kleefstra syndrome skos:exactMatch umls C0795833 KLEEFSTRA SYNDROME 1 lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080597 Kleefstra syndrome skos:exactMatch umls C4551771 Kleefstra syndrome lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080598 Kleefstra syndrome 2 skos:exactMatch umls C4540395 KLEEFSTRA SYNDROME 2 lexical 0.7709750566893424 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080600 COVID-19 skos:exactMatch umls C5203670 COVID19 (disease) lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080600 COVID-19 skos:exactMatch umls C5203676 SARS-CoV-2 lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080600 COVID-19 skos:exactMatch umls C5243469 COVID19 (document) lexical 0.5553494124922697 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080602 benign teratoma skos:exactMatch mesh D013724 Teratoma lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080602 benign teratoma skos:exactMatch umls C0011649 Dermoid Cyst lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080602 benign teratoma skos:exactMatch umls C1879828 Benign Teratoma lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080606 anterior segment dysgenesis 1 skos:exactMatch umls C4551992 ANTERIOR SEGMENT DYSGENESIS 1 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080607 anterior segment dysgenesis 2 skos:exactMatch umls C1853230 Aphakia, congenital primary lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080608 anterior segment dysgenesis 3 skos:exactMatch umls C1839928 IRIS HYPOPLASIA WITH GLAUCOMA lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080609 anterior segment dysgenesis 4 skos:exactMatch umls C1842031 IRIDOGONIODYSGENESIS, TYPE 2 lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080610 anterior segment dysgenesis 5 skos:exactMatch umls C4310809 ANTERIOR SEGMENT DYSGENESIS 5 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080611 anterior segment dysgenesis 6 skos:exactMatch umls C4310623 ANTERIOR SEGMENT DYSGENESIS 6 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080612 anterior segment dysgenesis 7 skos:exactMatch umls C3151617 ANTERIOR SEGMENT DYSGENESIS 7 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080613 anterior segment dysgenesis 8 skos:exactMatch umls C4310622 ANTERIOR SEGMENT DYSGENESIS 8 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080614 oculocutaneous albinism type VI skos:exactMatch umls C3695272 Oculocutaneous albinism type 6 lexical 0.7524221809936096 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080615 nephroma skos:exactMatch umls C0027708 Nephroblastoma lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080615 nephroma skos:exactMatch umls C1014240 Genus Nephroma lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080620 familial glucocorticoid deficiency skos:exactMatch umls C4054695 Familial glucocorticoid deficiency lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080621 glucocorticoid deficiency 1 skos:exactMatch umls C4049650 Familial Glucocorticoid Deficiency Type 1 lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080622 peroxisome biogenesis disorder 2B skos:exactMatch umls C3550234 PEROXISOME BIOGENESIS DISORDER 2B lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080623 Heimler syndrome 1 skos:exactMatch umls C4551980 HEIMLER SYNDROME 1 lexical 0.7709750566893424 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080624 Heimler syndrome 2 skos:exactMatch umls C4225267 HEIMLER SYNDROME 2 lexical 0.7709750566893424 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080627 alopecia-mental retardation syndrome skos:exactMatch umls C2931280 Perniola Krajewska Carnevale syndrome lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080628 alopecia-mental retardation syndrome 1 skos:exactMatch mesh C565965 AMR Syndrome lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080628 alopecia-mental retardation syndrome 1 skos:exactMatch umls C1859878 Alopecia-Mental Retardation Syndrome 1 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080629 alopecia-mental retardation syndrome 2 skos:exactMatch umls C1835852 Alopecia-Mental Retardation Syndrome 2 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080631 Elsahy-Waters syndrome skos:exactMatch umls C0809936 Branchio-skeleto-genital syndrome lexical 0.5394763966192538 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080632 Fazio-Londe disease skos:exactMatch mesh D010244 Bulbar Palsy, Progressive lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080632 Fazio-Londe disease skos:exactMatch umls C0015708 Fazio-Londe Syndrome lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080634 nanophthalmos skos:exactMatch umls C0026010 Microphthalmos lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080635 optic disc anomalies with retinal and/or macular dystrophy skos:exactMatch umls C4225424 OPTIC DISC ANOMALIES WITH RETINAL AND/OR MACULAR DYSTROPHY lexical 0.7245928674500104 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080638 B-cell acute lymphoblastic leukemia skos:exactMatch umls C1292769 Precursor B-cell lymphoblastic leukemia lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080639 bone sarcoma skos:exactMatch umls C0029463 Osteosarcoma lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080639 bone sarcoma skos:exactMatch umls C1704327 Bone Sarcoma lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080640 gallbladder benign neoplasm skos:exactMatch umls C0345912 Benign neoplasm of gallbladder lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080641 tongue carcinoma skos:exactMatch umls C0558353 Tongue Carcinoma lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080642 Middle East respiratory syndrome skos:exactMatch mesh D018352 Coronavirus Infections lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080642 Middle East respiratory syndrome skos:exactMatch umls C3694279 Middle East Respiratory Syndrome lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080646 B-lymphoblastic leukemia/lymphoma with hyperdiploidy skos:exactMatch umls C2698311 B lymphoblastic leukemia lymphoma with hyperdiploidy lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080647 B-lymphoblastic leukemia/lymphoma with hypodiploidy skos:exactMatch umls C2698312 B lymphoblastic leukemia lymphoma with hypodiploidy lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080651 B-lymphoblastic leukemia/lymphoma with iAMP21 skos:exactMatch umls C4329384 B lymphoblastic leukemia lymphoma with iAMP21 lexical 0.5116470830756544 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080652 calcium oxalate nephrolithiasis skos:exactMatch umls C1833683 NEPHROLITHIASIS, CALCIUM OXALATE lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080653 urolithiasis skos:exactMatch mesh D052878 Urolithiasis lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080653 urolithiasis skos:exactMatch umls C0451641 Urolithiasis lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080654 uric acid urolithiasis skos:exactMatch umls C0403719 Uric acid urolithiasis lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080656 45,X/46,XY mixed gonadal dysgenesis skos:exactMatch umls C0018055 Gonadal Dysgenesis, Mixed lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080661 nonsyndromic aplasia cutis congenita skos:exactMatch umls C0406825 Congenital absence of skin on scalp lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080662 atrial standstill 1 skos:exactMatch umls C4551959 ATRIAL STANDSTILL 1 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080663 atrial standstill 2 skos:exactMatch umls C3810401 ATRIAL STANDSTILL 2 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080664 diaphyseal medullary stenosis with malignant fibrous histiocytoma skos:exactMatch mesh C536169 Diaphyseal medullary stenosis with malignant fibrous histiocytoma lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080664 diaphyseal medullary stenosis with malignant fibrous histiocytoma skos:exactMatch umls C1862177 Diaphyseal medullary stenosis with malignant fibrous histiocytoma lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080665 warfarin resistance skos:exactMatch umls C0750384 Coumarin Resistance lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080666 warfarin sensitivity skos:exactMatch umls C2608079 Warfarin Sensitivity lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080667 spinal muscular atrophy type 0 skos:exactMatch umls C4324643 Spinal muscular atrophy type 0 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080672 fibrochondrogenesis 1 skos:exactMatch umls C3278138 FIBROCHONDROGENESIS 1 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080673 fibrochondrogenesis 2 skos:exactMatch umls C3281128 FIBROCHONDROGENESIS 2 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080677 otospondylomegaepiphyseal dysplasia, autosomal dominant skos:exactMatch umls C1848488 Pierre Robin syndrome with fetal chondrodysplasia lexical 0.5023706452277881 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080678 mucolipidosis III gamma skos:exactMatch mesh C565367 Mucolipidosis III Gamma lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080678 mucolipidosis III gamma skos:exactMatch umls C1854896 Mucolipidosis III Gamma lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080684 diffuse midline glioma, H3 K27M-mutant skos:exactMatch umls C4289688 Diffuse midline glioma, point mutation K27M in histone H3 lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080685 aortic dissection skos:exactMatch mesh D000784 Aneurysm, Dissecting lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080685 aortic dissection skos:exactMatch umls C0340643 Dissection of aorta lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080688 mosaic variegated aneuploidy syndrome skos:exactMatch mesh C536987 Mosaic variegated aneuploidy syndrome lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080688 mosaic variegated aneuploidy syndrome skos:exactMatch umls C1850343 Mosaic variegated aneuploidy syndrome 1 lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080688 mosaic variegated aneuploidy syndrome skos:exactMatch umls C4551972 Mosaic variegated aneuploidy syndrome lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080689 mosaic variegated aneuploidy syndrome 3 skos:exactMatch umls C4539839 MOSAIC VARIEGATED ANEUPLOIDY SYNDROME 3 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080691 Noonan syndrome-like disorder with loose anagen hair skos:exactMatch umls C1843181 Noonan syndrome-like disorder with loose anagen hair lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080692 Noonan syndrome-like disorder with loose anagen hair 1 skos:exactMatch umls C4478716 NOONAN SYNDROME-LIKE DISORDER WITH LOOSE ANAGEN HAIR 1 lexical 0.7709750566893424 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080693 Noonan syndrome-like disorder with loose anagen hair 2 skos:exactMatch umls C4479577 NOONAN SYNDROME-LIKE DISORDER WITH LOOSE ANAGEN HAIR 2 lexical 0.7709750566893424 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080694 Galloway-Mowat syndrome skos:exactMatch mesh C537548 Galloway Mowat syndrome lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080694 Galloway-Mowat syndrome skos:exactMatch umls C0795949 Galloway Mowat syndrome lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080695 Burn-McKeown syndrome skos:exactMatch mesh C537411 Burn-Mckeown syndrome lexical 0.7524221809936096 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080695 Burn-McKeown syndrome skos:exactMatch umls C1837822 Burn-Mckeown syndrome lexical 0.7524221809936096 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080696 Winchester syndrome skos:exactMatch mesh C536709 Winchester syndrome lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080696 Winchester syndrome skos:exactMatch umls C0432289 Winchester syndrome (disorder) lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080699 glutathione synthetase deficiency skos:exactMatch mesh C536835 Glutathione synthetase deficiency lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080699 glutathione synthetase deficiency skos:exactMatch umls C0398746 Gluthathione synthetase deficiency lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080700 caudal regression syndrome skos:exactMatch umls C0300948 Caudal Regression Syndrome lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080701 prothrombin thrombophilia skos:exactMatch mesh C566755 Hyperprothrombinemia lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080701 prothrombin thrombophilia skos:exactMatch umls C1867596 Hyperprothrombinemia lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080709 NK cell deficiency skos:exactMatch umls C4693357 NK cell deficiency lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080711 multisystem inflammatory syndrome in children skos:exactMatch umls C5389369 pediatric inflammatory multisystem syndrome lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080713 MECP2 duplication syndrome skos:exactMatch mesh C537723 Lubs X-linked mental retardation syndrome lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080713 MECP2 duplication syndrome skos:exactMatch umls C1846058 Lubs X-linked mental retardation syndrome lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080717 infantile liver failure syndrome 1 skos:exactMatch umls C3809522 INFANTILE LIVER FAILURE SYNDROME 1 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080718 GNE myopathy skos:exactMatch umls C1853926 NONAKA MYOPATHY lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080721 calvarial doughnut lesions with bone fragility skos:exactMatch umls C1852022 Doughnut lesion of calvaria and bone fragility syndrome lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080722 Kenny-Caffey syndrome type 1 skos:exactMatch umls C1855648 KENNY-CAFFEY SYNDROME, TYPE 1 lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080723 Kenny-Caffey syndrome type 2 skos:exactMatch umls C4316787 Kenny-Caffey syndrome, type 2 lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080724 Kenny-Caffey syndrome skos:exactMatch mesh C537021 Kenny-Caffey syndrome, Type 1 lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080724 Kenny-Caffey syndrome skos:exactMatch umls C0265291 Kenny-Caffey syndrome lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080724 Kenny-Caffey syndrome skos:exactMatch umls C1420597 TBCE gene lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080725 BASAN syndrome skos:exactMatch mesh C537659 Basan syndrome lexical 0.7709750566893424 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080725 BASAN syndrome skos:exactMatch umls C0406707 Basan syndrome lexical 0.7709750566893424 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080729 brittle cornea syndrome 2 skos:exactMatch umls C3280011 BRITTLE CORNEA SYNDROME 2 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080730 Ehlers-Danlos syndrome cardiac valvular type skos:exactMatch umls C4303789 Ehlers-Danlos syndrome cardiac valvular type lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080740 Libman-Sacks endocarditis skos:exactMatch umls C0242380 Libman-Sacks Disease lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080741 limbic encephalitis skos:exactMatch mesh D020363 Limbic Encephalitis lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080741 limbic encephalitis skos:exactMatch umls C0338430 Limbic Encephalitis lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080742 autoimmune cholangitis skos:exactMatch umls C4075851 Autoimmune cholangitis lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080743 transverse myelitis skos:exactMatch mesh D009188 Myelitis, Transverse lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080743 transverse myelitis skos:exactMatch umls C0026976 Myelitis, Transverse lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080744 antisynthetase syndrome skos:exactMatch mesh C537778 Antisynthetase syndrome lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080744 antisynthetase syndrome skos:exactMatch umls C2609059 Antisynthetase syndrome lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080745 polymyositis skos:exactMatch mesh D017285 Polymyositis lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080745 polymyositis skos:exactMatch umls C0085655 Polymyositis lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080746 Sweet syndrome skos:exactMatch mesh D016463 Sweet Syndrome lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080746 Sweet syndrome skos:exactMatch umls C0085077 Sweet Syndrome lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080747 chronic urticaria skos:exactMatch umls C0263338 Chronic Urticaria lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080748 chronic inducible urticaria skos:exactMatch umls C5197720 Chronic Inducible Urticaria lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080749 chronic spontaneous urticaria skos:exactMatch umls C0578870 Chronic Spontaneous Urticaria lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080750 erythema nodosum skos:exactMatch mesh D004893 Erythema Nodosum lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080750 erythema nodosum skos:exactMatch umls C0014743 Erythema Nodosum lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080751 keratosis pilaris atrophicans skos:exactMatch umls C0263428 Burnett Schwartz Berberian syndrome lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080752 keratosis pilaris atrophicans faciei skos:exactMatch umls C0263428 Burnett Schwartz Berberian syndrome lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080753 keratosis follicularis spinulosa decalvans skos:exactMatch mesh C536159 Keratosis Follicularis Spinulosa Decalvans, X-Linked lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080753 keratosis follicularis spinulosa decalvans skos:exactMatch umls C0343057 Keratosis pilaris decalvans lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080753 keratosis follicularis spinulosa decalvans skos:exactMatch umls C1423501 MBTPS2 gene lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080753 keratosis follicularis spinulosa decalvans skos:exactMatch umls C3887525 Keratosis Follicularis Spinulosa Decalvans, X-Linked lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080756 atrophoderma vermiculata skos:exactMatch umls C0263429 Atrophoderma vermiculatum lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080757 Fanconi renotubular syndrome 1 skos:exactMatch umls C4551503 FANCONI RENOTUBULAR SYNDROME 1 lexical 0.7709750566893424 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080758 Fanconi renotubular syndrome 2 skos:exactMatch umls C3150652 FANCONI RENOTUBULAR SYNDROME 2 lexical 0.7709750566893424 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080759 Fanconi renotubular syndrome 3 skos:exactMatch umls C3810100 FANCONI RENOTUBULAR SYNDROME 3 lexical 0.7709750566893424 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080761 Fanconi renotubular syndrome 5 skos:exactMatch umls C5394473 FANCONI RENOTUBULAR SYNDROME 5 lexical 0.7709750566893424 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080764 hereditary diffuse gastric cancer skos:exactMatch umls C1708349 Hereditary Diffuse Gastric Cancer lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080764 hereditary diffuse gastric cancer skos:exactMatch umls C4721859 Hereditary Diffuse Gastric Adenocarcinoma lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080766 erythrokeratodermia variabilis et progressiva 6 skos:exactMatch umls C5193144 ERYTHROKERATODERMIA VARIABILIS ET PROGRESSIVA 6 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080767 autoimmune myocarditis skos:exactMatch umls C1608389 Autoimmune myocarditis lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080768 pyridoxine-dependent epilepsy skos:exactMatch mesh C536254 Pyridoxine-dependent epilepsy lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080768 pyridoxine-dependent epilepsy skos:exactMatch umls C1849508 EPILEPSY, PYRIDOXINE-DEPENDENT lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080771 beta-thalassemia major skos:exactMatch umls C0002875 Cooley's anemia lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080772 beta-thalassemia intermedia skos:exactMatch umls C0472767 Beta thalassemia intermedia lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080773 delta beta-thalassemia skos:exactMatch umls C0271985 Delta-Beta Thalassemia lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080774 thalassemia minor skos:exactMatch mesh D017086 beta-Thalassemia lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080774 thalassemia minor skos:exactMatch umls C0085578 Thalassemia Minor lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080775 complete androgen insensitivity syndrome skos:exactMatch umls C0936016 Testicular Feminization lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080776 partial androgen insensitivity syndrome skos:exactMatch umls C0268301 Reifenstein Syndrome lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080777 lung sarcomatoid carcinoma skos:exactMatch umls C1708781 Sarcomatoid carcinoma of the lung lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080779 plasmablastic lymphoma skos:exactMatch mesh D000069293 Plasmablastic Lymphoma lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080779 plasmablastic lymphoma skos:exactMatch umls C0079746 Immunoblastic Large-Cell Lymphoma lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080779 plasmablastic lymphoma skos:exactMatch umls C3472614 Plasmablastic lymphoma lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080780 acute erythroid leukemia skos:exactMatch umls C0023440 Acute Erythroblastic Leukemia lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080780 acute erythroid leukemia skos:exactMatch umls C0279619 Adult Acute Erythroid Leukemia lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080780 acute erythroid leukemia skos:exactMatch umls C1332937 Childhood Acute Erythroid Leukemia lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080781 benign exocrine pancreas neoplasm skos:exactMatch umls C0347285 Benign tumor of exocrine pancreas lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080784 urinary tract infection skos:exactMatch mesh D014552 Urinary Tract Infections lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080784 urinary tract infection skos:exactMatch umls C0042029 Urinary tract infection lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080784 urinary tract infection skos:exactMatch umls C4554638 Urinary Tract Infection, CTCAE lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080785 Brown-Vialetto-Van Laere syndrome 1 skos:exactMatch umls C0796274 Brown-Vialetto-Van Laere Syndrome 1 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080786 Brown-Vialetto-Van Laere syndrome 2 skos:exactMatch umls C3553538 BROWN-VIALETTO-VAN LAERE SYNDROME 2 lexical 0.7709750566893424 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080789 Treacher Collins syndrome 1 skos:exactMatch umls C0242387 Mandibulofacial Dysostosis lexical 0.5487528344671202 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080790 Treacher Collins syndrome 2 skos:exactMatch umls C3150983 TREACHER COLLINS SYNDROME 2 lexical 0.7709750566893424 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080791 Treacher Collins syndrome 3 skos:exactMatch umls C1855433 Mandibulofacial dysostosis, Treacher Collins type, autosomal recessive lexical 0.5487528344671202 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080792 Treacher Collins syndrome 4 skos:exactMatch umls C5394546 TREACHER COLLINS SYNDROME 4 lexical 0.7709750566893424 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080794 childhood acute megakaryoblastic leukemia skos:exactMatch umls C0279650 Childhood Acute Megakaryoblastic Leukemia lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080795 acute basophilic leukemia skos:exactMatch mesh D015471 Leukemia, Basophilic, Acute lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080795 acute basophilic leukemia skos:exactMatch umls C0023437 Acute Basophilic Leukemia lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080795 acute basophilic leukemia skos:exactMatch umls C0279631 Adult Acute Basophilic Leukemia lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080795 acute basophilic leukemia skos:exactMatch umls C0279649 Childhood Acute Basophilic Leukemia lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080796 core binding factor acute myeloid leukemia skos:exactMatch umls C3839741 Core binding factor acute myeloid leukemia lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080797 nasal type extranodal NK/T-cell lymphoma skos:exactMatch umls C0392788 Nasal Type Extranodal NK/T-Cell Lymphoma lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080797 nasal type extranodal NK/T-cell lymphoma skos:exactMatch umls C1879279 adult nasal type extranodal NK/T-cell lymphoma lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080797 nasal type extranodal NK/T-cell lymphoma skos:exactMatch umls C1879280 childhood nasal type extranodal NK/T-cell lymphoma lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080798 myeloid leukemia associated with Down Syndrome skos:exactMatch umls C2825149 Myeloid leukemia associated with Down Syndrome lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080799 sinonasal undifferentiated carcinoma skos:exactMatch mesh C537344 Sinonasal undifferentiated carcinoma lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080799 sinonasal undifferentiated carcinoma skos:exactMatch umls C1710096 Sinonasal undifferentiated carcinoma lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080800 salivary gland mucinous adenocarcinoma skos:exactMatch umls C1882973 mucinous adenocarcinoma of salivary gland lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080801 autosomal dominant craniometaphyseal dysplasia skos:exactMatch mesh C565145 Craniometaphyseal Dysplasia, Autosomal Dominant lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080801 autosomal dominant craniometaphyseal dysplasia skos:exactMatch umls C1852502 CRANIOMETAPHYSEAL DYSPLASIA, AUTOSOMAL DOMINANT lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080802 autosomal recessive craniometaphyseal dysplasia skos:exactMatch mesh C536570 Craniometaphyseal dysplasia, autosomal recessive type lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080802 autosomal recessive craniometaphyseal dysplasia skos:exactMatch umls C2931244 Craniometaphyseal dysplasia, autosomal recessive type lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080803 cranioectodermal dysplasia 1 skos:exactMatch umls C0432235 CRANIOECTODERMAL DYSPLASIA 1 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080804 cranioectodermal dysplasia 2 skos:exactMatch umls C3150874 CRANIOECTODERMAL DYSPLASIA 2 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080805 cranioectodermal dysplasia 3 skos:exactMatch umls C3279807 CRANIOECTODERMAL DYSPLASIA 3 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080806 cranioectodermal dysplasia 4 skos:exactMatch umls C3280616 CRANIOECTODERMAL DYSPLASIA 4 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080808 mammary analogue secretory carcinoma skos:exactMatch mesh D000069295 Mammary Analogue Secretory Carcinoma lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080808 mammary analogue secretory carcinoma skos:exactMatch umls C4042906 Mammary Analogue Secretory Carcinoma lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080809 chronic asthma skos:exactMatch umls C0877430 Asthma chronic lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080810 acute asthma skos:exactMatch umls C0582415 Acute asthma lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080811 extrinsic asthma skos:exactMatch umls C0155877 Allergic asthma lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080811 extrinsic asthma skos:exactMatch umls C1827849 IgE-mediated allergic asthma lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080812 intermittent asthma skos:exactMatch umls C1740754 Intermittent asthma lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080812 intermittent asthma skos:exactMatch umls C4282170 Intermittent asthma (history) lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080820 occupational asthma skos:exactMatch umls C0264423 Asthma, Occupational lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080823 near-fatal asthma skos:exactMatch umls C5192201 Near fatal asthma lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080826 nocturnal asthma skos:exactMatch umls C1273489 Asthma night-time symptoms lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080829 low grade glioma skos:exactMatch umls C1997217 Low grade glioma lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080832 mild cognitive impairment skos:exactMatch umls C1270972 Mild cognitive disorder lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080833 laryngomalacia skos:exactMatch umls C0264303 Laryngomalacia lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080835 TORCH syndrome skos:exactMatch umls C0270173 TORCH syndrome lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080841 pemphigoid skos:exactMatch mesh D010391 Pemphigoid, Bullous lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080841 pemphigoid skos:exactMatch umls C0030805 Bullous pemphigoid lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080842 intracranial meningioma skos:exactMatch mesh D008579 Meningioma lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080842 intracranial meningioma skos:exactMatch umls C0349604 Intracranial Meningioma lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080843 supratentorial meningioma skos:exactMatch umls C1336537 Supratentorial Meningioma lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080844 omodysplasia 1 skos:exactMatch mesh C537746 Omodysplasia type 1 lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080844 omodysplasia 1 skos:exactMatch umls C0432204 Omodysplasia I lexical 0.7431457431457431 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080844 omodysplasia 1 skos:exactMatch umls C1850318 Omodysplasia type 1 lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080845 omodysplasia 2 skos:exactMatch mesh C567664 Omodysplasia 2 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080845 omodysplasia 2 skos:exactMatch umls C0432205 Omodysplasia II lexical 0.7431457431457431 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080845 omodysplasia 2 skos:exactMatch umls C2750355 Omodysplasia 2 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080850 pemphigus foliaceus skos:exactMatch mesh D010392 Pemphigus lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080850 pemphigus foliaceus skos:exactMatch umls C0263313 Pemphigus Foliaceus lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080851 IgA pemphigus skos:exactMatch umls C1274167 IgA pemphigus lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080852 paraneoplastic pemphigus skos:exactMatch umls C1112570 Paraneoplastic pemphigus lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080854 anaplastic pleomorphic xanthoastrocytoma skos:exactMatch umls C4283858 Anaplastic Pleomorphic Xanthoastrocytoma lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080855 Parkinsonism skos:exactMatch mesh D020734 Parkinsonian Disorders lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080855 Parkinsonism skos:exactMatch umls C0242422 Parkinsonian Disorders lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080856 vascular Parkinsonism skos:exactMatch umls C0393568 Vascular parkinsonism lexical 0.761698618841476 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080882 anaplastic oligodendroglioma, IDH-mutant and 1p/19q-codeleted skos:exactMatch umls C4289979 Anaplastic Oligodendroglioma, IDH-Mutant and 1p/19q-Codeleted lexical 0.7338693052978766 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080883 vitamin D-dependent rickets skos:exactMatch umls C0221468 Vitamin D-dependent rickets lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080890 supratentorial ependymoma skos:exactMatch umls C0278650 Childhood Supratentorial Ependymoma lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080892 RELA fusion-positive ependymoma skos:exactMatch umls C4289581 RELA fusion-positive ependymoma lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080893 Bainbridge-Ropers syndrome skos:exactMatch umls C3809650 BAINBRIDGE-ROPERS SYNDROME lexical 0.761698618841476 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080895 rapidly involuting congenital hemangioma skos:exactMatch umls C1275421 Rapidly involuting congenital hemangioma lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080898 cerebellofaciodental syndrome skos:exactMatch umls C4015495 CEREBELLOFACIODENTAL SYNDROME lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080902 bladder small cell carcinoma skos:exactMatch umls C1332564 Small cell neuroendocrine carcinoma of bladder lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080903 embryonal tumor with multilayered rosettes, C19MC-altered skos:exactMatch umls C0281330 Adult Embryonal Tumor with Multilayered Rosettes, C19MC-Altered lexical 0.5116470830756544 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080903 embryonal tumor with multilayered rosettes, C19MC-altered skos:exactMatch umls C0700367 Ependymoblastoma lexical 0.5116470830756544 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080903 embryonal tumor with multilayered rosettes, C19MC-altered skos:exactMatch umls C3899666 Childhood Embryonal Tumor with Multilayered Rosettes, C19MC-Altered lexical 0.5116470830756544 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080905 central nervous system neuroblastoma skos:exactMatch umls C0559458 Neuroblastoma of brain lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080905 central nervous system neuroblastoma skos:exactMatch umls C3544256 Neuroblastoma of central nervous system lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0080905 central nervous system neuroblastoma skos:exactMatch umls C3887519 Childhood Central Nervous System Neuroblastoma lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0090001 Fraser syndrome skos:exactMatch umls C0265233 Cryptophthalmos syndrome lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0090002 Tietz syndrome skos:exactMatch umls C0391816 Tietz syndrome lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0090003 agenesis of the corpus callosum with peripheral neuropathy skos:exactMatch umls C0795950 Corpus callosum agenesis neuronopathy lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0090004 progressive pseudorheumatoid arthropathy of childhood skos:exactMatch umls C0432215 Progressive pseudorheumatoid dysplasia lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0090006 renal coloboma syndrome skos:exactMatch mesh C537168 Papillorenal syndrome lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0090006 renal coloboma syndrome skos:exactMatch umls C1852759 Papillorenal syndrome lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0090007 immunodeficiency-centromeric instability-facial anomalies syndrome skos:exactMatch umls C0398788 Immunodeficiency syndrome, variable lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0090008 immunodeficiency-centromeric instability-facial anomalies syndrome 1 skos:exactMatch umls C4551557 IMMUNODEFICIENCY-CENTROMERIC INSTABILITY-FACIAL ANOMALIES SYNDROME 1 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0090009 immunodeficiency-centromeric instability-facial anomalies syndrome 2 skos:exactMatch umls C3279748 IMMUNODEFICIENCY-CENTROMERIC INSTABILITY-FACIAL ANOMALIES SYNDROME 2 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0090010 immunodeficiency-centromeric instability-facial anomalies syndrome 3 skos:exactMatch umls C4310799 IMMUNODEFICIENCY-CENTROMERIC INSTABILITY-FACIAL ANOMALIES SYNDROME 3 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0090011 immunodeficiency-centromeric instability-facial anomalies syndrome 4 skos:exactMatch umls C4310798 IMMUNODEFICIENCY-CENTROMERIC INSTABILITY-FACIAL ANOMALIES SYNDROME 4 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0090012 severe combined immunodeficiency with sensitivity to ionizing radiation skos:exactMatch umls C1865370 Severe combined immunodeficiency with sensitivity to ionizing radiation lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0090013 severe combined immunodeficiency, autosomal recessive, T cell-negative, B cell-negative, Nk cell-positive skos:exactMatch umls C1832322 Severe Combined Immunodeficiency, Autosomal Recessive, T Cell-Negative, B Cell-Negative, NK Cell-Positive lexical 0.733250876108019 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0090014 severe combined immunodeficiency, autosomal recessive, T cell-negative, B cell-positive, Nk cell-positive skos:exactMatch mesh C563822 Severe Combined Immunodeficiency, Autosomal Recessive, T Cell Negative, B Cell Positive, NK Cell Positive lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0090014 severe combined immunodeficiency, autosomal recessive, T cell-negative, B cell-positive, Nk cell-positive skos:exactMatch umls C1837028 Severe Combined Immunodeficiency, Autosomal Recessive, T Cell Negative, B Cell Positive, NK Cell Positive lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0090015 Cenani-Lenz syndactyly syndrome skos:exactMatch umls C1859309 Syndactyly Cenani Lenz type lexical 0.5394763966192538 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0090016 chromosome 5q deletion syndrome skos:exactMatch umls C0740302 5q-syndrome lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0090017 epidermolysis bullosa simplex with muscular dystrophy skos:exactMatch umls C2931072 Epidermolysa bullosa simplex and limb girdle muscular dystrophy lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0090018 autosomal dominant familial periodic fever skos:exactMatch umls C1275126 TNF receptor-associated periodic fever syndrome (TRAPS) lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0090021 split hand-foot malformation 1 skos:exactMatch mesh C574275 Ectrodactyly lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0090021 split hand-foot malformation 1 skos:exactMatch umls C2931019 Split hand foot deformity 1 lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0090029 CINCA Syndrome skos:exactMatch mesh D056587 Cryopyrin-Associated Periodic Syndromes lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0090029 CINCA Syndrome skos:exactMatch umls C0409818 Chronic Infantile Neurological, Cutaneous, and Articular Syndrome lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0090030 corticosteroid-binding globulin deficiency skos:exactMatch umls C1852529 Corticosteroid-Binding Globulin Deficiency lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0090031 D-bifunctional protein deficiency skos:exactMatch umls C0342870 Bifunctional peroxisomal enzyme deficiency lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0090033 myoclonic dystonia skos:exactMatch umls C1834570 Myoclonic dystonia lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0090038 torsion dystonia 2 skos:exactMatch mesh C538006 Dystonia musculorum deformans type 2 lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0090038 torsion dystonia 2 skos:exactMatch umls C1857093 DYSTONIA 2, TORSION, AUTOSOMAL RECESSIVE (disorder) lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0090039 torsion dystonia 6 skos:exactMatch umls C1414216 Dystonia 6, torsion (disorder) lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0090040 torsion dystonia 7 skos:exactMatch mesh C566572 Cervical Dystonia, Primary lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0090040 torsion dystonia 7 skos:exactMatch umls C1865818 DYSTONIA 7, TORSION (disorder) lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0090043 dystonia 5 skos:exactMatch mesh C538007 Dystonia, Dopa-responsive lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0090043 dystonia 5 skos:exactMatch umls C1851920 Dopa-Responsive Dystonia lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0090044 dystonia 9 skos:exactMatch umls C1832855 CHOREOATHETOSIS/SPASTICITY, EPISODIC lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0090046 dystonia 21 skos:exactMatch umls C3281236 DYSTONIA 21 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0090047 paroxysmal nonkinesigenic dyskinesia 2 skos:exactMatch umls C1970149 PAROXYSMAL NONKINESIGENIC DYSKINESIA 2 (disorder) lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0090048 dystonia 16 skos:exactMatch mesh C567430 Dystonia 16 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0090048 dystonia 16 skos:exactMatch umls C2677567 DYSTONIA 16 (disorder) lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0090049 paroxysmal nonkinesigenic dyskinesia 1 skos:exactMatch umls C4551506 Paroxysmal Nonkinesigenic Dyskinesia 1 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0090050 dystonia 27 skos:exactMatch umls C4225336 DYSTONIA 27 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0090051 dystonia 23 skos:exactMatch umls C1422340 ANO3 gene lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0090051 dystonia 23 skos:exactMatch umls C3538999 DYSTONIA 23 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0090052 dystonia 24 skos:exactMatch efo 0009040 Cranio-cervical dystonia with laryngeal and upper-limb involvement lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0090052 dystonia 24 skos:exactMatch umls C3554374 Cranio-cervical dystonia with laryngeal and upper limb involvement lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0090053 episodic kinesigenic dyskinesia 1 skos:exactMatch mesh C537180 Familial paroxysmal dystonia lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0090053 episodic kinesigenic dyskinesia 1 skos:exactMatch umls C4552000 Episodic Kinesigenic Dyskinesia 1 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0090054 episodic kinesigenic dyskinesia 2 skos:exactMatch umls C1970238 Episodic Kinesigenic Dyskinesia 2 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0090055 dystonia 25 skos:exactMatch umls C3554447 DYSTONIA 25 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0090056 dystonia 12 skos:exactMatch mesh C538001 Dystonia 12 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0090056 dystonia 12 skos:exactMatch umls C1412630 ATP1A3 gene lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0090056 dystonia 12 skos:exactMatch umls C1868681 DYSTONIA 12 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0090057 X-linked dystonia-parkinsonism skos:exactMatch umls C1839130 Dystonia 3, Torsion, X-Linked lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0090058 torsion dystonia with onset in infancy skos:exactMatch umls C1865205 Torsion dystonia with onset in infancy lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0090059 enhanced S-cone syndrome skos:exactMatch umls C1849394 Enhanced S-Cone Syndrome lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0090060 Wolcott-Rallison syndrome skos:exactMatch umls C0432217 Wolcott-Rallison syndrome lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0090061 familial cold autoinflammatory syndrome skos:exactMatch mesh D056587 Cryopyrin-Associated Periodic Syndromes lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0090061 familial cold autoinflammatory syndrome skos:exactMatch umls C0343068 Familial cold urticaria lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0090062 familial cold autoinflammatory syndrome 1 skos:exactMatch mesh D056587 Cryopyrin-Associated Periodic Syndromes lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0090062 familial cold autoinflammatory syndrome 1 skos:exactMatch umls C4551895 Familial Cold Autoinflammatory Syndrome 1 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0090064 familial cold autoinflammatory syndrome 3 skos:exactMatch umls C3280914 FAMILIAL COLD AUTOINFLAMMATORY SYNDROME 3 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0090065 familial cold autoinflammatory syndrome 4 skos:exactMatch umls C4015276 FAMILIAL COLD AUTOINFLAMMATORY SYNDROME 4 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0090066 Fanconi-like syndrome skos:exactMatch umls C0151638 Fanconi like syndrome lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0090067 Fuhrmann syndrome skos:exactMatch umls C1856728 Fuhrmann syndrome lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0090068 giant axonal neuropathy 1 skos:exactMatch umls C1850386 GIANT AXONAL NEUROPATHY 1 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0090070 hypogonadotropic hypogonadism skos:exactMatch mesh D007006 Hypogonadism lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0090070 hypogonadotropic hypogonadism skos:exactMatch umls C0022735 Klinefelter Syndrome lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0090070 hypogonadotropic hypogonadism skos:exactMatch umls C0271623 Hypogonadotropic hypogonadism lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0090071 hypogonadotropic hypogonadism 11 with or without anosmia skos:exactMatch umls C3553844 HYPOGONADOTROPIC HYPOGONADISM 11 WITH OR WITHOUT ANOSMIA lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0090072 hypogonadotropic hypogonadism 12 with or without anosmia skos:exactMatch umls C1856897 Eunuchoidism, familial hypogonadotropic lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0090073 hypogonadotropic hypogonadism 13 with or without anosmia skos:exactMatch umls C3541462 HYPOGONADOTROPIC HYPOGONADISM 13 WITH OR WITHOUT ANOSMIA lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0090074 hypogonadotropic hypogonadism 8 with or without anosmia skos:exactMatch umls C3553841 HYPOGONADOTROPIC HYPOGONADISM 8 WITH OR WITHOUT ANOSMIA lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0090075 hypogonadotropic hypogonadism 15 with or without anosmia skos:exactMatch umls C3553977 HYPOGONADOTROPIC HYPOGONADISM 15 WITH OR WITHOUT ANOSMIA lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0090076 hypogonadotropic hypogonadism 18 with or without anosmia skos:exactMatch umls C3808975 HYPOGONADOTROPIC HYPOGONADISM 18 WITH OR WITHOUT ANOSMIA lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0090077 hypogonadotropic hypogonadism 4 with or without anosmia skos:exactMatch umls C3552343 HYPOGONADOTROPIC HYPOGONADISM 4 WITH OR WITHOUT ANOSMIA lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0090078 hypogonadotropic hypogonadism 7 with or without anosmia skos:exactMatch mesh C562785 Idiopathic Hypogonadotropic Hypogonadism lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0090078 hypogonadotropic hypogonadism 7 with or without anosmia skos:exactMatch umls C0342384 Idiopathic hypogonadotropic hypogonadism lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0090079 hypogonadotropic hypogonadism 17 with or without anosmia skos:exactMatch umls C3808971 HYPOGONADOTROPIC HYPOGONADISM 17 WITH OR WITHOUT ANOSMIA lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0090080 hypogonadotropic hypogonadism 16 with or without anosmia skos:exactMatch umls C3554021 HYPOGONADOTROPIC HYPOGONADISM 16 WITH OR WITHOUT ANOSMIA lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0090081 hypogonadotropic hypogonadism 22 with or without anosmia skos:exactMatch umls C4014988 HYPOGONADOTROPIC HYPOGONADISM 22 WITH OR WITHOUT ANOSMIA lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0090082 hypogonadotropic hypogonadism 20 with or without anosmia skos:exactMatch umls C3808983 HYPOGONADOTROPIC HYPOGONADISM 20 WITH OR WITHOUT ANOSMIA lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0090083 hypogonadotropic hypogonadism 2 with or without anosmia skos:exactMatch umls C1563720 Kallmann Syndrome 2 (disorder) lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0090084 hypogonadotropic hypogonadism 5 with or without anosmia skos:exactMatch umls C3552553 HYPOGONADOTROPIC HYPOGONADISM 5 WITH OR WITHOUT ANOSMIA lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0090085 hypogonadotropic hypogonadism 9 with or without anosmia skos:exactMatch umls C3553842 HYPOGONADOTROPIC HYPOGONADISM 9 WITH OR WITHOUT ANOSMIA lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0090086 hypogonadotropic hypogonadism 6 with or without anosmia skos:exactMatch umls C3552574 HYPOGONADOTROPIC HYPOGONADISM 6 WITH OR WITHOUT ANOSMIA lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0090087 hypogonadotropic hypogonadism 14 with or without anosmia skos:exactMatch umls C3540450 HYPOGONADOTROPIC HYPOGONADISM 14 WITH OR WITHOUT ANOSMIA lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0090088 hypogonadotropic hypogonadism 24 without anosmia skos:exactMatch umls C1856716 Follicle-stimulating hormone deficiency, isolated lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0090089 hypogonadotropic hypogonadism 10 with or without anosmia skos:exactMatch umls C3553843 HYPOGONADOTROPIC HYPOGONADISM 10 WITH OR WITHOUT ANOSMIA lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0090090 hypogonadotropic hypogonadism 19 with or without anosmia skos:exactMatch umls C3808981 HYPOGONADOTROPIC HYPOGONADISM 19 WITH OR WITHOUT ANOSMIA lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0090092 hypogonadotropic hypogonadism 3 with or without anosmia skos:exactMatch umls C3550478 HYPOGONADOTROPIC HYPOGONADISM 3 WITH OR WITHOUT ANOSMIA lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0090093 hypogonadotropic hypogonadism 21 with or without anosmia skos:exactMatch umls C3808986 HYPOGONADOTROPIC HYPOGONADISM 21 WITH OR WITHOUT ANOSMIA lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0090094 hypogonadotropic hypogonadism 1 with or without anosmia skos:exactMatch umls C1563719 Kallmann Syndrome 1 lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0090100 ocular albinism with sensorineural deafness skos:exactMatch umls C1845069 ALBINISM, OCULAR, WITH LATE-ONSET SENSORINEURAL DEAFNESS (disorder) lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0090105 autosomal recessive hypercholesterolemia skos:exactMatch umls C1537558 LDLRAP1 gene lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0090105 autosomal recessive hypercholesterolemia skos:exactMatch umls C1863512 HYPERCHOLESTEROLEMIA, AUTOSOMAL RECESSIVE lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0090109 autosomal dominant hypocalcemia skos:exactMatch umls C4048195 Autosomal dominant hypocalcemia lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0090113 RIDDLE syndrome skos:exactMatch umls C2677792 Riddle Syndrome lexical 0.761698618841476 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0090114 Sorsby's fundus dystrophy skos:exactMatch umls C1850938 FUNDUS DYSTROPHY, PSEUDOINFLAMMATORY, OF SORSBY lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0090116 spondylocarpotarsal synostosis syndrome skos:exactMatch umls C1848934 SPONDYLOCARPOTARSAL SYNOSTOSIS SYNDROME lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0090122 aromatase excess syndrome skos:exactMatch umls C1970109 AROMATASE EXCESS SYNDROME lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0090125 COL4A1-related familial vascular leukoencephalopathy skos:exactMatch umls C4755307 COL4A1-related familial vascular leukoencephalopathy lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0090126 branched-chain keto acid dehydrogenase kinase deficiency skos:exactMatch umls C3554078 BRANCHED-CHAIN KETO ACID DEHYDROGENASE KINASE DEFICIENCY lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0090128 Carvajal syndrome skos:exactMatch umls C1854063 Cardiomyopathy dilated with Woolly hair and keratoderma lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0090129 carnitine palmitoyltransferase I deficiency skos:exactMatch mesh C535588 Carnitine palmitoyl transferase 1A deficiency lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0090129 carnitine palmitoyltransferase I deficiency skos:exactMatch umls C1829703 Carnitine palmitoyl transferase 1A deficiency lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0090130 cortical dysplasia-focal epilepsy syndrome skos:exactMatch mesh C567657 Cortical Dysplasia-Focal Epilepsy Syndrome lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0090130 cortical dysplasia-focal epilepsy syndrome skos:exactMatch umls C4552043 Cortical Dysplasia-Focal Epilepsy Syndrome lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0090139 cortisone reductase deficiency skos:exactMatch umls C1291245 Cortisone reductase deficiency lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0090140 cortisone reductase deficiency 2 skos:exactMatch umls C3553382 CORTISONE REDUCTASE DEFICIENCY 2 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0090141 cortisone reductase deficiency 1 skos:exactMatch umls C3551716 CORTISONE REDUCTASE DEFICIENCY 1 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0090143 brachyolmia-amelogenesis imperfecta syndrome skos:exactMatch umls C1832594 Verloes Bourguignon syndrome lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110000 3-methylglutaconic aciduria type 5 skos:exactMatch umls C1857776 3-@METHYLGLUTACONIC ACIDURIA, TYPE V lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110001 3-methylglutaconic aciduria with deafness, encephalopathy, and Leigh-like syndrome skos:exactMatch umls C3553597 3-METHYLGLUTACONIC ACIDURIA WITH DEAFNESS, ENCEPHALOPATHY, AND LEIGH-LIKE SYNDROME lexical 0.733250876108019 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110002 3-methylglutaconic aciduria type 1 skos:exactMatch umls C0342727 3-@METHYLGLUTACONIC ACIDURIA, TYPE I lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110004 3-methylglutaconic aciduria type 3 skos:exactMatch umls C0574084 3-Methylglutaconic aciduria type 3 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110005 Leber congenital amaurosis 9 skos:exactMatch umls C1425150 NMNAT1 gene lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110005 Leber congenital amaurosis 9 skos:exactMatch umls C1837873 LEBER CONGENITAL AMAUROSIS 9 (disorder) lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110006 3-methylglutaconic aciduria type 4 skos:exactMatch umls C1855126 3-Methylglutaconic Aciduria Type IV lexical 0.7524221809936096 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110007 achromatopsia 2 skos:exactMatch mesh C536128 Achromatopsia 2 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110007 achromatopsia 2 skos:exactMatch umls C1857618 Achromatopsia 2 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110008 achromatopsia 3 skos:exactMatch umls C1849792 Achromatopsia 3 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110009 achromatopsia 7 skos:exactMatch umls C4225297 ACHROMATOPSIA 7 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110010 achromatopsia 4 skos:exactMatch umls C1841721 ACHROMATOPSIA 4 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110016 Leber congenital amaurosis 2 skos:exactMatch umls C1859844 LEBER CONGENITAL AMAUROSIS, TYPE II (disorder) lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110031 hemoglobin H disease skos:exactMatch umls C0002312 alpha-Thalassemia lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110031 hemoglobin H disease skos:exactMatch umls C3161174 Hemoglobin H Disease lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110034 X-linked Alport syndrome skos:exactMatch mesh D009394 Nephritis, Hereditary lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110034 X-linked Alport syndrome skos:exactMatch umls C1567742 Alport Syndrome, X-Linked lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110068 frontotemporal dementia and/or amyotrophic lateral sclerosis-3 skos:exactMatch umls C4225326 FRONTOTEMPORAL DEMENTIA AND/OR AMYOTROPHIC LATERAL SCLEROSIS 3 lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110069 frontotemporal dementia and/or amyotrophic lateral sclerosis-4 skos:exactMatch umls C4225325 FRONTOTEMPORAL DEMENTIA AND/OR AMYOTROPHIC LATERAL SCLEROSIS 4 lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110070 arrhythmogenic right ventricular dysplasia 1 skos:exactMatch umls C1336622 TGFB3 gene lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110070 arrhythmogenic right ventricular dysplasia 1 skos:exactMatch umls C4016411 ARRHYTHMOGENIC RIGHT VENTRICULAR DYSPLASIA 1 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110071 arrhythmogenic right ventricular dysplasia 2 skos:exactMatch umls C1419779 RYR2 gene lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110074 arrhythmogenic right ventricular dysplasia 5 skos:exactMatch umls C1540016 TMEM43 gene lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110078 Leber congenital amaurosis 1 skos:exactMatch umls C2931258 Amaurosis congenita of Leber, type 1 lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110079 Leber congenital amaurosis 8 skos:exactMatch umls C3151202 LEBER CONGENITAL AMAUROSIS 8 lexical 0.7709750566893424 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110080 Leber congenital amaurosis 12 skos:exactMatch umls C1857743 LEBER CONGENITAL AMAUROSIS 12 (disorder) lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110085 asphyxiating thoracic dystrophy 1 skos:exactMatch mesh C537571 Jeune syndrome lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110087 asphyxiating thoracic dystrophy 3 skos:exactMatch mesh D012779 Short Rib-Polydactyly Syndrome lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110087 asphyxiating thoracic dystrophy 3 skos:exactMatch umls C0036069 Saldino-Noonan Syndrome lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110088 asphyxiating thoracic dystrophy 4 skos:exactMatch umls C3151185 SHORT-RIB THORACIC DYSPLASIA 4 WITH OR WITHOUT POLYDACTYLY lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110089 asphyxiating thoracic dystrophy 5 skos:exactMatch umls C3280598 SHORT-RIB THORACIC DYSPLASIA 5 WITH OR WITHOUT POLYDACTYLY lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110090 short-rib thoracic dysplasia 7 with or without polydactyly skos:exactMatch umls C3279792 SHORT-RIB THORACIC DYSPLASIA 7 WITH OR WITHOUT POLYDACTYLY lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110091 short-rib thoracic dysplasia 10 with or without polydactyly skos:exactMatch umls C3810175 SHORT-RIB THORACIC DYSPLASIA 10 WITH OR WITHOUT POLYDACTYLY lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110092 short-rib thoracic dysplasia 6 with or without polydactyly skos:exactMatch umls C0024507 Majewski Syndrome lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110093 short-rib thoracic dysplasia 13 with or without polydactyly skos:exactMatch umls C4225378 SHORT-RIB THORACIC DYSPLASIA 13 WITH OR WITHOUT POLYDACTYLY lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110094 short-rib thoracic dysplasia 8 with or without polydactyly skos:exactMatch umls C3809691 SHORT-RIB THORACIC DYSPLASIA 8 WITH OR WITHOUT POLYDACTYLY lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110095 short-rib thoracic dysplasia 11 with or without polydactyly skos:exactMatch umls C3810200 SHORT-RIB THORACIC DYSPLASIA 11 WITH OR WITHOUT POLYDACTYLY lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110096 short-rib thoracic dysplasia 14 with polydactyly skos:exactMatch umls C4225286 SHORT-RIB THORACIC DYSPLASIA 14 WITH POLYDACTYLY lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110097 short-rib thoracic dysplasia 9 with or without polydactyly skos:exactMatch umls C1849437 Mainzer-Saldino Disease lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110116 autoimmune lymphoproliferative syndrome type 2B skos:exactMatch mesh D056735 Autoimmune Lymphoproliferative Syndrome lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110116 autoimmune lymphoproliferative syndrome type 2B skos:exactMatch umls C1846545 Autoimmune Lymphoproliferative Syndrome Type 2B lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110117 autoimmune lymphoproliferative syndrome type 4 skos:exactMatch umls C2674723 RAS-ASSOCIATED AUTOIMMUNE LEUKOPROLIFERATIVE DISORDER lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110118 Leber congenital amaurosis 16 skos:exactMatch umls C3280062 LEBER CONGENITAL AMAUROSIS 16 lexical 0.7709750566893424 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110120 Axenfeld-Rieger syndrome type 1 skos:exactMatch umls C3714873 Axenfeld-Rieger Syndrome, Type 1 lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110121 Axenfeld-Rieger syndrome type 2 skos:exactMatch umls C1832229 Rieger syndrome 2 (disorder) lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110122 Axenfeld-Rieger syndrome type 3 skos:exactMatch umls C2678503 AXENFELD-RIEGER SYNDROME, TYPE 3 lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110123 Bardet-Biedl syndrome 1 skos:exactMatch umls C1412746 BBS1 gene lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110123 Bardet-Biedl syndrome 1 skos:exactMatch umls C2936862 Bardet-Biedl syndrome 1 (disorder) lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110124 Bardet-Biedl syndrome 2 skos:exactMatch umls C1412747 BBS2 gene lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110124 Bardet-Biedl syndrome 2 skos:exactMatch umls C2936863 Bardet-Biedl syndrome 2 (disorder) lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110125 Bardet-Biedl syndrome 3 skos:exactMatch umls C1859564 Bardet-Biedl syndrome 3 lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110126 Bardet-Biedl syndrome 4 skos:exactMatch umls C1412749 BBS4 gene lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110126 Bardet-Biedl syndrome 4 skos:exactMatch umls C2936864 Bardet-Biedl syndrome 4 (disorder) lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110127 Bardet-Biedl syndrome 5 skos:exactMatch umls C1412750 BBS5 gene lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110127 Bardet-Biedl syndrome 5 skos:exactMatch umls C3892039 BARDET-BIEDL SYNDROME 5 lexical 0.7709750566893424 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110128 Bardet-Biedl syndrome 6 skos:exactMatch umls C1858054 BARDET-BIEDL SYNDROME 6 lexical 0.7709750566893424 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110129 Bardet-Biedl syndrome 7 skos:exactMatch umls C1425764 BBS7 gene lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110129 Bardet-Biedl syndrome 7 skos:exactMatch umls C1859565 BARDET-BIEDL SYNDROME 7 lexical 0.7709750566893424 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110130 Bardet-Biedl syndrome 8 skos:exactMatch umls C1859566 BARDET-BIEDL SYNDROME 8 lexical 0.7709750566893424 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110131 Bardet-Biedl syndrome 9 skos:exactMatch umls C1842747 BBS9 gene lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110131 Bardet-Biedl syndrome 9 skos:exactMatch umls C1859567 BARDET-BIEDL SYNDROME 9 lexical 0.7709750566893424 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110132 Bardet-Biedl syndrome 10 skos:exactMatch umls C1826413 BBS10 gene lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110132 Bardet-Biedl syndrome 10 skos:exactMatch umls C1859568 BARDET-BIEDL SYNDROME 10 lexical 0.7709750566893424 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110133 Bardet-Biedl syndrome 11 skos:exactMatch umls C1859569 BARDET-BIEDL SYNDROME 11 lexical 0.7709750566893424 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110134 Bardet-Biedl syndrome 12 skos:exactMatch umls C1826414 BBS12 gene lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110134 Bardet-Biedl syndrome 12 skos:exactMatch umls C1859570 BARDET-BIEDL SYNDROME 12 lexical 0.7709750566893424 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110135 Bardet-Biedl syndrome 13 skos:exactMatch umls C2673873 BARDET-BIEDL SYNDROME 13 lexical 0.7709750566893424 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110136 Bardet-Biedl syndrome 14 skos:exactMatch umls C1824725 CEP290 gene lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110136 Bardet-Biedl syndrome 14 skos:exactMatch umls C2673874 BARDET-BIEDL SYNDROME 14 (disorder) lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110137 Bardet-Biedl syndrome 15 skos:exactMatch umls C3150127 BARDET-BIEDL SYNDROME 15 lexical 0.7709750566893424 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110138 Bardet-Biedl syndrome 16 skos:exactMatch umls C1419903 SDCCAG8 gene lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110138 Bardet-Biedl syndrome 16 skos:exactMatch umls C3889474 BARDET-BIEDL SYNDROME 16 lexical 0.7709750566893424 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110139 Bardet-Biedl syndrome 17 skos:exactMatch umls C3714980 BARDET-BIEDL SYNDROME 17 lexical 0.7709750566893424 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110140 Bardet-Biedl syndrome 18 skos:exactMatch umls C3806174 BARDET-BIEDL SYNDROME 18 lexical 0.7709750566893424 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110141 Bardet-Biedl syndrome 19 skos:exactMatch umls C3889475 BARDET-BIEDL SYNDROME 19 lexical 0.7709750566893424 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110148 Charcot-Marie-Tooth disease type 1A skos:exactMatch umls C0270911 Charcot-Marie-Tooth Disease, Type Ia (disorder) lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110149 Charcot-Marie-Tooth disease type 1F skos:exactMatch umls C1843164 Charcot-Marie-Tooth disease, demyelinating, Type 1F lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110150 Charcot-Marie-Tooth disease type 1D skos:exactMatch umls C1843247 Charcot-Marie-Tooth disease, Type 1D (disorder) lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110151 Charcot-Marie-Tooth disease type 1C skos:exactMatch umls C0270913 Charcot-Marie-Tooth disease, Type 1C lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110152 Charcot-Marie-Tooth disease type 1B skos:exactMatch umls C0270912 Charcot-Marie-Tooth Disease, Type Ib lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110153 Charcot-Marie-Tooth disease type 1E skos:exactMatch umls C2931686 Charcot-Marie-Tooth disease, Type 1E lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110154 Charcot-Marie-Tooth disease type 2A1 skos:exactMatch umls C1861678 Charcot-Marie-Tooth Disease, Axonal, Type 2a1 lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110155 Charcot-Marie-Tooth disease type 2A2A skos:exactMatch umls C4721887 CHARCOT-MARIE-TOOTH DISEASE, AXONAL, AUTOSOMAL DOMINANT, TYPE 2A2A lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110156 Charcot-Marie-Tooth disease type 2B1 skos:exactMatch umls C1854154 Charcot-Marie-Tooth disease, Type 2B1 lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110157 Charcot-Marie-Tooth disease type 2J skos:exactMatch umls C1843153 Charcot-Marie-Tooth disease, Type 2J lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110158 Charcot-Marie-Tooth disease type 2I skos:exactMatch umls C3888087 Charcot-Marie-Tooth disease, Type 2I lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110159 Charcot-Marie-Tooth disease type 2B skos:exactMatch umls C1833219 CHARCOT-MARIE-TOOTH DISEASE, AXONAL, TYPE 2B (disorder) lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110161 Charcot-Marie-Tooth disease type 2R skos:exactMatch umls C4751566 Charcot-Marie-Tooth disease type 2R lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110164 Charcot-Marie-Tooth disease type 2D skos:exactMatch umls C1832274 Charcot-Marie-Tooth disease, Type 2D lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110165 Charcot-Marie-Tooth disease type 2E skos:exactMatch umls C1843225 CHARCOT-MARIE-TOOTH DISEASE, AXONAL, TYPE 2E (disorder) lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110168 Charcot-Marie-Tooth disease type 2Y skos:exactMatch umls C4225244 CHARCOT-MARIE-TOOTH DISEASE, AXONAL, TYPE 2Y lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110179 Charcot-Marie-Tooth disease type 2B2 skos:exactMatch umls C1854150 Charcot-Marie-Tooth disease, Type 2B2 lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110183 Charcot-Marie-Tooth disease type 4C skos:exactMatch umls C1866636 CHARCOT-MARIE-TOOTH DISEASE, TYPE 4C lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110184 Charcot-Marie-Tooth disease type 4J skos:exactMatch umls C1970011 CHARCOT-MARIE-TOOTH DISEASE, TYPE 4J lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110185 Charcot-Marie-Tooth disease type 4A skos:exactMatch umls C1859198 CHARCOT-MARIE-TOOTH DISEASE, TYPE 4A (disorder) lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110186 Charcot-Marie-Tooth disease type 4D skos:exactMatch umls C1832334 CHARCOT-MARIE-TOOTH DISEASE, TYPE 4D lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110187 Charcot-Marie-Tooth disease type 4K skos:exactMatch umls C4225246 SURF1-related Charcot-Marie-Tooth disease type 4 lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110188 Leber congenital amaurosis 14 skos:exactMatch umls C2750063 Leber Congenital Amaurosis 14 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110189 Leber congenital amaurosis 15 skos:exactMatch umls C3151206 LEBER CONGENITAL AMAUROSIS 15 lexical 0.7709750566893424 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110190 Charcot-Marie-Tooth disease type 4B2 skos:exactMatch umls C1858278 Charcot-Marie-Tooth disease, Type 4B2 lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110191 Charcot-Marie-Tooth disease type 4B1 skos:exactMatch umls C1832399 Charcot-Marie-Tooth disease, Type 4B1 lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110192 Charcot-Marie-Tooth disease type 4H skos:exactMatch umls C1836336 CHARCOT-MARIE-TOOTH DISEASE, TYPE 4H lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110193 Charcot-Marie-Tooth disease type 4F skos:exactMatch umls C2608082 Charcot-Marie-Tooth disease type 4f (diagnosis) lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110194 Charcot-Marie-Tooth disease type 4B3 skos:exactMatch umls C3695063 Charcot-Marie-Tooth disease type 4B3 lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110195 Charcot-Marie-Tooth disease type 4E skos:exactMatch umls C4721437 Charcot-Marie-Tooth disease, Type 4E lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110196 Charcot-Marie-Tooth disease type 4G skos:exactMatch umls C1854449 Neuropathy, hereditary motor and sensory, Russe type lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110214 cleft soft palate skos:exactMatch umls C0432098 Cleft Soft Palate lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110215 Leber congenital amaurosis 5 skos:exactMatch umls C1537529 LCA5 gene lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110215 Leber congenital amaurosis 5 skos:exactMatch umls C1858301 LEBER CONGENITAL AMAUROSIS 5 lexical 0.7709750566893424 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110216 Leber congenital amaurosis 11 skos:exactMatch umls C1840284 LEBER CONGENITAL AMAUROSIS 11 lexical 0.7709750566893424 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110217 Leber congenital amaurosis 17 skos:exactMatch umls C3715164 LEBER CONGENITAL AMAUROSIS 17 lexical 0.7709750566893424 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110218 Brugada syndrome 1 skos:exactMatch umls C4551804 Brugada Syndrome 1 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110219 Brugada syndrome 2 skos:exactMatch umls C2673193 Brugada Syndrome 2 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110220 Brugada syndrome 3 skos:exactMatch umls C2678478 Brugada Syndrome 3 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110221 Brugada syndrome 4 skos:exactMatch umls C2678477 Brugada Syndrome 4 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110222 Brugada syndrome 5 skos:exactMatch umls C2748541 Brugada Syndrome 5 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110223 Brugada syndrome 6 skos:exactMatch umls C2751089 Brugada Syndrome 6 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110224 Brugada syndrome 7 skos:exactMatch umls C2751088 Brugada Syndrome 7 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110225 Brugada syndrome 8 skos:exactMatch umls C2751083 Brugada Syndrome 8 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110226 Brugada syndrome 9 skos:exactMatch umls C4225340 BRUGADA SYNDROME 9 lexical 0.7709750566893424 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110232 cataract 29 skos:exactMatch umls C3805409 CATARACT 29 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110233 cataract 27 skos:exactMatch umls C1846520 CATARACT, NUCLEAR PROGRESSIVE lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110237 cataract 42 skos:exactMatch umls C4011454 CATARACT 42 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110238 cataract 18 skos:exactMatch umls C1864908 Cataract, autosomal recessive congenital 2 lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110241 cataract 41 skos:exactMatch umls C3805412 CATARACT 41 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110242 cataract 13 with adult i phenotype skos:exactMatch umls C3805373 CATARACT 13 WITH ADULT i PHENOTYPE lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110244 cataract 28 skos:exactMatch umls C1836942 Cataract, Age-Related Cortical, 1 lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110245 cataract 38 skos:exactMatch umls C3553494 CATARACT 38 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110247 cataract 36 skos:exactMatch umls C3151304 CATARACT 36 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110248 cataract 30 skos:exactMatch umls C3805411 CATARACT 30 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110252 cataract 37 skos:exactMatch umls C3280758 CATARACT 37 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110254 cataract 25 skos:exactMatch umls C1854021 Cataract, Central Saccular, With Sutural Opacities lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110257 cataract 24 skos:exactMatch umls C1832609 Anterior polar cataract 2 lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110259 cataract 43 skos:exactMatch umls C4225389 CATARACT 43 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110260 cataract 7 skos:exactMatch umls C0344523 Cataract, congenital, cerulean type 1 lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110261 cataract 35 skos:exactMatch umls C1836272 Cataract, Congenital Nuclear, Autosomal Recessive 1 lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110262 cataract 45 skos:exactMatch umls C4225182 CATARACT 45 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110267 cataract 44 skos:exactMatch umls C4225300 CATARACT 44 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110271 cataract 23 skos:exactMatch umls C3808012 CATARACT 23, MULTIPLE TYPES lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110272 cataract 40 skos:exactMatch umls C4049004 CATARACT 40 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110275 autosomal recessive limb-girdle muscular dystrophy type 2A skos:exactMatch umls C1869123 Limb-girdle muscular dystrophy type 2A lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110276 autosomal recessive limb-girdle muscular dystrophy type 2B skos:exactMatch umls C4273680 Autosomal recessive limb girdle muscular dystrophy type 2B lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110277 autosomal recessive limb-girdle muscular dystrophy type 2C skos:exactMatch umls C4273683 Autosomal recessive limb girdle muscular dystrophy type 2C lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110278 autosomal recessive limb-girdle muscular dystrophy type 2D skos:exactMatch umls C4275182 Autosomal recessive limb girdle muscular dystrophy type 2D lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110279 autosomal recessive limb-girdle muscular dystrophy type 2E skos:exactMatch umls C4305132 Autosomal recessive limb girdle muscular dystrophy type 2E lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110280 autosomal recessive limb-girdle muscular dystrophy type 2F skos:exactMatch umls C4273682 Autosomal recessive limb girdle muscular dystrophy type 2F lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110281 autosomal recessive limb-girdle muscular dystrophy type 2G skos:exactMatch umls C4304020 Autosomal recessive limb girdle muscular dystrophy type 2G lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110283 autosomal recessive limb-girdle muscular dystrophy type 2J skos:exactMatch umls C4510741 Autosomal recessive limb girdle muscular dystrophy type 2J lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110284 autosomal recessive limb-girdle muscular dystrophy type 2L skos:exactMatch umls C4511965 Autosomal recessive limb girdle muscular dystrophy type 2L lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110285 autosomal recessive limb-girdle muscular dystrophy type 2Q skos:exactMatch umls C4511964 Autosomal recessive limb girdle muscular dystrophy type 2Q lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110287 autosomal recessive limb-girdle muscular dystrophy type 2S skos:exactMatch umls C4517996 Autosomal recessive limb girdle muscular dystrophy type 2S lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110289 autosomal recessive limb-girdle muscular dystrophy type 2Y skos:exactMatch umls C4511482 Autosomal recessive limb girdle muscular dystrophy type 2Y lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110291 Leber congenital amaurosis 10 skos:exactMatch umls C1857821 LEBER CONGENITAL AMAUROSIS 10 (disorder) lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110292 autosomal recessive limb-girdle muscular dystrophy type 2O skos:exactMatch umls C4510742 Autosomal recessive limb girdle muscular dystrophy type 2O lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110293 autosomal recessive limb-girdle muscular dystrophy type 2P skos:exactMatch umls C4511963 Autosomal recessive limb girdle muscular dystrophy type 2P lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110294 autosomal recessive limb-girdle muscular dystrophy type 2T skos:exactMatch umls C4518000 Autosomal recessive limb girdle muscular dystrophy type 2T lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110295 autosomal recessive limb-girdle muscular dystrophy type 2U skos:exactMatch umls C5190987 Autosomal recessive limb girdle muscular dystrophy type 2U lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110296 autosomal recessive limb-girdle muscular dystrophy type 2M skos:exactMatch umls C4511967 Autosomal recessive limb girdle muscular dystrophy type 2M lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110297 autosomal recessive limb-girdle muscular dystrophy type 2K skos:exactMatch umls C4304019 Autosomal recessive limb girdle muscular dystrophy type 2K lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110298 autosomal recessive limb-girdle muscular dystrophy type 2N skos:exactMatch umls C4511966 Autosomal recessive limb girdle muscular dystrophy type 2N lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110299 autosomal recessive limb-girdle muscular dystrophy type 2I skos:exactMatch umls C4273679 Autosomal recessive limb girdle muscular dystrophy type 2I lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110303 autosomal dominant limb-girdle muscular dystrophy type 1H skos:exactMatch umls C4749851 Autosomal dominant limb-girdle muscular dystrophy type 1H lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110329 Leber congenital amaurosis 6 skos:exactMatch umls C1854260 LEBER CONGENITAL AMAUROSIS 6 (disorder) lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110330 Leber congenital amaurosis 13 skos:exactMatch umls C2675186 LEBER CONGENITAL AMAUROSIS 13 lexical 0.7709750566893424 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110331 Leber congenital amaurosis 3 skos:exactMatch umls C1426931 SPATA7 gene lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110331 Leber congenital amaurosis 3 skos:exactMatch umls C1858677 LEBER CONGENITAL AMAUROSIS 3 (disorder) lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110332 Leber congenital amaurosis 4 skos:exactMatch umls C1858386 Leber Congenital Amaurosis 4 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110333 Leber congenital amaurosis 7 skos:exactMatch umls C3151192 LEBER CONGENITAL AMAUROSIS 7 lexical 0.7709750566893424 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110334 osteogenesis imperfecta type 1 skos:exactMatch umls C0023931 Lobstein Disease lexical 0.5301999587713874 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110337 osteogenesis imperfecta type 7 skos:exactMatch umls C1853162 Osteogenesis Imperfecta Type VII lexical 0.7431457431457431 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110339 osteogenesis imperfecta type 3 skos:exactMatch umls C0268362 Osteogenesis imperfecta type III (disorder) lexical 0.5301999587713874 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110340 osteogenesis imperfecta type 4 skos:exactMatch umls C0268363 Osteogenesis imperfecta type IV (disorder) lexical 0.5301999587713874 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110340 osteogenesis imperfecta type 4 skos:exactMatch umls C1332773 COL1A2 gene lexical 0.5301999587713874 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110341 osteogenesis imperfecta type 2 skos:exactMatch umls C0268358 Osteogenesis imperfecta, dominant perinatal lethal lexical 0.5301999587713874 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110352 retinitis pigmentosa 59 skos:exactMatch umls C3151227 RETINITIS PIGMENTOSA 59 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110353 retinitis pigmentosa 20 skos:exactMatch umls C3151086 Retinitis Pigmentosa 20 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110354 retinitis pigmentosa 19 skos:exactMatch umls C1866422 RETINITIS PIGMENTOSA 19 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110355 retinitis pigmentosa 32 skos:exactMatch umls C1835927 RETINITIS PIGMENTOSA 32 (disorder) lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110356 retinitis pigmentosa 18 skos:exactMatch umls C1832378 Retinitis Pigmentosa 18 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110357 retinitis pigmentosa 35 skos:exactMatch umls C1853214 RETINITIS PIGMENTOSA 35 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110358 retinitis pigmentosa 12 skos:exactMatch umls C1838647 RETINITIS PIGMENTOSA 12 (disorder) lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110359 retinitis pigmentosa 67 skos:exactMatch umls C3809954 RETINITIS PIGMENTOSA 67 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110360 retinitis pigmentosa 39 skos:exactMatch umls C3151138 RETINITIS PIGMENTOSA 39 (disorder) lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110361 retinitis pigmentosa 75 skos:exactMatch umls C4310759 RETINITIS PIGMENTOSA 75 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110362 retinitis pigmentosa 58 skos:exactMatch umls C3150879 RETINITIS PIGMENTOSA 58 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110363 retinitis pigmentosa 71 skos:exactMatch umls C4225342 RETINITIS PIGMENTOSA 71 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110364 retinitis pigmentosa 54 skos:exactMatch umls C3150691 RETINITIS PIGMENTOSA 54 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110365 retinitis pigmentosa 28 skos:exactMatch umls C1419614 RETINITIS PIGMENTOSA 28 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110366 retinitis pigmentosa 33 skos:exactMatch umls C1835895 RETINITIS PIGMENTOSA 33 (disorder) lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110367 retinitis pigmentosa 38 skos:exactMatch umls C3151228 RETINITIS PIGMENTOSA 38 (disorder) lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110368 retinitis pigmentosa 26 skos:exactMatch umls C1842127 Retinitis Pigmentosa 26 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110369 retinitis pigmentosa 47 skos:exactMatch umls C3151061 RETINITIS PIGMENTOSA 47 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110370 retinitis pigmentosa 55 skos:exactMatch umls C3150808 RETINITIS PIGMENTOSA 55 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110371 retinitis pigmentosa 56 skos:exactMatch umls C3150819 RETINITIS PIGMENTOSA 56 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110372 retinitis pigmentosa 4 skos:exactMatch umls C3151001 Retinitis Pigmentosa 4 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110373 retinitis pigmentosa 61 skos:exactMatch umls C3280041 RETINITIS PIGMENTOSA 61 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110374 retinitis pigmentosa 68 skos:exactMatch umls C3810380 RETINITIS PIGMENTOSA 68 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110375 retinitis pigmentosa 40 skos:exactMatch umls C3151107 RETINITIS PIGMENTOSA 40 (disorder) lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110376 retinitis pigmentosa 41 skos:exactMatch umls C2677516 RETINITIS PIGMENTOSA 41 (disorder) lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110377 retinitis pigmentosa 49 skos:exactMatch umls C3151059 RETINITIS PIGMENTOSA 49 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110378 retinitis pigmentosa 29 skos:exactMatch umls C2677325 RETINITIS PIGMENTOSA 29 (disorder) lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110379 retinitis pigmentosa 43 skos:exactMatch umls C3151139 RETINITIS PIGMENTOSA 43 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110380 retinitis pigmentosa 62 skos:exactMatch umls C3280042 RETINITIS PIGMENTOSA 62 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110381 retinitis pigmentosa 14 skos:exactMatch umls C1838603 Retinitis Pigmentosa 14 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110382 retinitis pigmentosa 48 skos:exactMatch umls C3151190 RETINITIS PIGMENTOSA 48 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110383 retinitis pigmentosa 7 skos:exactMatch umls C1842475 Retinitis Pigmentosa 7 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110384 retinitis pigmentosa 25 skos:exactMatch umls C1864446 Retinitis Pigmentosa 25 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110385 retinitis pigmentosa 63 skos:exactMatch umls C3281002 RETINITIS PIGMENTOSA 63 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110386 retinitis pigmentosa 42 skos:exactMatch umls C1423635 KLHL7 gene lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110386 retinitis pigmentosa 42 skos:exactMatch umls C2751986 RETINITIS PIGMENTOSA 42 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110387 retinitis pigmentosa 9 skos:exactMatch umls C1867300 RETINITIS PIGMENTOSA 9 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110388 retinitis pigmentosa 10 skos:exactMatch umls C1867299 Retinitis Pigmentosa 10 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110389 retinitis pigmentosa 73 skos:exactMatch umls C4225287 RETINITIS PIGMENTOSA 73 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110390 retinitis pigmentosa 1 skos:exactMatch umls C0220701 RETINITIS PIGMENTOSA 1 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110391 retinitis pigmentosa 31 skos:exactMatch umls C1835923 Retinitis Pigmentosa 31 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110392 retinitis pigmentosa 70 skos:exactMatch umls C4014681 RETINITIS PIGMENTOSA 70 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110393 retinitis pigmentosa 66 skos:exactMatch umls C3715216 RETINITIS PIGMENTOSA 66 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110394 retinitis pigmentosa 44 skos:exactMatch umls C3151068 RETINITIS PIGMENTOSA 44 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110395 retinitis pigmentosa 72 skos:exactMatch umls C4225315 RETINITIS PIGMENTOSA 72 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110396 retinitis pigmentosa 50 skos:exactMatch umls C2750789 RETINITIS PIGMENTOSA, CONCENTRIC (disorder) lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110397 retinitis pigmentosa 27 skos:exactMatch umls C1834329 RETINITIS PIGMENTOSA 27 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110398 retinitis pigmentosa 51 skos:exactMatch umls C3150715 RETINITIS PIGMENTOSA 51 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110399 retinitis pigmentosa 37 skos:exactMatch umls C1970163 RETINITIS PIGMENTOSA 37 (disorder) lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110400 retinitis pigmentosa 22 skos:exactMatch umls C3887981 RETINITIS PIGMENTOSA 22 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110401 retinitis pigmentosa 74 skos:exactMatch umls C4225281 RETINITIS PIGMENTOSA 74 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110402 retinitis pigmentosa 45 skos:exactMatch umls C3151066 RETINITIS PIGMENTOSA 45 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110403 retinitis pigmentosa 13 skos:exactMatch umls C1838702 Retinitis Pigmentosa 13 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110404 retinitis pigmentosa 17 skos:exactMatch umls C1833245 Retinitis Pigmentosa 17 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110405 retinitis pigmentosa 36 skos:exactMatch umls C1864621 RETINITIS PIGMENTOSA 36 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110406 retinitis pigmentosa 30 skos:exactMatch umls C1842816 RETINITIS PIGMENTOSA 30 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110407 retinitis pigmentosa 57 skos:exactMatch umls C3150821 RETINITIS PIGMENTOSA 57 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110408 retinitis pigmentosa 11 skos:exactMatch umls C1838601 Retinitis Pigmentosa 11 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110409 retinitis pigmentosa 46 skos:exactMatch umls C2675496 Retinitis Pigmentosa 46 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110410 retinitis pigmentosa 69 skos:exactMatch umls C4014312 RETINITIS PIGMENTOSA 69 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110411 retinitis pigmentosa 60 skos:exactMatch umls C3151434 RETINITIS PIGMENTOSA 60 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110412 retinitis pigmentosa 23 skos:exactMatch umls C1419610 RP23 gene lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110413 retinitis pigmentosa 6 skos:exactMatch umls C1839368 RETINITIS PIGMENTOSA 6 (disorder) lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110414 retinitis pigmentosa 3 skos:exactMatch umls C1845667 RETINITIS PIGMENTOSA 3 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110415 retinitis pigmentosa 2 skos:exactMatch umls C2681923 RETINITIS PIGMENTOSA 2 (disorder) lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110416 retinitis pigmentosa 24 skos:exactMatch umls C3887982 RETINITIS PIGMENTOSA 24 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110417 retinitis pigmentosa 34 skos:exactMatch umls C1845104 RETINITIS PIGMENTOSA 34 (disorder) lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110461 X-linked dilated cardiomyopathy skos:exactMatch umls C0013264 Muscular Dystrophy, Duchenne lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110461 X-linked dilated cardiomyopathy skos:exactMatch umls C3668940 Dmd-Associated Dilated Cardiomyopathy lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110594 primary ciliary dyskinesia 1 skos:exactMatch umls C4551906 Ciliary Dyskinesia, Primary, 1, With Or Without Situs Inversus lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110595 Stromme syndrome skos:exactMatch umls C1855705 Jejunal Atresia with Microcephaly and Ocular Anomalies lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110598 primary ciliary dyskinesia 14 skos:exactMatch umls C3151136 CILIARY DYSKINESIA, PRIMARY, 14 lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110623 primary ciliary dyskinesia 15 skos:exactMatch umls C3151137 CILIARY DYSKINESIA, PRIMARY, 15 lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110629 Wolfram syndrome 1 skos:exactMatch umls C4551693 Wolfram Syndrome 1 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110630 Wolfram syndrome 2 skos:exactMatch umls C1858028 WOLFRAM SYNDROME 2 lexical 0.7709750566893424 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110630 Wolfram syndrome 2 skos:exactMatch umls C1969088 CISD2 gene lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110633 rigid spine muscular dystrophy 1 skos:exactMatch umls C0410180 Eichsfeld type congenital muscular dystrophy lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110633 rigid spine muscular dystrophy 1 skos:exactMatch umls C1423899 SELENON gene lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110640 congenital muscular dystrophy due to LMNA mutation skos:exactMatch umls C2750785 MUSCULAR DYSTROPHY, CONGENITAL, LMNA-RELATED (disorder) lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110644 long QT syndrome 1 skos:exactMatch umls C4551647 Long QT Syndrome 1 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110645 long QT syndrome 2 skos:exactMatch umls C3150943 Long Qt Syndrome 2 lexical 0.7709750566893424 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110646 long QT syndrome 3 skos:exactMatch umls C1419864 SCN5A gene lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110646 long QT syndrome 3 skos:exactMatch umls C1859062 LONG QT SYNDROME 3 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110647 long QT syndrome 5 skos:exactMatch umls C1416563 KCNE1 gene lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110647 long QT syndrome 5 skos:exactMatch umls C1867904 LONG QT SYNDROME 5 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110648 long QT syndrome 6 skos:exactMatch umls C3150953 Long Qt Syndrome 6 lexical 0.7709750566893424 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110650 long QT syndrome 9 skos:exactMatch umls C2678485 LONG QT SYNDROME 9 (disorder) lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110651 long QT syndrome 10 skos:exactMatch umls C2678484 Long Qt Syndrome 10 lexical 0.7709750566893424 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110652 long QT syndrome 11 skos:exactMatch umls C2678483 Long Qt Syndrome 11 lexical 0.7709750566893424 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110653 long QT syndrome 12 skos:exactMatch mesh C566006 Long Qt Syndrome 1-2 lexical 0.7707689136260565 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110653 long QT syndrome 12 skos:exactMatch mesh C567842 Long Qt Syndrome 12 lexical 0.7709750566893424 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110653 long QT syndrome 12 skos:exactMatch umls C2751830 Long Qt Syndrome 12 lexical 0.7709750566893424 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110653 long QT syndrome 12 skos:exactMatch umls C3501853 Long Qt Syndrome 1-2 lexical 0.7707689136260565 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110654 long QT syndrome 13 skos:exactMatch umls C3150733 LONG QT SYNDROME 13 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110655 long QT syndrome 14 skos:exactMatch umls C4015671 LONG QT SYNDROME 14 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110656 long QT syndrome 15 skos:exactMatch umls C4015695 LONG QT SYNDROME 15 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110660 congenital myasthenic syndrome 12 skos:exactMatch umls C3552335 MYASTHENIC SYNDROME, CONGENITAL, 12 lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110667 congenital myasthenic syndrome 5 skos:exactMatch umls C1864233 ENDPLATE ACETYLCHOLINESTERASE DEFICIENCY (disorder) lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110698 hypotrichosis 1 skos:exactMatch umls C4551976 HYPOTRICHOSIS 1 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110699 hypotrichosis 2 skos:exactMatch umls C1840299 Hypotrichosis Simplex of Scalp lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110700 hypotrichosis 3 skos:exactMatch umls C3151432 HYPOTRICHOSIS 3 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110701 hypotrichosis 4 skos:exactMatch umls C2750815 Marie Unna Hereditary Hypotrichosis 1 lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110702 hypotrichosis 5 skos:exactMatch umls C2748535 Hypotrichosis 5 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110703 hypotrichosis 6 skos:exactMatch umls C1842839 HYPOTRICHOSIS 6 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110704 hypotrichosis 7 skos:exactMatch umls C1836672 Total Hypotrichosis, Mari type lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110705 hypotrichosis 8 skos:exactMatch umls C3279470 HYPOTRICHOSIS 8 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110706 hypotrichosis 9 skos:exactMatch umls C3280252 HYPOTRICHOSIS 9 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110707 hypotrichosis 10 skos:exactMatch umls C3280253 HYPOTRICHOSIS 10 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110708 hypotrichosis 11 skos:exactMatch umls C3554409 HYPOTRICHOSIS 11 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110709 hypotrichosis 12 skos:exactMatch umls C4014563 HYPOTRICHOSIS 12 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110710 hypotrichosis 13 skos:exactMatch umls C4014616 HYPOTRICHOSIS 13 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110712 Oguchi disease-1 skos:exactMatch mesh C537743 Oguchi disease lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110712 Oguchi disease-1 skos:exactMatch umls C4551824 Oguchi Disease 1 lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110713 Oguchi disease-2 skos:exactMatch umls C3150678 OGUCHI DISEASE 2 lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110716 Warburg micro syndrome 1 skos:exactMatch umls C1838625 Warburg Sjo Fledelius syndrome lexical 0.5487528344671202 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110717 Warburg micro syndrome 2 skos:exactMatch umls C3280214 WARBURG MICRO SYNDROME 2 lexical 0.7709750566893424 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110718 Warburg micro syndrome 3 skos:exactMatch umls C3280203 WARBURG MICRO SYNDROME 3 lexical 0.7709750566893424 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110719 Warburg micro syndrome 4 skos:exactMatch umls C3810265 WARBURG MICRO SYNDROME 4 lexical 0.7709750566893424 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110723 neuronal ceroid lipofuscinosis 8 skos:exactMatch umls C1864923 Northern epilepsy syndrome lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110725 neuronal ceroid lipofuscinosis 10 skos:exactMatch umls C1864669 NEURONAL CEROID LIPOFUSCINOSIS DUE TO CATHEPSIN D DEFICIENCY lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110735 neurodegeneration with brain iron accumulation 2a skos:exactMatch mesh D019150 Neuroaxonal Dystrophies lexical 0.5023706452277881 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110735 neurodegeneration with brain iron accumulation 2a skos:exactMatch umls C0270724 Infantile Neuroaxonal Dystrophy lexical 0.5023706452277881 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110736 neurodegeneration with brain iron accumulation 2b skos:exactMatch umls C1857747 NEURODEGENERATION WITH BRAIN IRON ACCUMULATION 2 (disorder) lexical 0.5023706452277881 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110738 neurodegeneration with brain iron accumulation 4 skos:exactMatch umls C1428487 C19orf12 gene lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110738 neurodegeneration with brain iron accumulation 4 skos:exactMatch umls C3280371 NEURODEGENERATION WITH BRAIN IRON ACCUMULATION 4 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110739 neurodegeneration with brain iron accumulation 5 skos:exactMatch umls C1538088 WDR45 gene lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110739 neurodegeneration with brain iron accumulation 5 skos:exactMatch umls C3550973 NEURODEGENERATION WITH BRAIN IRON ACCUMULATION 5 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110740 neurodegeneration with brain iron accumulation 6 skos:exactMatch umls C3810230 NEURODEGENERATION WITH BRAIN IRON ACCUMULATION 6 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110823 hereditary spastic paraplegia 8 skos:exactMatch umls C1863704 Spastic paraplegia 8, autosomal dominant lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110839 Usher syndrome type 2C skos:exactMatch umls C2931213 Usher syndrome, type 2C lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110843 xeroderma pigmentosum group A skos:exactMatch umls C0268135 Xeroderma pigmentosum, group A lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110844 xeroderma pigmentosum group C skos:exactMatch umls C2752147 XERODERMA PIGMENTOSUM, COMPLEMENTATION GROUP C lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110845 xeroderma pigmentosum group D skos:exactMatch umls C0268138 Xeroderma Pigmentosum, Complementation Group D lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110846 xeroderma pigmentosum group E skos:exactMatch umls C1848411 XERODERMA PIGMENTOSUM, COMPLEMENTATION GROUP E lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110847 xeroderma pigmentosum variant type skos:exactMatch umls C1848410 Xeroderma pigmentosum, variant type lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110848 xeroderma pigmentosum group F skos:exactMatch umls C0268140 Xeroderma pigmentosum, group F lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110849 xeroderma pigmentosum group G skos:exactMatch umls C0268141 Xeroderma pigmentosum, group G lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110850 xeroderma pigmentosum group B skos:exactMatch umls C0268136 Xeroderma pigmentosum, group B lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110851 rhizomelic chondrodysplasia punctata type 1 skos:exactMatch umls C1859133 RHIZOMELIC CHONDRODYSPLASIA PUNCTATA, TYPE 1 lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110852 rhizomelic chondrodysplasia punctata type 2 skos:exactMatch umls C1857242 Rhizomelic chondrodysplasia punctata, type 2 lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110853 rhizomelic chondrodysplasia punctata type 3 skos:exactMatch umls C1838612 Rhizomelic chondrodysplasia punctata, type 3 lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110857 posterior polymorphous corneal dystrophy 3 skos:exactMatch umls C1420645 ZEB1 gene lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110857 posterior polymorphous corneal dystrophy 3 skos:exactMatch umls C4083254 Zinc Finger E-Box-Binding Homeobox 1, Human lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110858 polycystic kidney disease 1 skos:exactMatch umls C3149841 POLYCYSTIC KIDNEY DISEASE 1 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110859 polycystic kidney disease 2 skos:exactMatch mesh D016891 Polycystic Kidney, Autosomal Dominant lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110859 polycystic kidney disease 2 skos:exactMatch umls C2751306 Polycystic kidney disease, type 2 lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110872 holoprosencephaly 2 skos:exactMatch mesh C563579 Holoprosencephaly 2 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110872 holoprosencephaly 2 skos:exactMatch umls C1834877 HOLOPROSENCEPHALY 2 (disorder) lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110873 holoprosencephaly 9 skos:exactMatch umls C1835819 PITUITARY ANOMALIES WITH HOLOPROSENCEPHALY-LIKE FEATURES (disorder) lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110874 holoprosencephaly 6 skos:exactMatch umls C1853830 Holoprosencephaly 6 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110875 holoprosencephaly 3 skos:exactMatch umls C1840529 HOLOPROSENCEPHALY 3 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110876 holoprosencephaly 7 skos:exactMatch umls C1835820 HOLOPROSENCEPHALY 7 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110877 holoprosencephaly 11 skos:exactMatch umls C3280215 HOLOPROSENCEPHALY 11 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110878 holoprosencephaly 5 skos:exactMatch mesh C566464 Holoprosencephaly 5 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110878 holoprosencephaly 5 skos:exactMatch umls C1864827 HOLOPROSENCEPHALY 5 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110879 holoprosencephaly 8 skos:exactMatch umls C1836254 Holoprosencephaly 8 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110880 holoprosencephaly 4 skos:exactMatch mesh C564180 Holoprosencephaly 4 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110880 holoprosencephaly 4 skos:exactMatch umls C1840528 HOLOPROSENCEPHALY 4 (disorder) lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110881 holoprosencephaly 1 skos:exactMatch mesh C562573 cyclopia sequence lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110881 holoprosencephaly 1 skos:exactMatch umls C0266667 Cyclocephaly lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110882 inflammatory bowel disease 7 skos:exactMatch umls C1854573 INFLAMMATORY BOWEL DISEASE 7 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110883 inflammatory bowel disease 17 skos:exactMatch umls C2677091 Inflammatory Bowel Disease 17 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110884 inflammatory bowel disease 23 skos:exactMatch umls C2676484 Inflammatory Bowel Disease 23 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110885 inflammatory bowel disease 10 skos:exactMatch umls C1970207 Inflammatory Bowel Disease 10 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110886 inflammatory bowel disease 9 skos:exactMatch umls C1838019 INFLAMMATORY BOWEL DISEASE 9 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110887 inflammatory bowel disease 12 skos:exactMatch umls C2677105 Inflammatory Bowel Disease 12 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110888 inflammatory bowel disease 18 skos:exactMatch umls C2677090 Inflammatory Bowel Disease 18 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110889 inflammatory bowel disease 5 skos:exactMatch umls C1853438 INFLAMMATORY BOWEL DISEASE 5 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110890 inflammatory bowel disease 19 skos:exactMatch umls C2677079 Inflammatory Bowel Disease 19 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110891 inflammatory bowel disease 3 skos:exactMatch umls C1858303 INFLAMMATORY BOWEL DISEASE 3 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110892 inflammatory bowel disease 1 skos:exactMatch mesh D003424 Crohn Disease lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110892 inflammatory bowel disease 1 skos:exactMatch umls C0010346 Crohn Disease lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110893 inflammatory bowel disease 13 skos:exactMatch umls C2677101 Inflammatory Bowel Disease 13 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110894 inflammatory bowel disease 11 skos:exactMatch umls C2674051 Inflammatory Bowel Disease 11 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110895 inflammatory bowel disease 14 skos:exactMatch umls C2677100 Inflammatory Bowel Disease 14 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110896 inflammatory bowel disease 16 skos:exactMatch umls C2677093 Inflammatory Bowel Disease 16 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110897 inflammatory bowel disease 15 skos:exactMatch umls C2677094 Inflammatory Bowel Disease 15 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110898 inflammatory bowel disease 20 skos:exactMatch umls C2676781 Inflammatory Bowel Disease 20 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110899 inflammatory bowel disease 28 skos:exactMatch umls C2751053 INFLAMMATORY BOWEL DISEASE 28, AUTOSOMAL RECESSIVE lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110900 inflammatory bowel disease 2 skos:exactMatch umls C1832321 INFLAMMATORY BOWEL DISEASE 2 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110901 inflammatory bowel disease 26 skos:exactMatch umls C2675249 Inflammatory Bowel Disease 26 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110902 inflammatory bowel disease 27 skos:exactMatch umls C2748550 Inflammatory Bowel Disease 27 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110903 inflammatory bowel disease 4 skos:exactMatch umls C1847691 INFLAMMATORY BOWEL DISEASE 4 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110904 inflammatory bowel disease 8 skos:exactMatch umls C1847719 INFLAMMATORY BOWEL DISEASE 8 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110905 inflammatory bowel disease 22 skos:exactMatch umls C2676485 Inflammatory Bowel Disease 22 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110906 inflammatory bowel disease 21 skos:exactMatch umls C2676507 Inflammatory Bowel Disease 21 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110907 inflammatory bowel disease 6 skos:exactMatch umls C1847692 INFLAMMATORY BOWEL DISEASE 6 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110908 inflammatory bowel disease 24 skos:exactMatch umls C2675509 Inflammatory Bowel Disease 24 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110909 inflammatory bowel disease 25 skos:exactMatch umls C4016006 INFLAMMATORY BOWEL DISEASE 25 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110912 leukocyte adhesion deficiency 3 skos:exactMatch umls C2748536 Leukocyte Adhesion Deficiency, Type III lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110913 adult hypophosphatasia skos:exactMatch umls C0268413 Adult hypophosphatasia (disorder) lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110914 infantile hypophosphatasia skos:exactMatch umls C0268412 Infantile hypophosphatasia lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110915 childhood hypophosphatasia skos:exactMatch umls C0220743 Childhood hypophosphatasia (disorder) lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110926 nemaline myopathy 1 skos:exactMatch umls C1836448 Nemaline myopathy 1 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110927 nemaline myopathy 3 skos:exactMatch umls C3711389 Actin-Accumulation Myopathy lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110928 nemaline myopathy 2 skos:exactMatch mesh C538349 Nemaline Myopathy 2 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110928 nemaline myopathy 2 skos:exactMatch umls C1850569 Nemaline Myopathy 2 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110929 nemaline myopathy 9 skos:exactMatch umls C3810384 NEMALINE MYOPATHY 9 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110930 nemaline myopathy 8 skos:exactMatch umls C3809209 NEMALINE MYOPATHY 8 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110931 nemaline myopathy 10 skos:exactMatch umls C4015360 NEMALINE MYOPATHY 10 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110932 nemaline myopathy 4 skos:exactMatch umls C1836447 Nemaline myopathy 4 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110933 nemaline myopathy 11 skos:exactMatch umls C4479186 NEMALINE MYOPATHY 11, AUTOSOMAL RECESSIVE lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110934 nemaline myopathy 7 skos:exactMatch umls C1853154 Nemaline Myopathy 7 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110935 nemaline myopathy 6 skos:exactMatch umls C1836472 Nemaline myopathy 6 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110936 nemaline myopathy 5 skos:exactMatch umls C1854380 NEMALINE MYOPATHY 5 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110940 autosomal recessive osteopetrosis 8 skos:exactMatch umls C3554478 OSTEOPETROSIS, AUTOSOMAL RECESSIVE 8 lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110941 autosomal recessive osteopetrosis 3 skos:exactMatch umls C0345407 OSTEOPETROSIS, AUTOSOMAL RECESSIVE 3 lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110942 autosomal recessive osteopetrosis 1 skos:exactMatch umls C1850127 Osteopetrosis, Autosomal Recessive 1 lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110947 Waardenburg syndrome type 2B skos:exactMatch umls C1838447 WAARDENBURG SYNDROME, TYPE 2B (disorder) lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110949 Waardenburg syndrome type 3 skos:exactMatch mesh D014849 Waardenburg Syndrome lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110949 Waardenburg syndrome type 3 skos:exactMatch umls C0079661 Klein's Syndrome lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110950 Waardenburg syndrome type 2A skos:exactMatch umls C1860339 WAARDENBURG SYNDROME, TYPE IIA lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110957 Gaucher's disease type I skos:exactMatch umls C1961835 Gaucher Disease, Type 1 lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110958 Gaucher's disease type II skos:exactMatch umls C0268250 Gaucher Disease, Type 2 (disorder) lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110959 Gaucher's disease type III skos:exactMatch umls C0268251 Gaucher Disease, Type 3 (disorder) lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110963 Ballard syndrome skos:exactMatch umls C1862163 Brachydactyly types B and E combined lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110964 brachydactyly type A1 skos:exactMatch umls C1862151 BRACHYDACTYLY, TYPE A1 (disorder) lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110966 brachydactyly type A3 skos:exactMatch umls C1862140 Brachydactyly type A3 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110967 brachydactyly type A4 skos:exactMatch umls C1862139 Brachymesophalangy 2 and 5 lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110971 brachydactyly type D skos:exactMatch umls C0220664 BRACHYDACTYLY, TYPE D lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110975 brachydactyly type B2 skos:exactMatch umls C1969652 BRACHYDACTYLY, TYPE B2 (disorder) lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110979 Sugarman brachydactyly skos:exactMatch mesh C557817 Orofaciodigital syndrome 3 lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110979 Sugarman brachydactyly skos:exactMatch umls C0406726 Orofaciodigital syndrome 3 lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110980 Joubert syndrome 1 skos:exactMatch mesh C536293 Agenesis of Cerebellar Vermis lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110980 Joubert syndrome 1 skos:exactMatch umls C1427565 INPP5E gene lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110980 Joubert syndrome 1 skos:exactMatch umls C4551568 Joubert syndrome 1 lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110981 Joubert syndrome 10 skos:exactMatch umls C2749019 JOUBERT SYNDROME 10 (disorder) lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110982 Joubert syndrome 13 skos:exactMatch umls C3280031 JOUBERT SYNDROME 13 lexical 0.7709750566893424 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110983 Joubert syndrome 14 skos:exactMatch umls C3280766 JOUBERT SYNDROME 14 lexical 0.7709750566893424 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110984 Joubert syndrome 15 skos:exactMatch umls C3280897 JOUBERT SYNDROME 15 lexical 0.7709750566893424 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110985 Joubert syndrome 16 skos:exactMatch umls C3280906 JOUBERT SYNDROME 16 lexical 0.7709750566893424 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110986 Joubert syndrome 17 skos:exactMatch umls C3553264 JOUBERT SYNDROME 17 lexical 0.7709750566893424 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110987 Joubert syndrome 18 skos:exactMatch umls C3553758 JOUBERT SYNDROME 18 lexical 0.7709750566893424 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110988 Joubert syndrome 2 skos:exactMatch umls C1842577 JOUBERT SYNDROME 2 lexical 0.7709750566893424 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110989 Joubert syndrome 20 skos:exactMatch umls C3554235 JOUBERT SYNDROME 20 lexical 0.7709750566893424 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110990 Joubert syndrome 21 skos:exactMatch umls C3810212 JOUBERT SYNDROME 21 lexical 0.7709750566893424 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110991 Joubert syndrome 22 skos:exactMatch umls C3810278 JOUBERT SYNDROME 22 lexical 0.7709750566893424 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110992 Joubert syndrome 23 skos:exactMatch umls C4084822 JOUBERT SYNDROME 23 lexical 0.7709750566893424 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110993 Joubert syndrome 24 skos:exactMatch umls C4084841 JOUBERT SYNDROME 24 lexical 0.7709750566893424 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110994 Joubert syndrome 25 skos:exactMatch umls C4084842 JOUBERT SYNDROME 25 lexical 0.7709750566893424 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110995 Joubert syndrome 26 skos:exactMatch umls C4084843 JOUBERT SYNDROME 26 lexical 0.7709750566893424 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110996 Joubert syndrome 27 skos:exactMatch umls C4310706 JOUBERT SYNDROME 27 lexical 0.7709750566893424 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110997 Joubert syndrome 28 skos:exactMatch umls C4310705 JOUBERT SYNDROME 28 lexical 0.7709750566893424 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110998 Joubert syndrome 3 skos:exactMatch umls C1837713 JOUBERT SYNDROME 3 lexical 0.7709750566893424 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0110999 Joubert syndrome 4 skos:exactMatch umls C1846790 JOUBERT SYNDROME 4 (disorder) lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111000 Joubert syndrome 5 skos:exactMatch umls C1824725 CEP290 gene lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111000 Joubert syndrome 5 skos:exactMatch umls C1857780 JOUBERT SYNDROME 5 lexical 0.7709750566893424 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111001 Joubert syndrome 6 skos:exactMatch umls C1853153 JOUBERT SYNDROME 6 lexical 0.7709750566893424 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111002 Joubert syndrome 7 skos:exactMatch umls C1969053 JOUBERT SYNDROME 7 lexical 0.7709750566893424 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111003 Joubert syndrome 8 skos:exactMatch umls C2676771 JOUBERT SYNDROME 8 (disorder) lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111004 Joubert syndrome 9 skos:exactMatch umls C2676788 JOUBERT SYNDROME 9 (disorder) lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111005 cone-rod dystrophy 2 skos:exactMatch mesh D000071700 Cone-Rod Dystrophies lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111005 cone-rod dystrophy 2 skos:exactMatch umls C3489532 Cone-Rod Dystrophy 2 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111009 cone-rod dystrophy 1 skos:exactMatch umls C1833564 CONE-ROD DYSTROPHY 1 (disorder) lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111010 cone-rod dystrophy 5 skos:exactMatch umls C1427269 PITPNM3 gene lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111010 cone-rod dystrophy 5 skos:exactMatch umls C1832976 Cone-Rod Dystrophy 5 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111011 cone-rod dystrophy 6 skos:exactMatch umls C1415364 GUCY2D gene lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111011 cone-rod dystrophy 6 skos:exactMatch umls C1866293 Retinal cone dystrophy 2 lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111012 cone-rod dystrophy 7 skos:exactMatch umls C1863634 Cone-Rod Dystrophy 7 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111013 cone-rod dystrophy 3 skos:exactMatch umls C1858806 CONE-ROD DYSTROPHY 3 (disorder) lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111014 cone-rod dystrophy 8 skos:exactMatch umls C1854180 CONE-ROD DYSTROPHY 8 (disorder) lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111016 cone-rod dystrophy 13 skos:exactMatch umls C2750720 Cone-Rod Dystrophy 13 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111017 cone-rod dystrophy 10 skos:exactMatch umls C1846529 CONE-ROD DYSTROPHY 10 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111018 cone-rod dystrophy 11 skos:exactMatch umls C1835865 Cone-Rod Dystrophy 11 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111019 cone-rod dystrophy 12 skos:exactMatch umls C2675210 CONE-ROD DYSTROPHY 12 (disorder) lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111020 cone-rod dystrophy 9 skos:exactMatch umls C1412207 ADAM9 gene lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111020 cone-rod dystrophy 9 skos:exactMatch umls C1423873 CONE-ROD DYSTROPHY 9 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111021 cone-rod dystrophy 15 skos:exactMatch umls C3150912 CONE-ROD DYSTROPHY 15 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111022 cone-rod dystrophy 16 skos:exactMatch umls C1824246 C8orf37 gene lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111022 cone-rod dystrophy 16 skos:exactMatch umls C3281045 CONE-ROD DYSTROPHY 16 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111023 cone-rod dystrophy 17 skos:exactMatch umls C3554610 CONE-ROD DYSTROPHY 17 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111024 cone-rod dystrophy 18 skos:exactMatch umls C3809299 CONE-ROD DYSTROPHY 18 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111025 cone-rod dystrophy 19 skos:exactMatch umls C4014501 CONE-ROD DYSTROPHY 19 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111026 cone-rod dystrophy 20 skos:exactMatch umls C4014856 CONE-ROD DYSTROPHY 20 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111033 African iron overload skos:exactMatch umls C0268063 Bantu siderosis lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111037 glycine N-methyltransferase deficiency skos:exactMatch mesh C564683 Hypermethioninemia lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111037 glycine N-methyltransferase deficiency skos:exactMatch umls C1847720 Hypermethioninemia due to deficiency of glycine N-methyltransferase lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111038 hypermethioninemia due to adenosine kinase deficiency skos:exactMatch umls C4706555 Hypermethioninemia encephalopathy due to deficiency of adenosine kinase lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111039 hypermethioninemia with deficiency of S-adenosylhomocysteine hydrolase skos:exactMatch mesh C564683 Hypermethioninemia lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111039 hypermethioninemia with deficiency of S-adenosylhomocysteine hydrolase skos:exactMatch umls C3151058 S-adenosylhomocysteine hydrolase deficiency lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111041 glycogen storage disease IXb skos:exactMatch umls C0543514 Glycogen Storage Disease IXB lexical 0.7431457431457431 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111043 glycogen storage disease IXc skos:exactMatch umls C2751643 Glycogen Storage Disease IXC lexical 0.7431457431457431 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111063 hyperphosphatemic familial tumoral calcinosis skos:exactMatch mesh C566870 Tumoral Calcinosis, Hyperphosphatemic, Familial lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111063 hyperphosphatemic familial tumoral calcinosis skos:exactMatch umls C1876187 TUMORAL CALCINOSIS, HYPERPHOSPHATEMIC, FAMILIAL lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111073 progressive familial heart block skos:exactMatch umls C1879286 Hereditary bundle branch system defect lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111077 pyruvate kinase deficiency of red cells skos:exactMatch mesh C564858 Pyruvate Kinase Deficiency of Red Cells lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111077 pyruvate kinase deficiency of red cells skos:exactMatch umls C0340968 Deficiency of pyruvate kinase lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111082 Fanconi anemia complementation group L skos:exactMatch umls C1427106 FANCL gene lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111082 Fanconi anemia complementation group L skos:exactMatch umls C3469528 FANCONI ANEMIA, COMPLEMENTATION GROUP L lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111083 Fanconi anemia complementation group D2 skos:exactMatch umls C1414530 FANCD2 gene lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111083 Fanconi anemia complementation group D2 skos:exactMatch umls C3160738 FANCONI ANEMIA, COMPLEMENTATION GROUP D2 lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111084 Fanconi anemia complementation group E skos:exactMatch umls C1414531 FANCE gene lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111084 Fanconi anemia complementation group E skos:exactMatch umls C3160739 FANCONI ANEMIA, COMPLEMENTATION GROUP E lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111086 Fanconi anemia complementation group G skos:exactMatch umls C1333238 FANCG protein, human lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111086 Fanconi anemia complementation group G skos:exactMatch umls C1333532 FANCG gene lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111086 Fanconi anemia complementation group G skos:exactMatch umls C3469527 fanconi anemia complementation group g lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111087 Fanconi anemia complementation group C skos:exactMatch umls C1414529 FANCC gene lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111087 Fanconi anemia complementation group C skos:exactMatch umls C3468041 FANCONI ANEMIA, COMPLEMENTATION GROUP C lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111088 Fanconi anemia complementation group F skos:exactMatch umls C1414532 FANCF gene lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111088 Fanconi anemia complementation group F skos:exactMatch umls C3469526 FANCONI ANEMIA, COMPLEMENTATION GROUP F lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111089 Fanconi anemia complementation group D1 skos:exactMatch umls C1838457 FANCONI ANEMIA, COMPLEMENTATION GROUP D1 lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111091 Fanconi anemia complementation group I skos:exactMatch umls C1825278 FANCI GENE lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111091 Fanconi anemia complementation group I skos:exactMatch umls C1836861 FANCONI ANEMIA, COMPLEMENTATION GROUP I lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111092 Fanconi anemia complementation group P skos:exactMatch umls C3469542 FANCONI ANEMIA, COMPLEMENTATION GROUP P lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111094 Fanconi anemia complementation group N skos:exactMatch umls C1835817 FANCONI ANEMIA, COMPLEMENTATION GROUP N lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111095 Fanconi anemia complementation group A skos:exactMatch umls C1414527 FANCA gene lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111095 Fanconi anemia complementation group A skos:exactMatch umls C3469521 FANCONI ANEMIA, COMPLEMENTATION GROUP A (disorder) lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111096 Fanconi anemia complementation group O skos:exactMatch umls C3150653 FANCONI ANEMIA, COMPLEMENTATION GROUP O lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111097 Fanconi anemia complementation group J skos:exactMatch umls C1836860 FANCONI ANEMIA, COMPLEMENTATION GROUP J lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111098 Fanconi anemia complementation group B skos:exactMatch umls C1414528 FANCB gene lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111098 Fanconi anemia complementation group B skos:exactMatch umls C1845292 FANCONI ANEMIA, COMPLEMENTATION GROUP B lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111112 nephronophthisis 1 skos:exactMatch mesh C537699 Nephronophthisis, familial juvenile lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111112 nephronophthisis 1 skos:exactMatch umls C4551979 Nephronophthisis 1 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111113 nephronophthisis 2 skos:exactMatch umls C1865872 NEPHRONOPHTHISIS 2 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111114 nephronophthisis 3 skos:exactMatch umls C1858392 NEPHRONOPHTHISIS 3 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111115 nephronophthisis 4 skos:exactMatch umls C1426011 NPHP4 gene lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111115 nephronophthisis 4 skos:exactMatch umls C1847013 NEPHRONOPHTHISIS 4 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111116 nephronophthisis 7 skos:exactMatch umls C1969092 NEPHRONOPHTHISIS 7 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111117 nephronophthisis-like nephropathy 1 skos:exactMatch umls C3150419 NEPHRONOPHTHISIS-LIKE NEPHROPATHY 1 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111118 nephronophthisis 11 skos:exactMatch umls C3150796 NEPHRONOPHTHISIS 11 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111119 nephronophthisis 12 skos:exactMatch umls C3151186 NEPHRONOPHTHISIS 12 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111120 nephronophthisis 9 skos:exactMatch umls C3151188 NEPHRONOPHTHISIS 9 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111121 nephronophthisis 13 skos:exactMatch umls C3280612 NEPHRONOPHTHISIS 13 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111122 nephronophthisis 14 skos:exactMatch umls C3539071 NEPHRONOPHTHISIS 14 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111123 nephronophthisis 15 skos:exactMatch umls C3541853 NEPHRONOPHTHISIS 15 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111124 nephronophthisis 16 skos:exactMatch umls C3809320 NEPHRONOPHTHISIS 16 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111125 nephronophthisis 18 skos:exactMatch umls C3890591 NEPHRONOPHTHISIS 18 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111126 nephronophthisis 19 skos:exactMatch umls C4015542 NEPHRONOPHTHISIS 19 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111127 nephronophthisis 20 skos:exactMatch umls C4310640 NEPHRONOPHTHISIS 20 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111128 focal segmental glomerulosclerosis 1 skos:exactMatch mesh C538457 Segmental glomerulosclerosis lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111128 focal segmental glomerulosclerosis 1 skos:exactMatch umls C1412168 ACTN4 gene lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111128 focal segmental glomerulosclerosis 1 skos:exactMatch umls C4551527 Focal segmental glomerulosclerosis 1 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111129 focal segmental glomerulosclerosis 2 skos:exactMatch umls C1421173 TRPC6 gene lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111129 focal segmental glomerulosclerosis 2 skos:exactMatch umls C1858915 FOCAL SEGMENTAL GLOMERULOSCLEROSIS 2 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111130 focal segmental glomerulosclerosis 5 skos:exactMatch umls C2750475 Focal Segmental Glomerulosclerosis 5 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111131 focal segmental glomerulosclerosis 6 skos:exactMatch umls C3279905 FOCAL SEGMENTAL GLOMERULOSCLEROSIS 6 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111132 focal segmental glomerulosclerosis 7 skos:exactMatch umls C4014925 FOCAL SEGMENTAL GLOMERULOSCLEROSIS 7 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111133 focal segmental glomerulosclerosis 8 skos:exactMatch umls C4014993 FOCAL SEGMENTAL GLOMERULOSCLEROSIS 8 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111134 focal segmental glomerulosclerosis 9 skos:exactMatch umls C4015555 FOCAL SEGMENTAL GLOMERULOSCLEROSIS 9 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111135 congenital generalized lipodystrophy type 1 skos:exactMatch umls C1720862 Congenital Generalized Lipodystrophy Type 1 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111136 congenital generalized lipodystrophy type 2 skos:exactMatch umls C1720863 Congenital Generalized Lipodystrophy Type 2 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111139 mitochondrial complex III deficiency skos:exactMatch umls C1852372 MITOCHONDRIAL COMPLEX III DEFICIENCY (disorder) lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111141 delayed sleep phase syndrome skos:exactMatch mesh D020178 Sleep Disorders, Circadian Rhythm lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111141 delayed sleep phase syndrome skos:exactMatch umls C0393770 Delayed Sleep Phase Syndrome lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111142 oligomeganephronia skos:exactMatch umls C0431694 Oligomeganephronic hypoplasia of kidney lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111144 preterm premature rupture of the membranes skos:exactMatch umls C0729264 Preterm premature rupture of membranes (disorder) lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111145 ureteropelvic junction obstruction skos:exactMatch umls C0521619 Obstruction of pelviureteric junction lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111151 Prinzmetal angina skos:exactMatch umls C0002963 Angina Pectoris, Variant lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111154 postural orthostatic tachycardia syndrome skos:exactMatch umls C1299624 Postural Orthostatic Tachycardia Syndrome lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111156 spermatogenic failure 9 skos:exactMatch umls C3151407 SPERMATOGENIC FAILURE 9 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111162 epidermal nevus skos:exactMatch mesh C580062 Epidermal Nevus lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111162 epidermal nevus skos:exactMatch umls C0334082 NEVUS, EPIDERMAL (disorder) lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111165 molybdenum cofactor deficiency skos:exactMatch mesh C535811 Molybdenum cofactor deficiency lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111165 molybdenum cofactor deficiency skos:exactMatch umls C0268119 Combined molybdoflavoprotein enzyme deficiency lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111167 Dyggve-Melchior-Clausen disease skos:exactMatch mesh C535726 Dyggve-Melchior-Clausen syndrome lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111167 Dyggve-Melchior-Clausen disease skos:exactMatch umls C0265286 Dyggve-Melchior-Clausen syndrome lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111184 myopathy, lactic acidosis, and sideroblastic anemia 3 skos:exactMatch umls C4225415 MYOPATHY, LACTIC ACIDOSIS, AND SIDEROBLASTIC ANEMIA 3 lexical 0.7338693052978766 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111185 myopathy, lactic acidosis, and sideroblastic anemia 1 skos:exactMatch umls C4551958 MYOPATHY, LACTIC ACIDOSIS, AND SIDEROBLASTIC ANEMIA 1 lexical 0.7338693052978766 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111186 myopathy, lactic acidosis, and sideroblastic anemia 2 skos:exactMatch umls C3150802 MYOPATHY, LACTIC ACIDOSIS, AND SIDEROBLASTIC ANEMIA 2 lexical 0.7338693052978766 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111192 facioscapulohumeral muscular dystrophy 1 skos:exactMatch umls C1834673 Facioscapulohumeral muscular dystrophy 1a lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111193 facioscapulohumeral muscular dystrophy 2 skos:exactMatch umls C1834671 FACIOSCAPULOHUMERAL MUSCULAR DYSTROPHY 1B lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111194 autosomal dominant adult-onset proximal spinal muscular atrophy skos:exactMatch umls C5191334 Autosomal dominant adult-onset proximal spinal muscular atrophy lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111195 erythrokeratodermia variabilis et progressiva 1 skos:exactMatch umls C4551486 ERYTHROKERATODERMIA VARIABILIS ET PROGRESSIVA 1 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111216 autosomal recessive centronuclear myopathy skos:exactMatch mesh D020914 Myopathies, Structural, Congenital lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111216 autosomal recessive centronuclear myopathy skos:exactMatch umls C0410204 Myopathy, Centronuclear, Autosomal Recessive lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111216 autosomal recessive centronuclear myopathy skos:exactMatch umls C3645536 Autosomal Recessive Centronuclear Myopathy lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111218 Friedreich ataxia 1 skos:exactMatch mesh C565561 Friedreich Ataxia 1 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111218 Friedreich ataxia 1 skos:exactMatch umls C1856689 FRIEDREICH ATAXIA 1 lexical 0.7709750566893424 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111219 Friedreich ataxia 2 skos:exactMatch umls C1865981 FRIEDREICH ATAXIA 2 lexical 0.7709750566893424 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111222 centronuclear myopathy 5 skos:exactMatch umls C4014814 MYOPATHY, CENTRONUCLEAR, 5 lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111223 centronuclear myopathy 1 skos:exactMatch umls C4551952 Myopathy, Centronuclear, 1 lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111227 chromosome 3-linked frontotemporal dementia skos:exactMatch umls C1833296 FRONTOTEMPORAL DEMENTIA, CHROMOSOME 3-LINKED lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111254 glutaric acidemia I skos:exactMatch umls C0268595 Glutaric aciduria, type 1 lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111262 infantile cerebral and cerebellar atrophy with postnatal progressive microcephaly skos:exactMatch umls C4749432 Infantile cerebral and cerebellar atrophy with postnatal progressive microcephaly lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111264 Ruijs-Aalfs syndrome skos:exactMatch umls C4015461 RUIJS-AALFS SYNDROME lexical 0.761698618841476 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111269 autosomal dominant hyaline body myopathy skos:exactMatch umls C1842160 MYOPATHY, MYOSIN STORAGE (disorder) lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111275 speech-language disorder-1 skos:exactMatch mesh D001072 Apraxias lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111275 speech-language disorder-1 skos:exactMatch umls C0750927 Apraxia, Developmental Verbal lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111278 histiocytosis-lymphadenopathy plus syndrome skos:exactMatch umls C1864445 Histiocytosis with joint contractures and sensorineural deafness lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111330 combined saposin deficiency skos:exactMatch umls C2673635 Combined Saposin Deficiency lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111332 Pitt-Hopkins-like syndrome 2 skos:exactMatch umls C3280479 PITT-HOPKINS-LIKE SYNDROME 2 lexical 0.7709750566893424 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111334 congenital leptin deficiency skos:exactMatch umls C3838754 Congenital leptin deficiency lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111335 myopathy with extrapyramidal signs skos:exactMatch umls C3810285 MYOPATHY WITH EXTRAPYRAMIDAL SIGNS lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111347 epidermolysis bullosa with congenital localized absence of skin and deformity of nails skos:exactMatch umls C0268371 Epidermolysis Bullosa With Congenital Localized Absence Of Skin And Deformity Of Nails lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111351 D-2-hydroxyglutaric aciduria 1 skos:exactMatch umls C3152055 D-2-HYDROXYGLUTARIC ACIDURIA 1 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111352 D-2-hydroxyglutaric aciduria 2 skos:exactMatch umls C3150909 D-2-HYDROXYGLUTARIC ACIDURIA 2 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111353 arthrogryposis, renal dysfunction, and cholestasis 1 skos:exactMatch mesh C535382 Arthrogryposis renal dysfunction cholestasis syndrome lexical 0.5116470830756544 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111353 arthrogryposis, renal dysfunction, and cholestasis 1 skos:exactMatch umls C1859722 Arthrogryposis, renal dysfunction, and cholestasis 1 lexical 0.7338693052978766 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111354 arthrogryposis, renal dysfunction, and cholestasis 2 skos:exactMatch umls C3150672 ARTHROGRYPOSIS, RENAL DYSFUNCTION, AND CHOLESTASIS 2 lexical 0.7338693052978766 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111355 hydrolethalus syndrome 1 skos:exactMatch umls C1825557 HYLS1 gene lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111355 hydrolethalus syndrome 1 skos:exactMatch umls C1856016 HYDROLETHALUS SYNDROME 1 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111356 hydrolethalus syndrome 2 skos:exactMatch umls C3279899 Hydrolethalus Syndrome 2 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111357 adermatoglyphia skos:exactMatch umls C1852150 Fingerprints, Absence of lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111360 hypotrichosis-lymphedema-telangiectasia-renal defect syndrome skos:exactMatch umls C4317151 Hypotrichosis, lymphedema, telangiectasia, renal defect syndrome lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111361 hypotrichosis-lymphedema-telangiectasia syndrome skos:exactMatch umls C1843004 HYPOTRICHOSIS-LYMPHEDEMA-TELANGIECTASIA SYNDROME lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111363 Heinz body anemia skos:exactMatch umls C0272007 Acquired Heinz body anemia lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111363 Heinz body anemia skos:exactMatch umls C0700299 Heinz Body Anemias lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111365 benign familial hematuria skos:exactMatch umls C0241908 Hematuria, Benign Familial lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111368 cholesterol-ester transfer protein deficiency skos:exactMatch umls C3149462 HYPERALPHALIPOPROTEINEMIA 1 lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111370 apolipoprotein C-III deficiency skos:exactMatch umls C3151467 Apolipoprotein C-III Deficiency lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111380 solitary median maxillary central incisor skos:exactMatch mesh C537342 Single upper central incisor lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111380 solitary median maxillary central incisor skos:exactMatch umls C1840235 SOLITARY MEDIAN MAXILLARY CENTRAL INCISOR lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111387 familial isolated hypoparathyroidism skos:exactMatch umls C1832648 Hypoparathyroidism familial isolated lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111388 X-linked hypoparathyroidism skos:exactMatch umls C0342344 Hypoparathyroidism - X-linked lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111396 congenital dyserythropoietic anemia type I skos:exactMatch mesh D000742 Anemia, Dyserythropoietic, Congenital lexical 0.5209235209235209 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111396 congenital dyserythropoietic anemia type I skos:exactMatch umls C0271933 Congenital dyserythropoietic anemia, type I lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111403 mega-corpus-callosum syndrome with cerebellar hypoplasia and cortical malformations skos:exactMatch umls C4748927 MEGA-CORPUS-CALLOSUM SYNDROME WITH CEREBELLAR HYPOPLASIA AND CORTICAL MALFORMATIONS lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111405 Fraser syndrome 1 skos:exactMatch umls C1426074 FRAS1 gene lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111405 Fraser syndrome 1 skos:exactMatch umls C4551480 FRASER SYNDROME 1 lexical 0.7709750566893424 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111406 Fraser syndrome 3 skos:exactMatch umls C4540040 FRASER SYNDROME 3 lexical 0.7709750566893424 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111407 Fraser syndrome 2 skos:exactMatch umls C4540036 FRASER SYNDROME 2 lexical 0.7709750566893424 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111408 exudative vitreoretinopathy 5 skos:exactMatch umls C2750079 Exudative Vitreoretinopathy 5 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111409 exudative vitreoretinopathy 3 skos:exactMatch umls C1854002 EXUDATIVE VITREORETINOPATHY 3 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111410 exudative vitreoretinopathy 6 skos:exactMatch umls C4225316 EXUDATIVE VITREORETINOPATHY 6 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111411 exudative vitreoretinopathy 4 skos:exactMatch umls C1866176 EXUDATIVE VITREORETINOPATHY 4 (disorder) lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111412 exudative vitreoretinopathy 1 skos:exactMatch umls C1333586 FZD4 gene lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111412 exudative vitreoretinopathy 1 skos:exactMatch umls C1416917 LRP5 gene lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111412 exudative vitreoretinopathy 1 skos:exactMatch umls C1851402 Exudative vitreoretinopathy 1 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111415 trichohepatoenteric syndrome 1 skos:exactMatch umls C4551982 TRICHOHEPATOENTERIC SYNDROME 1 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111416 trichohepatoenteric syndrome 2 skos:exactMatch umls C3281289 TRICHOHEPATOENTERIC SYNDROME 2 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111423 branchiootorenal syndrome 1 skos:exactMatch mesh D019280 Branchio-Oto-Renal Syndrome lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111423 branchiootorenal syndrome 1 skos:exactMatch umls C4551702 Branchiootorenal Syndrome 1 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111424 branchiootorenal syndrome 2 skos:exactMatch mesh D019280 Branchio-Oto-Renal Syndrome lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111424 branchiootorenal syndrome 2 skos:exactMatch umls C1970479 Branchiootorenal Syndrome 2 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111435 optic atrophy 6 skos:exactMatch umls C1850281 OPTIC ATROPHY 6 (disorder) lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111436 optic atrophy 11 skos:exactMatch umls C4310628 OPTIC ATROPHY 11 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111437 optic atrophy 7 skos:exactMatch umls C2751812 OPTIC ATROPHY 7 (disorder) lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111438 optic atrophy 5 skos:exactMatch umls C1853139 OPTIC ATROPHY 5 (disorder) lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111439 optic atrophy 8 skos:exactMatch umls C4085249 OPTIC ATROPHY 8 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111440 optic atrophy 4 skos:exactMatch umls C1854430 OPTIC ATROPHY 4 (disorder) lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111441 optic atrophy 1 skos:exactMatch mesh D029241 Optic Atrophy, Autosomal Dominant lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111441 optic atrophy 1 skos:exactMatch umls C0338508 Optic Atrophy 1 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111442 optic atrophy 9 skos:exactMatch umls C4225384 OPTIC ATROPHY 9 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111443 optic atrophy 2 skos:exactMatch umls C1839576 OPTIC ATROPHY 2 (disorder) lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111453 2-aminoadipic 2-oxoadipic aciduria skos:exactMatch umls C1859817 2-aminoadipic 2-oxoadipic aciduria lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111457 STING-associated vasculopathy with onset in infancy skos:exactMatch umls C4040879 STING-associated vasculopathy with onset in infancy lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111460 cardiofaciocutaneous syndrome 1 skos:exactMatch umls C1275081 Cardio-facio-cutaneous syndrome lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111461 cardiofaciocutaneous syndrome 2 skos:exactMatch umls C3809005 CARDIOFACIOCUTANEOUS SYNDROME 2 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111462 cardiofaciocutaneous syndrome 3 skos:exactMatch umls C3809006 CARDIOFACIOCUTANEOUS SYNDROME 3 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111463 cardiofaciocutaneous syndrome 4 skos:exactMatch umls C3809007 CARDIOFACIOCUTANEOUS SYNDROME 4 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111464 combined oxidative phosphorylation deficiency 35 skos:exactMatch umls C4693466 COMBINED OXIDATIVE PHOSPHORYLATION DEFICIENCY 35 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111465 combined oxidative phosphorylation deficiency 21 skos:exactMatch umls C4014668 COMBINED OXIDATIVE PHOSPHORYLATION DEFICIENCY 21 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111466 combined oxidative phosphorylation deficiency 38 skos:exactMatch umls C5193064 COMBINED OXIDATIVE PHOSPHORYLATION DEFICIENCY 38 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111467 combined oxidative phosphorylation deficiency 13 skos:exactMatch umls C3554129 COMBINED OXIDATIVE PHOSPHORYLATION DEFICIENCY 13 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111468 combined oxidative phosphorylation deficiency 25 skos:exactMatch umls C4225329 COMBINED OXIDATIVE PHOSPHORYLATION DEFICIENCY 25 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111469 combined oxidative phosphorylation deficiency 16 skos:exactMatch umls C3809339 COMBINED OXIDATIVE PHOSPHORYLATION DEFICIENCY 16 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111470 combined oxidative phosphorylation deficiency 28 skos:exactMatch umls C4225206 COMBINED OXIDATIVE PHOSPHORYLATION DEFICIENCY 28 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111471 combined oxidative phosphorylation deficiency 30 skos:exactMatch umls C4310773 COMBINED OXIDATIVE PHOSPHORYLATION DEFICIENCY 30 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111472 combined oxidative phosphorylation deficiency 9 skos:exactMatch umls C3281234 COMBINED OXIDATIVE PHOSPHORYLATION DEFICIENCY 9 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111473 combined oxidative phosphorylation deficiency 5 skos:exactMatch umls C2673642 Combined Oxidative Phosphorylation Deficiency 5 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111475 combined oxidative phosphorylation deficiency 39 skos:exactMatch umls C5193075 COMBINED OXIDATIVE PHOSPHORYLATION DEFICIENCY 39 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111476 combined oxidative phosphorylation deficiency 19 skos:exactMatch umls C3810055 COMBINED OXIDATIVE PHOSPHORYLATION DEFICIENCY 19 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111477 combined oxidative phosphorylation deficiency 14 skos:exactMatch umls C3554168 COMBINED OXIDATIVE PHOSPHORYLATION DEFICIENCY 14 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111478 combined oxidative phosphorylation deficiency 20 skos:exactMatch umls C4014660 COMBINED OXIDATIVE PHOSPHORYLATION DEFICIENCY 20 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111479 combined oxidative phosphorylation deficiency 8 skos:exactMatch umls C3279793 COMBINED OXIDATIVE PHOSPHORYLATION DEFICIENCY 8 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111480 combined oxidative phosphorylation deficiency 10 skos:exactMatch umls C3553529 COMBINED OXIDATIVE PHOSPHORYLATION DEFICIENCY 10 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111481 combined oxidative phosphorylation deficiency 11 skos:exactMatch umls C3554067 COMBINED OXIDATIVE PHOSPHORYLATION DEFICIENCY 11 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111482 combined oxidative phosphorylation deficiency 36 skos:exactMatch umls C4693722 COMBINED OXIDATIVE PHOSPHORYLATION DEFICIENCY 36 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111483 combined oxidative phosphorylation deficiency 2 skos:exactMatch umls C1864843 Combined Oxidative Phosphorylation Deficiency 2 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111484 combined oxidative phosphorylation deficiency 18 skos:exactMatch umls C3810001 COMBINED OXIDATIVE PHOSPHORYLATION DEFICIENCY 18 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111485 combined oxidative phosphorylation deficiency 24 skos:exactMatch umls C4015643 COMBINED OXIDATIVE PHOSPHORYLATION DEFICIENCY 24 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111487 combined oxidative phosphorylation deficiency 7 skos:exactMatch umls C3150801 COMBINED OXIDATIVE PHOSPHORYLATION DEFICIENCY 7 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111488 combined oxidative phosphorylation deficiency 31 skos:exactMatch umls C4310661 COMBINED OXIDATIVE PHOSPHORYLATION DEFICIENCY 31 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111489 combined oxidative phosphorylation deficiency 27 skos:exactMatch umls C4225251 COMBINED OXIDATIVE PHOSPHORYLATION DEFICIENCY 27 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111490 combined oxidative phosphorylation deficiency 26 skos:exactMatch umls C4225290 COMBINED OXIDATIVE PHOSPHORYLATION DEFICIENCY 26 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111491 combined oxidative phosphorylation deficiency 15 skos:exactMatch umls C3554182 COMBINED OXIDATIVE PHOSPHORYLATION DEFICIENCY 15 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111492 combined oxidative phosphorylation deficiency 32 skos:exactMatch umls C4540029 COMBINED OXIDATIVE PHOSPHORYLATION DEFICIENCY 32 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111493 combined oxidative phosphorylation deficiency 12 skos:exactMatch umls C3554079 COMBINED OXIDATIVE PHOSPHORYLATION DEFICIENCY 12 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111495 combined oxidative phosphorylation deficiency 33 skos:exactMatch umls C4540209 COMBINED OXIDATIVE PHOSPHORYLATION DEFICIENCY 33 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111496 combined oxidative phosphorylation deficiency 17 skos:exactMatch umls C3809526 COMBINED OXIDATIVE PHOSPHORYLATION DEFICIENCY 17 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111497 combined oxidative phosphorylation deficiency 34 skos:exactMatch umls C4693450 COMBINED OXIDATIVE PHOSPHORYLATION DEFICIENCY 34 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111498 combined oxidative phosphorylation deficiency 22 skos:exactMatch umls C4015062 COMBINED OXIDATIVE PHOSPHORYLATION DEFICIENCY 22 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111499 combined oxidative phosphorylation deficiency 37 skos:exactMatch umls C5193031 COMBINED OXIDATIVE PHOSPHORYLATION DEFICIENCY 37 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111500 combined oxidative phosphorylation deficiency 23 skos:exactMatch umls C4015447 COMBINED OXIDATIVE PHOSPHORYLATION DEFICIENCY 23 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111501 combined oxidative phosphorylation deficiency 29 skos:exactMatch umls C4225200 COMBINED OXIDATIVE PHOSPHORYLATION DEFICIENCY 29 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111502 combined oxidative phosphorylation deficiency 6 skos:exactMatch umls C3151753 COMBINED OXIDATIVE PHOSPHORYLATION DEFICIENCY 6 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111503 Li-Fraumeni syndrome 1 skos:exactMatch umls C1835398 LI-FRAUMENI SYNDROME 1 lexical 0.7709750566893424 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111504 Li-Fraumeni syndrome 2 skos:exactMatch umls C1836482 Li-Fraumeni Syndrome 2 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111543 juvenile polyposis-hereditary hemorrhagic telangiectasia syndrome skos:exactMatch mesh C563412 Juvenile Polyposis with Hereditary Hemorrhagic Telangiectasia lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111543 juvenile polyposis-hereditary hemorrhagic telangiectasia syndrome skos:exactMatch umls C1832942 JUVENILE POLYPOSIS/HEREDITARY HEMORRHAGIC TELANGIECTASIA SYNDROME (disorder) lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111547 retinal arterial tortuosity skos:exactMatch umls C0423401 Retinal arterial tortuosity lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111555 Alkuraya-Kucinskas syndrome skos:exactMatch umls C4693347 ALKURAYA-KUCINSKAS SYNDROME lexical 0.761698618841476 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111556 steatocystoma multiplex skos:exactMatch umls C0259771 Steatocystoma multiplex lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111557 Charcot-Marie-Tooth disease type 2A2B skos:exactMatch umls C4310725 CHARCOT-MARIE-TOOTH DISEASE, AXONAL, AUTOSOMAL RECESSIVE, TYPE 2A2B lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111562 overhydrated hereditary stomatocytosis skos:exactMatch umls C1861455 STOMATOCYTOSIS I lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111566 familial isolated trichomegaly skos:exactMatch umls C4706941 Familial isolated trichomegaly lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111577 dehydrated hereditary stomatocytosis 2 skos:exactMatch umls C4225242 DEHYDRATED HEREDITARY STOMATOCYTOSIS 2 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111579 asthma, nasal polyps, and aspirin intolerance skos:exactMatch umls C1859648 Asthma, Nasal Polyps, And Aspirin Intolerance lexical 0.7245928674500104 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111582 hereditary arterial and articular multiple calcification syndrome skos:exactMatch umls C4305347 Hereditary arterial and articular multiple calcification syndrome lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111605 distal arthrogryposis type 2A skos:exactMatch umls C0265224 Freeman-Sheldon syndrome lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111619 combined D-2- and L-2-hydroxyglutaric aciduria skos:exactMatch mesh C535306 2-Hydroxyglutaricaciduria lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111624 ACTH-independent macronodular adrenal hyperplasia 2 skos:exactMatch efo 0009148 acth-independent macronodular adrenal hyperplasia 2 lexical 0.7709750566893424 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111624 ACTH-independent macronodular adrenal hyperplasia 2 skos:exactMatch umls C4014803 ACTH-INDEPENDENT MACRONODULAR ADRENAL HYPERPLASIA 2 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111649 ectodermal dysplasia, ectrodactyly, and macular dystrophy syndrome skos:exactMatch umls C1857041 Ectodermal dysplasia, ectrodactyly, and macular dystrophy lexical 0.5023706452277881 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111674 intellectual developmental disorder with short stature and behavioral abnormalities skos:exactMatch umls C5231462 INTELLECTUAL DEVELOPMENTAL DISORDER WITH SHORT STATURE AND BEHAVIORAL ABNORMALITIES lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111675 neurooculocardiogenitourinary syndrome skos:exactMatch efo 0010663 neurooculocardiogenitourinary syndrome lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111675 neurooculocardiogenitourinary syndrome skos:exactMatch umls C5231443 NEUROOCULOCARDIOGENITOURINARY SYNDROME lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111682 diffuse cystic renal dysplasia skos:exactMatch umls C1832471 Renal dysplasia diffuse cystic lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111684 hereditary mixed polyposis syndrome skos:exactMatch umls C1539614 GREM1 gene lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111684 hereditary mixed polyposis syndrome skos:exactMatch umls C5192681 Hereditary mixed polyposis syndrome lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111701 long QT syndrome 4 skos:exactMatch umls C1833154 Long Qt Syndrome 4 lexical 0.7709750566893424 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111712 Kagami-Ogata syndrome skos:exactMatch umls C1842466 Uniparental disomy, paternal, chromosome 14 lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111723 Jacobsen Syndrome skos:exactMatch umls C0795841 Jacobsen Distal 11q Deletion Syndrome lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111724 geleophysic dysplasia skos:exactMatch mesh C535662 Acromicric dysplasia lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111725 geleophysic dysplasia 1 skos:exactMatch umls C3278147 GELEOPHYSIC DYSPLASIA 1 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111726 geleophysic dysplasia 2 skos:exactMatch umls C3280054 GELEOPHYSIC DYSPLASIA 2 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111727 geleophysic dysplasia 3 skos:exactMatch umls C4540511 GELEOPHYSIC DYSPLASIA 3 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111728 familial episodic pain syndrome skos:exactMatch umls C5190598 Familial episodic pain syndrome lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111754 Leber plus disease skos:exactMatch umls C4304725 Leber plus disease lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111761 46,XX sex reversal 1 skos:exactMatch umls C2748895 Ovotesticular Disorders of Sex Development lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111762 46,XX sex reversal 3 skos:exactMatch umls C3151782 46,XX SEX REVERSAL 3 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111763 46,XX sex reversal 2 skos:exactMatch umls C2749215 46,XX SEX REVERSAL 2 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111764 46,XX sex reversal 4 skos:exactMatch umls C4479552 46,XX SEX REVERSAL 4 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111769 46,XY sex reversal 6 skos:exactMatch umls C3151064 46,XY SEX REVERSAL 6 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111770 46,XY sex reversal 9 skos:exactMatch umls C4015129 46,XY SEX REVERSAL 9 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111771 46,XY sex reversal 4 skos:exactMatch mesh C567887 46,XY Sex Reversal 4 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111771 46,XY sex reversal 4 skos:exactMatch umls C2752149 46,XY Sex Reversal 4 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111772 46,XY sex reversal 3 skos:exactMatch mesh D058490 Disorder of Sex Development, 46,XY lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111772 46,XY sex reversal 3 skos:exactMatch umls C3489793 46,XY Sex Reversal 3 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111773 46,XY sex reversal 8 skos:exactMatch umls C1839840 MALE PSEUDOHERMAPHRODITISM: DEFICIENCY OF TESTICULAR 17,20-DESMOLASE lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111774 46,XY sex reversal 7 skos:exactMatch umls C1856273 46,XY Gonadal Dysgenesis, Complete or Partial, DHH-Related lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111775 46,XY sex reversal 10 skos:exactMatch umls C4225331 46,XY SEX REVERSAL 10 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111776 46,XY sex reversal 5 skos:exactMatch umls C2751317 46, XY Sex Reversal 5 lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111777 46,XY sex reversal 2 skos:exactMatch umls C1848296 DOSAGE-SENSITIVE SEX REVERSAL lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111778 46,XY sex reversal 1 skos:exactMatch umls C2748896 46,Xy Gonadal Dysgenesis, Complete, Sry-Related lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111781 Waisman syndrome skos:exactMatch umls C0796195 Waisman syndrome lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111781 Waisman syndrome skos:exactMatch umls C1424331 RAB39B gene lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111782 otopalatodigital syndrome spectrum disorder skos:exactMatch umls C5191176 Otopalatodigital syndrome spectrum disorder lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111786 frontometaphyseal dysplasia 1 skos:exactMatch umls C4281559 FRONTOMETAPHYSEAL DYSPLASIA 1 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111787 frontometaphyseal dysplasia 2 skos:exactMatch umls C4310697 FRONTOMETAPHYSEAL DYSPLASIA 2 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111788 Melnick-Needles syndrome skos:exactMatch mesh D010009 Osteochondrodysplasias lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111813 syndactyly type 8 skos:exactMatch umls C1839728 METACARPAL 4-5 FUSION lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111816 syndactyly type 1 skos:exactMatch umls C1861380 Syndactyly, Type I lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111817 syndactyly type 3 skos:exactMatch umls C1861366 SYNDACTYLY, TYPE III lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111818 syndactyly type 4 skos:exactMatch umls C1861355 Syndactyly, Type IV lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111819 syndactyly type 5 skos:exactMatch mesh C538155 Syndactyly, type v lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111819 syndactyly type 5 skos:exactMatch umls C1861348 Syndactyly, type v lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111820 zygodactyly 1 skos:exactMatch mesh C565223 Zygodactyly 1 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111820 zygodactyly 1 skos:exactMatch umls C1853294 Zygodactyly 1 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111822 CHILD syndrome skos:exactMatch mesh C562515 Congenital Hemidysplasia with Ichthyosiform Erythroderma and Limb Defects lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111822 CHILD syndrome skos:exactMatch umls C0265267 Congenital Hemidysplasia with Ichthyosiform Erythroderma and Limb Defects lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111823 autosomal hemophilia A skos:exactMatch mesh D006467 Hemophilia A lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111823 autosomal hemophilia A skos:exactMatch umls C3494186 Autosomal Hemophilia A lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111823 autosomal hemophilia A skos:exactMatch umls C3494187 Factor VIII Deficiency lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111824 Aarskog syndrome skos:exactMatch mesh C535331 Aarskog Syndrome lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111824 Aarskog syndrome skos:exactMatch umls C0175701 Aarskog syndrome lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111826 Abruzzo-Erickson syndrome skos:exactMatch mesh C535559 Abruzzo Erickson syndrome lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111826 Abruzzo-Erickson syndrome skos:exactMatch umls C1844862 Abruzzo Erickson syndrome lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111828 X-linked cerebellar ataxia skos:exactMatch umls C0796205 SPINOCEREBELLAR ATAXIA, X-LINKED 1 lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111838 Basilicata-Akhtar syndrome skos:exactMatch umls C5231394 BASILICATA-AKHTAR SYNDROME lexical 0.761698618841476 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111840 Van Esch-O'Driscoll syndrome skos:exactMatch umls C5193012 VAN ESCH-O'DRISCOLL SYNDROME lexical 0.7239744382601525 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111841 Shukla-Vernon syndrome skos:exactMatch umls C5193146 SHUKLA-VERNON SYNDROME lexical 0.761698618841476 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111842 Keipert syndrome skos:exactMatch mesh C538337 Nasodigitoacoustic syndrome lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111842 Keipert syndrome skos:exactMatch umls C1850627 Nasodigitoacoustic syndrome lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111843 Paganini-Miozzo syndrome skos:exactMatch umls C5193010 PAGANINI-MIOZZO SYNDROME lexical 0.761698618841476 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111845 Mullegama-Klein-Martinez syndrome skos:exactMatch umls C5193008 MULLEGAMA-KLEIN-MARTINEZ SYNDROME lexical 0.761698618841476 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111859 midface hypoplasia, hearing impairment, elliptocytosis, and nephrocalcinosis skos:exactMatch umls C4310810 MIDFACE HYPOPLASIA, HEARING IMPAIRMENT, ELLIPTOCYTOSIS, AND NEPHROCALCINOSIS lexical 0.7245928674500104 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111860 AMME complex skos:exactMatch mesh C564570 Alport Syndrome, Mental Retardation, Midface Hypoplasia, and Elliptocytosis lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111860 AMME complex skos:exactMatch umls C1846242 Alport Syndrome, Mental Retardation, Midface Hypoplasia, and Elliptocytosis lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111861 Meester-Loeys syndrome skos:exactMatch umls C4310811 MEESTER-LOEYS SYNDROME lexical 0.761698618841476 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111862 congenital bilateral absence of vas deferens skos:exactMatch mesh C535984 Congenital bilateral aplasia of vas deferens lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111862 congenital bilateral absence of vas deferens skos:exactMatch umls C0403814 Congenital bilateral aplasia of vas deferens lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111865 MEND syndrome skos:exactMatch umls C4085243 MEND SYNDROME lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111866 trichothiodystrophy skos:exactMatch mesh D054463 Trichothiodystrophy Syndromes lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111866 trichothiodystrophy skos:exactMatch umls C0432267 Tricho-thiodystrophy disorder lexical 0.549165120593692 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111866 trichothiodystrophy skos:exactMatch umls C1539623 GTF2H5 gene lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111866 trichothiodystrophy skos:exactMatch umls C1955934 Trichothiodystrophy Syndromes lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111866 trichothiodystrophy skos:exactMatch umls C3495483 Amish Brittle Hair Brain Syndrome lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111874 Sabinas brittle hair syndrome skos:exactMatch mesh C536320 Sabinas brittle hair syndrome lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111874 Sabinas brittle hair syndrome skos:exactMatch umls C0796271 Sabinas brittle hair syndrome lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111876 linear skin defects with multiple congenital anomalies 3 skos:exactMatch umls C4225421 LINEAR SKIN DEFECTS WITH MULTIPLE CONGENITAL ANOMALIES 3 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111877 linear skin defects with multiple congenital anomalies 2 skos:exactMatch umls C3550921 LINEAR SKIN DEFECTS WITH MULTIPLE CONGENITAL ANOMALIES 2 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111878 Diamond-Blackfan anemia 7 skos:exactMatch mesh C567254 Diamond-Blackfan Anemia 7 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111878 Diamond-Blackfan anemia 7 skos:exactMatch umls C2675512 Diamond-Blackfan Anemia 7 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111879 Diamond-Blackfan anemia 6 skos:exactMatch mesh C538442 Aase Smith syndrome 2 lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111879 Diamond-Blackfan anemia 6 skos:exactMatch umls C2931850 Aase Smith syndrome 2 lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111880 Diamond-Blackfan anemia 17 skos:exactMatch umls C4479428 DIAMOND-BLACKFAN ANEMIA 17 lexical 0.7709750566893424 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111881 Diamond-Blackfan anemia 8 skos:exactMatch mesh C567253 Diamond-Blackfan Anemia 8 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111881 Diamond-Blackfan anemia 8 skos:exactMatch umls C2675511 Diamond-Blackfan Anemia 8 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111882 Diamond-Blackfan anemia 12 skos:exactMatch umls C3809888 DIAMOND-BLACKFAN ANEMIA 12 lexical 0.7709750566893424 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111883 Diamond-Blackfan anemia 5 skos:exactMatch mesh C567280 Diamond-Blackfan Anemia 5 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111883 Diamond-Blackfan anemia 5 skos:exactMatch umls C2675859 Diamond-Blackfan Anemia 5 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111884 Diamond-Blackfan anemia 9 skos:exactMatch mesh C567650 Diamond-Blackfan Anemia 9 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111884 Diamond-Blackfan anemia 9 skos:exactMatch umls C2750081 Diamond-Blackfan Anemia 9 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111885 Diamond-Blackfan anemia 2 skos:exactMatch mesh C536130 Anemia, Diamond-Blackfan, 2 lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111885 Diamond-Blackfan anemia 2 skos:exactMatch umls C1853666 Anemia, Diamond-Blackfan, 2 lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111886 Diamond-Blackfan anemia 19 skos:exactMatch umls C5193021 DIAMOND-BLACKFAN ANEMIA 19 lexical 0.7709750566893424 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111887 Diamond-blackfan anemia 3 skos:exactMatch mesh C536355 Anemia, Diamond-Blackfan, 3 lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111887 Diamond-blackfan anemia 3 skos:exactMatch umls C1857719 Anemia, Diamond-Blackfan, 3 lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111888 Diamond-Blackfan anemia 10 skos:exactMatch mesh C567649 Diamond-Blackfan Anemia 10 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111888 Diamond-Blackfan anemia 10 skos:exactMatch umls C2750080 Diamond-Blackfan Anemia 10 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111889 Diamond-Blackfan anemia 13 skos:exactMatch umls C4014641 DIAMOND-BLACKFAN ANEMIA 13 lexical 0.7709750566893424 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111890 Diamond-Blackfan anemia 4 skos:exactMatch mesh C567281 Diamond-Blackfan Anemia 4 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111890 Diamond-Blackfan anemia 4 skos:exactMatch umls C2675860 Diamond-Blackfan Anemia 4 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111891 Diamond-Blackfan anemia 20 skos:exactMatch umls C5193022 DIAMOND-BLACKFAN ANEMIA 20 lexical 0.7709750566893424 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111892 Diamond-Blackfan anemia 11 skos:exactMatch umls C3554042 DIAMOND-BLACKFAN ANEMIA 11 lexical 0.7709750566893424 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111893 Diamond-Blackfan anemia 16 skos:exactMatch umls C4479424 DIAMOND-BLACKFAN ANEMIA 16 lexical 0.7709750566893424 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111895 Diamond-Blackfan anemia 1 skos:exactMatch mesh C567302 Diamond-Blackfan Anemia 1 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111895 Diamond-Blackfan anemia 1 skos:exactMatch umls C2676137 Diamond-Blackfan Anemia 1 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111896 Diamond-Blackfan anemia 18 skos:exactMatch umls C5193020 DIAMOND-BLACKFAN ANEMIA 18 lexical 0.7709750566893424 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111897 Diamond-Blackfan anemia 14 with mandibulofacial dysostosis skos:exactMatch umls C4225422 DIAMOND-BLACKFAN ANEMIA 14 WITH MANDIBULOFACIAL DYSOSTOSIS lexical 0.7709750566893424 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111898 CK syndrome skos:exactMatch umls C3151781 CK syndrome lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111901 heparin cofactor II deficiency skos:exactMatch mesh C562865 Heparin Cofactor II Deficiency lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111901 heparin cofactor II deficiency skos:exactMatch umls C0398626 Heparin cofactor II deficiency (disorder) lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111901 heparin cofactor II deficiency skos:exactMatch umls C4280717 Decreased level of heparin co-factor II lexical 0.549165120593692 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111902 thrombophilia due to activated protein C resistance skos:exactMatch mesh C566056 Thrombophilia due to Activated Protein C Resistance lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111902 thrombophilia due to activated protein C resistance skos:exactMatch umls C1861171 THROMBOPHILIA DUE TO ACTIVATED PROTEIN C RESISTANCE (disorder) lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111907 thrombophilia due to thrombin defect skos:exactMatch umls C3160733 THROMBOPHILIA DUE TO THROMBIN DEFECT lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111908 thrombophilia due to thrombomodulin defect skos:exactMatch mesh C566057 Thrombophilia due to Thrombomodulin Defect lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111908 thrombophilia due to thrombomodulin defect skos:exactMatch umls C3280976 Thrombophilia due to Thrombomodulin Defect lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111910 spermatogenic failure skos:exactMatch umls C3553794 Spermatogenic failure lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111911 spermatogenic failure 34 skos:exactMatch umls C4748403 SPERMATOGENIC FAILURE 34 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111912 spermatogenic failure 41 skos:exactMatch umls C5231455 SPERMATOGENIC FAILURE 41 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111913 spermatogenic failure 30 skos:exactMatch umls C4748224 SPERMATOGENIC FAILURE 30 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111914 spermatogenic failure 35 skos:exactMatch umls C5193038 SPERMATOGENIC FAILURE 35 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111915 spermatogenic failure 33 skos:exactMatch umls C4748395 SPERMATOGENIC FAILURE 33 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111916 spermatogenic failure 28 skos:exactMatch umls C4748117 SPERMATOGENIC FAILURE 28 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111917 spermatogenic failure 43 skos:exactMatch umls C5231490 SPERMATOGENIC FAILURE 43 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111918 spermatogenic failure 40 skos:exactMatch umls C5231451 SPERMATOGENIC FAILURE 40 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111919 spermatogenic failure 38 skos:exactMatch umls C5193095 SPERMATOGENIC FAILURE 38 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111920 spermatogenic failure 25 skos:exactMatch umls C4693765 SPERMATOGENIC FAILURE 25 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111921 spermatogenic failure 36 skos:exactMatch umls C5193086 SPERMATOGENIC FAILURE 36 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111922 spermatogenic failure 31 skos:exactMatch umls C4748234 SPERMATOGENIC FAILURE 31 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111923 spermatogenic failure 42 skos:exactMatch umls C5231488 SPERMATOGENIC FAILURE 42 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111924 spermatogenic failure 26 skos:exactMatch umls C4693773 SPERMATOGENIC FAILURE 26 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111925 spermatogenic failure 32 skos:exactMatch umls C4748253 SPERMATOGENIC FAILURE 32 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111926 spermatogenic failure 39 skos:exactMatch umls C5231438 SPERMATOGENIC FAILURE 39 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111927 spermatogenic failure 37 skos:exactMatch umls C5193091 SPERMATOGENIC FAILURE 37 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111928 spermatogenic failure 27 skos:exactMatch umls C4693784 SPERMATOGENIC FAILURE 27 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111929 spermatogenic failure 24 skos:exactMatch umls C4693751 SPERMATOGENIC FAILURE 24 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111930 spermatogenic failure 29 skos:exactMatch umls C4748142 SPERMATOGENIC FAILURE 29 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111932 severe congenital encephalopathy due to MECP2 mutation skos:exactMatch umls C4749821 Severe neonatal onset encephalopathy with microcephaly lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111933 phosphoglycerate kinase 1 deficiency skos:exactMatch mesh C567067 Phosphoglycerate Kinase 1 Deficiency lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111933 phosphoglycerate kinase 1 deficiency skos:exactMatch umls C1970848 Phosphoglycerate Kinase 1 Deficiency lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111935 immunodeficiency 16 skos:exactMatch umls C3810053 IMMUNODEFICIENCY 16 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111936 immunodeficiency 14 skos:exactMatch umls C3714976 ACTIVATED PI3K-DELTA SYNDROME lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111937 immunodeficiency 22 skos:exactMatch umls C4014233 IMMUNODEFICIENCY 22 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111938 immunodeficiency 24 skos:exactMatch umls C4014617 IMMUNODEFICIENCY 24 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111939 immunodeficiency 37 skos:exactMatch umls C4015195 IMMUNODEFICIENCY 37 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111940 immunodeficiency 42 skos:exactMatch umls C4225266 IMMUNODEFICIENCY 42 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111941 immunodeficiency 20 skos:exactMatch umls C3810342 IMMUNODEFICIENCY 20 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111942 immunodeficiency 25 skos:exactMatch umls C1857798 Immunodeficiency due to Defect in CD3-Zeta lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111943 immunodeficiency 48 skos:exactMatch umls C2931299 ZAP70 deficiency lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111944 immunodeficiency 31B skos:exactMatch umls C3151088 IMMUNODEFICIENCY 31B lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111945 immunodeficiency 31A skos:exactMatch umls C4013950 IMMUNODEFICIENCY 31A lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111946 immunodeficiency 31C skos:exactMatch umls C3279990 CANDIDIASIS, FAMILIAL, 7 lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111947 immunodeficiency 21 skos:exactMatch umls C3280030 GATA2 Deficiency lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111948 immunodeficiency 46 skos:exactMatch umls C4225219 IMMUNODEFICIENCY 46 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111949 immunodeficiency 36 skos:exactMatch umls C4014934 IMMUNODEFICIENCY 36 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111950 immunodeficiency 29 skos:exactMatch umls C4013948 IMMUNODEFICIENCY 29 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111951 immunodeficiency 40 skos:exactMatch umls C4225328 IMMUNODEFICIENCY 40 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111953 immunodeficiency 23 skos:exactMatch umls C4014371 IMMUNODEFICIENCY 23 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111954 immunodeficiency 60 skos:exactMatch umls C5193072 IMMUNODEFICIENCY 60 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111955 immunodeficiency 27A skos:exactMatch umls C4011949 IMMUNODEFICIENCY 27A lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111956 immunodeficiency 27B skos:exactMatch umls C4014863 IMMUNODEFICIENCY 27B lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111957 immunodeficiency 11A skos:exactMatch umls C4540578 IMMUNODEFICIENCY 11A lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111959 immunodeficiency 15B skos:exactMatch umls C4747743 IMMUNODEFICIENCY 15B lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111960 immunodeficiency 15A skos:exactMatch umls C4748694 IMMUNODEFICIENCY 15A lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111962 combined immunodeficiency skos:exactMatch umls C0494261 Combined immunodeficiency lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111963 dendritic cell deficiency skos:exactMatch umls C4746814 Dendritic cell deficiency lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111967 immunodeficiency 54 skos:exactMatch umls C1864947 Natural Killer Cell Deficiency, Familial Isolated lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111969 immunodeficiency 39 skos:exactMatch umls C4225358 IMMUNODEFICIENCY 39 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111970 immunodeficiency 10 skos:exactMatch umls C2748557 Immune dysfunction with T-cell inactivation due to calcium entry defect 2 lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111971 immunodeficiency 18 skos:exactMatch umls C3810127 IMMUNODEFICIENCY 18 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111972 immunodeficiency 19 skos:exactMatch umls C3810147 IMMUNODEFICIENCY 19 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111973 immunodeficiency 17 skos:exactMatch umls C3810107 IMMUNODEFICIENCY 17 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111975 immunodeficiency 44 skos:exactMatch umls C4225260 IMMUNODEFICIENCY 44 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111976 immunodeficiency 9 skos:exactMatch umls C2748568 Immune dysfunction with T-cell inactivation due to calcium entry defect 1 lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111977 immunodeficiency 7 skos:exactMatch umls C3809332 T-CELL RECEPTOR-ALPHA/BETA DEFICIENCY lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111979 immunodeficiency 49 skos:exactMatch umls C4310656 IMMUNODEFICIENCY 49 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111980 immunodeficiency 64 skos:exactMatch umls C5231402 IMMUNODEFICIENCY 64 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111981 immunodeficiency 43 skos:exactMatch umls C1855796 Hypoproteinemia, Hypercatabolic lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111982 immunodeficiency 56 skos:exactMatch umls C3554687 IMMUNODEFICIENCY 56 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111983 immunodeficiency 52 skos:exactMatch umls C4479588 IMMUNODEFICIENCY 52 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111984 immunodeficiency 58 skos:exactMatch umls C4748304 IMMUNODEFICIENCY 58 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111985 immunodeficiency 32B skos:exactMatch umls C4016741 IMMUNODEFICIENCY 32B lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111986 immunodeficiency 32A skos:exactMatch umls C3808589 IMMUNODEFICIENCY 32A lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111987 immunodeficiency 13 skos:exactMatch umls C3809768 IMMUNODEFICIENCY 13 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111988 immunodeficiency 12 skos:exactMatch umls C3809583 IMMUNODEFICIENCY 12 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111989 immunodeficiency 35 skos:exactMatch umls C1969086 Tyrosine Kinase 2 Deficiency lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111990 immunodeficiency 30 skos:exactMatch umls C4013949 IMMUNODEFICIENCY 30 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111991 immunodeficiency 62 skos:exactMatch umls C5193109 IMMUNODEFICIENCY 62 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111992 immunodeficiency 53 skos:exactMatch umls C4539811 IMMUNODEFICIENCY 53 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111993 immunodeficiency 55 skos:exactMatch umls C4693356 IMMUNODEFICIENCY 55 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111994 immunodeficiency 45 skos:exactMatch umls C4225252 IMMUNODEFICIENCY 45 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111995 immunodeficiency 28 skos:exactMatch umls C4013947 IMMUNODEFICIENCY 28 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111996 immunodeficiency 51 skos:exactMatch umls C4310803 IMMUNODEFICIENCY 51 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111998 immunodeficiency 66 skos:exactMatch umls C5394265 IMMUNODEFICIENCY 66 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0111999 immunodeficiency 61 skos:exactMatch umls C1845903 AGAMMAGLOBULINEMIA, X-LINKED, TYPE 2 (disorder) lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0112000 immunodeficiency 34 skos:exactMatch umls C1970859 Atypical Mycobacteriosis, Familial, X-Linked 2 lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0112001 immunodeficiency 50 skos:exactMatch umls C4310812 IMMUNODEFICIENCY 50 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0112002 immunodeficiency 47 skos:exactMatch umls C4310819 IMMUNODEFICIENCY 47 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0112003 immunodeficiency 33 skos:exactMatch umls C1970879 ATYPICAL MYCOBACTERIOSIS, FAMILIAL, X-LINKED 1 (disorder) lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0112037 chromosome Xp11.22 duplication syndrome skos:exactMatch umls C0796238 MENTAL RETARDATION, X-LINKED 31 lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0112042 Tonne-Kalscheuer syndrome skos:exactMatch umls C4283894 MENTAL RETARDATION, X-LINKED 61 lexical 0.5394763966192538 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0112060 Raynaud-Claes syndrome skos:exactMatch umls C0796221 MENTAL RETARDATION, X-LINKED 15 lexical 0.5394763966192538 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0112102 Sotos syndrome 2 skos:exactMatch umls C3553660 Malan overgrowth syndrome lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0112103 Sotos syndrome 1 skos:exactMatch umls C4551477 SOTOS SYNDROME 1 lexical 0.7709750566893424 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0112104 Sotos syndrome 3 skos:exactMatch umls C4310684 SOTOS SYNDROME 3 lexical 0.7709750566893424 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0112106 chondrodysplasia with platyspondyly, distinctive brachydactyly, hydrocephaly, and microphthalmia skos:exactMatch umls C3275476 CHONDRODYSPLASIA WITH PLATYSPONDYLY, DISTINCTIVE BRACHYDACTYLY, HYDROCEPHALY, AND MICROPHTHALMIA lexical 0.7245928674500104 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0112107 McLeod syndrome skos:exactMatch mesh C564038 Neuroacanthocytosis, Mcleod Type lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0112107 McLeod syndrome skos:exactMatch umls C0398568 Blood group deletion syndrome lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0112107 McLeod syndrome skos:exactMatch umls C1421537 XK gene lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0112116 combined oxidative phosphorylation deficiency 43 skos:exactMatch umls C5394284 COMBINED OXIDATIVE PHOSPHORYLATION DEFICIENCY 43 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0112117 combined oxidative phosphorylation deficiency 40 skos:exactMatch umls C5394232 COMBINED OXIDATIVE PHOSPHORYLATION DEFICIENCY 40 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0112118 combined oxidative phosphorylation deficiency 42 skos:exactMatch umls C5394237 COMBINED OXIDATIVE PHOSPHORYLATION DEFICIENCY 42 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0112119 combined oxidative phosphorylation deficiency 41 skos:exactMatch umls C5394236 COMBINED OXIDATIVE PHOSPHORYLATION DEFICIENCY 41 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0112120 SHOX-related short stature skos:exactMatch umls C4706613 SHOX-related short stature lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0112121 nephrogenic syndrome of inappropriate antidiuresis skos:exactMatch mesh C564491 Nephrogenic Syndrome of Inappropriate Antidiuresis lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0112121 nephrogenic syndrome of inappropriate antidiuresis skos:exactMatch umls C1845202 Nephrogenic Syndrome of Inappropriate Antidiuresis lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0112123 deafness, dystonia, and cerebral hypomyelination skos:exactMatch umls C3806634 DEAFNESS, DYSTONIA, AND CEREBRAL HYPOMYELINATION lexical 0.7245928674500104 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0112125 alpha-thalassemia myelodysplasia syndrome skos:exactMatch mesh C563023 Alpha-Thalassemia Myelodysplasia Syndrome lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0112125 alpha-thalassemia myelodysplasia syndrome skos:exactMatch umls C0585216 Alpha-Thalassemia Myelodysplasia Syndrome lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0112128 X-linked severe congenital neutropenia skos:exactMatch umls C1845987 Neutropenia, Severe Congenital, X-Linked lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0112130 autosomal dominant severe congenital neutropenia skos:exactMatch umls C4749612 Autosomal dominant severe congenital neutropenia lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0112140 retinitis pigmentosa 83 skos:exactMatch umls C4748536 RETINITIS PIGMENTOSA 83 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0112141 retinitis pigmentosa 84 skos:exactMatch umls C4748725 RETINITIS PIGMENTOSA 84 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0112142 retinitis pigmentosa 85 skos:exactMatch umls C5193041 RETINITIS PIGMENTOSA 85 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0112143 retinitis pigmentosa 86 skos:exactMatch umls C5231428 RETINITIS PIGMENTOSA 86 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0112145 retinitis pigmentosa 88 skos:exactMatch umls C5394208 RETINITIS PIGMENTOSA 88 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0112146 retinitis pigmentosa 89 skos:exactMatch umls C5394552 RETINITIS PIGMENTOSA 89 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0112148 Uruguay faciocardiomusculoskeletal syndrome skos:exactMatch mesh C564544 Uruguay Faciocardiomusculoskeletal Syndrome lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0112148 Uruguay faciocardiomusculoskeletal syndrome skos:exactMatch umls C1846010 URUGUAY FACIOCARDIOMUSCULOSKELETAL SYNDROME lexical 0.761698618841476 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0112149 terminal osseous dysplasia skos:exactMatch umls C1846129 Terminal Osseous Dysplasia and Pigmentary Defects lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0112150 X-linked spondyloepimetaphyseal dysplasia skos:exactMatch umls C1848097 Spondyloepimetaphyseal Dysplasia, X-Linked lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0112152 CHIME syndrome skos:exactMatch mesh C536729 Zunich neuroectodermal syndrome lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0112152 CHIME syndrome skos:exactMatch umls C1848392 Zunich neuroectodermal syndrome lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0112155 inflammatory bowel disease 29 skos:exactMatch umls C4748083 INFLAMMATORY BOWEL DISEASE 29 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0112158 De Sanctis-Cacchione syndrome skos:exactMatch mesh C535992 De Sanctis-Cacchione syndrome lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0112158 De Sanctis-Cacchione syndrome skos:exactMatch umls C0265201 De Sanctis-Cacchione syndrome lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0112169 Noonan syndrome 11 skos:exactMatch umls C5193130 NOONAN SYNDROME 11 lexical 0.7709750566893424 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0112170 Noonan syndrome 12 skos:exactMatch umls C5231432 NOONAN SYNDROME 12 lexical 0.7709750566893424 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0112171 wrinkly skin syndrome skos:exactMatch mesh C536750 Wrinkly skin syndrome lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0112171 wrinkly skin syndrome skos:exactMatch umls C0406587 Wrinkly skin syndrome lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0112172 hereditary combined deficiency of vitamin K-dependent clotting factors skos:exactMatch umls C4510617 Hereditary combined deficiency of vitamin K-dependent clotting factors lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0112177 Mayer-Rokitansky-Kuster-Hauser syndrome skos:exactMatch mesh C537371 Mullerian aplasia lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0112177 Mayer-Rokitansky-Kuster-Hauser syndrome skos:exactMatch umls C1698581 Rokitansky Kuster Hauser syndrome lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0112180 urocanase deficiency skos:exactMatch mesh C536479 Urocanase deficiency lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0112180 urocanase deficiency skos:exactMatch umls C0268514 Urocanase deficiency lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0112182 mismatch repair cancer syndrome skos:exactMatch mesh C536928 Turcot syndrome lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0112182 mismatch repair cancer syndrome skos:exactMatch umls C0265325 Turcot syndrome (disorder) lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0112183 familial thyroid dyshormonogenesis skos:exactMatch umls C4273748 Familial thyroid dyshormonogenesis lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0112184 thyroid dyshormonogenesis 5 skos:exactMatch mesh C562771 Thyroid Dyshormonogenesis 5 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0112184 thyroid dyshormonogenesis 5 skos:exactMatch umls C0342196 Thyroid Dyshormonogenesis 5 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0112185 thyroid dyshormonogenesis 1 skos:exactMatch mesh C564766 Thyroid Dyshormonogenesis 1 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0112185 thyroid dyshormonogenesis 1 skos:exactMatch umls C1848805 Thyroid Dyshormonogenesis 1 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0112186 thyroid dyshormonogenesis 2A skos:exactMatch mesh C563206 Thyroid Dyshormonogenesis 2A lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0112186 thyroid dyshormonogenesis 2A skos:exactMatch umls C1291299 Deficiency of iodide peroxidase (disorder) lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0112187 thyroid dyshormonogenesis 3 skos:exactMatch mesh C562769 Thyroid Dyshormonogenesis 3 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0112187 thyroid dyshormonogenesis 3 skos:exactMatch umls C0342194 Thyroid Dyshormonogenesis 3 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0112188 thyroid dyshormonogenesis 4 skos:exactMatch mesh C562770 Thyroid Dyshormonogenesis 4 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0112188 thyroid dyshormonogenesis 4 skos:exactMatch umls C0342195 Thyroid Dyshormonogenesis 4 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0112189 thyroid dyshormonogenesis 6 skos:exactMatch mesh C564608 Thyroid Dyshormonogenesis 6 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0112189 thyroid dyshormonogenesis 6 skos:exactMatch umls C1846632 Thyroid Dyshormonogenesis 6 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0112191 tetraamelia syndrome skos:exactMatch mesh C536498 Tetra-amelia autosomal recessive lexical 0.5398886827458256 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0112191 tetraamelia syndrome skos:exactMatch umls C2931216 Tetra-amelia autosomal recessive lexical 0.549165120593692 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0112192 tetraamelia syndrome 1 skos:exactMatch umls C4012268 TETRAAMELIA SYNDROME, AUTOSOMAL RECESSIVE lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0112193 tetraamelia syndrome 2 skos:exactMatch umls C4747923 TETRAAMELIA SYNDROME 2 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0112194 Filippi syndrome skos:exactMatch mesh C538152 Filippi syndrome lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0112194 Filippi syndrome skos:exactMatch umls C0795940 Filippi syndrome lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0112195 spondyloperipheral dysplasia skos:exactMatch mesh C535799 Spondyloperipheral dysplasia short ulna lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0112195 spondyloperipheral dysplasia skos:exactMatch umls C0796173 Spondyloperipheral dysplasia short ulna lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0112196 spondylometaepiphyseal dysplasia, short limb-hand type skos:exactMatch mesh C564794 Spondylometaepiphyseal Dysplasia, Short Limb-Hand Type lexical 0.7245928674500104 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0112196 spondylometaepiphyseal dysplasia, short limb-hand type skos:exactMatch umls C1849011 SPONDYLOMETAEPIPHYSEAL DYSPLASIA, SHORT LIMB-HAND TYPE lexical 0.7245928674500104 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0112197 spondyloepimetaphyseal dysplasia with joint laxity skos:exactMatch mesh C562968 Spondyloepimetaphyseal Dysplasia With Joint Laxity lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0112197 spondyloepimetaphyseal dysplasia with joint laxity skos:exactMatch umls C0432243 Spondyloepimetaphyseal Dysplasia With Joint Laxity lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0112199 spondyloepimetaphyseal dysplasia with joint laxity type 2 skos:exactMatch umls C1863732 Spondyloepimetaphyseal dysplasia with multiple dislocations lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0112224 chondrodysplasia with joint dislocations gPAPP type skos:exactMatch umls C3279757 Chondrodysplasia with joint dislocations gPAPP type lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0112226 Bosch-Boonstra-Schaaf optic atrophy syndrome skos:exactMatch umls C3810363 Optic atrophy, intellectual disability syndrome lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0112228 lissencephaly 9 with complex brainstem malformation skos:exactMatch umls C5193029 LISSENCEPHALY 9 WITH COMPLEX BRAINSTEM MALFORMATION lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0112229 lissencephaly 10 skos:exactMatch umls C5394354 LISSENCEPHALY 10 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0112230 lissencephaly 5 skos:exactMatch umls C3554657 LISSENCEPHALY 5 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0112231 lissencephaly 7 with cerebellar hypoplasia skos:exactMatch umls C4225359 LISSENCEPHALY 7 WITH CEREBELLAR HYPOPLASIA lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0112232 lissencephaly 3 skos:exactMatch mesh C566908 Lissencephaly 3 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0112232 lissencephaly 3 skos:exactMatch umls C1969029 Lissencephaly 3 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0112233 lissencephaly 8 skos:exactMatch umls C4310646 LISSENCEPHALY 8 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0112234 microlissencephaly skos:exactMatch mesh D008831 Microcephaly lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0112234 microlissencephaly skos:exactMatch umls C1956147 Microlissencephaly lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0112235 lissencephaly 4 skos:exactMatch umls C3151461 LISSENCEPHALY 4 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0112237 lissencephaly 1 skos:exactMatch mesh D054221 Classical Lissencephalies and Subcortical Band Heterotopias lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0112237 lissencephaly 1 skos:exactMatch umls C0431375 Classical Lissencephaly lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0112240 Leber congenital amaurosis with early-onset deafness skos:exactMatch umls C4693498 LEBER CONGENITAL AMAUROSIS WITH EARLY-ONSET DEAFNESS lexical 0.761698618841476 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0112241 multiple benign circumferential skin creases on limbs skos:exactMatch umls C0473586 Michelin tire baby syndrome lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0112244 alopecia, neurologic defects, and endocrinopathy syndrome skos:exactMatch mesh C567425 Alopecia, Neurologic Defects, and Endocrinopathy Syndrome lexical 0.7338693052978766 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0112244 alopecia, neurologic defects, and endocrinopathy syndrome skos:exactMatch umls C2677535 Alopecia, Neurologic Defects, and Endocrinopathy Syndrome lexical 0.7338693052978766 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0112245 focal segmental glomerulosclerosis 3 skos:exactMatch umls C4016880 FOCAL SEGMENTAL GLOMERULOSCLEROSIS 3 lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0112247 congenital heart defects, dysmorphic facial features, and intellectual developmental disorder skos:exactMatch umls C4479246 CONGENITAL HEART DEFECTS, DYSMORPHIC FACIAL FEATURES, AND INTELLECTUAL DEVELOPMENTAL DISORDER lexical 0.7245928674500104 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0112248 17-beta hydroxysteroid dehydrogenase 3 deficiency skos:exactMatch mesh C537805 17-Hydroxysteroid Dehydrogenase Deficiency lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0112248 17-beta hydroxysteroid dehydrogenase 3 deficiency skos:exactMatch umls C0268296 17-Hydroxysteroid Dehydrogenase Deficiency lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0112249 GAPO syndrome skos:exactMatch mesh C535642 Growth retardation, Alopecia, Pseudoanodontia and Optic atrophy lexical 0.5394763966192538 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0112249 GAPO syndrome skos:exactMatch umls C0406723 Growth retardation, Alopecia, Pseudoanodontia and Optic atrophy lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0112251 Ghosal hematodiaphyseal syndrome skos:exactMatch umls C4016444 GHOSAL HEMATODIAPHYSEAL SYNDROME lexical 0.761698618841476 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0112253 combined cellular and humoral immune defects with granulomas skos:exactMatch mesh C567115 Combined Cellular And Humoral Immune Defects With Granulomas lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0112253 combined cellular and humoral immune defects with granulomas skos:exactMatch umls C2673536 Combined Cellular And Humoral Immune Defects With Granulomas lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0112254 hepatic venoocclusive disease with immunodeficiency skos:exactMatch mesh C537257 Hepatic venoocclusive disease with immunodeficiency lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0112254 hepatic venoocclusive disease with immunodeficiency skos:exactMatch umls C1856128 Hepatic venoocclusive disease with immunodeficiency lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0112257 hydroxykynureninuria skos:exactMatch mesh C536081 Hydroxykynureninuria lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0112257 hydroxykynureninuria skos:exactMatch umls C0268474 Hydroxykynureninuria lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0112258 N-acetylglutamate synthase deficiency skos:exactMatch mesh C536109 N-acetyl glutamate synthetase deficiency lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0112258 N-acetylglutamate synthase deficiency skos:exactMatch umls C0268543 Hyperammonemia, type III lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0112259 Leydig cell hypoplasia skos:exactMatch mesh C562567 Leydig Cell Hypoplasia lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0112259 Leydig cell hypoplasia skos:exactMatch umls C0266432 Leydig cell agenesis lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0112259 Leydig cell hypoplasia skos:exactMatch umls C0860158 Leydig Cell Hypoplasia lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0112262 leucine-sensitive hypoglycemia of infancy skos:exactMatch mesh C537150 Hypoglycemia, leucine-induced lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0112262 leucine-sensitive hypoglycemia of infancy skos:exactMatch umls C0271714 Hypoglycemia, leucine-induced lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0112263 hypoinsulinemic hypoglycemia with hemihypertrophy skos:exactMatch umls C3278384 HYPOINSULINEMIC HYPOGLYCEMIA WITH HEMIHYPERTROPHY lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0112264 Woodhouse-Sakati syndrome skos:exactMatch mesh C536742 Woodhouse Sakati syndrome lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0112264 Woodhouse-Sakati syndrome skos:exactMatch umls C0342286 Woodhouse Sakati syndrome lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0112264 Woodhouse-Sakati syndrome skos:exactMatch umls C1824104 DCAF17 gene lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0112265 iminoglycinuria skos:exactMatch mesh C536285 Iminoglycinuria lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:0112265 iminoglycinuria skos:exactMatch umls C0268654 Iminoglycinuria lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:1005 endometrial disease skos:exactMatch mesh D014591 Uterine Diseases lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:1019 osteomyelitis skos:exactMatch mesh D010019 Osteomyelitis lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:10211 cholelithiasis skos:exactMatch mesh D002769 Cholelithiasis lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:1035 aggressive NK-cell leukemia skos:exactMatch mesh D054066 Leukemia, Large Granular Lymphocytic lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:1036 chronic leukemia skos:exactMatch umls C1279296 Chronic leukemia (category) lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:10526 conjunctival pterygium skos:exactMatch umls C4520843 Pterygium of eye lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:10540 gastric lymphoma skos:exactMatch mesh C535648 Familial primary gastric lymphoma lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:10573 osteomalacia skos:exactMatch mesh D010018 Osteomalacia lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:1059 intellectual disability skos:exactMatch mesh D008607 Intellectual Disability lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:1068 juvenile glaucoma skos:exactMatch umls C0020302 Hydrophthalmos lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:1068 juvenile glaucoma skos:exactMatch umls C2981140 Glaucoma of childhood lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:10685 separation anxiety disorder skos:exactMatch umls C0003477 Separation Anxiety Disorder lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:10685 separation anxiety disorder skos:exactMatch umls C1527281 Separation anxiety disorder of childhood lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:10780 primary polycythemia skos:exactMatch mesh D011087 Polycythemia Vera lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:10784 Queensland tick typhus skos:exactMatch mesh D000073605 Spotted Fever Group Rickettsiosis lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:10784 Queensland tick typhus skos:exactMatch umls C2979888 Queensland Tick Typhus lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:10825 essential hypertension skos:exactMatch efo 1002032 primary hypertension lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:10869 fourth cranial nerve palsy skos:exactMatch mesh D020432 Trochlear Nerve Diseases lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:10869 fourth cranial nerve palsy skos:exactMatch umls C0271375 Fourth cranial nerve paresis lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:10993 postinfectious encephalitis skos:exactMatch umls C0393459 Post-infectious encephalitis lexical 0.7713873428159143 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:11076 Brucella suis brucellosis skos:exactMatch umls C0275594 Infection due to Brucella suis lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:11132 prostatic hypertrophy skos:exactMatch umls C1704272 Benign Prostatic Hyperplasia lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:11132 prostatic hypertrophy skos:exactMatch umls C1739363 Prostatic Hypertrophy lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:11132 prostatic hypertrophy skos:exactMatch umls C2937421 Prostatic Hyperplasia lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:11166 Human papillomavirus infectious disease skos:exactMatch efo 0001668 human papilloma virus infection lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:1123 spondyloarthropathy skos:exactMatch efo 0009477 vertebral joint disease lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:11263 chlamydia skos:exactMatch mesh D002689 Chlamydia lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:11263 chlamydia skos:exactMatch umls C0008148 Chlamydia lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:11263 chlamydia skos:exactMatch umls C0008149 Chlamydia Infections lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:11450 allergic cutaneous vasculitis skos:exactMatch umls C0151436 Vasculitis, Leukocytoclastic, Cutaneous lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:11518 abnormal pupillary function skos:exactMatch mesh D011681 Pupil Disorders lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:1156 chondrocalcinosis skos:exactMatch mesh D002805 Chondrocalcinosis lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:11917 tinea cruris skos:exactMatch mesh D000084002 Tinea cruris lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:1214 tympanosclerosis skos:exactMatch mesh D063371 Myringosclerosis lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:12140 Chagas disease skos:exactMatch mesh D014355 Chagas Disease lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:12179 tinea corporis skos:exactMatch mesh D014005 Tinea lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:1234 gender identity disorder skos:exactMatch mesh D000068116 Gender Dysphoria lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:12568 dyscalculia skos:exactMatch umls C0869474 Dyscalculia lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:12568 dyscalculia skos:exactMatch umls C1411876 Developmental arithmetic disorder lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:12859 choreatic disease skos:exactMatch efo 0004152 chorea lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:12859 choreatic disease skos:exactMatch umls C4020858 Choreatic disease lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:13035 louse-borne relapsing fever skos:exactMatch mesh D012061 Relapsing Fever lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:13036 tick-borne relapsing fever skos:exactMatch mesh D012061 Relapsing Fever lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:13050 corpus luteum cyst skos:exactMatch mesh D010048 Ovarian Cysts lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:1307 dementia skos:exactMatch mesh D003704 Dementia lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:13074 tinea unguium skos:exactMatch mesh D014009 Onychomycosis lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:13209 right bundle branch block skos:exactMatch mesh D002037 Bundle-Branch Block lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:1324 lung cancer skos:exactMatch mesh D008175 Lung Neoplasms lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:13272 Klebsiella pneumonia skos:exactMatch umls C0519030 Pneumonia due to Klebsiella pneumoniae lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:13276 Mycoplasma pneumoniae pneumonia skos:exactMatch umls C0032302 Mycoplasma pneumonia lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:13477 balanitis xerotica obliterans skos:exactMatch mesh D052798 Balanitis Xerotica Obliterans lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:1357 maxillary sinus cancer skos:exactMatch mesh D008444 Maxillary Sinus Neoplasms lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:13730 malignant renovascular hypertension skos:exactMatch umls C0264643 Secondary malignant renovascular hypertension lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:1395 schistosomiasis skos:exactMatch mesh D012552 Schistosomiasis lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:14049 phaeohyphomycosis skos:exactMatch umls C0276721 Phaeohyphomycosis lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:14110 anus cancer skos:exactMatch mesh D001005 Anus Neoplasms lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:14202 adult dermatomyositis skos:exactMatch umls C0221056 Adult type dermatomyositis lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:1432 blindness skos:exactMatch mesh D001766 Blindness lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:14400 capillary leak syndrome skos:exactMatch efo 1001477 Systemic capillary leak syndrome lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:1460 atheroembolism of kidney skos:exactMatch umls C0268792 Atheroembolism of renal arteries lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:14749 methylmalonic acidemia skos:exactMatch mesh C537358 Methylmalonic acidemia lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:14749 methylmalonic acidemia skos:exactMatch umls C0268583 Methylmalonic acidemia lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:14764 Larsen syndrome skos:exactMatch umls C0175778 Larsen syndrome lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:14766 renal agenesis skos:exactMatch mesh C536482 Hereditary renal agenesis lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:14766 renal agenesis skos:exactMatch umls C0158699 Renal agenesis and dysgenesis lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:14766 renal agenesis skos:exactMatch umls C0542519 Congenital absence of kidney lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:14766 renal agenesis skos:exactMatch umls C1609433 Congenital absence of kidneys syndrome lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:14766 renal agenesis skos:exactMatch umls C1619700 RENAL ADYSPLASIA lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:14789 spondyloepiphyseal dysplasia congenita skos:exactMatch umls C2745959 Spondyloepiphyseal dysplasia, congenita lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:1495 cystic echinococcosis skos:exactMatch mesh D004443 Echinococcosis lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:1555 urticaria skos:exactMatch mesh D014581 Urticaria lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:1575 rheumatic disease skos:exactMatch mesh D012216 Rheumatic Diseases lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:1575 rheumatic disease skos:exactMatch umls C0009326 Collagen Diseases lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:1575 rheumatic disease skos:exactMatch umls C0035435 Rheumatism lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:1697 ichthyosis skos:exactMatch umls C0020757 Ichthyoses lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:1697 ichthyosis skos:exactMatch umls C0020758 Congenital ichthyosis lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:1752 ocular melanoma skos:exactMatch umls C0558356 Malignant melanoma of eye lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:1829 urethral stricture skos:exactMatch mesh D014525 Urethral Stricture lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:1875 impotence skos:exactMatch umls C0242350 Erectile dysfunction lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:1875 impotence skos:exactMatch umls C2187990 Unable to perform sex lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:2061 nodular hidradenoma skos:exactMatch umls C0206671 Eccrine acrospiroma lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:2176 carbuncle skos:exactMatch mesh D002270 Carbuncle lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:2226 myeloproliferative neoplasm skos:exactMatch efo 0004251 myeloproliferative disorder lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:2235 prothrombin deficiency skos:exactMatch mesh D007020 Hypoprothrombinemias lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:2426 gangliocytoma skos:exactMatch umls C0017075 Ganglioneuroma lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:2673 adult cystic nephroma skos:exactMatch umls C1266138 Benign cystic nephroma lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:2800 acute interstitial pneumonia skos:exactMatch mesh D000080203 Hamman-Rich Syndrome lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:2876 laryngeal squamous cell carcinoma skos:exactMatch mesh D000077195 Squamous Cell Carcinoma of Head and Neck lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:2994 germ cell cancer skos:exactMatch efo 1000352 Malignant Germ Cell Tumor lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:3021 acute kidney failure skos:exactMatch umls C0022660 Kidney Failure, Acute lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:3125 multiple endocrine neoplasia skos:exactMatch mesh D009377 Multiple Endocrine Neoplasia lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:3125 multiple endocrine neoplasia skos:exactMatch umls C0027662 Multiple Endocrine Neoplasia lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:3132 porphyria cutanea tarda skos:exactMatch efo 0009043 Familial porphyria cutanea tarda lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:3156 hypomelanosis of Ito skos:exactMatch efo 1000395 Nevus of Ito lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:3200 cerebellopontine angle tumor skos:exactMatch mesh D009464 Neuroma, Acoustic lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:3200 cerebellopontine angle tumor skos:exactMatch umls C0474740 Cerebellopontine Angle Tumor lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:3281 combined thymoma skos:exactMatch umls C1707449 Combined Thymic Epithelial Neoplasm lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:3319 lymphangioleiomyomatosis skos:exactMatch mesh D018192 Lymphangioleiomyomatosis lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:3354 fibrosarcoma of bone skos:exactMatch umls C2733623 Fibrosarcoma of bone lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:3378 conventional central osteosarcoma skos:exactMatch umls C1266166 Intracortical osteosarcoma lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:3443 mammary Paget's disease skos:exactMatch mesh D010144 Paget's Disease, Mammary lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:3450 cutaneous Paget's disease skos:exactMatch efo 1000249 Extramammary Paget Disease lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:3450 cutaneous Paget's disease skos:exactMatch umls C0030186 Paget Disease Extramammary lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:3526 cerebral infarction skos:exactMatch efo 0000712 stroke lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:3578 ovarian gonadoblastoma skos:exactMatch efo 1000420 Ovarian Gonadoblastoma lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:3666 cutaneous solitary mastocytoma skos:exactMatch umls C0343115 Skin Mastocytoma lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:3756 protein C deficiency skos:exactMatch efo 0009316 protein c deficiency lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:3814 extraskeletal chondroma skos:exactMatch umls C1275277 Soft tissue chondroma lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:3847 papillary craniopharyngioma skos:exactMatch efo 1000447 Papillary Craniopharyngioma lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:3959 adrenal cortical adenocarcinoma skos:exactMatch umls C0206686 Adrenocortical carcinoma lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:3965 Merkel cell carcinoma skos:exactMatch efo 1001471 Merkel cell skin cancer lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:4011 prostate transitional cell carcinoma skos:exactMatch umls C1514430 Primary Prostate Urothelial Carcinoma lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:4012 papillary transitional carcinoma skos:exactMatch efo 1000450 Papillary Transitional Cell Carcinoma lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:4028 angioma serpiginosum skos:exactMatch mesh C536366 Angioma serpiginosum, X-linked lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:4030 eosinophilic gastritis skos:exactMatch mesh C535952 Eosinophilic enteropathy lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:4031 eosinophilic gastroenteritis skos:exactMatch mesh C535952 Eosinophilic enteropathy lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:4153 spinal chordoma skos:exactMatch umls C1859101 Vertebral chordoma lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:417 autoimmune disease skos:exactMatch efo 0005140 autoimmune disease lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:4210 clear cell meningioma skos:exactMatch efo 1000180 Clear Cell Meningioma lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:4217 malignant ovarian Brenner tumor skos:exactMatch efo 1000357 Malignant Ovarian Brenner Tumor lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:4251 conjunctival disease skos:exactMatch efo 1000203 Conjunctival Disorder lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:4279 infundibulocystic basal cell carcinoma skos:exactMatch umls C1304297 Basal cell carcinoma, infundibulocystic lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:4281 metatypical basal cell carcinoma skos:exactMatch umls C0007118 Carcinoma, Basosquamous lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:4282 pigmented basal cell carcinoma skos:exactMatch umls C1368275 Pigmented Basal Cell Carcinoma lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:4289 micronodular basal cell carcinoma skos:exactMatch umls C1367861 Basal cell carcinoma, micronodular lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:4294 adenoid basal cell carcinoma skos:exactMatch umls C1304296 Basal cell carcinoma - adenoid lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:4295 follicular basal cell carcinoma skos:exactMatch umls C1883723 Basal cell carcinoma - follicular lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:4302 cystic basal cell carcinoma skos:exactMatch umls C1275193 Cystic basal cell carcinoma lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:4432 pancreatic somatostatinoma skos:exactMatch efo 1001964 pancreatic somatostatinoma lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:4451 renal carcinoma skos:exactMatch mesh D002292 Carcinoma, Renal Cell lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:4455 hereditary renal cell carcinoma skos:exactMatch umls C2608055 Hereditary Renal Cell Carcinoma lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:4515 thyroid sarcoma skos:exactMatch efo 1001971 thyroid gland sarcoma lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:4549 extraosseous chondrosarcoma skos:exactMatch umls C1275278 Extraskeletal Myxoid Chondrosarcoma lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:4588 secretory meningioma skos:exactMatch efo 1000522 Secretory Meningioma lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:4591 lymphoplasmacyte-rich meningioma skos:exactMatch efo 1000342 Lymphoplasmacyte-Rich Meningioma lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:4594 microcystic meningioma skos:exactMatch efo 1000376 Microcystic Meningioma lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:4647 trilateral retinoblastoma skos:exactMatch umls C2608045 Trilateral Retinoblastoma lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:4658 benign mastocytoma skos:exactMatch mesh D034801 Mastocytoma lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:4756 testicular Leydig cell tumor skos:exactMatch efo 1000569 Testicular Leydig Cell Tumor lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:4769 pleuropulmonary blastoma skos:exactMatch efo 0009052 Pleuropulmonary blastoma lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:4844 benign ependymoma skos:exactMatch efo 1000028 ependymoma lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:4857 diffuse astrocytoma skos:exactMatch umls C0280785 Diffuse Astrocytoma lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:4857 diffuse astrocytoma skos:exactMatch umls C1332200 Adult Diffuse Astrocytoma lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:4857 diffuse astrocytoma skos:exactMatch umls C3899668 Childhood Diffuse Astrocytoma lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:495 sclerosing hemangioma skos:exactMatch mesh D018219 Histiocytoma, Benign Fibrous lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:505 hobnail hemangioma skos:exactMatch umls C0346076 Hobnail Hemangioma lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:5058 rhabdoid meningioma skos:exactMatch efo 1000511 Rhabdoid Meningioma lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:5119 ovarian cyst skos:exactMatch mesh D010048 Ovarian Cysts lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:5161 Monckeberg arteriosclerosis skos:exactMatch umls C0887866 Monckeberg Medial Calcific Sclerosis lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:5199 ureteral obstruction skos:exactMatch mesh D014517 Ureteral Obstruction lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:5213 chronic inflammatory demyelinating polyradiculoneuropathy skos:exactMatch efo 0009538 chronic inflammatory demyelinating polyneuropathy lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:5284 retroperitoneal leiomyosarcoma skos:exactMatch umls C2187547 leiomyosarcoma of retroperitoneum lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:5286 vulvar leiomyosarcoma skos:exactMatch umls C2168304 leiomyosarcoma of vulva lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:5331 testicular granulosa cell tumor skos:exactMatch efo 1000567 Testicular Granulosa Cell Tumor lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:535 sleep disorder skos:exactMatch efo 0008568 Sleep Disorder lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:5374 pilomatrixoma skos:exactMatch efo 0009082 Pilomatrixoma lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:540 strabismus skos:exactMatch mesh D013285 Strabismus lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:5444 spiradenoma skos:exactMatch mesh D018250 Acrospiroma lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:5480 ovarian endometrioid adenofibroma skos:exactMatch umls C2212024 endometrioid adenofibroma of ovary lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:5507 clear cell ependymoma skos:exactMatch mesh D004806 Ependymoma lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:5507 clear cell ependymoma skos:exactMatch umls C1384403 Cellular Ependymoma lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:5509 pediatric ependymoma skos:exactMatch umls C1851584 Childhood Ependymoma lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:5531 ovarian squamous cell carcinoma skos:exactMatch umls C2019443 squamous cell carcinoma of ovary lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:5537 squamous cell bile duct carcinoma skos:exactMatch efo 1000248 Extrahepatic Bile Duct Squamous Cell Carcinoma lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:5569 malignant syringoma skos:exactMatch umls C0346027 Microcystic adnexal carcinoma lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:5580 pancreatic gastrinoma skos:exactMatch efo 1000440 Pancreatic Gastrinoma lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:5590 aggressive digital papillary adenocarcinoma skos:exactMatch umls C1367789 Digital papillary eccrine carcinoma of skin lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:5612 spinal cancer skos:exactMatch efo 0003828 spinal cord neoplasm lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:5624 adenosquamous bile duct carcinoma skos:exactMatch efo 1000247 Extrahepatic Bile Duct Adenosquamous Carcinoma lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:5625 esophageal adenosquamous carcinoma skos:exactMatch umls C2063886 Esophageal adenosquamous carcinoma lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:5631 endometrial adenosquamous carcinoma skos:exactMatch umls C3896969 Endometrial Adenosquamous Carcinoma lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:5675 cribriform carcinoma skos:exactMatch efo 1000210 Cribriform Carcinoma lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:5690 well-differentiated liposarcoma skos:exactMatch efo 0000736 well-differentiated liposarcoma lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:5711 vulvar liposarcoma skos:exactMatch umls C2184082 liposarcoma of vulva lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:574 peripheral nervous system disease skos:exactMatch mesh D010523 Peripheral Nervous System Diseases lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:5750 endometrial serous adenocarcinoma skos:exactMatch efo 1000238 Endometrial Serous Adenocarcinoma lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:5750 endometrial serous adenocarcinoma skos:exactMatch umls C0854924 Papillary serous endometrial carcinoma lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:5806 stork bite skos:exactMatch umls C0235752 Port-Wine Stain lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:5806 stork bite skos:exactMatch umls C4024829 Nevus flammeus nuchae lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:5810 adenosine deaminase deficiency skos:exactMatch mesh C531816 Severe combined immunodeficiency due to adenosine deaminase deficiency lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:585 nephrolithiasis skos:exactMatch mesh D053040 Nephrolithiasis lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:5859 periosteal chondrosarcoma skos:exactMatch umls C0334549 Juxtacortical chondrosarcoma lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:5889 anaplastic ependymoma skos:exactMatch mesh D004806 Ependymoma lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:5889 anaplastic ependymoma skos:exactMatch umls C0280787 Adult Anaplastic Ependymoma lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:5889 anaplastic ependymoma skos:exactMatch umls C0280788 Anaplastic Ependymoma lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:5889 anaplastic ependymoma skos:exactMatch umls C4086151 Childhood Anaplastic Ependymoma lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:5900 meningeal melanocytoma skos:exactMatch efo 1000370 Meningeal Melanocytoma lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:5917 uterine corpus diffuse leiomyomatosis skos:exactMatch umls C1519855 Uterine Corpus Diffuse Leiomyomatosis lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:5974 renal pelvis transitional cell carcinoma skos:exactMatch umls C4087468 Urothelial cancer of renal pelvis lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:60000 appendix disease skos:exactMatch umls C0267613 Disorder of appendix lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:60003 Bartholin's gland cancer skos:exactMatch umls C0349561 Bartholin's gland carcinoma lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:60006 benign vascular tumor skos:exactMatch umls C1377916 Benign vascular neoplasm lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:6088 acute stress disorder skos:exactMatch mesh D040701 Stress Disorders, Traumatic, Acute lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:6179 ovarian small cell carcinoma skos:exactMatch umls C2212006 Small cell carcinoma of ovary lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:6225 Cronkhite-Canada syndrome skos:exactMatch mesh D044483 Intestinal Polyposis lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:6278 ovarian mucinous malignant adenofibroma skos:exactMatch umls C2212014 mucinous adenocarcinofibroma of ovary lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:6339 vulvar eccrine adenocarcinoma skos:exactMatch umls C2202743 eccrine adenocarcinoma of vulva lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:6367 acral lentiginous melanoma skos:exactMatch umls C0346037 Acral Lentiginous Malignant Melanoma lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:6448 vulvar apocrine adenocarcinoma skos:exactMatch umls C2202741 apocrine adenocarcinoma of vulva lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:6548 angiomatous meningioma skos:exactMatch efo 1000086 Angiomatous Meningioma lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:6554 ovarian clear cell malignant adenofibroma skos:exactMatch umls C2075522 clear cell adenocarcinofibroma of ovary lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:656 adrenal adenoma skos:exactMatch umls C0206667 Adrenal Cortical Adenoma lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:6571 non-invasive bladder urothelial carcinoma skos:exactMatch umls C1336089 Bladder transitional cell carcinoma stage 0 lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:66 muscle tissue disease skos:exactMatch umls C0026848 Myopathy lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:6610 bone epithelioid hemangioma skos:exactMatch efo 1000132 Bone Epithelioid Hemangioma lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:670 amphetamine abuse skos:exactMatch mesh D019969 Amphetamine-Related Disorders lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:676 juvenile rheumatoid arthritis skos:exactMatch mesh D001171 Arthritis, Juvenile lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:6785 desmoplastic small round cell tumor skos:exactMatch mesh D058405 Desmoplastic Small Round Cell Tumor lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:6785 desmoplastic small round cell tumor skos:exactMatch umls C0281508 Desmoplastic Small Round Cell Tumor lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:6785 desmoplastic small round cell tumor skos:exactMatch umls C1332199 Adult Desmoplastic Small Round Cell Tumor lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:6785 desmoplastic small round cell tumor skos:exactMatch umls C1332966 Childhood Desmoplastic Small Round Cell Tumor lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:6823 pancreatoblastoma skos:exactMatch efo 1000446 Pancreatoblastoma lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:684 hepatocellular carcinoma skos:exactMatch mesh D006528 Carcinoma, Hepatocellular lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:684 hepatocellular carcinoma skos:exactMatch umls C2239176 Liver carcinoma lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:6888 ureter transitional cell carcinoma skos:exactMatch efo 1001973 ureter urothelial carcinoma lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:7048 vulvar basaloid squamous cell carcinoma skos:exactMatch umls C2211850 basaloid squamous cell carcinoma of vulva lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:707 B-cell lymphoma skos:exactMatch efo 1001938 B-cell non-Hodgkins lymphoma lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:7154 anaplastic oligodendroglioma skos:exactMatch efo 0002501 anaplastic oligodendroglioma lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:7154 anaplastic oligodendroglioma skos:exactMatch mesh D009837 Oligodendroglioma lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:7154 anaplastic oligodendroglioma skos:exactMatch umls C0280790 Adult Anaplastic Oligodendroglioma lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:7154 anaplastic oligodendroglioma skos:exactMatch umls C0334590 Anaplastic Oligodendroglioma lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:7154 anaplastic oligodendroglioma skos:exactMatch umls C1332943 Childhood Anaplastic Oligodendroglioma lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:7210 psammomatous meningioma skos:exactMatch efo 1000500 Psammomatous Meningioma lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:7211 fibrous meningioma skos:exactMatch efo 1000258 Fibrous Meningioma lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:7212 meningothelial meningioma skos:exactMatch efo 1000372 Meningothelial Meningioma lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:7213 transitional meningioma skos:exactMatch efo 1000602 Transitional Meningioma lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:7363 vulvar keratinizing squamous cell carcinoma skos:exactMatch umls C2109334 keratinizing squamous cell carcinoma of vulva lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:7442 monoclonal gammopathy of uncertain significance skos:exactMatch umls C0026470 Monoclonal Gammopathy of Undetermined Significance lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:7533 subareolar duct papillomatosis skos:exactMatch umls C0334378 Adenoma of the nipple lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:7571 malignant cystic nephroma skos:exactMatch umls C1266139 Cystic Partially Differentiated Nephroblastoma lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:7664 endometrial mixed adenocarcinoma skos:exactMatch umls C1516856 endometrial mixed adenocarcinoma lexical 0.7777777777777778 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:7718 osteoclast-like giant cell neoplasm of the pancreas skos:exactMatch umls C2007059 carcinoma of pancreas with osteoclast-like giant cells lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:783 end stage renal disease skos:exactMatch efo 0009909 stage 5 chronic kidney disease lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:783 end stage renal disease skos:exactMatch mesh D007676 Kidney Failure, Chronic lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:783 end stage renal disease skos:exactMatch umls C0022661 Kidney Failure, Chronic lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:783 end stage renal disease skos:exactMatch umls C2316810 Chronic kidney disease stage 5 lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:7891 testicular spermatocytic seminoma skos:exactMatch umls C0334517 Spermatocytic seminoma lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:7922 benign mediastinal neurilemmoma skos:exactMatch umls C1334679 Mediastinal Schwannoma lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:8158 complement component 5 deficiency skos:exactMatch umls C0343047 Complement component 5 deficiency lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:8161 thyroid gland Hurthle cell carcinoma skos:exactMatch efo 1000592 Thyroid Gland Oncocytic Follicular Carcinoma lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:8170 fibroepithelial polyp of the anus skos:exactMatch umls C0345903 Anal skin tag lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:8187 gestational uterine corpus choriocarcinoma skos:exactMatch umls C1336904 Uterine Corpus Choriocarcinoma lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:8256 olfactory neural tumor skos:exactMatch umls C0346319 Neoplasm of olfactory nerve lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:8303 congenital granular cell tumor skos:exactMatch umls C0376319 Congenital Epulides lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:8353 epithelioid malignant peripheral nerve sheath tumor skos:exactMatch efo 1000245 Epithelioid Malignant Peripheral Nerve Sheath Tumor lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:8368 chordoid meningioma skos:exactMatch efo 1000176 Chordoid Meningioma lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:8411 kidney angiomyolipoma skos:exactMatch efo 1000312 Kidney Angiomyolipoma lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:8457 pellagra skos:exactMatch efo 0008570 Vitamin B3 deficiency lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:8502 bullous skin disease skos:exactMatch mesh D012872 Skin Diseases, Vesiculobullous lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:8529 ulcer of lower limbs skos:exactMatch umls C0023223 Leg Ulcer lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:8616 Peyronie's disease skos:exactMatch efo 1000466 Penile Fibromatosis lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:8634 prostate carcinoma in situ skos:exactMatch efo 1000283 Grade III Prostatic Intraepithelial Neoplasia lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:8642 Hodgkin's paragranuloma skos:exactMatch umls C0019829 Hodgkin Disease lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:8943 lattice corneal dystrophy skos:exactMatch umls C0155127 Familial Amyloid Polyneuropathy, Type V lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:9192 dyskinesia of esophagus skos:exactMatch efo 1001785 diffuse esophageal spasm lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:9253 gastrointestinal stromal tumor skos:exactMatch efo 0010279 GIST-plus syndrome lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:9415 allergic asthma skos:exactMatch efo 0010638 atopic asthma lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:9551 smoldering myeloma skos:exactMatch umls C1531608 Smoldering myeloma lexical 0.7715934858792002 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:9600 plantar fasciitis skos:exactMatch efo 1001909 Plantar Fasciitis lexical 0.7623170480313337 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:9637 stomatitis skos:exactMatch efo 1001904 oral mucositis lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:9883 Becker muscular dystrophy skos:exactMatch mesh D020388 Muscular Dystrophy, Duchenne lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:9912 hydrocele skos:exactMatch umls C1720771 Testicular Hydrocele lexical 0.5555555555555556 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:9952 acute lymphoblastic leukemia skos:exactMatch mesh D054198 Precursor Cell Lymphoblastic Leukemia-Lymphoma lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py +doid DOID:9973 substance dependence skos:exactMatch mesh D019966 Substance-Related Disorders lexical 0.5400948258091115 https://github.com/biomappings/biomappings/blob/f293d0/scripts/generate_doid_mappings.py mesh C000055 alloclamide skos:exactMatch ncit C92612 Alloclamide Hydrochloride lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh C000082 alanosine skos:exactMatch ncit C994 Alanosine lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh C000170 ferric ferrocyanide skos:exactMatch ncit C47532 Ferric Ferrocyanide lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh C000179 N-acetylaspartate skos:exactMatch ncit C118887 N-Acetylaspartate lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh C000203 deoxyaminopteroic acid skos:exactMatch ncit C157133 Deoxyaminopteroic Acid lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh C000214 androst-16-en-3-one skos:exactMatch ncit C95969 Androstenone lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh C000288 ritrosulfan skos:exactMatch ncit C75294 Ritrosulfan lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh C000400 chelocardin skos:exactMatch ncit C98044 Cetocycline lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh C000430 D-4-chloro-17 beta-hydroxy-3-oxo-17 alpha-methylandrosta-1,4-diene skos:exactMatch ncit C92680 CYLD wt Allele lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh C000499 ferric oxide skos:exactMatch ncit C75672 Ferric Oxide Red lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -348,7 +13062,6 @@ mesh C000589330 CLDN17 protein, human skos:exactMatch uniprot P56750 CLDN17 lexi mesh C000589380 RBM47 protein, human skos:exactMatch uniprot A0AV96 RBM47 lexical 0.999 https://github.com/biomappings/biomappings/blob/a840cf/scripts/generate_mesh_uniprot_mappings.py mesh C000589384 TRIM65 protein, human skos:exactMatch uniprot Q6PJ69 TRIM65 lexical 0.999 https://github.com/biomappings/biomappings/blob/a840cf/scripts/generate_mesh_uniprot_mappings.py mesh C000589449 UQCC2 protein, human skos:exactMatch uniprot Q9BRT2 UQCC2 lexical 0.999 https://github.com/biomappings/biomappings/blob/a840cf/scripts/generate_mesh_uniprot_mappings.py -mesh C000589490 Omaveloxolone skos:exactMatch ncit C113443 Omaveloxolone lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh C000589559 DNAJC27 protein, human skos:exactMatch uniprot Q9NZQ0 DNAJC27 lexical 0.999 https://github.com/biomappings/biomappings/blob/a840cf/scripts/generate_mesh_uniprot_mappings.py mesh C000589580 S100A16 protein, human skos:exactMatch uniprot Q96FQ6 S100A16 lexical 0.999 https://github.com/biomappings/biomappings/blob/a840cf/scripts/generate_mesh_uniprot_mappings.py mesh C000589675 POU3F3 protein, human skos:exactMatch uniprot P20264 POU3F3 lexical 0.999 https://github.com/biomappings/biomappings/blob/a840cf/scripts/generate_mesh_uniprot_mappings.py @@ -364,7 +13077,6 @@ mesh C000590680 TUBB6 protein, human skos:exactMatch uniprot Q9BUF5 TUBB6 lexica mesh C000590731 LEUTX protein, human skos:exactMatch uniprot A8MZ59 LEUTX lexical 0.999 https://github.com/biomappings/biomappings/blob/a840cf/scripts/generate_mesh_uniprot_mappings.py mesh C000590740 ARID5A protein, human skos:exactMatch uniprot Q03989 ARID5A lexical 0.999 https://github.com/biomappings/biomappings/blob/a840cf/scripts/generate_mesh_uniprot_mappings.py mesh C000590778 ZC3H18 protein, human skos:exactMatch uniprot Q86VM9 ZC3H18 lexical 0.999 https://github.com/biomappings/biomappings/blob/a840cf/scripts/generate_mesh_uniprot_mappings.py -mesh C000590915 Aticaprant skos:exactMatch ncit C170144 Aticaprant lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh C000590976 TSEN15 protein, human skos:exactMatch uniprot Q8WW01 TSEN15 lexical 0.999 https://github.com/biomappings/biomappings/blob/a840cf/scripts/generate_mesh_uniprot_mappings.py mesh C000591058 TREML4 protein, human skos:exactMatch uniprot Q6UXN2 TREML4 lexical 0.999 https://github.com/biomappings/biomappings/blob/a840cf/scripts/generate_mesh_uniprot_mappings.py mesh C000591093 ma zi ren wan skos:exactMatch ncit C129581 Ma Zi Ren Wan lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -409,7 +13121,6 @@ mesh C000592858 CATIP protein, human skos:exactMatch uniprot Q7Z7H3 CATIP lexica mesh C000592877 B9D1 protein, human skos:exactMatch uniprot Q9UPM9 B9D1 lexical 0.999 https://github.com/biomappings/biomappings/blob/a840cf/scripts/generate_mesh_uniprot_mappings.py mesh C000592903 STK31 protein, human skos:exactMatch uniprot Q9BXU1 STK31 lexical 0.999 https://github.com/biomappings/biomappings/blob/a840cf/scripts/generate_mesh_uniprot_mappings.py mesh C000592908 NECAP1 protein, human skos:exactMatch uniprot Q8NC96 NECAP1 lexical 0.999 https://github.com/biomappings/biomappings/blob/a840cf/scripts/generate_mesh_uniprot_mappings.py -mesh C000592911 Abituzumab skos:exactMatch ncit C82422 Abituzumab lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh C000593042 CNIH4 protein, human skos:exactMatch uniprot Q9P003 CNIH4 lexical 0.999 https://github.com/biomappings/biomappings/blob/a840cf/scripts/generate_mesh_uniprot_mappings.py mesh C000593044 CCDC38 protein, human skos:exactMatch uniprot Q502W7 CCDC38 lexical 0.999 https://github.com/biomappings/biomappings/blob/a840cf/scripts/generate_mesh_uniprot_mappings.py mesh C000593112 PLEKHA6 protein, human skos:exactMatch uniprot Q9Y2H5 PLEKHA6 lexical 0.999 https://github.com/biomappings/biomappings/blob/a840cf/scripts/generate_mesh_uniprot_mappings.py @@ -473,7 +13184,6 @@ mesh C000594762 MRM1 protein, human skos:exactMatch uniprot Q6IN84 MRM1 lexical mesh C000594763 MRM3 protein, human skos:exactMatch uniprot Q9HC36 MRM3 lexical 0.999 https://github.com/biomappings/biomappings/blob/a840cf/scripts/generate_mesh_uniprot_mappings.py mesh C000594766 FRMD5 protein, human skos:exactMatch uniprot Q7Z6J6 FRMD5 lexical 0.999 https://github.com/biomappings/biomappings/blob/a840cf/scripts/generate_mesh_uniprot_mappings.py mesh C000594771 MED18 protein, human skos:exactMatch uniprot Q9BUE0 MED18 lexical 0.999 https://github.com/biomappings/biomappings/blob/a840cf/scripts/generate_mesh_uniprot_mappings.py -mesh C000594804 Tovetumab skos:exactMatch ncit C82684 Tovetumab lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh C000594806 PF-04605412 skos:exactMatch ncit C85478 Anti-A5B1 Integrin Monoclonal Antibody PF-04605412 lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh C000594810 ATP6V1G1 protein, human skos:exactMatch uniprot O75348 ATP6V1G1 lexical 0.999 https://github.com/biomappings/biomappings/blob/a840cf/scripts/generate_mesh_uniprot_mappings.py mesh C000594829 GAS2L2 protein, human skos:exactMatch uniprot Q8NHY3 GAS2L2 lexical 0.999 https://github.com/biomappings/biomappings/blob/a840cf/scripts/generate_mesh_uniprot_mappings.py @@ -492,7 +13202,6 @@ mesh C000595153 ASP3026 skos:exactMatch ncit C116727 ALK Inhibitor ASP3026 lexic mesh C000595173 CELA1 protein, human skos:exactMatch uniprot Q9UNI1 CELA1 lexical 0.999 https://github.com/biomappings/biomappings/blob/a840cf/scripts/generate_mesh_uniprot_mappings.py mesh C000595175 TRMT10A protein, human skos:exactMatch uniprot Q8TBZ6 TRMT10A lexical 0.999 https://github.com/biomappings/biomappings/blob/a840cf/scripts/generate_mesh_uniprot_mappings.py mesh C000595209 polyethylene glycol 1000 skos:exactMatch ncit C84072 Polyethylene Glycol 1000 lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh C000595215 Polyethylene Glycol 6000 skos:exactMatch ncit C84085 Polyethylene Glycol 6000 lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh C000595218 DDC protein, human skos:exactMatch uniprot P20711 DDC lexical 0.999 https://github.com/biomappings/biomappings/blob/a840cf/scripts/generate_mesh_uniprot_mappings.py mesh C000595244 ARRY-334543 skos:exactMatch ncit C62530 Varlitinib lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh C000595261 OR2AT4 protein, human skos:exactMatch uniprot A6NND4 OR2AT4 lexical 0.999 https://github.com/biomappings/biomappings/blob/a840cf/scripts/generate_mesh_uniprot_mappings.py @@ -572,7 +13281,6 @@ mesh C000597236 IGF1R protein, human skos:exactMatch uniprot P08069 IGF1R lexica mesh C000597250 CNNM3 protein, human skos:exactMatch uniprot Q8NE01 CNNM3 lexical 0.999 https://github.com/biomappings/biomappings/blob/a840cf/scripts/generate_mesh_uniprot_mappings.py mesh C000597251 PCK2 protein, human skos:exactMatch uniprot Q16822 PCK2 lexical 0.999 https://github.com/biomappings/biomappings/blob/a840cf/scripts/generate_mesh_uniprot_mappings.py mesh C000597309 DCC-2701 skos:exactMatch ncit C118290 Altiratinib lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh C000597312 Gefapixant skos:exactMatch ncit C166945 Gefapixant lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh C000597329 SLC22A23 protein, human skos:exactMatch uniprot A1A5C7 SLC22A23 lexical 0.999 https://github.com/biomappings/biomappings/blob/a840cf/scripts/generate_mesh_uniprot_mappings.py mesh C000597331 CEACAM4 protein, human skos:exactMatch uniprot O75871 CEACAM4 lexical 0.999 https://github.com/biomappings/biomappings/blob/a840cf/scripts/generate_mesh_uniprot_mappings.py mesh C000597348 HEATR1 protein, human skos:exactMatch uniprot Q9H583 HEATR1 lexical 0.999 https://github.com/biomappings/biomappings/blob/a840cf/scripts/generate_mesh_uniprot_mappings.py @@ -637,7 +13345,6 @@ mesh C000599706 CERS4 protein, human skos:exactMatch uniprot Q9HA82 CERS4 lexica mesh C000599741 BAL101553 skos:exactMatch ncit C97664 Lisavanbulin lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh C000599750 OR10J5 protein, human skos:exactMatch uniprot Q8NHC4 OR10J5 lexical 0.999 https://github.com/biomappings/biomappings/blob/a840cf/scripts/generate_mesh_uniprot_mappings.py mesh C000599754 TSPYL2 protein, human skos:exactMatch uniprot Q9H2G4 TSPYL2 lexical 0.999 https://github.com/biomappings/biomappings/blob/a840cf/scripts/generate_mesh_uniprot_mappings.py -mesh C000599766 Otilimab skos:exactMatch ncit C170271 Otilimab lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh C000599771 baminercept skos:exactMatch ncit C96762 Baminercept Alfa lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh C000599871 AVPR1A protein, human skos:exactMatch uniprot P37288 AVPR1A lexical 0.999 https://github.com/biomappings/biomappings/blob/a840cf/scripts/generate_mesh_uniprot_mappings.py mesh C000599881 68gallium-BNOTA-PRGD2 skos:exactMatch ncit C99904 Gallium Ga 68-labeled BNOTA-PRGD2 lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -648,7 +13355,6 @@ mesh C000599964 IFT172 protein, human skos:exactMatch uniprot Q9UG01 IFT172 lexi mesh C000599973 CCDC170 protein, human skos:exactMatch uniprot Q8IYT3 CCDC170 lexical 0.999 https://github.com/biomappings/biomappings/blob/a840cf/scripts/generate_mesh_uniprot_mappings.py mesh C000599979 NCAPD3 protein, human skos:exactMatch uniprot P42695 NCAPD3 lexical 0.999 https://github.com/biomappings/biomappings/blob/a840cf/scripts/generate_mesh_uniprot_mappings.py mesh C000600034 ESR2 protein, human skos:exactMatch uniprot Q92731 ESR2 lexical 0.999 https://github.com/biomappings/biomappings/blob/a840cf/scripts/generate_mesh_uniprot_mappings.py -mesh C000600094 Fletikumab skos:exactMatch ncit C171836 Fletikumab lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh C000600110 NKP-1339 skos:exactMatch ncit C97948 Ruthenium-based Transferrin Targeting Agent NKP-1339 lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh C000600133 ATXN2L protein, human skos:exactMatch uniprot Q8WWM7 ATXN2L lexical 0.999 https://github.com/biomappings/biomappings/blob/a840cf/scripts/generate_mesh_uniprot_mappings.py mesh C000600157 SGN-LIV1A skos:exactMatch ncit C112001 Ladiratuzumab Vedotin lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -714,7 +13420,6 @@ mesh C000602522 THSD4 protein, human skos:exactMatch uniprot Q6ZMP0 THSD4 lexica mesh C000602562 CH5183284 skos:exactMatch ncit C111988 FGFR Inhibitor Debio 1347 lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh C000602570 ZBED6 protein, human skos:exactMatch uniprot P86452 ZBED6 lexical 0.999 https://github.com/biomappings/biomappings/blob/a840cf/scripts/generate_mesh_uniprot_mappings.py mesh C000602638 NSUN6 protein, human skos:exactMatch uniprot Q8TEA1 NSUN6 lexical 0.999 https://github.com/biomappings/biomappings/blob/a840cf/scripts/generate_mesh_uniprot_mappings.py -mesh C000602642 PLX8394 skos:exactMatch ncit C113330 BRAF Inhibitor PLX8394 lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh C000602651 NUPR2 protein, human skos:exactMatch uniprot A6NF83 NUPR2 lexical 0.999 https://github.com/biomappings/biomappings/blob/a840cf/scripts/generate_mesh_uniprot_mappings.py mesh C000602769 EIF2AK2 protein, human skos:exactMatch uniprot P19525 EIF2AK2 lexical 0.999 https://github.com/biomappings/biomappings/blob/a840cf/scripts/generate_mesh_uniprot_mappings.py mesh C000602810 ZNF543 protein, human skos:exactMatch uniprot Q08ER8 ZNF543 lexical 0.999 https://github.com/biomappings/biomappings/blob/a840cf/scripts/generate_mesh_uniprot_mappings.py @@ -753,7 +13458,6 @@ mesh C000603519 PIGL protein, human skos:exactMatch uniprot Q9Y2B2 PIGL lexical mesh C000603522 PAGE2 protein, human skos:exactMatch uniprot Q7Z2X7 PAGE2 lexical 0.999 https://github.com/biomappings/biomappings/blob/a840cf/scripts/generate_mesh_uniprot_mappings.py mesh C000603544 ZNF527 protein, human skos:exactMatch uniprot Q8NB42 ZNF527 lexical 0.999 https://github.com/biomappings/biomappings/blob/a840cf/scripts/generate_mesh_uniprot_mappings.py mesh C000603585 UNC5A protein, human skos:exactMatch uniprot Q6ZN44 UNC5A lexical 0.999 https://github.com/biomappings/biomappings/blob/a840cf/scripts/generate_mesh_uniprot_mappings.py -mesh C000603632 sodium glycididazole skos:exactMatch ncit C77889 Sodium Glycididazole lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh C000603634 WDFY1 protein, human skos:exactMatch uniprot Q8IWB7 WDFY1 lexical 0.999 https://github.com/biomappings/biomappings/blob/a840cf/scripts/generate_mesh_uniprot_mappings.py mesh C000603652 ABHD16A protein, human skos:exactMatch uniprot O95870 ABHD16A lexical 0.999 https://github.com/biomappings/biomappings/blob/a840cf/scripts/generate_mesh_uniprot_mappings.py mesh C000603670 ZNF334 protein, human skos:exactMatch uniprot Q9HCZ1 ZNF334 lexical 0.999 https://github.com/biomappings/biomappings/blob/a840cf/scripts/generate_mesh_uniprot_mappings.py @@ -904,7 +13608,6 @@ mesh C000607079 CYP26B1 protein, human skos:exactMatch uniprot Q9NR63 CYP26B1 le mesh C000607165 DHRS7 protein, human skos:exactMatch uniprot Q9Y394 DHRS7 lexical 0.999 https://github.com/biomappings/biomappings/blob/a840cf/scripts/generate_mesh_uniprot_mappings.py mesh C000607204 ATP8B4 protein, human skos:exactMatch uniprot Q8TF62 ATP8B4 lexical 0.999 https://github.com/biomappings/biomappings/blob/a840cf/scripts/generate_mesh_uniprot_mappings.py mesh C000607216 FBXO21 protein, human skos:exactMatch uniprot O94952 FBXO21 lexical 0.999 https://github.com/biomappings/biomappings/blob/a840cf/scripts/generate_mesh_uniprot_mappings.py -mesh C000607229 Solitomab skos:exactMatch ncit C77854 Solitomab lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh C000607290 AMG 595 skos:exactMatch ncit C99222 Anti-EGFRvIII Antibody Drug Conjugate AMG 595 lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh C000607291 MM-151 skos:exactMatch ncit C99899 Anti-EGFR Monoclonal Antibody Mixture MM-151 lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh C000607292 AGS67E skos:exactMatch ncit C119700 Anti-CD37 MMAE Antibody-drug Conjugate AGS67E lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -956,7 +13659,6 @@ mesh C000608290 TMEM196 protein, human skos:exactMatch uniprot Q5HYL7 TMEM196 le mesh C000608448 ZGRF1 protein, human skos:exactMatch uniprot Q86YA3 ZGRF1 lexical 0.999 https://github.com/biomappings/biomappings/blob/a840cf/scripts/generate_mesh_uniprot_mappings.py mesh C000608521 KIAA0556 protein, human skos:exactMatch uniprot O60303 KIAA0556 lexical 0.999 https://github.com/biomappings/biomappings/blob/a840cf/scripts/generate_mesh_uniprot_mappings.py mesh C000608558 RPL22L1 protein, human skos:exactMatch uniprot Q6P5R6 RPL22L1 lexical 0.999 https://github.com/biomappings/biomappings/blob/a840cf/scripts/generate_mesh_uniprot_mappings.py -mesh C000608559 Miransertib skos:exactMatch ncit C99172 Miransertib lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh C000608598 Capmul MCM skos:exactMatch ncit C83584 Caprylic/Capric Mono/Diglycerides lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh C000608604 PGBD5 protein, human skos:exactMatch uniprot Q8N414 PGBD5 lexical 0.999 https://github.com/biomappings/biomappings/blob/a840cf/scripts/generate_mesh_uniprot_mappings.py mesh C000608605 MIRN1281 microRNA, human skos:exactMatch ncit C82073 MIR128-1 wt Allele lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -968,7 +13670,6 @@ mesh C000608774 KCNK7 protein, human skos:exactMatch uniprot Q9Y2U2 KCNK7 lexica mesh C000608776 SRRM3 protein, human skos:exactMatch uniprot A6NNA2 SRRM3 lexical 0.999 https://github.com/biomappings/biomappings/blob/a840cf/scripts/generate_mesh_uniprot_mappings.py mesh C000608785 GPT2 protein, human skos:exactMatch uniprot Q8TD30 GPT2 lexical 0.999 https://github.com/biomappings/biomappings/blob/a840cf/scripts/generate_mesh_uniprot_mappings.py mesh C000608790 COA6 protein, human skos:exactMatch uniprot Q5JTJ3 COA6 lexical 0.999 https://github.com/biomappings/biomappings/blob/a840cf/scripts/generate_mesh_uniprot_mappings.py -mesh C000608854 Bilateral Optic Nerve Meningioma skos:exactMatch ncit C5304 Bilateral Optic Nerve Meningioma lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh C000608948 GSE1 protein, human skos:exactMatch uniprot Q14687 GSE1 lexical 0.999 https://github.com/biomappings/biomappings/blob/a840cf/scripts/generate_mesh_uniprot_mappings.py mesh C000609002 EIF3D protein, human skos:exactMatch uniprot O15371 EIF3D lexical 0.999 https://github.com/biomappings/biomappings/blob/a840cf/scripts/generate_mesh_uniprot_mappings.py mesh C000609019 GJE1 protein, human skos:exactMatch uniprot A6NN92 GJE1 lexical 0.999 https://github.com/biomappings/biomappings/blob/a840cf/scripts/generate_mesh_uniprot_mappings.py @@ -994,7 +13695,6 @@ mesh C000609550 LPAR2 protein, human skos:exactMatch uniprot Q9HBW0 LPAR2 lexica mesh C000609587 AFG1L protein, human skos:exactMatch uniprot Q8WV93 AFG1L lexical 0.999 https://github.com/biomappings/biomappings/blob/a840cf/scripts/generate_mesh_uniprot_mappings.py mesh C000609588 DHRS11 protein, human skos:exactMatch uniprot Q6UWP2 DHRS11 lexical 0.999 https://github.com/biomappings/biomappings/blob/a840cf/scripts/generate_mesh_uniprot_mappings.py mesh C000609606 PSMC6 protein, human skos:exactMatch uniprot P62333 PSMC6 lexical 0.999 https://github.com/biomappings/biomappings/blob/a840cf/scripts/generate_mesh_uniprot_mappings.py -mesh C000609611 AZD2461 skos:exactMatch ncit C95201 PARP Inhibitor AZD2461 lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh C000609633 WDR91 protein, human skos:exactMatch uniprot A4D1P6 WDR91 lexical 0.999 https://github.com/biomappings/biomappings/blob/a840cf/scripts/generate_mesh_uniprot_mappings.py mesh C000609634 WDR81 protein, human skos:exactMatch uniprot Q562E7 WDR81 lexical 0.999 https://github.com/biomappings/biomappings/blob/a840cf/scripts/generate_mesh_uniprot_mappings.py mesh C000609666 uridine triacetate skos:exactMatch ncit C2379 Uridine Triacetate lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -1080,7 +13780,6 @@ mesh C000613297 TNFRSF12A protein, human skos:exactMatch uniprot Q9NP84 TNFRSF12 mesh C000613316 CNIH3 protein, human skos:exactMatch uniprot Q8TBE1 CNIH3 lexical 0.999 https://github.com/biomappings/biomappings/blob/a840cf/scripts/generate_mesh_uniprot_mappings.py mesh C000613350 FAM210B protein, human skos:exactMatch uniprot Q96KR6 FAM210B lexical 0.999 https://github.com/biomappings/biomappings/blob/a840cf/scripts/generate_mesh_uniprot_mappings.py mesh C000613385 SLC9A3 protein, human skos:exactMatch uniprot P48764 SLC9A3 lexical 0.999 https://github.com/biomappings/biomappings/blob/a840cf/scripts/generate_mesh_uniprot_mappings.py -mesh C000613429 FluMist skos:exactMatch ncit C101094 Trivalent Live-Attenuated Influenza Vaccine lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh C000613447 TRAPPC11 protein, human skos:exactMatch uniprot Q7Z392 TRAPPC11 lexical 0.999 https://github.com/biomappings/biomappings/blob/a840cf/scripts/generate_mesh_uniprot_mappings.py mesh C000613482 PIGG protein, human skos:exactMatch uniprot Q5H8A4 PIGG lexical 0.999 https://github.com/biomappings/biomappings/blob/a840cf/scripts/generate_mesh_uniprot_mappings.py mesh C000613485 C12orf43 protein, human skos:exactMatch uniprot Q96C57 C12orf43 lexical 0.999 https://github.com/biomappings/biomappings/blob/a840cf/scripts/generate_mesh_uniprot_mappings.py @@ -1125,7 +13824,6 @@ mesh C000614924 PF-06651600 skos:exactMatch ncit C161783 JAK3 Inhibitor PF-06651 mesh C000614989 Cesium-137 skos:exactMatch ncit C68812 Cesium Cs 137 lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh C000615087 Iridium-192 skos:exactMatch ncit C104270 Iridium Ir 192 lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh C000615129 Lead-207 skos:exactMatch ncit C125228 Lead Pb-207 lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh C000615187 Plutonium-239 skos:exactMatch ncit C29774 Plutonium-239 lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh C000615234 Carbon-14 skos:exactMatch ncit C1638 Carbon C-14 lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh C000615311 Phosphorus-32 skos:exactMatch ncit C1698 Phosphorus P-32 lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh C000615479 Rubidium-82 skos:exactMatch ncit C87414 Rubidium Rb-82 lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -1135,7 +13833,6 @@ mesh C000615597 fosdagrocorat skos:exactMatch ncit C170007 Fosdagrocorat lexica mesh C000615653 TDRD9 protein, human skos:exactMatch uniprot Q8NDG6 TDRD9 lexical 0.999 https://github.com/biomappings/biomappings/blob/a840cf/scripts/generate_mesh_uniprot_mappings.py mesh C000615655 IDUA protein, human skos:exactMatch uniprot P35475 IDUA lexical 0.999 https://github.com/biomappings/biomappings/blob/a840cf/scripts/generate_mesh_uniprot_mappings.py mesh C000615692 EPDR1 protein, human skos:exactMatch uniprot Q9UM22 EPDR1 lexical 0.999 https://github.com/biomappings/biomappings/blob/a840cf/scripts/generate_mesh_uniprot_mappings.py -mesh C000615784 ASP5878 skos:exactMatch ncit C122719 FGFR Inhibitor ASP5878 lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh C000615914 HTRA2 protein, human skos:exactMatch uniprot O43464 HTRA2 lexical 0.999 https://github.com/biomappings/biomappings/blob/a840cf/scripts/generate_mesh_uniprot_mappings.py mesh C000616391 MEIS1 protein, human skos:exactMatch uniprot O00470 MEIS1 lexical 0.999 https://github.com/biomappings/biomappings/blob/a840cf/scripts/generate_mesh_uniprot_mappings.py mesh C000616395 ELOC protein, human skos:exactMatch uniprot Q15369 ELOC lexical 0.999 https://github.com/biomappings/biomappings/blob/a840cf/scripts/generate_mesh_uniprot_mappings.py @@ -1375,7 +14072,6 @@ mesh C000624566 POTEB protein, human skos:exactMatch uniprot A0A0A6YYL3 POTEB le mesh C000624589 IQCJ protein, human skos:exactMatch uniprot Q1A5X6 IQCJ lexical 0.999 https://github.com/biomappings/biomappings/blob/a840cf/scripts/generate_mesh_uniprot_mappings.py mesh C000624596 SLC26A11 protein, human skos:exactMatch uniprot Q86WA9 SLC26A11 lexical 0.999 https://github.com/biomappings/biomappings/blob/a840cf/scripts/generate_mesh_uniprot_mappings.py mesh C000624601 MFSD4A protein, human skos:exactMatch uniprot Q8N468 MFSD4A lexical 0.999 https://github.com/biomappings/biomappings/blob/a840cf/scripts/generate_mesh_uniprot_mappings.py -mesh C000624615 IMX-101 skos:exactMatch ncit C153374 Helicobacter pylori Therapeutic Vaccine IMX101 lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh C000624616 vivitrol skos:exactMatch ncit C62055 Naltrexone lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh C000624619 SLC13A1 protein, human skos:exactMatch uniprot Q9BZW2 SLC13A1 lexical 0.999 https://github.com/biomappings/biomappings/blob/a840cf/scripts/generate_mesh_uniprot_mappings.py mesh C000624632 JNJ-53718678 skos:exactMatch ncit C165437 RSV Fusion Protein Inhibitor JNJ-53718678 lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -1416,7 +14112,6 @@ mesh C000625656 DMUC5754A skos:exactMatch ncit C106119 Sofituzumab Vedotin lexic mesh C000625666 Matrix-M skos:exactMatch ncit C172744 Saponin-based Adjuvant lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh C000625692 HAUS7 protein, human skos:exactMatch uniprot Q99871 HAUS7 lexical 0.999 https://github.com/biomappings/biomappings/blob/a840cf/scripts/generate_mesh_uniprot_mappings.py mesh C000625742 PF-06840003 skos:exactMatch ncit C129375 IDO1 Inhibitor PF-06840003 lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh C000625752 Omiganan skos:exactMatch ncit C166886 Omiganan lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh C000625758 TUBB4B protein, human skos:exactMatch uniprot P68371 TUBB4B lexical 0.999 https://github.com/biomappings/biomappings/blob/a840cf/scripts/generate_mesh_uniprot_mappings.py mesh C000625776 H3B-6527 skos:exactMatch ncit C128862 FGFR4 Inhibitor H3B-6527 lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh C000625778 SMYD5 protein, human skos:exactMatch uniprot Q6GMV2 SMYD5 lexical 0.999 https://github.com/biomappings/biomappings/blob/a840cf/scripts/generate_mesh_uniprot_mappings.py @@ -1440,7 +14135,6 @@ mesh C000626173 ALK protein, human skos:exactMatch uniprot Q9UM73 ALK lexical 0. mesh C000626184 RAD1901 skos:exactMatch ncit C120211 Elacestrant lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh C000626237 TTI-621 skos:exactMatch ncit C125718 SIRPa-Fc Fusion Protein TTI-621 lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh C000626255 PSORS1C2 protein, human skos:exactMatch uniprot Q9UIG4 PSORS1C2 lexical 0.999 https://github.com/biomappings/biomappings/blob/a840cf/scripts/generate_mesh_uniprot_mappings.py -mesh C000626257 Icrucumab skos:exactMatch ncit C79808 Icrucumab lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh C000626281 ZDHHC22 protein, human skos:exactMatch uniprot Q8N966 ZDHHC22 lexical 0.999 https://github.com/biomappings/biomappings/blob/a840cf/scripts/generate_mesh_uniprot_mappings.py mesh C000626290 HYAL1 protein, human skos:exactMatch uniprot Q12794 HYAL1 lexical 0.999 https://github.com/biomappings/biomappings/blob/a840cf/scripts/generate_mesh_uniprot_mappings.py mesh C000626319 umbralisib skos:exactMatch ncit C104413 Umbralisib lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -1677,13 +14371,11 @@ mesh C000629446 ABHD3 protein, human skos:exactMatch uniprot Q8WU67 ABHD3 lexica mesh C000629475 CXorf56 protein, human skos:exactMatch uniprot Q9H5V9 CXorf56 lexical 0.999 https://github.com/biomappings/biomappings/blob/a840cf/scripts/generate_mesh_uniprot_mappings.py mesh C000629493 TGIF2LX protein, human skos:exactMatch uniprot Q8IUE1 TGIF2LX lexical 0.999 https://github.com/biomappings/biomappings/blob/a840cf/scripts/generate_mesh_uniprot_mappings.py mesh C000629496 FAM20B protein, human skos:exactMatch uniprot O75063 FAM20B lexical 0.999 https://github.com/biomappings/biomappings/blob/a840cf/scripts/generate_mesh_uniprot_mappings.py -mesh C000629536 Inotersen skos:exactMatch ncit C121667 Inotersen lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh C000629552 ATP9A protein, human skos:exactMatch uniprot O75110 ATP9A lexical 0.999 https://github.com/biomappings/biomappings/blob/a840cf/scripts/generate_mesh_uniprot_mappings.py mesh C000629615 VWA8 protein, human skos:exactMatch uniprot A3KMH1 VWA8 lexical 0.999 https://github.com/biomappings/biomappings/blob/a840cf/scripts/generate_mesh_uniprot_mappings.py mesh C000629619 FAM120B protein, human skos:exactMatch uniprot Q96EK7 FAM120B lexical 0.999 https://github.com/biomappings/biomappings/blob/a840cf/scripts/generate_mesh_uniprot_mappings.py mesh C000629626 OGT protein, human skos:exactMatch uniprot O15294 OGT lexical 0.999 https://github.com/biomappings/biomappings/blob/a840cf/scripts/generate_mesh_uniprot_mappings.py mesh C000629628 PWWP2B protein, human skos:exactMatch uniprot Q6NUJ5 PWWP2B lexical 0.999 https://github.com/biomappings/biomappings/blob/a840cf/scripts/generate_mesh_uniprot_mappings.py -mesh C000629634 Rezafungin skos:exactMatch ncit C152205 Rezafungin lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh C000629642 AGAP3 protein, human skos:exactMatch uniprot Q96P47 AGAP3 lexical 0.999 https://github.com/biomappings/biomappings/blob/a840cf/scripts/generate_mesh_uniprot_mappings.py mesh C000629649 MAPK3 protein, human skos:exactMatch uniprot P27361 MAPK3 lexical 0.999 https://github.com/biomappings/biomappings/blob/a840cf/scripts/generate_mesh_uniprot_mappings.py mesh C000629650 VIM protein, human skos:exactMatch uniprot P08670 VIM lexical 0.999 https://github.com/biomappings/biomappings/blob/a840cf/scripts/generate_mesh_uniprot_mappings.py @@ -1718,14 +14410,11 @@ mesh C000629781 CXCR2 protein, human skos:exactMatch uniprot P25025 CXCR2 lexica mesh C000629782 talimogene laherparepvec skos:exactMatch ncit C61314 Talimogene Laherparepvec lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh C000629804 ISCA2 protein, human skos:exactMatch uniprot Q86U28 ISCA2 lexical 0.999 https://github.com/biomappings/biomappings/blob/a840cf/scripts/generate_mesh_uniprot_mappings.py mesh C000629805 KCP protein, human skos:exactMatch uniprot Q6ZWJ8 KCP lexical 0.999 https://github.com/biomappings/biomappings/blob/a840cf/scripts/generate_mesh_uniprot_mappings.py -mesh C000629807 Dorzagliatin skos:exactMatch ncit C169919 Dorzagliatin lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh C000629809 PPP1R35 protein, human skos:exactMatch uniprot Q8TAP8 PPP1R35 lexical 0.999 https://github.com/biomappings/biomappings/blob/a840cf/scripts/generate_mesh_uniprot_mappings.py mesh C000629812 CPX-351 skos:exactMatch ncit C67504 Liposome-encapsulated Daunorubicin-Cytarabine lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh C000629824 MAPK1IP1L protein, human skos:exactMatch uniprot Q8NDC0 MAPK1IP1L lexical 0.999 https://github.com/biomappings/biomappings/blob/a840cf/scripts/generate_mesh_uniprot_mappings.py mesh C000629828 UBL3 protein, human skos:exactMatch uniprot O95164 UBL3 lexical 0.999 https://github.com/biomappings/biomappings/blob/a840cf/scripts/generate_mesh_uniprot_mappings.py mesh C000629832 KX2-361 skos:exactMatch ncit C120101 Src/tubulin Inhibitor KX02 lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh C000629870 Esketamine skos:exactMatch ncit C81400 Esketamine lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh C000629884 Risdiplam skos:exactMatch ncit C167001 Risdiplam lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh C000629885 TMEM161B protein, human skos:exactMatch uniprot Q8NDZ6 TMEM161B lexical 0.999 https://github.com/biomappings/biomappings/blob/a840cf/scripts/generate_mesh_uniprot_mappings.py mesh C000629889 ASNS protein, human skos:exactMatch uniprot P08243 ASNS lexical 0.999 https://github.com/biomappings/biomappings/blob/a840cf/scripts/generate_mesh_uniprot_mappings.py mesh C000629910 TOP1MT protein, human skos:exactMatch uniprot Q969P6 TOP1MT lexical 0.999 https://github.com/biomappings/biomappings/blob/a840cf/scripts/generate_mesh_uniprot_mappings.py @@ -1761,7 +14450,6 @@ mesh C000630138 IL13RA2 protein, human skos:exactMatch uniprot Q14627 IL13RA2 le mesh C000630143 TANC1 protein, human skos:exactMatch uniprot Q9C0D5 TANC1 lexical 0.999 https://github.com/biomappings/biomappings/blob/a840cf/scripts/generate_mesh_uniprot_mappings.py mesh C000630144 SMIM10 protein, human skos:exactMatch uniprot Q96HG1 SMIM10 lexical 0.999 https://github.com/biomappings/biomappings/blob/a840cf/scripts/generate_mesh_uniprot_mappings.py mesh C000630145 ZFAND1 protein, human skos:exactMatch uniprot Q8TCF1 ZFAND1 lexical 0.999 https://github.com/biomappings/biomappings/blob/a840cf/scripts/generate_mesh_uniprot_mappings.py -mesh C000630155 Rogaratinib skos:exactMatch ncit C112205 Rogaratinib lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh C000630195 AP5Z1 protein, human skos:exactMatch uniprot O43299 AP5Z1 lexical 0.999 https://github.com/biomappings/biomappings/blob/a840cf/scripts/generate_mesh_uniprot_mappings.py mesh C000630200 MGLL protein, human skos:exactMatch uniprot Q99685 MGLL lexical 0.999 https://github.com/biomappings/biomappings/blob/a840cf/scripts/generate_mesh_uniprot_mappings.py mesh C000630204 GNA13 protein, human skos:exactMatch uniprot Q14344 GNA13 lexical 0.999 https://github.com/biomappings/biomappings/blob/a840cf/scripts/generate_mesh_uniprot_mappings.py @@ -1871,7 +14559,6 @@ mesh C000631471 ATG2A protein, human skos:exactMatch uniprot Q2TAZ0 ATG2A lexica mesh C000631472 GCH1 protein, human skos:exactMatch uniprot P30793 GCH1 lexical 0.999 https://github.com/biomappings/biomappings/blob/a840cf/scripts/generate_mesh_uniprot_mappings.py mesh C000631474 FUZ protein, human skos:exactMatch uniprot Q9BT04 FUZ lexical 0.999 https://github.com/biomappings/biomappings/blob/a840cf/scripts/generate_mesh_uniprot_mappings.py mesh C000631477 MANBA protein, human skos:exactMatch uniprot O00462 MANBA lexical 0.999 https://github.com/biomappings/biomappings/blob/a840cf/scripts/generate_mesh_uniprot_mappings.py -mesh C000631489 CKD-581 skos:exactMatch ncit C148157 HDAC Inhibitor CKD-581 lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh C000631495 PPTC7 protein, human skos:exactMatch uniprot Q8NI37 PPTC7 lexical 0.999 https://github.com/biomappings/biomappings/blob/a840cf/scripts/generate_mesh_uniprot_mappings.py mesh C000631512 CSF2 protein, human skos:exactMatch uniprot P04141 CSF2 lexical 0.999 https://github.com/biomappings/biomappings/blob/a840cf/scripts/generate_mesh_uniprot_mappings.py mesh C000631518 CSH2 protein, human skos:exactMatch uniprot P0DML3 CSH2 lexical 0.999 https://github.com/biomappings/biomappings/blob/a840cf/scripts/generate_mesh_uniprot_mappings.py @@ -1994,19 +14681,8 @@ mesh C000634464 PHYHIPL protein, human skos:exactMatch uniprot Q96FC7 PHYHIPL le mesh C000634465 CD80 protein, human skos:exactMatch uniprot P33681 CD80 lexical 0.999 https://github.com/biomappings/biomappings/blob/a840cf/scripts/generate_mesh_uniprot_mappings.py mesh C000634485 GPR137 protein, human skos:exactMatch uniprot Q96N19 GPR137 lexical 0.999 https://github.com/biomappings/biomappings/blob/a840cf/scripts/generate_mesh_uniprot_mappings.py mesh C000635014 Shimwellia blattae skos:exactMatch ncit C86379 Escherichia blattae lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh C000635094 Shewanella algae skos:exactMatch ncit C123551 Shewanella algae lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh C000635101 Serratia rubidaea skos:exactMatch ncit C86741 Serratia rubidaea lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh C000635105 Serratia plymuthica skos:exactMatch ncit C86740 Serratia plymuthica lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh C000635107 Serratia odorifera skos:exactMatch ncit C86739 Serratia odorifera lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh C000635113 Serratia fonticola skos:exactMatch ncit C86737 Serratia fonticola lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh C000635114 Serratia ficaria skos:exactMatch ncit C86736 Serratia ficaria lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh C000635127 Pseudoramibacter alactolyticus skos:exactMatch ncit C86384 Eubacterium alactolyticum lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh C000635129 Pseudopropionibacterium propionicum skos:exactMatch ncit C86683 Propionibacterium propionicum lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh C000635391 Selenomonas sputigena skos:exactMatch ncit C86734 Selenomonas sputigena lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh C000635394 Selenomonas noxia skos:exactMatch ncit C86733 Selenomonas noxia lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh C000635563 Pseudomonas otitidis skos:exactMatch ncit C128547 Pseudomonas otitidis lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh C000635564 Pseudomonas oryzihabitans skos:exactMatch ncit C76319 Pseudomonas oryzihabitans lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh C000635571 Pseudomonas nitroreducens skos:exactMatch ncit C124365 Pseudomonas nitroreducens lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh C000635759 Schaalia turicensis skos:exactMatch ncit C86114 Actinomyces turicensis lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh C000635761 Schaalia radingae skos:exactMatch ncit C86113 Actinomyces radingae lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh C000635795 Salmonella enterica subsp. salamae skos:exactMatch ncit C91847 Salmonella enterica subsp salamae lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -2014,33 +14690,15 @@ mesh C000635796 Salmonella enterica subsp. indica skos:exactMatch ncit C91846 Sa mesh C000635797 Salmonella enterica subsp. houtenae skos:exactMatch ncit C91845 Salmonella enterica subsp houtenae lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh C000635798 Salmonella enterica subsp. enterica skos:exactMatch ncit C86913 Salmonella enterica subsp enterica lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh C000635799 Salmonella enterica subsp. diarizonae skos:exactMatch ncit C91844 Salmonella enterica subsp diarizonae lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh C000635836 Pseudomonas mosselii skos:exactMatch ncit C86703 Pseudomonas mosselii lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh C000635854 Pseudomonas luteola skos:exactMatch ncit C86701 Pseudomonas luteola lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh C000635978 Tetragenococcus solitarius skos:exactMatch ncit C86821 Tetragenococcus solitarius lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh C000636008 Terrisporobacter glycolicus skos:exactMatch ncit C86280 Clostridium glycolicum lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh C000636204 Pseudoflavonifractor capillosus skos:exactMatch ncit C86169 Bacteroides capillosus lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh C000637355 Pseudoclavibacter bifida skos:exactMatch ncit C86868 Zimmermannella bifida lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh C000637356 Pseudoclavibacter alba skos:exactMatch ncit C86867 Zimmermannella alba lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh C000637369 Pseudobacteroides cellulosolvens skos:exactMatch ncit C86170 Bacteroides cellulosolvens lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh C000637523 Streptomyces albus skos:exactMatch ncit C86812 Streptomyces albus lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh C000637590 Streptococcus vestibularis skos:exactMatch ncit C86810 Streptococcus vestibularis lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh C000637593 Streptococcus urinalis skos:exactMatch ncit C128549 Streptococcus urinalis lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh C000637594 Streptococcus uberis skos:exactMatch ncit C86809 Streptococcus uberis lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh C000637695 Pseudomonas chlororaphis subsp. aureofaciens skos:exactMatch ncit C86698 Pseudomonas chlororaphis subspecies aureofaciens lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh C000637768 Pseudoglutamicibacter cumminsii skos:exactMatch ncit C114248 Arthrobacter cumminsii lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh C000637777 Tatumella ptyseos skos:exactMatch ncit C86819 Tatumella ptyseos lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh C000637780 Tatlockia micdadei skos:exactMatch ncit C86817 Tatlockia micdadei lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh C000637881 Streptococcus sanguinis skos:exactMatch ncit C86806 Streptococcus sanguinis lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh C000637892 Streptococcus porcinus skos:exactMatch ncit C86802 Streptococcus porcinus lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh C000637895 Streptococcus pluranimalium skos:exactMatch ncit C124412 Streptococcus pluranimalium lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh C000637906 Streptococcus parasanguinis skos:exactMatch ncit C86800 Streptococcus parasanguinis lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh C000637922 Streptococcus massiliensis skos:exactMatch ncit C124410 Streptococcus massiliensis lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh C000637927 Streptococcus lutetiensis skos:exactMatch ncit C124409 Streptococcus lutetiensis lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh C000637932 Streptococcus infantarius skos:exactMatch ncit C86793 Streptococcus infantarius lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh C000637951 Streptococcus dysgalactiae subsp. equisimilis skos:exactMatch ncit C86906 Streptococcus dysgalactiae subsp equisimilis lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh C000637952 Streptococcus dysgalactiae subsp. dysgalactiae skos:exactMatch ncit C91848 Streptococcus dysgalactiae subsp dysgalactiae lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh C000637964 Streptococcus cristatus skos:exactMatch ncit C86788 Streptococcus cristatus lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh C000637995 Ruminococcus gnavus skos:exactMatch ncit C124373 Ruminococcus gnavus lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh C000638116 Yokenella regensburgei skos:exactMatch ncit C86865 Yokenella regensburgei lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh C000638121 Yersinia rohdei skos:exactMatch ncit C86862 Yersinia rohdei lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh C000638126 Yersinia mollaretii skos:exactMatch ncit C86859 Yersinia mollaretii lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -2390,7 +15048,6 @@ mesh C000649971 Enterococcus avium skos:exactMatch ncit C86364 Enterococcus aviu mesh C000649994 Enterobacter hormaechei skos:exactMatch ncit C86362 Enterobacter hormaechei lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh C000650027 Citrobacter youngae skos:exactMatch ncit C86268 Citrobacter youngae lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh C000650028 Citrobacter werkmanii skos:exactMatch ncit C139100 Citrobacter werkmanii lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh C000650035 Citrobacter farmeri skos:exactMatch ncit C86264 Citrobacter farmeri lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh C000650037 Citrobacter braakii skos:exactMatch ncit C86263 Citrobacter braakii lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh C000650039 Citrobacter amalonaticus skos:exactMatch ncit C86262 Citrobacter amalonaticus lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh C000650297 Enterobacter asburiae skos:exactMatch ncit C86358 Enterobacter asburiae lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -2719,7 +15376,6 @@ mesh C001660 GP 41299 skos:exactMatch ncit C73304 Damotepine lexical 0.95 https: mesh C001663 macroamylase skos:exactMatch ncit C111243 Macroamylase Measurement lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh C001664 Macrocyclon skos:exactMatch ncit C80949 Tyloxapol lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh C001757 N-(2-methylbenzyl)linoleamide skos:exactMatch ncit C87732 Melinamide lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh C001803 tempol skos:exactMatch efo 0002678 tempol lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh C002037 dimethylmyleran skos:exactMatch ncit C1073 Dimethylmyleran lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh C002062 alpha-2'-deoxythioguanosine skos:exactMatch ncit C28795 Alpha-Thioguanine Deoxyriboside lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh C002113 acid citrate dextrose skos:exactMatch ncit C63375 Acid-Citrate-Dextrose lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -2887,9 +15543,7 @@ mesh C009189 ritalinic acid skos:exactMatch ncit C170582 Ritalinic Acid Measurem mesh C009200 saluzid skos:exactMatch ncit C90770 Opiniazide lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh C009217 scyllitol skos:exactMatch ncit C122987 Scyllitol lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh C009271 sinomenine skos:exactMatch ncit C64766 Sinomenine lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh C009285 sodium polymetaphosphate skos:exactMatch ncit C84166 Sodium Polymetaphosphate lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh C009361 sulisobenzone skos:exactMatch ncit C74401 Sulisobenzone lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh C009438 tetrandrine skos:exactMatch ncit C28952 Tetrandrine lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh C009465 thioglycerol skos:exactMatch ncit C77509 Monothioglycerol lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh C009488 thiphenamil skos:exactMatch ncit C87645 Thiphenamil lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh C009501 2-tolidine skos:exactMatch ncit C44428 o-Tolidine lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -2937,7 +15591,6 @@ mesh C011700 carbogen skos:exactMatch ncit C1038 Carbogen lexical 0.95 https://g mesh C011711 lysolecithin acylhydrolase skos:exactMatch ncit C100091 Eosinophil Lysophospholipase lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh C011735 croneton skos:exactMatch ncit C163654 Ethiofencarb lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh C011749 4,4'-thiodianiline skos:exactMatch ncit C44322 4,4-Thiodianiline lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh C012036 sodium sulfate skos:exactMatch ncit C47727 Sodium Sulfate lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh C012049 sulfaperine skos:exactMatch ncit C72854 Sulfaperin lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh C012058 tenocyclidine skos:exactMatch ncit C96892 Tenocyclidine lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh C012064 tioxic acid skos:exactMatch ncit C76924 Tioxacin lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -2995,7 +15648,6 @@ mesh C014754 phyllanthoside skos:exactMatch ncit C29324 Phyllanthoside lexical 0 mesh C014794 retinol palmitate skos:exactMatch ncit C1217 Retinyl Palmitate lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh C014856 thiocholchicine skos:exactMatch ncit C1252 Thiocolchicine lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh C014890 LL-BM 123 skos:exactMatch ncit C90676 Cinodine lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh C014896 6-chloro-2-(1-piperazinyl)pyrazine skos:exactMatch efo 0009029 Central precocious puberty lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh C014901 S 464 skos:exactMatch ncit C82925 Iprocrolol lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh C014953 2-acetyltributylcitrate skos:exactMatch ncit C78760 Acetyltributyl Citrate lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh C015044 bromoform skos:exactMatch ncit C79576 Bromoform lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -3049,11 +15701,9 @@ mesh C017501 methylamphotericin B skos:exactMatch ncit C150112 EDQM-HC Administr mesh C017557 nickel subsulfide skos:exactMatch ncit C29841 Nickel Subsulfide lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh C017558 nickel sulfide skos:exactMatch ncit C45866 Nickel Sulfide lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh C017616 phenolic acid skos:exactMatch ncit C68533 Hydroxybenzoic Acid lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh C017717 sodium thiosulfate skos:exactMatch ncit C1230 Sodium Thiosulfate lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh C017768 trichrome stain skos:exactMatch ncit C23012 Trichrome Staining Method lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh C017814 Ro 06-9098-000 skos:exactMatch ncit C66206 Motrazepam lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh C017928 phenazepam skos:exactMatch ncit C98139 Phenazepam lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh C017959 choline magnesium trisalicylate skos:exactMatch ncit C29244 Choline Magnesium Trisalicylate lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh C017963 vinyl carbamate skos:exactMatch ncit C29864 Vinyl Carbamate lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh C018008 brobactam skos:exactMatch ncit C72621 Brobactam lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh C018149 STATH protein, human skos:exactMatch uniprot P02808 STATH lexical 0.999 https://github.com/biomappings/biomappings/blob/a840cf/scripts/generate_mesh_uniprot_mappings.py @@ -3069,7 +15719,6 @@ mesh C018524 N,N-dimethylarginine skos:exactMatch ncit C158233 Asymmetric Dimeth mesh C018613 nicotinamide-beta-riboside skos:exactMatch ncit C158078 Nicotinamide Riboside lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh C018627 1-(2-chloroethyl)-3-(2,6-dioxo-3-piperidinyl)-1-nitrosourea skos:exactMatch ncit C1186 PCNU lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh C018648 transcription factor S-II skos:exactMatch ncit C97823 TCEA1 wt Allele lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh C018851 borax skos:exactMatch ncit C77496 Sodium Borate lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh C018861 carbetapentane skos:exactMatch ncit C76471 Pentoxyverine lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh C018935 ethenzamide skos:exactMatch ncit C87323 Ethenzamide lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh C018953 glisolamide skos:exactMatch ncit C72800 Glisolamide lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -3181,7 +15830,6 @@ mesh C024966 chaparrinone skos:exactMatch ncit C1046 Chaparrinone lexical 0.95 h mesh C024967 glaucarubolone skos:exactMatch ncit C1114 Glaucarubolone lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh C024970 simalikalactone D skos:exactMatch ncit C1227 Simalikalactone D lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh C024989 coenzyme Q10 skos:exactMatch ncit C916 Coenzyme Q10 lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh C025026 sodium sulfite skos:exactMatch ncit C28205 Sodium Sulfite lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh C025034 doxifluridine skos:exactMatch ncit C978 Doxifluridine lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh C025080 Peruvian balsam skos:exactMatch ncit C66361 Balsam Peru lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh C025085 TSC-5 skos:exactMatch ncit C114352 TGFB1I1 wt Allele lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -3264,7 +15912,6 @@ mesh C029663 cadmium oxide skos:exactMatch ncit C45897 Cadmium Oxide lexical 0.9 mesh C029739 nucleophosmin skos:exactMatch ncit C17570 Nucleophosmin lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh C029742 ribosomal protein L5 skos:exactMatch ncit C107654 60S Ribosomal Protein L5 lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh C029937 secretin receptor skos:exactMatch ncit C29931 Secretin Receptor lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh C029943 potassium hydroxide skos:exactMatch ncit C28204 Potassium Hydroxide lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh C029967 nidogen skos:exactMatch ncit C28645 Nidogen-1 lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh C030090 phosphoramide mustard skos:exactMatch ncit C29322 Phosphoramide Mustard lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh C030098 5-methoxy-methylindoleacetic acid skos:exactMatch ncit C122728 TSPO wt Allele lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -3334,7 +15981,6 @@ mesh C032782 allocolchicine skos:exactMatch ncit C996 Allocolchicine lexical 0.9 mesh C032808 keyhole-limpet hemocyanin skos:exactMatch ncit C1139 Keyhole Limpet Hemocyanin lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh C033006 sudan III skos:exactMatch ncit C71655 D&C Red No. 17 lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh C033018 arginine butyrate skos:exactMatch ncit C2570 Arginine Butyrate lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh C033065 aluminum magnesium silicate skos:exactMatch ncit C83898 Magnesium Aluminum Silicate lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh C033071 plomestane skos:exactMatch ncit C63955 Plomestane lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh C033079 alpha-N-acetyl-D-glucosaminidase skos:exactMatch ncit C147299 Alpha-N-acetylglucosaminidase Measurement lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh C033132 aziridine skos:exactMatch ncit C1009 Ethyleneimine lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -3392,7 +16038,6 @@ mesh C036613 bestrabucil skos:exactMatch ncit C1348 Atrimustine lexical 0.95 htt mesh C036667 iodothiouracil skos:exactMatch ncit C65934 Iodothiouracil lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh C036694 trimyristin skos:exactMatch ncit C84229 Trimyristin lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh C036860 STOM protein, human skos:exactMatch uniprot P27105 STOM lexical 0.999 https://github.com/biomappings/biomappings/blob/a840cf/scripts/generate_mesh_uniprot_mappings.py -mesh C036901 defibrotide skos:exactMatch ncit C1064 Defibrotide Sodium lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh C036989 2-amino-3,4-dimethylimidazo(4,5-f)quinoline skos:exactMatch ncit C29793 2-Amino-3,4-Dimethylimidazole[4,5-f]quinoline lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh C036990 2-amino-3,8-dimethylimidazo(4,5-f)quinoxaline skos:exactMatch ncit C44308 8-Methyl-IQX lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh C037020 amonafide skos:exactMatch ncit C999 Amonafide Dihydrochloride lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -3427,7 +16072,6 @@ mesh C038965 NUTF2 protein, human skos:exactMatch uniprot P61970 NUTF2 lexical 0 mesh C038993 morphazinamide skos:exactMatch ncit C66197 Morinamide lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh C039060 dihydroartemisinin skos:exactMatch ncit C87432 Artenimol lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh C039123 fucosyl GM1 ganglioside skos:exactMatch ncit C126894 Fucosyl Monosialotetrahexosylganglioside lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh C039128 miltefosine skos:exactMatch ncit C1170 Miltefosine lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh C039178 COP-B protocol skos:exactMatch ncit C9563 Cyclophosphamide/Vincristine/Prednisone/Bleomycin Regimen lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh C039495 sarcolectin skos:exactMatch ncit C96446 Keratin, Type II Cytoskeletal 7 lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh C039714 2-phenylbutyric acid skos:exactMatch ncit C87750 2-Phenylbutyric Acid lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -3472,7 +16116,6 @@ mesh C041876 procollagen Type III-N-terminal peptide skos:exactMatch ncit C10420 mesh C042023 cedarwood oil skos:exactMatch ncit C80991 Cedar Leaf Oil lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh C042090 neuromedin N skos:exactMatch ncit C126491 Neuromedin N lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh C042093 phosphatidylglucosaminylglycerol skos:exactMatch ncit C165978 Platelet-Granulocyte Aggregate Measurement lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh C042156 beryllium hydroxide skos:exactMatch ncit C45878 Beryllium Hydroxide lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh C042235 neodymium pyrocatechin disulfonate skos:exactMatch ncit C105020 SMPD1 wt Allele lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh C042382 fludarabine phosphate skos:exactMatch ncit C1102 Fludarabine Phosphate lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh C042388 HLA-Bw4 antigen skos:exactMatch ncit C71269 HLA-Bw4 Antigen lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -3643,7 +16286,6 @@ mesh C051104 HLA-DR52 antigen skos:exactMatch ncit C71272 HLA-DR52 Antigen lexic mesh C051256 H-Y antibody skos:exactMatch ncit C114302 H-Y Antibody lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh C051263 N'-(2-chloroethyl)-N-(2-(methylsulfonyl)ethyl)-N'-nitrosourea skos:exactMatch ncit C1167 Cystemustine lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh C051321 SERPINE1 protein, human skos:exactMatch uniprot P05121 SERPINE1 lexical 0.999 https://github.com/biomappings/biomappings/blob/a840cf/scripts/generate_mesh_uniprot_mappings.py -mesh C051397 pyrazine-2-diazohydroxide skos:exactMatch ncit C1207 Pyrazine Diazohydroxide lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh C051458 vapreotide skos:exactMatch ncit C1429 Vapreotide lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh C051590 CD59 protein, human skos:exactMatch uniprot P13987 CD59 lexical 0.999 https://github.com/biomappings/biomappings/blob/a840cf/scripts/generate_mesh_uniprot_mappings.py mesh C051615 transgelin skos:exactMatch ncit C114525 Transgelin lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -4328,7 +16970,6 @@ mesh C082377 RAB8A protein, human skos:exactMatch uniprot P61006 RAB8A lexical 0 mesh C082453 canventol skos:exactMatch ncit C63650 Canventol lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh C082472 KLK7 protein, human skos:exactMatch uniprot P49862 KLK7 lexical 0.999 https://github.com/biomappings/biomappings/blob/a840cf/scripts/generate_mesh_uniprot_mappings.py mesh C082495 TFF3 protein, human skos:exactMatch uniprot Q07654 TFF3 lexical 0.999 https://github.com/biomappings/biomappings/blob/a840cf/scripts/generate_mesh_uniprot_mappings.py -mesh C082585 iberin skos:exactMatch efo 0002671 iberin lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh C082593 GLI2 protein, human skos:exactMatch uniprot P10070 GLI2 lexical 0.999 https://github.com/biomappings/biomappings/blob/a840cf/scripts/generate_mesh_uniprot_mappings.py mesh C082598 aldesleukin skos:exactMatch ncit C1498 Aldesleukin lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh C082599 protein-tyrosine kinase p55(blk) skos:exactMatch ncit C17697 Tyrosine-Protein Kinase Blk lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -4622,7 +17263,6 @@ mesh C091247 BCAP31 protein, human skos:exactMatch uniprot P51572 BCAP31 lexical mesh C091279 neogenin skos:exactMatch ncit C33999 Neogenin lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh C091367 alpha E integrins skos:exactMatch ncit C107130 Integrin Alpha-E lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh C091368 integrin beta7 skos:exactMatch ncit C104253 Integrin Beta-7 lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh C091418 magnesium diglycinate skos:exactMatch ncit C76082 Magnesium Glycinate lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh C091435 DDB1 protein, human skos:exactMatch uniprot Q16531 DDB1 lexical 0.999 https://github.com/biomappings/biomappings/blob/a840cf/scripts/generate_mesh_uniprot_mappings.py mesh C091468 OVGP1 protein, human skos:exactMatch uniprot Q12889 OVGP1 lexical 0.999 https://github.com/biomappings/biomappings/blob/a840cf/scripts/generate_mesh_uniprot_mappings.py mesh C091489 KIF2C protein, human skos:exactMatch uniprot Q99661 KIF2C lexical 0.999 https://github.com/biomappings/biomappings/blob/a840cf/scripts/generate_mesh_uniprot_mappings.py @@ -4754,7 +17394,6 @@ mesh C094401 KCNJ6 protein, human skos:exactMatch uniprot P48051 KCNJ6 lexical 0 mesh C094470 ZNF7 protein, human skos:exactMatch uniprot P17097 ZNF7 lexical 0.999 https://github.com/biomappings/biomappings/blob/a840cf/scripts/generate_mesh_uniprot_mappings.py mesh C094493 ran-binding protein 2 skos:exactMatch ncit C114452 RANBP2 Gene lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh C094513 CATR1 protein, human skos:exactMatch uniprot Q13166 CATR1 lexical 0.999 https://github.com/biomappings/biomappings/blob/a840cf/scripts/generate_mesh_uniprot_mappings.py -mesh C094534 polyvalent melanoma cell vaccine skos:exactMatch ncit C1633 Polyvalent Melanoma Vaccine lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh C094538 GLIPR1 protein, human skos:exactMatch uniprot P48060 GLIPR1 lexical 0.999 https://github.com/biomappings/biomappings/blob/a840cf/scripts/generate_mesh_uniprot_mappings.py mesh C094572 BST2 protein, human skos:exactMatch uniprot Q10589 BST2 lexical 0.999 https://github.com/biomappings/biomappings/blob/a840cf/scripts/generate_mesh_uniprot_mappings.py mesh C094573 somatostatin receptor 5 skos:exactMatch ncit C17927 Somatostatin Receptor Type 5 lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -10385,7 +23024,6 @@ mesh C496871 CUL5 protein, human skos:exactMatch uniprot Q93034 CUL5 lexical 0.9 mesh C496877 MED28 protein, human skos:exactMatch uniprot Q9H204 MED28 lexical 0.999 https://github.com/biomappings/biomappings/blob/a840cf/scripts/generate_mesh_uniprot_mappings.py mesh C496884 KCNH1 protein, human skos:exactMatch uniprot O95259 KCNH1 lexical 0.999 https://github.com/biomappings/biomappings/blob/a840cf/scripts/generate_mesh_uniprot_mappings.py mesh C496889 S100PBP protein, human skos:exactMatch uniprot Q96BU1 S100PBP lexical 0.999 https://github.com/biomappings/biomappings/blob/a840cf/scripts/generate_mesh_uniprot_mappings.py -mesh C496892 Magnesium Salicylate skos:exactMatch ncit C66050 Magnesium Salicylate lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh C496894 KCNN1 protein, human skos:exactMatch uniprot Q92952 KCNN1 lexical 0.999 https://github.com/biomappings/biomappings/blob/a840cf/scripts/generate_mesh_uniprot_mappings.py mesh C496897 KCNN2 protein, human skos:exactMatch uniprot Q9H2S1 KCNN2 lexical 0.999 https://github.com/biomappings/biomappings/blob/a840cf/scripts/generate_mesh_uniprot_mappings.py mesh C496909 KCNQ1 protein, human skos:exactMatch uniprot P51787 KCNQ1 lexical 0.999 https://github.com/biomappings/biomappings/blob/a840cf/scripts/generate_mesh_uniprot_mappings.py @@ -12961,7 +25599,6 @@ mesh C535841 Hashimoto's encephalitis skos:exactMatch ncit C122414 Autoimmune En mesh C535887 Leukocyte adhesion deficiency type 1 skos:exactMatch ncit C4689 Leukocyte Adhesion Deficiency Type 1 lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh C535892 Lichen planus follicularis skos:exactMatch efo 0009856 lichen planopilaris lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh C535898 Limb-girdle muscular dystrophy, type 1B skos:exactMatch ncit C61149 LMNA wt Allele lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh C535932 Intrahepatic Cholestasis of Pregnancy skos:exactMatch efo 0009048 Intrahepatic cholestasis of pregnancy lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh C535952 Eosinophilic enteropathy skos:exactMatch hp HP:0032064 Gastrointestinal eosinophilia lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh C535963 Cole Carpenter syndrome skos:exactMatch ncit C130985 Cole-Carpenter Syndrome lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh C535968 Hereditary macular coloboma skos:exactMatch hp HP:0001116 Macular coloboma lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -13014,7 +25651,6 @@ mesh C536376 Annular pancreas skos:exactMatch hp HP:0001734 Annular pancreas lex mesh C536377 Anonychia congenita skos:exactMatch hp HP:0001798 Anonychia lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh C536380 Evans Syndrome skos:exactMatch ncit C61284 Evans Syndrome lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh C536394 Neonatal hemochromatosis skos:exactMatch ncit C129980 Neonatal Hemochromatosis lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh C536397 Neonatal Systemic lupus erythematosus skos:exactMatch efo 0004537 neonatal systemic lupus erythematosus lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh C536399 Nephroblastomatosis, fetal ascites, macrosomia and Wilms tumor skos:exactMatch ncit C103144 Perlman Syndrome lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh C536411 Neuraminidase deficiency with beta-galactosidase deficiency skos:exactMatch ncit C129928 Galactosialidosis lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh C536423 Progeroid syndrome, neonatal skos:exactMatch ncit C121565 Neonatal Progeroid Syndrome lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -13074,7 +25710,6 @@ mesh C537079 Bare lymphocyte syndrome 2 skos:exactMatch ncit C171268 Bare Lympho mesh C537080 Baritosis skos:exactMatch ncit C34410 Baritosis lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh C537108 Chromosome 21 monosomy skos:exactMatch ncit C36469 Monosomy 21 lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh C537119 Leri-Weil syndrome skos:exactMatch ncit C126560 Leri-Weill Dyschondrosteosis lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh C537143 Ossification of the posterior longitudinal ligament of the spine skos:exactMatch efo 0005895 ossification of the posterior longitudinal ligament of the spine lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh C537150 Hypoglycemia, leucine-induced skos:exactMatch efo 0006856 leucine-induced hypoglycemia lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh C537158 Hypothalamic hamartomas skos:exactMatch hp HP:0002444 Hypothalamic hamartoma lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh C537168 Papillorenal syndrome skos:exactMatch ncit C123230 Renal Coloboma Syndrome lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -13093,7 +25728,6 @@ mesh C537346 Mesangial sclerosis, diffuse skos:exactMatch hp HP:0001967 Diffuse mesh C537358 Methylmalonic acidemia skos:exactMatch hp HP:0002912 Methylmalonic acidemia lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh C537359 Methylmalonic acidemia with homocystinuria skos:exactMatch ncit C142174 Methylmalonic Aciduria and Homocystinuria, cblC Type lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh C537360 Methylmalonic aciduria cblA type skos:exactMatch ncit C142171 Methylmalonic Aciduria, cblA Type lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh C537361 Methylmalonic aciduria cblB type skos:exactMatch efo 0009074 methylmalonic aciduria cblb type lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh C537395 Neuronal intranuclear inclusion disease skos:exactMatch ncit C122655 Neuronal Intranuclear Inclusion Disease lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh C537412 Burnett Schwartz Berberian syndrome skos:exactMatch hp HP:0100837 Atrophodermia vermiculata lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh C537419 Bohring syndrome skos:exactMatch ncit C131533 Bohring-Opitz Syndrome lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -13161,7 +25795,6 @@ mesh C538069 Fryns Hofkens Fabry syndrome skos:exactMatch hp HP:0003022 Hypoplas mesh C538070 Fryns syndrome skos:exactMatch ncit C98932 Fryns Syndrome lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh C538105 Pallister Killian syndrome skos:exactMatch ncit C75458 Pallister-Killian Syndrome lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh C538115 Heterochromia iridis skos:exactMatch hp HP:0001100 Heterochromia iridis lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh C538116 Heterotaxy, visceral, X-linked skos:exactMatch efo 0009136 heterotaxy, visceral, x-linked lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh C538133 Lactate dehydrogenase deficiency type A skos:exactMatch ncit C106207 LDHA wt Allele lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh C538139 Sucrase-isomaltase deficiency, congenital skos:exactMatch ncit C128190 Congenital Sucrase-Isomaltase Deficiency lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh C538141 Sulfite oxidase deficiency skos:exactMatch hp HP:0003643 Sulfite oxidase deficiency lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -13173,7 +25806,6 @@ mesh C538215 Dentin dysplasia, type 1 skos:exactMatch hp HP:0011072 Rootless tee mesh C538229 Adenoameloblastoma skos:exactMatch ncit C4310 Adenomatoid Odontogenic Tumor lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh C538230 Adenocarcinoid tumor skos:exactMatch ncit C4139 Combined Carcinoid and Adenocarcinoma lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh C538236 Adrenal hyperplasia 2 skos:exactMatch ncit C114368 HSD3B1 wt Allele lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh C538246 Aminoacylase 1 deficiency skos:exactMatch efo 1001981 Aminoacylase 1 deficiency lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh C538253 Amyotrophy, monomelic skos:exactMatch efo 1001989 Monomelic amyotrophy lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh C538259 Congenital atransferrinemia skos:exactMatch hp HP:0012239 Atransferrinemia lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh C538260 Atresia of small intestine skos:exactMatch ncit C98828 Small Intestine Atresia lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -13191,7 +25823,6 @@ mesh C538377 Hyperkeratosis lenticularis perstans skos:exactMatch hp HP:0007570 mesh C538387 Hypertelorism with esophageal abnormality and hypospadias skos:exactMatch ncit C125487 Opitz G/BBB Syndrome lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh C538389 Congenital hypertrichosis lanuginosa skos:exactMatch hp HP:0004540 Congenital, generalized hypertrichosis lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh C538390 Hypertrichosis, anterior cervical skos:exactMatch hp HP:0004535 Anterior cervical hypertrichosis lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh C538459 Ovarian gynandroblastoma skos:exactMatch efo 1000422 Ovarian Gynandroblastoma lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh C538525 Mitochondrial encephalopathy skos:exactMatch hp HP:0006789 Mitochondrial encephalopathy lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh C538556 Imerslund-Grasbeck syndrome skos:exactMatch ncit C131677 Megaloblastic Anemia 1 lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh C538655 Hepatorenal form of glycogen storage disease skos:exactMatch ncit C162398 Glycogen Storage Disease Type Ia lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -13561,7 +26192,6 @@ mesh C547854 D&C Red No. 34 skos:exactMatch ncit C71664 D&C Red No. 34 lexical 0 mesh C547868 GABRR1 protein, human skos:exactMatch uniprot P24046 GABRR1 lexical 0.999 https://github.com/biomappings/biomappings/blob/a840cf/scripts/generate_mesh_uniprot_mappings.py mesh C547870 GABRR3 protein, human skos:exactMatch uniprot A8MPY1 GABRR3 lexical 0.999 https://github.com/biomappings/biomappings/blob/a840cf/scripts/generate_mesh_uniprot_mappings.py mesh C548013 Dipsogenic Diabetes Insipidus skos:exactMatch ncit C129735 Dipsogenic Diabetes Insipidus lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh C548033 Medullary Cystic Kidney Disease 2 skos:exactMatch efo 0008618 Medullary Cystic Kidney Disease Type II lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh C548041 RADIL protein, human skos:exactMatch uniprot Q96JH8 RADIL lexical 0.999 https://github.com/biomappings/biomappings/blob/a840cf/scripts/generate_mesh_uniprot_mappings.py mesh C548042 NLRC5 protein, human skos:exactMatch uniprot Q86WI3 NLRC5 lexical 0.999 https://github.com/biomappings/biomappings/blob/a840cf/scripts/generate_mesh_uniprot_mappings.py mesh C548054 RRP36 protein, human skos:exactMatch uniprot Q96EU6 RRP36 lexical 0.999 https://github.com/biomappings/biomappings/blob/a840cf/scripts/generate_mesh_uniprot_mappings.py @@ -14117,7 +26747,6 @@ mesh C562219 MAPK4 protein, human skos:exactMatch uniprot P31152 MAPK4 lexical 0 mesh C562231 PF 00337210 skos:exactMatch ncit C97950 VEGFR2 Tyrosine Kinase Inhibitor PF-00337210 lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh C562343 YTHDC2 protein, human skos:exactMatch uniprot Q9H6S0 YTHDC2 lexical 0.999 https://github.com/biomappings/biomappings/blob/a840cf/scripts/generate_mesh_uniprot_mappings.py mesh C562346 L1TD1 protein, human skos:exactMatch uniprot Q5T7N2 L1TD1 lexical 0.999 https://github.com/biomappings/biomappings/blob/a840cf/scripts/generate_mesh_uniprot_mappings.py -mesh C562378 Hepatic Fibrosis, Congenital skos:exactMatch ncit C97071 Congenital Hepatic Fibrosis lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh C562379 Dermatosis Papulosa Nigra skos:exactMatch ncit C2984 Dermatosis Papulosa Nigra lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh C562388 Bicuspid Aortic Valve skos:exactMatch ncit C128803 Bicuspid Aortic Valve lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh C562393 Melanoma, Cutaneous Malignant skos:exactMatch ncit C8498 Hereditary Melanoma lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -14129,14 +26758,12 @@ mesh C562406 Bladder Diverticulum skos:exactMatch ncit C160155 Bladder Diverticu mesh C562429 Polydactyly, Postaxial skos:exactMatch hp HP:0100259 Postaxial polydactyly lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh C562434 Cerebrooculofacioskeletal Syndrome 1 skos:exactMatch ncit C173085 Cerebrooculofacioskeletal Syndrome 1 lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh C562463 Pancreatic Carcinoma skos:exactMatch ncit C3850 Pancreatic Carcinoma lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh C562465 Phobia, Specific skos:exactMatch efo 1001918 specific phobia lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh C562485 Pili Torti skos:exactMatch hp HP:0003777 Pili torti lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh C562487 Eosinophilic Fasciitis skos:exactMatch ncit C112116 Eosinophilic Fasciitis lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh C562492 Robinow Syndrome skos:exactMatch ncit C85048 Robinow Syndrome lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh C562503 Otocephaly skos:exactMatch ncit C124568 Otocephaly lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh C562546 Megalodactyly skos:exactMatch hp HP:0004099 Macrodactyly lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh C562557 Polythelia, Familial skos:exactMatch hp HP:0002558 Supernumerary nipple lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh C562562 Colonic Atresia skos:exactMatch hp HP:0010448 Colonic atresia lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh C562563 Microcolon skos:exactMatch hp HP:0004388 Microcolon lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh C562590 Xeroderma Pigmentosum, Complementation Group B skos:exactMatch ncit C3966 Xeroderma Pigmentosum, Complementation Group B lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh C562591 Xeroderma Pigmentosum, Complementation Group D skos:exactMatch ncit C3967 Xeroderma Pigmentosum, Complementation Group D lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -14155,7 +26782,6 @@ mesh C562732 Euthyroid Goiter skos:exactMatch ncit C35271 Nontoxic Goiter lexica mesh C562735 Osseous Heteroplasia, Progressive skos:exactMatch ncit C131193 Progressive Heterotopic Heteroplasia lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh C562770 Thyroid Dyshormonogenesis 4 skos:exactMatch ncit C131435 Deiodinase Deficiency lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh C562772 Mason-Type Diabetes skos:exactMatch ncit C114769 Maturity-Onset Diabetes of the Young lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh C562776 Hyperproinsulinemia skos:exactMatch efo 0009650 hyperproinsulinemia lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh C562785 Idiopathic Hypogonadotropic Hypogonadism skos:exactMatch ncit C51454 GNRHR wt Allele lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh C562799 Folate Malabsorption, Hereditary skos:exactMatch ncit C156424 Hereditary Folate Malabsorption lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh C562812 Carnitine-Acylcarnitine Translocase Deficiency skos:exactMatch ncit C133086 Carnitine-Acylcarnitine Translocase Deficiency lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -14229,7 +26855,6 @@ mesh C564732 Xeroderma Pigmentosum, Complementation Group E skos:exactMatch ncit mesh C564816 Insulin-Like Growth Factor I, Resistance To skos:exactMatch ncit C120107 Insulin Growth Factor I Resistance lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh C564858 Pyruvate Kinase Deficiency of Red Cells skos:exactMatch ncit C99037 Pyruvate Kinase Deficiency lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh C564874 Popliteal Pterygium Syndrome, Lethal Type skos:exactMatch ncit C168990 Bartsocas-Papas Syndrome lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh C564963 Leigh Syndrome due to Mitochondrial Complex IV Deficiency skos:exactMatch efo 0009135 leigh syndrome due to mitochondrial complex iv deficiency lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh C564969 Minicore Myopathy with External Ophthalmoplegia skos:exactMatch ncit C150608 Minicore Myopathy with External Ophthalmoplegia lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh C565029 Facial Hypertrichosis skos:exactMatch hp HP:0002219 Facial hypertrichosis lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh C565051 Epiblepharon of Upper Lid skos:exactMatch hp HP:0040150 Epiblepharon of upper lid lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -14286,12 +26911,10 @@ mesh C567067 Phosphoglycerate Kinase 1 Deficiency skos:exactMatch ncit C126738 P mesh C567068 Atypical Mycobacteriosis, Familial, X-Linked 2 skos:exactMatch ncit C106595 CYBB wt Allele lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh C567070 Atypical Mycobacteriosis, Familial, X-Linked 1 skos:exactMatch ncit C75608 IKBKG wt Allele lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh C567134 Deafness, Autosomal Recessive 1A skos:exactMatch ncit C129022 Deafness, Autosomal Recessive 1A lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh C567186 Mullerian Aplasia and Hyperandrogenism skos:exactMatch ncit C120376 Mullerian Aplasia and Hyperandrogenism lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh C567244 Amyotrophic Lateral Sclerosis 11 skos:exactMatch ncit C168753 Amyotrophic Lateral Sclerosis 11 lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh C567292 Wilms Tumor, Aniridia, Genitourinary Anomalies, Mental Retardation, and Obesity Syndrome skos:exactMatch ncit C122804 Wilms Tumor-Aniridia-Genitourinary Anomalies-Mental Retardation-Obesity Syndrome lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh C567379 MYD88 Deficiency skos:exactMatch ncit C90095 MYD88 wt Allele lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh C567430 Dystonia 16 skos:exactMatch ncit C168729 Dystonia 16 lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh C567516 Temple-Baraitser Syndrome skos:exactMatch efo 0009062 Temple-Baraitser syndrome lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh C567545 Metaphyseal Anadysplasia 1 skos:exactMatch ncit C102922 MMP13 wt Allele lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh C567557 Cardiac Conduction Defect, Nonspecific skos:exactMatch efo 1001497 cardiac conduction defect lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh C567572 Fibrosis Of Extraocular Muscles, Congenital, 3A, with or without Extraocular Involvement skos:exactMatch ncit C104243 TUBB3 wt Allele lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -14393,7 +27016,6 @@ mesh C569638 ARHGDIA protein, human skos:exactMatch uniprot P52565 ARHGDIA lexic mesh C569643 ARHGDIG protein, human skos:exactMatch uniprot Q99819 ARHGDIG lexical 0.999 https://github.com/biomappings/biomappings/blob/a840cf/scripts/generate_mesh_uniprot_mappings.py mesh C569652 LY 2275796 skos:exactMatch ncit C95740 eIF4E Antisense Oligonucleotide ISIS 183750 lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh C569658 ARHGDIB protein, human skos:exactMatch uniprot P52566 ARHGDIB lexical 0.999 https://github.com/biomappings/biomappings/blob/a840cf/scripts/generate_mesh_uniprot_mappings.py -mesh C569686 Alexa Fluor 647 skos:exactMatch efo 0004967 Alexa Fluor 647 lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh C569698 WFDC2 protein, human skos:exactMatch uniprot Q14508 WFDC2 lexical 0.999 https://github.com/biomappings/biomappings/blob/a840cf/scripts/generate_mesh_uniprot_mappings.py mesh C569718 PRKG1 protein, human skos:exactMatch uniprot Q13976 PRKG1 lexical 0.999 https://github.com/biomappings/biomappings/blob/a840cf/scripts/generate_mesh_uniprot_mappings.py mesh C569729 PRKG2 protein, human skos:exactMatch uniprot Q13237 PRKG2 lexical 0.999 https://github.com/biomappings/biomappings/blob/a840cf/scripts/generate_mesh_uniprot_mappings.py @@ -15139,10 +27761,6 @@ mesh C588271 TANC2 protein, human skos:exactMatch uniprot Q9HCD6 TANC2 lexical 0 mesh C588285 1-eicosapentaenoylglycerol skos:exactMatch ncit C158515 Eicosapentaenoic Acid Monoacylglyceride lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh C588309 CNR2 protein, human skos:exactMatch uniprot P34972 CNR2 lexical 0.999 https://github.com/biomappings/biomappings/blob/a840cf/scripts/generate_mesh_uniprot_mappings.py mesh C588418 KCNMB2 protein, human skos:exactMatch uniprot Q9Y691 KCNMB2 lexical 0.999 https://github.com/biomappings/biomappings/blob/a840cf/scripts/generate_mesh_uniprot_mappings.py -mesh D000002 Temefos skos:exactMatch chebi CHEBI:38954 temephos lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py -mesh D000007 Abdominal Injuries skos:exactMatch efo 0009502 abdominal injury lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py -mesh D000007 Abdominal Injuries skos:exactMatch ncit C34332 Abdominal Injury lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D000009 Abdominal Muscles skos:exactMatch ncit C32040 Abdominal Muscle lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000011 Abelson murine leukemia virus skos:exactMatch ncit C14416 Abelson Murine Leukemia Virus lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000012 Abetalipoproteinemia skos:exactMatch ncit C84525 Abetalipoproteinemia lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000015 Abnormalities, Multiple skos:exactMatch ncit C124562 Multiple Abnormalities lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -15167,9 +27785,7 @@ mesh D000055 Accessory Nerve skos:exactMatch ncit C32041 Spinal Accessory Nerve mesh D000058 Accidental Falls skos:exactMatch hp HP:0002527 Falls lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000059 Accidents skos:exactMatch ncit C34340 Accident lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000064 Acclimatization skos:exactMatch ncit C68767 Acclimatization lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D000066450 Mouse Embryonic Stem Cells skos:exactMatch efo 0004038 mouse embryonic stem cell lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000066502 Grandparents skos:exactMatch ncit C71385 Grandparent lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D000066530 Neurological Rehabilitation skos:exactMatch ncit C157934 Neurological Rehabilitation lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000066630 Ectopic Gene Expression skos:exactMatch ncit C19566 Ectopic Expression lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000066768 Rehabilitation Research skos:exactMatch ncit C15961 Rehabilitation Study lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000066792 Orthodontists skos:exactMatch ncit C63737 Orthodontist lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -15181,7 +27797,6 @@ mesh D000067010 Literacy skos:exactMatch ncit C49162 Literacy lexical 0.95 https mesh D000067128 Extracellular Vesicles skos:exactMatch ncit C153165 Extracellular Vesicle lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000067208 Shellfish Hypersensitivity skos:exactMatch ncit C172320 Shellfish Allergy lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000067250 Psychiatric Rehabilitation skos:exactMatch ncit C15423 Psychosocial Rehabilitation lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D000067269 Diet, Vegan skos:exactMatch ncit C15630 Vegan Diet lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000067290 Behavior Rating Scale skos:exactMatch ncit C81235 Behavioral Rating Scale lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000067329 Obesity, Metabolically Benign skos:exactMatch efo 0009382 metabolically healthy obesity lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000067493 Dynamic Light Scattering skos:exactMatch ncit C62329 Photon Correlation Spectroscopy lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -15216,71 +27831,46 @@ mesh D000068217 Social Workers skos:exactMatch ncit C28190 Social Worker lexical mesh D000068238 Lubiprostone skos:exactMatch ncit C66040 Lubiprostone lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000068256 Darbepoetin alfa skos:exactMatch hgnc 4392 GNAS lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000068258 Bevacizumab skos:exactMatch ncit C2039 Bevacizumab lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D000068296 Risedronic Acid skos:exactMatch chebi CHEBI:8869 Risedronic acid lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D000068296 Risedronic Acid skos:exactMatch ncit C66517 Risedronic Acid lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D000068298 Fluticasone skos:exactMatch chebi CHEBI:5134 fluticasone lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D000068298 Fluticasone skos:exactMatch ncit C61767 Fluticasone lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D000068299 Salmeterol Xinafoate skos:exactMatch chebi CHEBI:9012 Salmeterol xinafoate lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D000068299 Salmeterol Xinafoate skos:exactMatch ncit C61935 Salmeterol Xinafoate lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000068397 Clinical Study skos:exactMatch ncit C15206 Clinical Study lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000068436 Surgical Clearance skos:exactMatch ncit C148040 Medical Clearance lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000068437 Pemetrexed skos:exactMatch chebi CHEBI:17509 5'-S-methyl-5'-thioadenosine lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D000068437 Pemetrexed skos:exactMatch ncit C61614 Pemetrexed lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D000068438 Brimonidine Tartrate skos:exactMatch chebi CHEBI:51157 brimonidine tartrate lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D000068438 Brimonidine Tartrate skos:exactMatch ncit C47419 Brimonidine Tartrate lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000068536 Firmicutes skos:exactMatch ncit C76197 Firmicutes lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D000068538 Dutasteride skos:exactMatch chebi CHEBI:521033 dutasteride lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D000068538 Dutasteride skos:exactMatch ncit C47503 Dutasteride lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D000068557 Olmesartan Medoxomil skos:exactMatch chebi CHEBI:31932 Olmesartan medoxomil lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D000068557 Olmesartan Medoxomil skos:exactMatch ncit C47640 Olmesartan Medoxomil lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D000068577 Nebivolol skos:exactMatch chebi CHEBI:64022 nebivolol lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D000068577 Nebivolol skos:exactMatch ncit C66221 Nebivolol lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D000068579 Celecoxib skos:exactMatch chebi CHEBI:41423 celecoxib lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py -mesh D000068580 Varenicline skos:exactMatch chebi CHEBI:84500 varenicline lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D000068580 Varenicline skos:exactMatch ncit C73609 Varenicline lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D000068581 Tadalafil skos:exactMatch chebi CHEBI:71940 tadalafil lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D000068581 Tadalafil skos:exactMatch ncit C47743 Tadalafil lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D000068582 Certolizumab Pegol skos:exactMatch chebi CHEBI:63585 certolizumab pegol lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D000068582 Certolizumab Pegol skos:exactMatch ncit C80972 Certolizumab Pegol lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000068656 Mometasone Furoate skos:exactMatch ncit C29268 Mometasone Furoate lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D000068677 Sildenafil Citrate skos:exactMatch chebi CHEBI:58987 sildenafil citrate lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py -mesh D000068696 Rilpivirine skos:exactMatch chebi CHEBI:68606 rilpivirine lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D000068717 Glatiramer Acetate skos:exactMatch ncit C65805 Glatiramer Acetate lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D000068718 Rosuvastatin Calcium skos:exactMatch chebi CHEBI:77249 rosuvastatin calcium lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D000068718 Rosuvastatin Calcium skos:exactMatch ncit C61933 Rosuvastatin Calcium lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000068736 Duloxetine Hydrochloride skos:exactMatch ncit C65496 Duloxetine Hydrochloride lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D000068737 Tolterodine Tartrate skos:exactMatch chebi CHEBI:32245 tolterodine tartrate lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D000068737 Tolterodine Tartrate skos:exactMatch ncit C29504 Tolterodine Tartrate lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D000068756 Valsartan skos:exactMatch chebi CHEBI:9927 valsartan lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D000068756 Valsartan skos:exactMatch ncit C47781 Valsartan lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000068757 Ononis skos:exactMatch ncit C72384 Ononis spinosa lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D000068759 Formoterol Fumarate skos:exactMatch chebi CHEBI:31633 formoterol fumarate lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D000068759 Formoterol Fumarate skos:exactMatch ncit C47540 Formoterol Fumarate lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D000068799 Prasugrel Hydrochloride skos:exactMatch chebi CHEBI:87697 prasugrel hydrochloride lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D000068799 Prasugrel Hydrochloride skos:exactMatch ncit C81571 Prasugrel Hydrochloride lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000068800 Etanercept skos:exactMatch hgnc 11917 TNFRSF1B lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D000068816 Adapalene skos:exactMatch chebi CHEBI:31174 adapalene lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D000068816 Adapalene skos:exactMatch ncit C28989 Adapalene lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000068817 Epoetin Alfa skos:exactMatch ncit C2695 Epoetin Alfa lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000068818 Cetuximab skos:exactMatch ncit C1723 Cetuximab lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D000068836 Rivastigmine skos:exactMatch chebi CHEBI:8874 rivastigmine lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D000068836 Rivastigmine skos:exactMatch ncit C66519 Rivastigmine lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D000068876 Fingolimod Hydrochloride skos:exactMatch chebi CHEBI:63112 fingolimod hydrochloride lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D000068877 Imatinib Mesylate skos:exactMatch chebi CHEBI:31690 imatinib methanesulfonate lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D000068877 Imatinib Mesylate skos:exactMatch ncit C1687 Imatinib Mesylate lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000068878 Trastuzumab skos:exactMatch ncit C1647 Trastuzumab lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000068879 Adalimumab skos:exactMatch ncit C65216 Adalimumab lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D000068882 Paliperidone Palmitate skos:exactMatch chebi CHEBI:83807 paliperidone palmitate lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D000068882 Paliperidone Palmitate skos:exactMatch ncit C83917 Paliperidone Palmitate lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000068896 Canagliflozin skos:exactMatch ncit C91018 Canagliflozin lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000068900 Sitagliptin Phosphate skos:exactMatch ncit C73811 Sitagliptin Phosphate lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000069 Acculturation skos:exactMatch ncit C93211 Acculturation lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000069036 Insulin Glargine skos:exactMatch ncit C47564 Insulin Glargine lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D000069056 Lurasidone Hydrochloride skos:exactMatch chebi CHEBI:70732 lurasidone hydrochloride lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D000069057 Insulin Detemir skos:exactMatch ncit C65920 Insulin Detemir lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000069058 Vardenafil Dihydrochloride skos:exactMatch ncit C76892 Vardenafil Dihydrochloride lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D000069076 Fractures, Multiple skos:exactMatch ncit C26778 Multiple Fractures lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D000069078 Seroconversion skos:exactMatch efo 0007851 seroconversion lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D000069079 Radiation Exposure skos:exactMatch ncit C61398 Radiation Exposure lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000069098 Health Smart Cards skos:exactMatch ncit C19547 Smart Card lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000069196 Gastrointestinal Microbiome skos:exactMatch ncit C93019 Intestinal Flora lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -15289,11 +27879,8 @@ mesh D000069258 Thoracentesis skos:exactMatch ncit C15392 Thoracentesis lexical mesh D000069279 Drug Resistant Epilepsy skos:exactMatch ncit C9487 Intractable Epilepsy lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000069280 Electrocorticography skos:exactMatch ncit C116664 Electrocorticography lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000069281 Autoimmune Hypophysitis skos:exactMatch ncit C132055 Autoimmune Hypophysitis lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D000069283 Rituximab skos:exactMatch chebi CHEBI:64357 rituximab lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D000069283 Rituximab skos:exactMatch ncit C1702 Rituximab lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D000069286 Bortezomib skos:exactMatch chebi CHEBI:52717 bortezomib lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D000069286 Bortezomib skos:exactMatch ncit C1851 Bortezomib lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D000069287 Capecitabine skos:exactMatch chebi CHEBI:31348 capecitabine lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D000069287 Capecitabine skos:exactMatch ncit C1794 Capecitabine lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000069292 Pyroptosis skos:exactMatch ncit C114729 Pyroptosis lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000069293 Plasmablastic Lymphoma skos:exactMatch ncit C7224 Plasmablastic Lymphoma lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -15301,77 +27888,50 @@ mesh D000069337 Fused Kidney skos:exactMatch ncit C98947 Horseshoe Kidney lexica mesh D000069338 Neuropathology skos:exactMatch ncit C18479 Neuropathology lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000069339 Trachelectomy skos:exactMatch ncit C94466 Cervicectomy lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000069341 Transitional Care skos:exactMatch ncit C15595 Transitional Care Planning lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D000069347 Erlotinib Hydrochloride skos:exactMatch chebi CHEBI:53509 erlotinib hydrochloride lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D000069347 Erlotinib Hydrochloride skos:exactMatch ncit C2693 Erlotinib Hydrochloride lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D000069348 Quetiapine Fumarate skos:exactMatch chebi CHEBI:8708 quetiapine fumarate lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D000069348 Quetiapine Fumarate skos:exactMatch ncit C47700 Quetiapine Fumarate lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D000069438 Ezetimibe skos:exactMatch chebi CHEBI:49040 ezetimibe lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D000069438 Ezetimibe skos:exactMatch ncit C47529 Ezetimibe lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000069439 Dasatinib skos:exactMatch ncit C38713 Dasatinib lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000069442 Natalizumab skos:exactMatch ncit C77862 Natalizumab lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000069444 Omalizumab skos:exactMatch ncit C29299 Omalizumab lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D000069445 Atomoxetine Hydrochloride skos:exactMatch chebi CHEBI:331697 atomoxetine hydrochloride lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py -mesh D000069446 Atazanavir Sulfate skos:exactMatch chebi CHEBI:31243 atazanavir sulfate lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py -mesh D000069447 Tiotropium Bromide skos:exactMatch chebi CHEBI:90959 tiotropium bromide lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D000069447 Tiotropium Bromide skos:exactMatch ncit C84608 Tiotropium Bromide lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000069448 Denosumab skos:exactMatch ncit C61313 Denosumab lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D000069449 Cinacalcet skos:exactMatch chebi CHEBI:48390 cinacalcet lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D000069449 Cinacalcet skos:exactMatch ncit C74100 Cinacalcet lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D000069450 Liraglutide skos:exactMatch chebi CHEBI:71193 liraglutide lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D000069450 Liraglutide skos:exactMatch ncit C82239 Liraglutide lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000069455 Palivizumab skos:exactMatch ncit C2625 Palivizumab lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000069456 Silent Mutation skos:exactMatch ncit C20629 Silent Mutation lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D000069458 Ranolazine skos:exactMatch chebi CHEBI:87681 ranolazine lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D000069458 Ranolazine skos:exactMatch ncit C66507 Ranolazine lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000069459 Teas, Herbal skos:exactMatch ncit C87562 Herbal Tea lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000069461 Bendamustine Hydrochloride skos:exactMatch ncit C61565 Bendamustine Hydrochloride lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D000069462 Dimethyl Fumarate skos:exactMatch chebi CHEBI:76004 dimethyl fumarate lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D000069462 Dimethyl Fumarate skos:exactMatch ncit C63670 Dimethyl Fumarate lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000069463 Olive Oil skos:exactMatch ncit C1175 Olive Oil lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D000069464 Solifenacin Succinate skos:exactMatch chebi CHEBI:32151 Solifenacin succinate lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D000069464 Solifenacin Succinate skos:exactMatch ncit C73805 Solifenacin Succinate lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D000069465 Febuxostat skos:exactMatch chebi CHEBI:31596 febuxostat lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D000069465 Febuxostat skos:exactMatch ncit C65629 Febuxostat lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000069467 Fecal Microbiota Transplantation skos:exactMatch ncit C118643 Fecal Microbiota Transplantation lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000069468 Desvenlafaxine Succinate skos:exactMatch ncit C61704 Desvenlafaxine Succinate lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000069469 Medical-Surgical Nursing skos:exactMatch ncit C20874 Medical-Surgical Nursing lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D000069470 Venlafaxine Hydrochloride skos:exactMatch chebi CHEBI:9944 venlafaxine hydrochloride lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D000069470 Venlafaxine Hydrochloride skos:exactMatch ncit C29540 Venlafaxine Hydrochloride lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000069471 Neurosurgeons skos:exactMatch ncit C17722 Neurosurgeon lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D000069472 Colesevelam Hydrochloride skos:exactMatch chebi CHEBI:59599 colesevelam hydrochloride lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D000069472 Colesevelam Hydrochloride skos:exactMatch ncit C28937 Colesevelam Hydrochloride lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D000069474 Sofosbuvir skos:exactMatch chebi CHEBI:85083 sofosbuvir lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py -mesh D000069476 Linagliptin skos:exactMatch chebi CHEBI:68610 linagliptin lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D000069476 Linagliptin skos:exactMatch ncit C83887 Linagliptin lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000069478 Lisdexamfetamine Dimesylate skos:exactMatch ncit C76628 Lisdexamfetamine Dimesylate lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D000069501 Abiraterone Acetate skos:exactMatch chebi CHEBI:68639 abiraterone acetate lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D000069501 Abiraterone Acetate skos:exactMatch ncit C68845 Abiraterone Acetate lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D000069503 Vilazodone Hydrochloride skos:exactMatch chebi CHEBI:70705 vilazodone hydrochloride lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D000069544 Infectious Encephalitis skos:exactMatch ncit C79550 Infectious Encephalitis lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D000069547 Cobicistat skos:exactMatch chebi CHEBI:72291 cobicistat lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D000069547 Cobicistat skos:exactMatch ncit C97360 Cobicistat lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000069549 Ustekinumab skos:exactMatch ncit C84237 Ustekinumab lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D000069552 Rivaroxaban skos:exactMatch chebi CHEBI:68579 rivaroxaban lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D000069552 Rivaroxaban skos:exactMatch ncit C77995 Rivaroxaban lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D000069559 Loteprednol Etabonate skos:exactMatch chebi CHEBI:31784 loteprednol etabonate lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D000069559 Loteprednol Etabonate skos:exactMatch ncit C47589 Loteprednol Etabonate lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000069577 Morcellation skos:exactMatch ncit C165586 Morcellation lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000069579 Ranibizumab skos:exactMatch ncit C67562 Ranibizumab lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D000069580 Bimatoprost skos:exactMatch chebi CHEBI:51230 bimatoprost lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D000069580 Bimatoprost skos:exactMatch ncit C47414 Bimatoprost lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D000069582 Eszopiclone skos:exactMatch chebi CHEBI:53760 eszopiclone lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D000069582 Eszopiclone skos:exactMatch ncit C65545 Eszopiclone lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D000069583 Pregabalin skos:exactMatch chebi CHEBI:64356 pregabalin lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D000069583 Pregabalin skos:exactMatch ncit C64625 Pregabalin lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000069584 Unilateral Breast Neoplasms skos:exactMatch ncit C46073 Unilateral Breast Carcinoma lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000069585 Filgrastim skos:exactMatch ncit C1474 Filgrastim lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000069594 Abatacept skos:exactMatch ncit C28898 Abatacept lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000069603 Sevelamer skos:exactMatch ncit C84172 Sevelamer lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D000069604 Dabigatran skos:exactMatch chebi CHEBI:70752 dabigatran lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D000069604 Dabigatran skos:exactMatch ncit C73224 Dabigatran lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D000069605 Olopatadine Hydrochloride skos:exactMatch chebi CHEBI:31933 Olopatadine hydrochloride lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D000069605 Olopatadine Hydrochloride skos:exactMatch ncit C61867 Olopatadine Hydrochloride lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D000069616 Simeprevir skos:exactMatch chebi CHEBI:134743 simeprevir lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D000069916 Endoscopic Mucosal Resection skos:exactMatch ncit C103242 Endoscopic Mucosal Resection lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000069956 Chocolate skos:exactMatch ncit C68655 Chocolate lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000069976 Bacillus licheniformis skos:exactMatch ncit C86163 Bacillus licheniformis lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -15438,7 +27998,6 @@ mesh D000071060 Breast Density skos:exactMatch ncit C94305 Breast Density lexica mesh D000071063 Endoglin skos:exactMatch hgnc 3349 ENG lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D000071063 Endoglin skos:exactMatch ncit C17406 Endoglin lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000071068 Lipocalin-2 skos:exactMatch hgnc 6526 LCN2 lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py -mesh D000071071 Microaneurysm skos:exactMatch ncit C35842 Microaneurysm lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000071074 Neonatal Sepsis skos:exactMatch ncit C116802 Neonatal Sepsis lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000071075 Small Fiber Neuropathy skos:exactMatch ncit C125389 Small Fiber Neuropathy lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000071077 Surgical Oncology skos:exactMatch ncit C17839 Surgical Oncology lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -15534,7 +28093,6 @@ mesh D000071516 Alpha-Ketoglutarate-Dependent Dioxygenase FTO skos:exactMatch hg mesh D000071516 Alpha-Ketoglutarate-Dependent Dioxygenase FTO skos:exactMatch ncit C99470 Alpha-Ketoglutarate-Dependent Dioxygenase FTO lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000071538 Cortical Bone skos:exactMatch ncit C52714 Cortical Bone lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000071560 beta-Arrestin 2 skos:exactMatch hgnc 710 ARR3 lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py -mesh D000071576 Crush Injuries skos:exactMatch efo 0009504 crush injury lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D000071576 Crush Injuries skos:exactMatch ncit C35375 Crush Injury lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000071616 CDX2 Transcription Factor skos:exactMatch ncit C25899 Homeobox Protein CDX-2 lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000071617 Protein Deglycase DJ-1 skos:exactMatch hgnc 16369 PARK7 lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -15548,7 +28106,6 @@ mesh D000071678 WD40 Repeats skos:exactMatch ncit C14111 WD Repeat lexical 0.95 mesh D000071679 Glycogen Synthase Kinase 3 beta skos:exactMatch hgnc 4617 GSK3B lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000071682 Sterile Alpha Motif skos:exactMatch ncit C13960 SAM Domain lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000071696 Proteogenomics skos:exactMatch ncit C119712 Proteogenomics lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D000071698 Latent Autoimmune Diabetes in Adults skos:exactMatch efo 0009706 latent autoimmune diabetes in adults lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000071699 Bilateral Vestibulopathy skos:exactMatch hp HP:0008568 Vestibular areflexia lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000071716 Regulatory Factor X1 skos:exactMatch hgnc 9982 RFX1 lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000071717 X-Box Binding Protein 1 skos:exactMatch hgnc 12801 XBP1 lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py @@ -15574,7 +28131,6 @@ mesh D000071858 Epithelial Cell Adhesion Molecule skos:exactMatch hgnc 11529 EPC mesh D000071858 Epithelial Cell Adhesion Molecule skos:exactMatch ncit C20209 Epithelial Cell Adhesion Molecule lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000071877 Checkpoint Kinase 1 skos:exactMatch hgnc 1925 CHEK1 lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000071916 AC133 Antigen skos:exactMatch hgnc 9454 PROM1 lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py -mesh D000071939 Stroke Rehabilitation skos:exactMatch ncit C157994 Stroke Rehabilitation lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000071941 Barium Enema skos:exactMatch ncit C1447 Barium Enema Injection lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000071956 Myocardial Contusions skos:exactMatch ncit C50661 Myocardial Contusion lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000071959 Case Managers skos:exactMatch ncit C20853 Case Management Nurse lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -15582,7 +28138,6 @@ mesh D000071960 Breast Carcinoma In Situ skos:exactMatch ncit C3641 Stage 0 Brea mesh D000071976 Gracilis Muscle skos:exactMatch ncit C52935 Gracilis lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000071999 S100 Calcium-Binding Protein A4 skos:exactMatch hgnc 10494 S100A4 lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D000071999 S100 Calcium-Binding Protein A4 skos:exactMatch ncit C102439 Protein S100-A4 lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D000072 Acedapsone skos:exactMatch chebi CHEBI:139474 acedapsone lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D000072 Acedapsone skos:exactMatch ncit C76985 Acedapsone lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000072000 NF-KappaB Inhibitor alpha skos:exactMatch hgnc 7797 NFKBIA lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D000072002 Prion Proteins skos:exactMatch hgnc 9449 PRNP lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py @@ -15591,7 +28146,6 @@ mesh D000072018 Audiologists skos:exactMatch ncit C51804 Audiologist lexical 0.9 mesh D000072019 Kelch-Like ECH-Associated Protein 1 skos:exactMatch hgnc 23177 KEAP1 lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D000072019 Kelch-Like ECH-Associated Protein 1 skos:exactMatch ncit C112107 Kelch-Like ECH-Associated Protein 1 lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000072036 Prophylactic Mastectomy skos:exactMatch ncit C94445 Prophylactic Mastectomy lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D000072038 Cardiac Rehabilitation skos:exactMatch ncit C101234 Cardiac Rehabilitation lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000072040 Apolipoprotein A-V skos:exactMatch hgnc 17288 APOA5 lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000072056 Transcription Factor HES-1 skos:exactMatch hgnc 5192 HES1 lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D000072056 Transcription Factor HES-1 skos:exactMatch ncit C84294 Transcription Factor HES-1 lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -15611,7 +28165,6 @@ mesh D000072105 Superoxide Dismutase-1 skos:exactMatch ncit C55287 Superoxide Di mesh D000072106 Pulmonologists skos:exactMatch ncit C93080 Pulmonologist lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000072117 Counselors skos:exactMatch ncit C155697 Counselor lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000072141 Neurologists skos:exactMatch ncit C17721 Neurologist lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D000072142 Pathologists skos:exactMatch efo 0009738 pathologist lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D000072142 Pathologists skos:exactMatch ncit C17723 Pathologist lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000072143 Pediatricians skos:exactMatch ncit C83190 Pediatrician lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000072157 Physiatrists skos:exactMatch ncit C93068 Physical Medicine Specialist lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -15639,7 +28192,6 @@ mesh D000072232 Radiation Dosimeters skos:exactMatch ncit C150121 Radiation Dosi mesh D000072259 Connexin 26 skos:exactMatch ncit C127001 Gap Junction Beta-2 Protein lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000072278 Forkhead Box Protein M1 skos:exactMatch hgnc 3818 FOXM1 lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D000072278 Forkhead Box Protein M1 skos:exactMatch ncit C101582 Forkhead Box Protein M1 lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D000072283 A549 Cells skos:exactMatch efo 0001086 A549 lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000072316 Dioxins and Dioxin-like Compounds skos:exactMatch chebi CHEBI:134045 polychlorinated dibenzodioxines and related compounds lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000072340 NIMA-Interacting Peptidylprolyl Isomerase skos:exactMatch hgnc 8988 PIN1 lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D000072340 NIMA-Interacting Peptidylprolyl Isomerase skos:exactMatch ncit C120050 Peptidyl-Prolyl Cis-Trans Isomerase NIMA-Interacting 1 lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -15672,9 +28224,6 @@ mesh D000072637 Thyroid Epithelial Cells skos:exactMatch efo 0003076 thyrocyte l mesh D000072637 Thyroid Epithelial Cells skos:exactMatch ncit C33783 Thyroid Gland Follicular Cell lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000072640 Interferon-Induced Helicase, IFIH1 skos:exactMatch hgnc 18873 IFIH1 lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D000072645 Cancer-Associated Fibroblasts skos:exactMatch ncit C168534 Cancer-Associated Fibroblast lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D000072657 ST Elevation Myocardial Infarction skos:exactMatch efo 0008585 ST Elevation Myocardial Infarction lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D000072658 Non-ST Elevated Myocardial Infarction skos:exactMatch efo 0008586 Non-ST Elevation Myocardial Infarction lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D000072660 Teratozoospermia skos:exactMatch efo 0002625 teratozoospermia lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000072662 Margins of Excision skos:exactMatch ncit C41227 Surgical Margin lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000072663 Spontaneous Perforation skos:exactMatch ncit C99145 Spontaneous Perforation lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000072669 Gene Editing skos:exactMatch ncit C126104 Gene Modification lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -15727,7 +28276,6 @@ mesh D000073942 T-Cell Acute Lymphocytic Leukemia Protein 1 skos:exactMatch hgnc mesh D000073942 T-Cell Acute Lymphocytic Leukemia Protein 1 skos:exactMatch ncit C17418 T-Cell Acute Lymphocytic Leukemia Protein 1 lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000073979 F-Box-WD Repeat-Containing Protein 7 skos:exactMatch hgnc 16712 FBXW7 lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D000073979 F-Box-WD Repeat-Containing Protein 7 skos:exactMatch ncit C21512 F-Box/WD Repeat-Containing Protein 7 lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D000074 Acenocoumarol skos:exactMatch chebi CHEBI:53766 acenocoumarol lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D000074001 Intercellular Adhesion Molecule-3 skos:exactMatch hgnc 5346 ICAM3 lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D000074008 MDS1 and EVI1 Complex Locus Protein skos:exactMatch hgnc 3498 MECOM lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D000074008 MDS1 and EVI1 Complex Locus Protein skos:exactMatch ncit C168786 Histone-Lysine N-Methyltransferase MECOM lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -15762,7 +28310,6 @@ mesh D000074163 Serine Peptidase Inhibitor Kazal-Type 5 skos:exactMatch hgnc 154 mesh D000074165 Zinc Finger E-box Binding Homeobox 2 skos:exactMatch hgnc 14881 ZEB2 lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000074166 Circulating MicroRNA skos:exactMatch ncit C123153 Circulating MicroRNA lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000074181 Spastin skos:exactMatch hgnc 11233 SPAST lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D000074221 Rumination, Digestive skos:exactMatch go GO:0036147 rumination lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000074241 Peanut Oil skos:exactMatch ncit C66332 Peanut Oil lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000074242 Sunflower Oil skos:exactMatch ncit C1241 Sunflower Oil lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000074261 Receptors, Enterotoxin skos:exactMatch hgnc 4688 GUCY2C lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py @@ -15783,7 +28330,6 @@ mesh D000074301 CD52 Antigen skos:exactMatch hgnc 1804 CD52 lexical 0.95 https:/ mesh D000074301 CD52 Antigen skos:exactMatch ncit C38908 CAMPATH-1 Antigen lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000074323 Alemtuzumab skos:exactMatch ncit C1681 Alemtuzumab lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000074324 Ipilimumab skos:exactMatch ncit C2654 Ipilimumab lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D000074361 Sleep Latency skos:exactMatch efo 0005280 sleep latency lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D000074361 Sleep Latency skos:exactMatch ncit C154867 Sleep Onset Latency lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000074405 Valosin Containing Protein skos:exactMatch hgnc 12666 VCP lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D000074406 Mastoidectomy skos:exactMatch ncit C51751 Mastoidectomy lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -15823,13 +28369,11 @@ mesh D000074747 Poly ADP Ribosylation skos:exactMatch ncit C129759 Poly-ADP-Ribo mesh D000074749 Deubiquitinating Enzyme CYLD skos:exactMatch hgnc 2584 CYLD lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D000074749 Deubiquitinating Enzyme CYLD skos:exactMatch ncit C92683 Ubiquitin Carboxyl-Terminal Hydrolase CYLD lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000074765 Dysbindin skos:exactMatch hgnc 17328 DTNBP1 lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D000074767 Diapause skos:exactMatch go GO:0030431 sleep lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000074842 Forkhead Box Protein L2 skos:exactMatch hgnc 1092 FOXL2 lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D000074842 Forkhead Box Protein L2 skos:exactMatch ncit C75474 Forkhead Box Protein L2 lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000074884 Mucosa-Associated Lymphoid Tissue Lymphoma Translocation 1 Protein skos:exactMatch hgnc 6819 MALT1 lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000074885 Amniotomy skos:exactMatch ncit C92734 Artificial Rupture of Membrane lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000074923 High-Temperature Requirement A Serine Peptidase 2 skos:exactMatch hgnc 14348 HTRA2 lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D000075 Acepromazine skos:exactMatch chebi CHEBI:44932 acepromazine lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D000075 Acepromazine skos:exactMatch ncit C77568 Acepromazine lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000075023 S100 Calcium Binding Protein A7 skos:exactMatch hgnc 10497 S100A7 lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D000075024 rhoC GTP-Binding Protein skos:exactMatch hgnc 669 RHOC lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py @@ -15851,7 +28395,6 @@ mesh D000075222 Essential Hypertension skos:exactMatch ncit C3478 Essential Hype mesh D000075243 Apolipoproteins M skos:exactMatch hgnc 13916 APOM lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000075244 Apelin Receptors skos:exactMatch hgnc 339 APLNR lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D000075302 Connexin 30 skos:exactMatch hgnc 4288 GJB6 lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D000075322 Heavy Metal Poisoning skos:exactMatch efo 1001518 heavy metal poisoning lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000075362 Leukocyte Immunoglobulin-like Receptor B1 skos:exactMatch hgnc 6605 LILRB1 lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000075366 Chemokine CCL18 skos:exactMatch hgnc 10616 CCL18 lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D000075366 Chemokine CCL18 skos:exactMatch ncit C28732 C-C Motif Chemokine 18 lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -15908,7 +28451,6 @@ mesh D000076223 Regulatory-Associated Protein of mTOR skos:exactMatch ncit C1047 mesh D000076242 mTOR Associated Protein, LST8 Homolog skos:exactMatch hgnc 24825 MLST8 lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000076245 Heterogeneous Nuclear Ribonucleoprotein A1 skos:exactMatch hgnc 5031 HNRNPA1 lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000076247 Centromere Protein A skos:exactMatch ncit C152974 Histone H3-Like Centromeric Protein A lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D000076385 Diverticular Diseases skos:exactMatch efo 0009959 diverticular disease lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000076610 Genetic Profile skos:exactMatch ncit C94411 Genomic Profile lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000076665 Ventilation-Perfusion Scan skos:exactMatch ncit C38100 Ventilation Perfusion Scanning lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000076722 Drug Development skos:exactMatch ncit C15760 Drug Development lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -15916,265 +28458,169 @@ mesh D000077 Acetabulum skos:exactMatch ncit C32042 Acetabulum lexical 0.95 http mesh D000077004 Tuberous Sclerosis Complex 1 Protein skos:exactMatch hgnc 12362 TSC1 lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000077005 Tuberous Sclerosis Complex 2 Protein skos:exactMatch hgnc 12363 TSC2 lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D000077022 Survivin skos:exactMatch hgnc 593 BIRC5 lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D000077122 Sugammadex skos:exactMatch chebi CHEBI:90953 sugammadex lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D000077122 Sugammadex skos:exactMatch ncit C80629 Sugammadex lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D000077123 Rocuronium skos:exactMatch chebi CHEBI:8884 rocuronium lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D000077123 Rocuronium skos:exactMatch ncit C80999 Rocuronium lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000077143 Docetaxel skos:exactMatch chebi CHEBI:4672 docetaxel anhydrous lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D000077144 Clopidogrel skos:exactMatch chebi CHEBI:37941 clopidogrel lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D000077144 Clopidogrel skos:exactMatch ncit C61686 Clopidogrel lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D000077146 Irinotecan skos:exactMatch chebi CHEBI:80630 irinotecan lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D000077146 Irinotecan skos:exactMatch ncit C62040 Irinotecan lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D000077152 Olanzapine skos:exactMatch chebi CHEBI:7735 olanzapine lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D000077153 Progranulins skos:exactMatch hgnc 4601 GRN lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py -mesh D000077154 Rosiglitazone skos:exactMatch chebi CHEBI:50122 rosiglitazone lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D000077154 Rosiglitazone skos:exactMatch ncit C62076 Rosiglitazone lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000077155 Granulins skos:exactMatch ncit C101403 Granulins lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D000077156 Gefitinib skos:exactMatch chebi CHEBI:49668 gefitinib lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D000077156 Gefitinib skos:exactMatch ncit C1855 Gefitinib lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D000077185 Resveratrol skos:exactMatch chebi CHEBI:27881 resveratrol lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D000077190 Interferon alpha-2 skos:exactMatch hgnc 5423 IFNA2 lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D000077191 Wortmannin skos:exactMatch chebi CHEBI:52289 wortmannin lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D000077191 Wortmannin skos:exactMatch ncit C1277 Wortmannin lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D000077195 Squamous Cell Carcinoma of Head and Neck skos:exactMatch efo 0000181 head and neck squamous cell carcinoma lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py -mesh D000077204 Temozolomide skos:exactMatch chebi CHEBI:72564 temozolomide lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py -mesh D000077206 Gabapentin skos:exactMatch chebi CHEBI:42797 gabapentin lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D000077206 Gabapentin skos:exactMatch ncit C1108 Gabapentin lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000077207 Chondrosarcoma, Clear Cell skos:exactMatch ncit C6475 Clear Cell Chondrosarcoma lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000077209 Decitabine skos:exactMatch chebi CHEBI:50131 5-aza-2'-deoxycytidine lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D000077209 Decitabine skos:exactMatch ncit C981 Decitabine lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000077211 Zoledronic Acid skos:exactMatch ncit C1699 Zoledronic Acid lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000077212 Ropivacaine skos:exactMatch chebi CHEBI:8890 (S)-ropivacaine lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D000077213 Lamotrigine skos:exactMatch chebi CHEBI:6367 lamotrigine lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D000077213 Lamotrigine skos:exactMatch ncit C38703 Lamotrigine lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000077214 Becaplermin skos:exactMatch ncit C1668 Becaplermin lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000077216 Carcinoma, Ovarian Epithelial skos:exactMatch ncit C4908 Ovarian Epithelial Cancer lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D000077235 Vinorelbine skos:exactMatch chebi CHEBI:480999 vinorelbine lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D000077235 Vinorelbine skos:exactMatch ncit C1275 Vinorelbine lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000077237 Arsenic Trioxide skos:exactMatch chebi CHEBI:30621 diarsenic trioxide lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D000077237 Arsenic Trioxide skos:exactMatch ncit C1005 Arsenic Trioxide lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D000077239 Meloxicam skos:exactMatch chebi CHEBI:6741 meloxicam lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D000077239 Meloxicam skos:exactMatch ncit C61439 Meloxicam lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000077260 Sleepiness skos:exactMatch ncit C95746 Sleepiness lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D000077265 Donepezil skos:exactMatch chebi CHEBI:53289 donepezil lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D000077265 Donepezil skos:exactMatch ncit C66874 Donepezil lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D000077267 Fulvestrant skos:exactMatch chebi CHEBI:31638 fulvestrant lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D000077267 Fulvestrant skos:exactMatch ncit C1379 Fulvestrant lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D000077268 Pamidronate skos:exactMatch chebi CHEBI:7903 pamidronate lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D000077268 Pamidronate skos:exactMatch ncit C61875 Pamidronic Acid lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D000077269 Lenalidomide skos:exactMatch chebi CHEBI:63791 lenalidomide lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D000077270 Exenatide skos:exactMatch chebi CHEBI:64073 exendin-4 lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D000077270 Exenatide skos:exactMatch ncit C65611 Exenatide lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000077274 Nasopharyngeal Carcinoma skos:exactMatch ncit C3871 Nasopharyngeal Carcinoma lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D000077277 Esophageal Squamous Cell Carcinoma skos:exactMatch efo 0005922 esophageal squamous cell carcinoma lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py -mesh D000077277 Esophageal Squamous Cell Carcinoma skos:exactMatch ncit C4024 Esophageal Squamous Cell Carcinoma lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000077278 RNA, Mitochondrial skos:exactMatch ncit C25975 Mitochondrial RNA lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000077284 Abciximab skos:exactMatch ncit C76128 Abciximab lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000077285 Rimonabant skos:exactMatch ncit C73244 Rimonabant lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000077286 Cetrimonium skos:exactMatch chebi CHEBI:39561 cetyltrimethylammonium ion lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D000077291 Terbinafine skos:exactMatch chebi CHEBI:9448 terbinafine lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D000077291 Terbinafine skos:exactMatch ncit C48019 Terbinafine lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000077293 Receptor, Transforming Growth Factor-beta Type I skos:exactMatch hgnc 11772 TGFBR1 lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000077294 Receptor, Transforming Growth Factor-beta Type II skos:exactMatch hgnc 11773 TGFBR2 lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000077296 Niemann-Pick C1 Protein skos:exactMatch hgnc 7897 NPC1 lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000077297 Pregnane X Receptor skos:exactMatch hgnc 7968 NR1I2 lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D000077299 Healthcare-Associated Pneumonia skos:exactMatch ncit C115297 Nosocomial Pneumonia lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D000077300 Bosentan skos:exactMatch chebi CHEBI:51450 bosentan lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D000077300 Bosentan skos:exactMatch ncit C47417 Bosentan lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000077317 Extracellular Polymeric Substance Matrix skos:exactMatch go GO:0062039 biofilm matrix lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000077322 Alginic Acid skos:exactMatch ncit C82277 Alginic Acid lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D000077324 Crystalloid Solutions skos:exactMatch go GO:0044312 crystalloid lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000077329 Agammaglobulinaemia Tyrosine Kinase skos:exactMatch hgnc 1133 BTK lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D000077331 Ringer's Solution skos:exactMatch ncit C65146 Ringer Solution lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D000077332 Artesunate skos:exactMatch chebi CHEBI:63918 artesunate lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D000077332 Artesunate skos:exactMatch ncit C73005 Artesunate lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D000077334 Zolpidem skos:exactMatch chebi CHEBI:10125 zolpidem lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D000077334 Zolpidem skos:exactMatch ncit C62000 Zolpidem lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D000077337 Vorinostat skos:exactMatch chebi CHEBI:45716 vorinostat lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D000077337 Vorinostat skos:exactMatch ncit C1796 Vorinostat lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D000077338 Latanoprost skos:exactMatch chebi CHEBI:6384 latanoprost lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D000077338 Latanoprost skos:exactMatch ncit C29151 Latanoprost lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D000077340 Fluvastatin skos:exactMatch chebi CHEBI:38561 fluvastatin lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D000077340 Fluvastatin skos:exactMatch ncit C61768 Fluvastatin lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D000077341 Lapatinib skos:exactMatch chebi CHEBI:49603 lapatinib lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D000077341 Lapatinib skos:exactMatch ncit C26653 Lapatinib lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000077342 Post-Lyme Disease Syndrome skos:exactMatch ncit C119039 Post-Treatment Lyme Disease Syndrome lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D000077362 Verteporfin skos:exactMatch chebi CHEBI:32293 verteporfin lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D000077362 Verteporfin skos:exactMatch ncit C1014 Verteporfin lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D000077384 Anastrozole skos:exactMatch chebi CHEBI:2704 anastrozole lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D000077384 Anastrozole skos:exactMatch ncit C1607 Anastrozole lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D000077402 Pantoprazole skos:exactMatch chebi CHEBI:7915 pantoprazole lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D000077402 Pantoprazole skos:exactMatch ncit C29346 Pantoprazole lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D000077403 Orlistat skos:exactMatch chebi CHEBI:94686 orlistat lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D000077403 Orlistat skos:exactMatch ncit C29303 Orlistat lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000077404 Cidofovir skos:exactMatch chebi CHEBI:3696 cidofovir anhydrous lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py -mesh D000077407 Cilostazol skos:exactMatch chebi CHEBI:31401 cilostazol lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D000077407 Cilostazol skos:exactMatch ncit C1051 Cilostazol lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D000077408 Modafinil skos:exactMatch chebi CHEBI:31859 modafinil lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D000077408 Modafinil skos:exactMatch ncit C26661 Modafinil lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000077410 Aluminum Chloride skos:exactMatch chebi CHEBI:30114 aluminium trichloride lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D000077410 Aluminum Chloride skos:exactMatch ncit C83530 Aluminum Chloride lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D000077423 Polidocanol skos:exactMatch chebi CHEBI:46859 polidocanol lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py -mesh D000077425 Fondaparinux skos:exactMatch chebi CHEBI:61033 fondaparinux lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D000077425 Fondaparinux skos:exactMatch ncit C73142 Fondaparinux lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000077426 Gastric Artery skos:exactMatch ncit C32654 Gastric Artery lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000077428 GATA2 Deficiency skos:exactMatch ncit C126349 GATA2 Deficiency lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D000077430 Nabumetone skos:exactMatch chebi CHEBI:7443 nabumetone lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py -mesh D000077431 Oxaprozin skos:exactMatch chebi CHEBI:7822 oxaprozin lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D000077431 Oxaprozin skos:exactMatch ncit C29307 Oxaprozin lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D000077432 Tapentadol skos:exactMatch chebi CHEBI:135935 tapentadol lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D000077432 Tapentadol skos:exactMatch ncit C72139 Tapentadol lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000077442 Lidocaine, Prilocaine Drug Combination skos:exactMatch ncit C1081 Eutectic Mixture of Local Anesthetics lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D000077443 Acamprosate skos:exactMatch chebi CHEBI:51041 acamprosate lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D000077463 Carbamide Peroxide skos:exactMatch chebi CHEBI:75178 urea hydrogen peroxide lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D000077463 Carbamide Peroxide skos:exactMatch ncit C77033 Carbamide Peroxide lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000077464 Simendan skos:exactMatch ncit C87689 Simendan lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D000077483 Valacyclovir skos:exactMatch chebi CHEBI:35854 valacyclovir lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py -mesh D000077486 Ticagrelor skos:exactMatch chebi CHEBI:68558 ticagrelor lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D000077486 Ticagrelor skos:exactMatch ncit C76404 Ticagrelor lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D000077487 Pramipexole skos:exactMatch chebi CHEBI:8356 pramipexole lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D000077487 Pramipexole skos:exactMatch ncit C66456 Pramipexole lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D000077489 Piperazine skos:exactMatch chebi CHEBI:28568 piperazine lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py -mesh D000077525 Cefdinir skos:exactMatch chebi CHEBI:3485 cefdinir lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D000077525 Cefdinir skos:exactMatch ncit C28914 Cefdinir lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D000077526 Tropisetron skos:exactMatch chebi CHEBI:32269 tropisetron lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D000077526 Tropisetron skos:exactMatch ncit C1131 Tropisetron lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000077542 Eptifibatide skos:exactMatch ncit C47516 Eptifibatide lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D000077543 Deferiprone skos:exactMatch chebi CHEBI:68554 deferiprone lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D000077544 Panitumumab skos:exactMatch ncit C1857 Panitumumab lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000077546 Roscovitine skos:exactMatch chebi CHEBI:45307 seliciclib lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D000077547 Crizotinib skos:exactMatch chebi CHEBI:64310 crizotinib lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D000077547 Crizotinib skos:exactMatch ncit C74061 Crizotinib lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000077548 Anaplastic Lymphoma Kinase skos:exactMatch hgnc 427 ALK lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D000077548 Anaplastic Lymphoma Kinase skos:exactMatch ncit C27032 ALK Tyrosine Kinase Receptor lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D000077549 Artemether skos:exactMatch chebi CHEBI:195280 artemether lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D000077549 Artemether skos:exactMatch ncit C73001 Artemether lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000077550 Ivabradine skos:exactMatch ncit C65995 Ivabradine lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D000077551 Micafungin skos:exactMatch chebi CHEBI:600520 micafungin lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D000077551 Micafungin skos:exactMatch ncit C1850 Micafungin lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000077552 Basiliximab skos:exactMatch ncit C52186 Basiliximab lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000077555 Methylprednisolone Acetate skos:exactMatch ncit C48003 Methylprednisolone Acetate lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000077556 Alitretinoin skos:exactMatch chebi CHEBI:50648 9-cis-retinoic acid lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D000077556 Alitretinoin skos:exactMatch ncit C1574 Alitretinoin lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000077557 Ibandronic Acid skos:exactMatch ncit C65874 Ibandronic Acid lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D000077559 Sodium Citrate skos:exactMatch ncit C62075 Sodium Citrate lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D000077560 Enfuvirtide skos:exactMatch chebi CHEBI:608828 enfuvirtide lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D000077561 Daclizumab skos:exactMatch ncit C1569 Daclizumab lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D000077562 Valganciclovir skos:exactMatch chebi CHEBI:63635 valganciclovir lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D000077563 Norethindrone Acetate skos:exactMatch chebi CHEBI:7628 norethisterone acetate lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D000077563 Norethindrone Acetate skos:exactMatch ncit C702 Norethindrone Acetate lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D000077582 Amisulpride skos:exactMatch chebi CHEBI:64045 amisulpride lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D000077584 2-Methoxyestradiol skos:exactMatch chebi CHEBI:28955 2-methoxy-17beta-estradiol lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D000077584 2-Methoxyestradiol skos:exactMatch ncit C965 2-Methoxyestradiol lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D000077585 Terlipressin skos:exactMatch chebi CHEBI:135905 terlipressin lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D000077585 Terlipressin skos:exactMatch ncit C77387 Terlipressin lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D000077588 Deferasirox skos:exactMatch chebi CHEBI:49005 deferasirox lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D000077588 Deferasirox skos:exactMatch ncit C48384 Deferasirox lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D000077589 Sulfathiazole skos:exactMatch chebi CHEBI:9337 sulfathiazole lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D000077589 Sulfathiazole skos:exactMatch ncit C66571 Sulfathiazole lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000077591 Eucalyptol skos:exactMatch chebi CHEBI:27961 1,8-cineole lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D000077591 Eucalyptol skos:exactMatch ncit C76772 Eucalyptol lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D000077592 Maraviroc skos:exactMatch chebi CHEBI:63608 maraviroc lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py -mesh D000077593 Reboxetine skos:exactMatch chebi CHEBI:135342 reboxetine lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D000077593 Reboxetine skos:exactMatch ncit C72838 Reboxetine lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000077594 Nivolumab skos:exactMatch ncit C68814 Nivolumab lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D000077596 Thymalfasin skos:exactMatch chebi CHEBI:135915 thymalfasin lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D000077596 Thymalfasin skos:exactMatch ncit C1253 Thymalfasin lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D000077597 Vildagliptin skos:exactMatch chebi CHEBI:135285 vildagliptin lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D000077597 Vildagliptin skos:exactMatch ncit C66653 Vildagliptin lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D000077602 Tolvaptan skos:exactMatch chebi CHEBI:32246 Tolvaptan lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py -mesh D000077603 Nandrolone Decanoate skos:exactMatch chebi CHEBI:7467 Nandrolone decanoate lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D000077603 Nandrolone Decanoate skos:exactMatch ncit C1172 Nandrolone Decanoate lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D000077604 Fomepizole skos:exactMatch chebi CHEBI:5141 fomepizole lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D000077605 Ferric Oxide, Saccharated skos:exactMatch ncit C65963 Iron Sucrose lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D000077606 Trabectedin skos:exactMatch chebi CHEBI:84050 trabectedin lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D000077606 Trabectedin skos:exactMatch ncit C1691 Trabectedin lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000077607 Icodextrin skos:exactMatch ncit C75647 Icodextrin lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D000077608 Aprepitant skos:exactMatch chebi CHEBI:499361 aprepitant lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D000077608 Aprepitant skos:exactMatch ncit C49173 Aprepitant lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D000077610 Bexarotene skos:exactMatch chebi CHEBI:50859 bexarotene lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D000077610 Bexarotene skos:exactMatch ncit C1635 Bexarotene lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D000077612 Anidulafungin skos:exactMatch chebi CHEBI:55346 anidulafungin lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D000077612 Anidulafungin skos:exactMatch ncit C38716 Anidulafungin lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000077682 Triclabendazole skos:exactMatch ncit C75236 Triclabendazole lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000077684 Cauda Equina Syndrome skos:exactMatch ncit C35436 Cauda Equina Syndrome lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D000077704 Tirapazamine skos:exactMatch chebi CHEBI:78887 tirapazamine lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D000077704 Tirapazamine skos:exactMatch ncit C1464 Tirapazamine lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000077711 Self-Neglect skos:exactMatch hp HP:0025479 Self-neglect lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D000077712 Telbivudine skos:exactMatch chebi CHEBI:63624 telbivudine lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D000077712 Telbivudine skos:exactMatch ncit C66584 Telbivudine lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000077713 17 alpha-Hydroxyprogesterone Caproate skos:exactMatch chebi CHEBI:5812 Hydroxyprogesterone caproate lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D000077713 17 alpha-Hydroxyprogesterone Caproate skos:exactMatch ncit C960 Hydroxyprogesterone Caproate lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000077715 Nateglinide skos:exactMatch ncit C61858 Nateglinide lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D000077716 Afatinib skos:exactMatch chebi CHEBI:61390 afatinib lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D000077716 Afatinib skos:exactMatch ncit C66940 Afatinib lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000077722 Ceftibuten skos:exactMatch ncit C61666 Ceftibuten lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D000077726 Doripenem skos:exactMatch chebi CHEBI:135928 doripenem lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D000077726 Doripenem skos:exactMatch ncit C65470 Doripenem lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000077727 Ertapenem skos:exactMatch ncit C61752 Ertapenem lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000077728 Cilastatin, Imipenem Drug Combination skos:exactMatch chebi CHEBI:5880 Imipenem-cilastatin lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D000077732 Fidaxomicin skos:exactMatch chebi CHEBI:68590 fidaxomicin lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D000077733 Immunoglobulin G4-Related Disease skos:exactMatch ncit C95992 IgG4-Related Disease lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D000077734 Gatifloxacin skos:exactMatch chebi CHEBI:5280 gatifloxacin lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D000077734 Gatifloxacin skos:exactMatch ncit C29070 Gatifloxacin lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D000077735 Gemifloxacin skos:exactMatch chebi CHEBI:101853 gemifloxacin lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D000077735 Gemifloxacin skos:exactMatch ncit C61775 Gemifloxacin lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000077740 Procalcitonin skos:exactMatch ncit C103430 Procalcitonin Measurement lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D000077764 Dronedarone skos:exactMatch chebi CHEBI:50659 dronedarone lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D000077764 Dronedarone skos:exactMatch ncit C65485 Dronedarone lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D000077767 Panobinostat skos:exactMatch chebi CHEBI:85990 panobinostat lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D000077767 Panobinostat skos:exactMatch ncit C66948 Panobinostat lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D000077768 Ciclopirox skos:exactMatch chebi CHEBI:453011 ciclopirox lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D000077768 Ciclopirox skos:exactMatch ncit C61677 Ciclopirox lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000077777 Myopericytoma skos:exactMatch ncit C50401 Myopericytoma lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000077779 Pancreatic Intraductal Neoplasms skos:exactMatch ncit C95505 Pancreatic Intraductal Neoplasm lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D000077784 Axitinib skos:exactMatch chebi CHEBI:66910 axitinib lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D000077784 Axitinib skos:exactMatch ncit C38718 Axitinib lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000077785 Tenecteplase skos:exactMatch ncit C29489 Tenecteplase lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D000077786 Torsemide skos:exactMatch chebi CHEBI:9637 torasemide lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D000077786 Torsemide skos:exactMatch ncit C29506 Torsemide lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000077863 Homoharringtonine skos:exactMatch chebi CHEBI:71019 omacetaxine mepesuccinate lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py -mesh D000077866 Clofarabine skos:exactMatch chebi CHEBI:681569 clofarabine lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D000077866 Clofarabine skos:exactMatch ncit C26638 Clofarabine lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D000077867 Tolcapone skos:exactMatch chebi CHEBI:63630 tolcapone lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D000077867 Tolcapone skos:exactMatch ncit C47762 Tolcapone lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D000077868 Atrasentan skos:exactMatch chebi CHEBI:135810 atrasentan lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D000077868 Atrasentan skos:exactMatch ncit C61606 Atrasentan lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D000077924 Palonosetron skos:exactMatch chebi CHEBI:85161 palonosetron lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D000077924 Palonosetron skos:exactMatch ncit C61874 Palonosetron lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000077944 Alefacept skos:exactMatch ncit C65220 Alefacept lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D000077982 Progression-Free Survival skos:exactMatch efo 0004920 progression free survival lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000078122 Eucalyptus Oil skos:exactMatch ncit C65603 Eucalyptus Oil lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D000078142 Tazobactam skos:exactMatch chebi CHEBI:9421 tazobactam lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D000078142 Tazobactam skos:exactMatch ncit C62079 Tazobactam lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D000078262 Rifaximin skos:exactMatch chebi CHEBI:75246 rifaximin lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D000078262 Rifaximin skos:exactMatch ncit C61926 Rifaximin lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000078304 Tigecycline skos:exactMatch ncit C72865 Tigecycline lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D000078305 Zonisamide skos:exactMatch chebi CHEBI:10127 zonisamide lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D000078305 Zonisamide skos:exactMatch ncit C47790 Zonisamide lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000078306 Clobazam skos:exactMatch ncit C81615 Clobazam lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D000078308 Tiagabine skos:exactMatch chebi CHEBI:9586 tiagabine lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D000078308 Tiagabine skos:exactMatch ncit C66602 Tiagabine lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000078329 Workforce skos:exactMatch ncit C77921 Workforce lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D000078334 Lacosamide skos:exactMatch chebi CHEBI:135939 lacosamide lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D000078334 Lacosamide skos:exactMatch ncit C83859 Lacosamide lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000078385 Embarrassment skos:exactMatch ncit C62187 Embarrassment lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000078405 Non-Smokers skos:exactMatch ncit C65108 Never Smoker lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000078542 Proctectomy skos:exactMatch ncit C51783 Resection of Rectum lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000078602 Sadness skos:exactMatch ncit C74534 Sadness lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D000078622 Nutrients skos:exactMatch chebi CHEBI:33284 nutrient lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D000078642 Medical Countermeasures skos:exactMatch ncit C171514 Medical Countermeasure lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000078703 Radiofrequency Ablation skos:exactMatch ncit C15666 Radiofrequency Ablation lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000078723 Nuclear Receptor Interacting Protein 1 skos:exactMatch ncit C17929 Nuclear Receptor-Interacting Protein 1 lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D000078764 Milnacipran skos:exactMatch chebi CHEBI:135005 milnacipran lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D000078764 Milnacipran skos:exactMatch ncit C78021 Milnacipran lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D000078784 Vortioxetine skos:exactMatch chebi CHEBI:76016 vortioxetine lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D000078784 Vortioxetine skos:exactMatch ncit C152917 Vortioxetine lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000078787 Neuroglobin skos:exactMatch hgnc 14077 NGB lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000078792 Midkine skos:exactMatch hgnc 6972 MDK lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D000078792 Midkine skos:exactMatch ncit C26381 Midkine lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000078842 Cytoglobin skos:exactMatch hgnc 16505 CYGB lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D000078862 Levomilnacipran skos:exactMatch chebi CHEBI:136040 levomilnacipran lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D000078862 Levomilnacipran skos:exactMatch ncit C170117 Levomilnacipran lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000079225 Psychological Distress skos:exactMatch ncit C117162 Emotional Distress lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000079262 Obesity, Maternal skos:exactMatch ncit C97176 Maternal Obesity lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -16199,7 +28645,6 @@ mesh D000080064 Protein-Arginine Deiminase Type 2 skos:exactMatch ncit C132151 P mesh D000080065 Protein-Arginine Deiminase Type 6 skos:exactMatch hgnc 20449 PADI6 lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000080104 Fertility Clinics skos:exactMatch ncit C133297 Fertility Clinic that Manufactures Human Cells, Tissues, and Cellular and Tissue-Based Products lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000080203 Hamman-Rich Syndrome skos:exactMatch ncit C35806 Acute Interstitial Pneumonia lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D000080282 Hormonal Contraception skos:exactMatch ncit C92808 Hormonal Contraception lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000080343 Meibomian Gland Dysfunction skos:exactMatch hp HP:0025610 Posterior blepharitis lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000080344 Optic Nerve Hypoplasia skos:exactMatch ncit C98999 Optic Nerve Hypoplasia lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000080346 Retinal Arterial Macroaneurysm skos:exactMatch hp HP:0025355 Retinal arterial macroaneurysms lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -16214,7 +28659,6 @@ mesh D000080883 Shoulder Dystocia skos:exactMatch ncit C81290 Shoulder Dystocia mesh D000080886 Parapharyngeal Space skos:exactMatch ncit C162818 Lateral Pharyngeal Space lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000080890 Duocarmycins skos:exactMatch ncit C2156 Duocarmycin Antineoplastic Antibiotic lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000080905 Homeobox A10 Proteins skos:exactMatch ncit C52995 HOXA10 wt Allele lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D000080909 Carotid-Femoral Pulse Wave Velocity skos:exactMatch efo 0004724 carotid-femoral pulse wave velocity lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000080924 Aldehyde Dehydrogenase 1 skos:exactMatch ncit C129434 Aldehyde Dehydrogenase 1 Family lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000080984 Congenital Bone Marrow Failure Syndromes skos:exactMatch ncit C94810 Inherited Bone Marrow Failure Syndrome lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000081003 Shwachman-Diamond Syndrome skos:exactMatch ncit C61235 Shwachman-Diamond Syndrome lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -16229,7 +28673,6 @@ mesh D000081207 Primary Immunodeficiency Diseases skos:exactMatch ncit C152105 P mesh D000081208 Hereditary Complement Deficiency Diseases skos:exactMatch hp HP:0004431 Complement deficiency lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000081226 Sennosides skos:exactMatch ncit C29448 Sennosides lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000081242 B-Cell Lymphoma 3 Protein skos:exactMatch ncit C18167 B-Cell Lymphoma Protein 3 lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D000081246 RNA-Seq skos:exactMatch efo 0008896 RNA-Seq lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000081247 CSK Tyrosine-Protein Kinase skos:exactMatch ncit C17528 Tyrosine-Protein Kinase CSK lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000081362 Lipidomics skos:exactMatch ncit C153193 Lipidomics lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000081364 Multiparametric Magnetic Resonance Imaging skos:exactMatch ncit C116458 Multiparametric Magnetic Resonance Imaging lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -16238,13 +28681,10 @@ mesh D000081412 Myosin VIIa skos:exactMatch hgnc 7606 MYO7A lexical 0.95 https:/ mesh D000081483 Squamous Intraepithelial Lesions skos:exactMatch ncit C8334 Squamous Cell Intraepithelial Neoplasia lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000082 Acetaminophen skos:exactMatch chebi CHEBI:46195 paracetamol lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000085 Acetates skos:exactMatch chebi CHEBI:47622 acetate ester lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D000092 Acetohexamide skos:exactMatch chebi CHEBI:28052 acetohexamide lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D000092 Acetohexamide skos:exactMatch ncit C47380 Acetohexamide lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000099 Acetoxyacetylaminofluorene skos:exactMatch chebi CHEBI:76331 N-acetoxy-2-acetamidofluorene lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D000100 Acetrizoic Acid skos:exactMatch chebi CHEBI:34521 Acetrizoic acid lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D000100 Acetrizoic Acid skos:exactMatch ncit C83516 Acetrizoic Acid lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000101 Acetyl-CoA C-Acetyltransferase skos:exactMatch hgnc 83 ACAA2 lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D000105 Acetyl Coenzyme A skos:exactMatch chebi CHEBI:15351 acetyl-CoA lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D000105 Acetyl Coenzyme A skos:exactMatch ncit C199 Acetyl Coenzyme A lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000108 Acetylcarnitine skos:exactMatch ncit C87329 Acetylcarnitine lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000110 Acetylcholinesterase skos:exactMatch hgnc 108 ACHE lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -16285,11 +28725,9 @@ mesh D000190 Actinomyces skos:exactMatch ncit C76201 Actinomyces lexical 0.95 ht mesh D000191 Actinomycetaceae skos:exactMatch ncit C85912 Actinomycetaceae lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000193 Actinomycetales Infections skos:exactMatch ncit C84534 Actinomycetales Infection lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000196 Actinomycosis skos:exactMatch ncit C34350 Actinomycosis lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D000198 Spectinomycin skos:exactMatch chebi CHEBI:9215 spectinomycin lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D000198 Spectinomycin skos:exactMatch ncit C61951 Spectinomycin lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000199 Actins skos:exactMatch ncit C16258 Actin lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000210 Acute-Phase Reaction skos:exactMatch go GO:0006953 acute-phase response lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D000212 Acyclovir skos:exactMatch chebi CHEBI:2453 acyclovir lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D000215 Acylation skos:exactMatch ncit C157214 Acylation lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000216 N-Acylneuraminate Cytidylyltransferase skos:exactMatch hgnc 18290 CMAS lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000218 Adamantane skos:exactMatch chebi CHEBI:38223 diamantane lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -16335,7 +28773,6 @@ mesh D000311 Adrenal Glands skos:exactMatch ncit C12666 Adrenal Gland lexical 0. mesh D000312 Adrenal Hyperplasia, Congenital skos:exactMatch ncit C34360 Congenital Adrenal Hyperplasia lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000314 Adrenal Rest Tumor skos:exactMatch ncit C2860 Adrenal Rest Tumor lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000315 Adrenalectomy skos:exactMatch ncit C15177 Adrenalectomy lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D000322 Adrenergic Agonists skos:exactMatch chebi CHEBI:37886 adrenergic agonist lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D000322 Adrenergic Agonists skos:exactMatch ncit C87053 Adrenergic Agonist lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000326 Adrenoleukodystrophy skos:exactMatch ncit C61252 Adrenoleukodystrophy lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000327 Adsorption skos:exactMatch ncit C157206 Adsorption lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -16343,7 +28780,6 @@ mesh D000333 Aeromonas skos:exactMatch ncit C86124 Aeromonas lexical 0.95 https: mesh D000344 Afferent Pathways skos:exactMatch ncit C13080 Afferent Pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000346 Afghanistan skos:exactMatch ncit C16267 Afghanistan lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000347 Afibrinogenemia skos:exactMatch ncit C98130 Afibrinogenemia lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D000348 Aflatoxins skos:exactMatch chebi CHEBI:22271 aflatoxin lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D000348 Aflatoxins skos:exactMatch ncit C213 Aflatoxin lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000349 Africa skos:exactMatch ncit C26272 Africa lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000361 Agammaglobulinemia skos:exactMatch ncit C26931 Hypogammaglobulinemia lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -16351,7 +28787,6 @@ mesh D000363 Agaricales skos:exactMatch ncit C71949 Mushroom lexical 0.95 https: mesh D000370 Ageusia skos:exactMatch ncit C116374 Ageusia lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000371 Agglutination skos:exactMatch go GO:0007157 heterophilic cell-cell adhesion via plasma membrane cell adhesion molecules lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000375 Aging skos:exactMatch ncit C16269 Aging lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D000377 Agnosia skos:exactMatch ncit C84542 Agnosia lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000379 Agoraphobia skos:exactMatch ncit C34362 Agoraphobia lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000380 Agranulocytosis skos:exactMatch hp HP:0012234 Agranulocytosis lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000383 Agriculture skos:exactMatch ncit C16270 Agriculture lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -16372,7 +28807,6 @@ mesh D000425 Alcohol Amnestic Disorder skos:exactMatch ncit C34366 Alcohol-Induc mesh D000428 Alcohol Drinking skos:exactMatch ncit C16273 Alcohol Consumption lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000434 Alcoholic Beverages skos:exactMatch ncit C45902 Alcoholic Beverage lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000437 Alcoholism skos:exactMatch hp HP:0030955 Alcoholism lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D000438 Alcohols skos:exactMatch chebi CHEBI:30879 alcohol lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D000438 Alcohols skos:exactMatch ncit C218 Alcohol [Chemical Class] lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000444 Aldehyde Dehydrogenase skos:exactMatch ncit C118481 Aldehyde Dehydrogenase lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000449 Aldehyde Reductase skos:exactMatch hgnc 381 AKR1B1 lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py @@ -16380,11 +28814,8 @@ mesh D000449 Aldehyde Reductase skos:exactMatch ncit C133811 Aldose Reductase le mesh D000455 Medicago sativa skos:exactMatch ncit C72038 Alfalfa lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000460 Chlorophyta skos:exactMatch ncit C114082 Chlorophyta lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000462 Algeria skos:exactMatch ncit C16274 Algeria lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D000463 Algestone Acetophenide skos:exactMatch chebi CHEBI:49327 algestone acetophenide lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D000463 Algestone Acetophenide skos:exactMatch ncit C90968 Algestone Acetophenide lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D000464 Alginates skos:exactMatch chebi CHEBI:17548 alginic acid lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000465 Algorithms skos:exactMatch ncit C16275 Algorithm lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D000470 Alkaloids skos:exactMatch chebi CHEBI:22315 alkaloid lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D000470 Alkaloids skos:exactMatch ncit C221 Alkaloid lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000472 Alkalosis, Respiratory skos:exactMatch ncit C50729 Respiratory Alkalosis lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000474 Alkaptonuria skos:exactMatch ncit C84546 Alkaptonuria lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -16394,8 +28825,6 @@ mesh D000477 Alkylating Agents skos:exactMatch ncit C223 Alkylating Agent lexica mesh D000478 Alkylation skos:exactMatch ncit C40468 Alkylation Process lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000482 Allantois skos:exactMatch ncit C34101 Allantois lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000483 Alleles skos:exactMatch ncit C16277 Allele lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D000487 Allethrin skos:exactMatch chebi CHEBI:34572 allethrin lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py -mesh D000496 Alloxan skos:exactMatch chebi CHEBI:76451 alloxan lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D000496 Alloxan skos:exactMatch ncit C83525 Alloxan lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000502 Allylisopropylacetamide skos:exactMatch ncit C64186 Allylisopropylacetamide lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000505 Alopecia skos:exactMatch ncit C50575 Alopecia lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -16413,21 +28842,14 @@ mesh D000520 alpha-Glucosidases skos:exactMatch hgnc 7043 MGAM lexical 0.95 http mesh D000521 alpha-MSH skos:exactMatch ncit C114797 Melanotropin Alpha lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000522 Alphaprodine skos:exactMatch chebi CHEBI:135075 alphaprodine lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D000522 Alphaprodine skos:exactMatch ncit C83528 Alphaprodine lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D000526 Alprenolol skos:exactMatch chebi CHEBI:51211 alprenolol lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D000527 Alprostadil skos:exactMatch chebi CHEBI:15544 prostaglandin E1 lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000528 Alternaria skos:exactMatch ncit C119320 Alternaria lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D000536 Aluminum Hydroxide skos:exactMatch chebi CHEBI:33130 aluminium hydroxide lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py -mesh D000536 Aluminum Hydroxide skos:exactMatch ncit C39707 Aluminum Hydroxide lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D000537 Aluminum Oxide skos:exactMatch chebi CHEBI:30187 aluminium oxide lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D000537 Aluminum Oxide skos:exactMatch ncit C77450 Aluminum Oxide lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000542 Alveolitis, Extrinsic Allergic skos:exactMatch ncit C34369 Extrinsic Allergic Alveolitis lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000543 Alveoloplasty skos:exactMatch ncit C63753 Alveoloplasty lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D000544 Alzheimer Disease skos:exactMatch efo 1001870 late-onset Alzheimers disease lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D000548 Amaranth Dye skos:exactMatch ncit C71677 Amaranth Dye lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D000549 Ambenonium Chloride skos:exactMatch chebi CHEBI:2628 ambenonium chloride lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D000549 Ambenonium Chloride skos:exactMatch ncit C47388 Ambenonium Chloride lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000550 Amblyopia skos:exactMatch ncit C118764 Amblyopia lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D000551 Ambroxol skos:exactMatch chebi CHEBI:135590 ambroxol lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D000551 Ambroxol skos:exactMatch ncit C74262 Ambroxol lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000554 Ambulatory Care Facilities skos:exactMatch ncit C16281 Ambulatory Care Facility lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000556 Ambulatory Surgical Procedures skos:exactMatch ncit C51997 Ambulatory Surgical Procedure lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -16449,52 +28871,38 @@ mesh D000585 Aminacrine skos:exactMatch ncit C77023 Aminacrine lexical 0.95 http mesh D000595 Amino Acid Sequence skos:exactMatch ncit C13187 Amino Acid Sequence lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000612 4-Aminobutyrate Transaminase skos:exactMatch hgnc 23 ABAT lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000615 Aminoethylphosphonic Acid skos:exactMatch chebi CHEBI:15573 (2-aminoethyl)phosphonic acid lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D000616 Aminoglutethimide skos:exactMatch chebi CHEBI:2654 aminoglutethimide lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D000616 Aminoglutethimide skos:exactMatch ncit C233 Aminoglutethimide lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D000617 Aminoglycosides skos:exactMatch chebi CHEBI:47779 aminoglycoside lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D000617 Aminoglycosides skos:exactMatch ncit C2363 Aminoglycoside Antibiotic lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D000622 Aminolevulinic Acid skos:exactMatch chebi CHEBI:17549 5-aminolevulinic acid lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D000622 Aminolevulinic Acid skos:exactMatch ncit C234 Aminolevulinic Acid lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000623 Porphobilinogen Synthase skos:exactMatch hgnc 395 ALAD lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000629 Aminopropionitrile skos:exactMatch chebi CHEBI:27413 beta-aminopropionitrile lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000630 Aminopterin skos:exactMatch chebi CHEBI:22526 4-aminofolic acid lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D000630 Aminopterin skos:exactMatch ncit C235 Aminopterin lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000632 Aminopyrine skos:exactMatch chebi CHEBI:160246 aminophenazone lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D000635 Aminorex skos:exactMatch chebi CHEBI:134792 aminorex lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D000635 Aminorex skos:exactMatch ncit C72180 Aminorex lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000643 Ammonium Chloride skos:exactMatch ncit C47396 Ammonium Chloride lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D000645 Ammonium Sulfate skos:exactMatch chebi CHEBI:62946 ammonium sulfate lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D000645 Ammonium Sulfate skos:exactMatch ncit C76740 Ammonium Sulfate lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000648 Amnesia, Retrograde skos:exactMatch ncit C34372 Retrograde Amnesia lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000649 Amniocentesis skos:exactMatch ncit C52009 Amniocentesis lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D000650 Amnion skos:exactMatch efo 0003028 acute myeloblastic leukemia with maturation lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000652 Amniotic Band Syndrome skos:exactMatch ncit C84552 Amniotic Band Syndrome lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000653 Amniotic Fluid skos:exactMatch ncit C13188 Amniotic Fluid lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000656 Amoeba skos:exactMatch ncit C119581 Amoeba lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D000657 Amoxapine skos:exactMatch chebi CHEBI:2675 amoxapine lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D000659 AMP Deaminase skos:exactMatch hgnc 468 AMPD1 lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000663 Amphibians skos:exactMatch ncit C14180 Amphibia lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D000666 Amphotericin B skos:exactMatch chebi CHEBI:2682 amphotericin B lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D000666 Amphotericin B skos:exactMatch ncit C238 Amphotericin B lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D000670 Amprolium skos:exactMatch chebi CHEBI:85265 amprolium lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D000670 Amprolium skos:exactMatch ncit C142371 Amprolium lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D000671 Amputation skos:exactMatch efo 0009632 amputation lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D000671 Amputation skos:exactMatch ncit C15179 Amputation lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000675 Ampyrone skos:exactMatch chebi CHEBI:59026 4-aminoantipyrine lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000676 Amrinone skos:exactMatch chebi CHEBI:2686 amrinone lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D000676 Amrinone skos:exactMatch ncit C61789 Inamrinone lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D000677 Amsacrine skos:exactMatch chebi CHEBI:2687 amsacrine lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py -mesh D000678 Amygdalin skos:exactMatch chebi CHEBI:27613 amygdalin lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D000678 Amygdalin skos:exactMatch ncit C28801 Amygdalin lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000680 Amyl Nitrite skos:exactMatch chebi CHEBI:55344 n-pentyl nitrite lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D000680 Amyl Nitrite skos:exactMatch ncit C87278 Amyl Nitrite lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000681 Amylases skos:exactMatch ncit C98780 Salivary Amylase Measurement lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000683 Serum Amyloid P-Component skos:exactMatch hgnc 584 APCS lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D000685 Serum Amyloid A Protein skos:exactMatch chebi CHEBI:138152 serum amyloid A lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D000685 Serum Amyloid A Protein skos:exactMatch ncit C105940 Serum Amyloid A lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000686 Amyloidosis skos:exactMatch ncit C2868 Amyloidosis lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000690 Amyotrophic Lateral Sclerosis skos:exactMatch ncit C34373 Amyotrophic Lateral Sclerosis lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D000691 Anabasine skos:exactMatch chebi CHEBI:74 (S)-anabasine lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000695 Anal Sacs skos:exactMatch ncit C125896 Anal Sac lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000700 Analgesics skos:exactMatch ncit C241 Analgesic Agent lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000704 Analysis of Variance skos:exactMatch ncit C53241 Analysis of Variance lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -16512,7 +28920,6 @@ mesh D000723 Ancylostomatoidea skos:exactMatch ncit C123646 Ancylostomatoidea le mesh D000724 Ancylostomiasis skos:exactMatch ncit C35805 Ancylostomiasis lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000725 Andorra skos:exactMatch ncit C16289 Andorra lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000726 Androgen Antagonists skos:exactMatch ncit C242 Anti-Androgen lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D000728 Androgens skos:exactMatch chebi CHEBI:50113 androgen lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D000728 Androgens skos:exactMatch ncit C243 Therapeutic Androgen lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000735 Androstenedione skos:exactMatch chebi CHEBI:16422 androst-4-ene-3,17-dione lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000741 Anemia, Aplastic skos:exactMatch ncit C2870 Aplastic Anemia lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -16534,12 +28941,9 @@ mesh D000768 Anesthesia, General skos:exactMatch ncit C64380 General Anesthesia mesh D000772 Anesthesia, Local skos:exactMatch ncit C81260 Local Anesthesia Procedure lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000775 Anesthesia, Spinal skos:exactMatch ncit C92887 Spinal Block lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000776 Anesthesiology skos:exactMatch ncit C86047 Anesthesiology lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D000777 Anesthetics skos:exactMatch chebi CHEBI:38867 anaesthetic lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D000777 Anesthetics skos:exactMatch ncit C245 Anesthetic Agent lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000781 Anethole Trithione skos:exactMatch chebi CHEBI:31221 Anetholtrithion lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D000782 Aneuploidy skos:exactMatch ncit C2873 Aneuploidy lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D000783 Aneurysm skos:exactMatch efo 0009659 aneurysm lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py -mesh D000783 Aneurysm skos:exactMatch ncit C26693 Aneurysm lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000784 Aneurysm, Dissecting skos:exactMatch ncit C26694 Dissecting Aneurysm lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000786 Anger skos:exactMatch ncit C73506 Anger lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000787 Angina Pectoris skos:exactMatch ncit C51221 Angina lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -16553,13 +28957,9 @@ mesh D000798 Angiomatosis skos:exactMatch ncit C27503 Angiomatosis lexical 0.95 mesh D000799 Angioedema skos:exactMatch ncit C112175 Angioedema lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000800 Angioplasty, Balloon skos:exactMatch ncit C93007 Balloon Angioplasty lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000801 Angiostrongylus skos:exactMatch ncit C122042 Angiostrongylus lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D000802 Angiotensin Amide skos:exactMatch chebi CHEBI:135950 angiotensinamide lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D000802 Angiotensin Amide skos:exactMatch ncit C77008 Angiotensin Amide lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D000806 Angiotensin-Converting Enzyme Inhibitors skos:exactMatch chebi CHEBI:35457 EC 3.4.15.1 (peptidyl-dipeptidase A) inhibitor lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D000808 Angiotensinogen skos:exactMatch chebi CHEBI:2720 Angiotensinogen lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D000810 Angola skos:exactMatch ncit C16292 Angola lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000811 Anguilla skos:exactMatch ncit C20133 Anguilla lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D000814 Aniline Compounds skos:exactMatch chebi CHEBI:22562 anilines lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000816 Aniline Mustard skos:exactMatch ncit C249 Aniline Mustard lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000818 Animals skos:exactMatch ncit C14182 Animal lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000822 Animal Husbandry skos:exactMatch ncit C16293 Animal Husbandry lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -16572,23 +28972,15 @@ mesh D000844 Ankylosis skos:exactMatch hp HP:0031013 Ankylosis lexical 0.95 http mesh D000849 Anomia skos:exactMatch ncit C34386 Anomia lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000853 Anophthalmos skos:exactMatch ncit C98814 Anophthalmos lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000856 Anorexia Nervosa skos:exactMatch ncit C34387 Anorexia Nervosa lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D000860 Hypoxia skos:exactMatch efo 0009444 hypoxia lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D000861 Anserine skos:exactMatch chebi CHEBI:18323 anserine lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py -mesh D000863 Antacids skos:exactMatch chebi CHEBI:65265 antacid lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D000863 Antacids skos:exactMatch ncit C29633 Antacid Preparation lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000864 Antarctic Regions skos:exactMatch ncit C18007 Antarctica lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D000865 Antazoline skos:exactMatch chebi CHEBI:84115 antazoline lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D000865 Antazoline skos:exactMatch ncit C61638 Antazoline lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000870 Anterior Horn Cells skos:exactMatch ncit C23579 Anterior Horn Cells lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D000871 Anthelmintics skos:exactMatch chebi CHEBI:35443 anthelminthic drug lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D000871 Anthelmintics skos:exactMatch ncit C250 Antihelminthic Agent lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D000872 Anthocyanins skos:exactMatch chebi CHEBI:38697 anthocyanin lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D000872 Anthocyanins skos:exactMatch ncit C112040 Anthocyanin lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000874 Anthracosilicosis skos:exactMatch ncit C34389 Anthracosilicosis lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D000875 Anthralin skos:exactMatch chebi CHEBI:37510 anthralin lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D000875 Anthralin skos:exactMatch ncit C28827 Anthralin lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000876 Anthramycin skos:exactMatch ncit C252 Anthramycin lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D000880 Anthraquinones skos:exactMatch chebi CHEBI:22580 anthraquinone lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D000880 Anthraquinones skos:exactMatch ncit C253 Anthraquinone Analogue lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000881 Anthrax skos:exactMatch ncit C84565 Anthrax lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000883 Anthropology skos:exactMatch ncit C16294 Anthropology lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -16600,18 +28992,14 @@ mesh D000906 Antibodies skos:exactMatch ncit C16295 Antibody lexical 0.95 https: mesh D000910 Antibodies, Heterophile skos:exactMatch ncit C81984 Heterophile Antibody Measurement lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000921 Antibody-Producing Cells skos:exactMatch ncit C12611 Antibody-Producing Cell lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000922 Immunotoxins skos:exactMatch ncit C575 Immunotoxin lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D000925 Anticoagulants skos:exactMatch chebi CHEBI:50249 anticoagulant lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D000925 Anticoagulants skos:exactMatch ncit C263 Anticoagulant Agent lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000927 Anticonvulsants skos:exactMatch ncit C264 Anticonvulsant Agent lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D000928 Antidepressive Agents skos:exactMatch chebi CHEBI:35469 antidepressant lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D000928 Antidepressive Agents skos:exactMatch ncit C265 Antidepressant Agent lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000929 Antidepressive Agents, Tricyclic skos:exactMatch ncit C100420 Tricyclic Antidepressant Measurement lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D000930 Antidiarrheals skos:exactMatch chebi CHEBI:55323 antidiarrhoeal drug lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D000930 Antidiarrheals skos:exactMatch ncit C266 Antidiarrheal Agent lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000932 Antiemetics skos:exactMatch ncit C267 Antiemetic Agent lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000938 Antigen-Presenting Cells skos:exactMatch ncit C23555 Antigen-Presenting Cells lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000939 Epitopes skos:exactMatch ncit C13189 Epitope lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D000941 Antigens skos:exactMatch chebi CHEBI:59132 antigen lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D000941 Antigens skos:exactMatch ncit C268 Antigen lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000954 Antigens, Surface skos:exactMatch ncit C269 Cell Surface Antigen lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000957 Antigens, Viral, Tumor skos:exactMatch chebi CHEBI:16981 O-(3-O-D-galactosyl-N-acetyl-beta-D-galactosaminyl)-L-serine lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py @@ -16621,29 +29009,22 @@ mesh D000959 Antihypertensive Agents skos:exactMatch ncit C270 Antihypertensive mesh D000960 Hypolipidemic Agents skos:exactMatch chebi CHEBI:35679 antilipemic drug lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000961 Antilymphocyte Serum skos:exactMatch ncit C62577 Antilymphocyte Serum lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000962 Antimalarials skos:exactMatch ncit C271 Antimalarial Agent lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D000963 Antimetabolites skos:exactMatch chebi CHEBI:35221 antimetabolite lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D000963 Antimetabolites skos:exactMatch ncit C272 Antimetabolite lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000965 Antimony skos:exactMatch ncit C95187 Antimony lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000966 Antimony Potassium Tartrate skos:exactMatch chebi CHEBI:2761 dipotassium bis[mu-tartrato(4-)]diantimonate(2-) trihydrate lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D000966 Antimony Potassium Tartrate skos:exactMatch ncit C76863 Antimony Potassium Tartrate lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D000967 Antimony Sodium Gluconate skos:exactMatch chebi CHEBI:28148 sodium stibogluconate lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py -mesh D000967 Antimony Sodium Gluconate skos:exactMatch ncit C61083 Sodium Stibogluconate lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D000970 Antineoplastic Agents skos:exactMatch chebi CHEBI:35610 antineoplastic agent lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D000970 Antineoplastic Agents skos:exactMatch ncit C274 Antineoplastic Agent lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000974 Antibodies, Antinuclear skos:exactMatch hp HP:0003493 Antinuclear antibody positivity lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py -mesh D000977 Antiparasitic Agents skos:exactMatch chebi CHEBI:35442 antiparasitic agent lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D000977 Antiparasitic Agents skos:exactMatch ncit C276 Antiparasitic Agent lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000979 alpha-2-Antiplasmin skos:exactMatch hgnc 9075 SERPINF2 lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000987 Antisocial Personality Disorder skos:exactMatch ncit C88413 Antisocial Personality Disorder lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D000990 Antithrombin III skos:exactMatch hgnc 775 SERPINC1 lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D000996 Antitussive Agents skos:exactMatch chebi CHEBI:51177 antitussive lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D000996 Antitussive Agents skos:exactMatch ncit C66917 Antitussive Agent lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D001002 Anuria skos:exactMatch ncit C114699 Anuria lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D001003 Anal Canal skos:exactMatch ncit C12375 Anal Canal lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D001004 Anus Diseases skos:exactMatch ncit C26695 Anal Disorder lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D001005 Anus Neoplasms skos:exactMatch ncit C2877 Anal Neoplasm lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D001006 Anus, Imperforate skos:exactMatch ncit C84784 Imperforate Anus lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D001012 Aorta, Abdominal skos:exactMatch ncit C32038 Abdominal Aorta lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D001013 Aorta, Thoracic skos:exactMatch ncit C33766 Thoracic Aorta lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D001014 Aortic Aneurysm skos:exactMatch ncit C26697 Aortic Aneurysm lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D001015 Aortic Arch Syndromes skos:exactMatch ncit C34391 Aortic Arch Syndrome lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -16656,7 +29037,6 @@ mesh D001021 Aortic Valve skos:exactMatch ncit C12670 Aortic Valve lexical 0.95 mesh D001022 Aortic Valve Insufficiency skos:exactMatch ncit C51223 Aortic Valve Insufficiency lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D001025 Aortitis skos:exactMatch ncit C97085 Aortitis lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D001026 Coronary Artery Bypass skos:exactMatch ncit C51998 Coronary Artery Bypass Surgery lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D001032 Apazone skos:exactMatch chebi CHEBI:38010 apazone lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D001034 Apgar Score skos:exactMatch ncit C73437 Apgar Score lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D001035 Aphakia skos:exactMatch ncit C34392 Aphakia lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D001037 Aphasia skos:exactMatch ncit C34393 Aphasia lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -16664,10 +29044,8 @@ mesh D001039 Aphasia, Broca skos:exactMatch ncit C34394 Broca's Aphasia lexical mesh D001047 Apicoectomy skos:exactMatch ncit C63716 Apicoectomy lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D001050 Apocrine Glands skos:exactMatch ncit C12712 Exocrine Gland lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D001057 Apolipoproteins E skos:exactMatch hgnc 613 APOE lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D001058 Apomorphine skos:exactMatch chebi CHEBI:48538 apomorphine lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D001058 Apomorphine skos:exactMatch ncit C61639 Apomorphine lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D001063 Appendiceal Neoplasms skos:exactMatch ncit C4434 Appendix Neoplasm lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D001073 Aprindine skos:exactMatch chebi CHEBI:135370 aprindine lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D001073 Aprindine skos:exactMatch ncit C77975 Aprindine lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D001078 APUD Cells skos:exactMatch ncit C12655 APUD Cell lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D001079 Apudoma skos:exactMatch ncit C2879 Neoplasm of the Diffuse Neuroendocrine System lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -16675,7 +29053,6 @@ mesh D001082 Aqueous Humor skos:exactMatch ncit C13190 Aqueous Humor lexical 0.9 mesh D001084 Vidarabine Phosphate skos:exactMatch ncit C90789 Vidarabine Phosphate lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D001085 Arabinofuranosylcytosine Triphosphate skos:exactMatch ncit C105950 Arabinofuranosylcytosine Triphosphate lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D001086 Arabinofuranosyluracil skos:exactMatch chebi CHEBI:68346 arauridine lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D001089 Arabinose skos:exactMatch chebi CHEBI:22599 arabinose lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D001089 Arabinose skos:exactMatch ncit C68485 Arabinose lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D001093 Arachidonate 15-Lipoxygenase skos:exactMatch ncit C21336 Arachidonate 15-Lipoxygenase lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D001094 Arachidonate 5-Lipoxygenase skos:exactMatch hgnc 435 ALOX5 lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py @@ -16686,7 +29063,6 @@ mesh D001104 Arbutin skos:exactMatch chebi CHEBI:18305 hydroquinone O-beta-D-glu mesh D001105 Archaea skos:exactMatch ncit C61092 Archaea lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D001108 Architecture skos:exactMatch ncit C16304 Architecture lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D001111 Arcuate Nucleus of Hypothalamus skos:exactMatch ncit C52711 Arcuate Nucleus lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D001115 Arecoline skos:exactMatch chebi CHEBI:2814 arecoline lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D001115 Arecoline skos:exactMatch ncit C76610 Arecoline lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D001118 Argentina skos:exactMatch ncit C16305 Argentina lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D001121 Lysine Carboxypeptidase skos:exactMatch hgnc 2312 CPN1 lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -16724,7 +29100,6 @@ mesh D001183 Arthus Reaction skos:exactMatch ncit C34400 Arthus Reaction lexical mesh D001185 Artificial Intelligence skos:exactMatch ncit C16309 Artificial Intelligence lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D001188 Artiodactyla skos:exactMatch ncit C79105 Artiodactyla lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D001193 Arytenoid Cartilage skos:exactMatch ncit C32148 Arytenoid Cartilage lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D001194 Asbestos skos:exactMatch chebi CHEBI:46661 asbestos lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D001194 Asbestos skos:exactMatch ncit C284 Asbestos lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D001195 Asbestosis skos:exactMatch ncit C84573 Asbestosis lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D001196 Ascariasis skos:exactMatch ncit C128392 Ascariasis lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -16745,10 +29120,7 @@ mesh D001231 Aspergillus flavus skos:exactMatch ncit C77181 Aspergillus flavus l mesh D001232 Aspergillus fumigatus skos:exactMatch ncit C77182 Aspergillus fumigatus lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D001235 Aspergillus ochraceus skos:exactMatch ncit C87508 Aspergillus ochraceus lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D001236 Aspergillus oryzae skos:exactMatch ncit C87507 Aspergillus flavus var. oryzae lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D001237 Asphyxia skos:exactMatch efo 0009446 asphyxia lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py -mesh D001237 Asphyxia skos:exactMatch ncit C50465 Asphyxia lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D001239 Inhalation skos:exactMatch ncit C25735 Inspiration lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D001241 Aspirin skos:exactMatch chebi CHEBI:15365 acetylsalicylic acid lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D001241 Aspirin skos:exactMatch ncit C287 Aspirin lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D001246 Astatine skos:exactMatch chebi CHEBI:30415 astatine atom lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D001247 Asthenia skos:exactMatch hp HP:0025406 Asthenia lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -16768,16 +29140,13 @@ mesh D001272 Atmosphere skos:exactMatch ncit C54711 Atmosphere lexical 0.95 http mesh D001275 ATP Citrate (pro-S)-Lyase skos:exactMatch hgnc 115 ACLY lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D001275 ATP Citrate (pro-S)-Lyase skos:exactMatch ncit C107109 ATP-Citrate Synthase lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D001283 Atrioventricular Node skos:exactMatch ncit C32161 Atrioventricular Node lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D001284 Atrophy skos:exactMatch efo 1000096 Atrophy lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D001288 Attention skos:exactMatch ncit C41209 Attention Concentration lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D001290 Attitude skos:exactMatch ncit C72885 Outlook lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D001298 Audiology skos:exactMatch ncit C61153 Audiology lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D001300 Audiometry, Evoked Response skos:exactMatch ncit C85857 Evoked Response Audiometry lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D001303 Auditory Cortex skos:exactMatch ncit C52712 Auditory Cortex lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D001308 Auditory Perceptual Disorders skos:exactMatch ncit C84575 Auditory Perceptual Disorder lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D001310 Auranofin skos:exactMatch chebi CHEBI:2922 auranofin lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D001310 Auranofin skos:exactMatch ncit C65242 Auranofin lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D001312 Aurintricarboxylic Acid skos:exactMatch chebi CHEBI:87397 aurintricarboxylic acid lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D001314 Auscultation skos:exactMatch ncit C85573 Auscultation lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D001315 Australia skos:exactMatch ncit C16311 Australia lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D001317 Austria skos:exactMatch ncit C16312 Austria lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -16796,9 +29165,7 @@ mesh D001373 Azacosterol skos:exactMatch ncit C79819 Azacosterol lexical 0.95 ht mesh D001374 Azacitidine skos:exactMatch chebi CHEBI:2038 5-azacytidine lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D001374 Azacitidine skos:exactMatch ncit C288 Azacitidine lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D001375 Azaguanine skos:exactMatch chebi CHEBI:63486 8-azaguanine lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py -mesh D001376 Azaperone skos:exactMatch chebi CHEBI:88301 azaperone lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D001376 Azaperone skos:exactMatch ncit C74187 Azaperone lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D001377 Azaserine skos:exactMatch chebi CHEBI:74846 azaserine lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D001377 Azaserine skos:exactMatch ncit C289 Azaserine lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D001379 Azathioprine skos:exactMatch chebi CHEBI:2948 azathioprine lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D001379 Azathioprine skos:exactMatch ncit C290 Azathioprine lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -16806,12 +29173,9 @@ mesh D001380 Azauridine skos:exactMatch chebi CHEBI:35668 6-azauridine lexical 0 mesh D001382 Azerbaijan skos:exactMatch ncit C16316 Azerbaijan lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D001383 Azetidinecarboxylic Acid skos:exactMatch chebi CHEBI:46891 azetidinecarboxylic acid lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D001387 Azinphosmethyl skos:exactMatch chebi CHEBI:2953 azinphos-methyl lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py -mesh D001388 Aziridines skos:exactMatch chebi CHEBI:22681 aziridines lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D001388 Aziridines skos:exactMatch ncit C292 Ethylenimine Compound lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D001390 Azlocillin skos:exactMatch chebi CHEBI:2956 azlocillin lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D001390 Azlocillin skos:exactMatch ncit C293 Azlocillin lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D001397 Azoxymethane skos:exactMatch ncit C294 Azoxymethane lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D001398 Aztreonam skos:exactMatch chebi CHEBI:161680 aztreonam lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D001398 Aztreonam skos:exactMatch ncit C28845 Aztreonam lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D001401 Azygos Vein skos:exactMatch ncit C53029 Azygos Vein lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D001402 B-Lymphocytes skos:exactMatch ncit C23408 B-Lymphocytes lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -16826,7 +29190,6 @@ mesh D001409 Bacillus cereus skos:exactMatch ncit C86161 Bacillus cereus lexical mesh D001410 Bacillus megaterium skos:exactMatch ncit C86164 Bacillus megaterium lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D001412 Bacillus subtilis skos:exactMatch ncit C86167 Bacillus subtilis lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D001417 Background Radiation skos:exactMatch ncit C16318 Low-Level Radiation lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D001418 Baclofen skos:exactMatch chebi CHEBI:2972 baclofen lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D001418 Baclofen skos:exactMatch ncit C28858 Baclofen lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D001419 Bacteria skos:exactMatch ncit C14187 Bacteria lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D001421 Bacteria, Anaerobic skos:exactMatch ncit C119321 Anaerobic Bacteria lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -16850,10 +29213,8 @@ mesh D001458 Bandages skos:exactMatch ncit C69012 Bandage Dosage Form lexical 0. mesh D001459 Bangladesh skos:exactMatch ncit C16323 Bangladesh lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D001460 Barbados skos:exactMatch ncit C16324 Barbados lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D001462 Barbital skos:exactMatch chebi CHEBI:31252 5,5-diethylbarbituric acid lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D001463 Barbiturates skos:exactMatch chebi CHEBI:22693 barbiturates lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D001463 Barbiturates skos:exactMatch ncit C74688 Barbiturate Drug Class Measurement lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D001464 Barium skos:exactMatch ncit C61475 Barium lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D001466 Barium Sulfate skos:exactMatch chebi CHEBI:133326 barium sulfate lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D001466 Barium Sulfate skos:exactMatch ncit C28859 Barium Sulfate lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D001471 Barrett Esophagus skos:exactMatch efo 0000478 esophageal adenocarcinoma lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D001471 Barrett Esophagus skos:exactMatch ncit C2891 Barrett Esophagus lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -16866,7 +29227,6 @@ mesh D001484 Baseball skos:exactMatch ncit C94742 Baseball lexical 0.95 https:// mesh D001485 Basement Membrane skos:exactMatch ncit C13191 Basement Membrane lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D001487 Basidiomycota skos:exactMatch ncit C77169 Basidiomycota lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D001489 Basilar Membrane skos:exactMatch ncit C13179 Basilar Membrane lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D001500 BCG Vaccine skos:exactMatch ncit C298 BCG Vaccine lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D001506 Beckwith-Wiedemann Syndrome skos:exactMatch ncit C34415 Beckwith-Wiedemann Syndrome lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D001510 Bed Rest skos:exactMatch ncit C45985 Bed Rest lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D001513 Beds skos:exactMatch ncit C50367 Bed lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -16882,20 +29242,15 @@ mesh D001531 Belize skos:exactMatch ncit C16331 Belize lexical 0.95 https://gith mesh D001534 Bemegride skos:exactMatch ncit C76617 Bemegride lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D001535 Benactyzine skos:exactMatch ncit C81454 Benactyzine lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D001536 Bence Jones Protein skos:exactMatch ncit C301 Bence Jones Protein lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D001537 Bencyclane skos:exactMatch chebi CHEBI:135205 bencyclane lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D001537 Bencyclane skos:exactMatch ncit C74226 Bencyclane lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D001544 Benperidol skos:exactMatch ncit C81086 Benperidol lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D001545 Benserazide skos:exactMatch chebi CHEBI:64187 benserazide lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D001545 Benserazide skos:exactMatch ncit C81109 Benserazide lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D001546 Bentonite skos:exactMatch chebi CHEBI:133354 bentonite lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D001546 Bentonite skos:exactMatch ncit C80916 Bentonite lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D001555 Benzene Derivatives skos:exactMatch ncit C36251 Benzene Exposure lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D001558 Benzethonium skos:exactMatch ncit C87255 Benzethonium lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D001574 Benzolamide skos:exactMatch ncit C96537 Benzolamide lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D001585 Benzoyl Peroxide skos:exactMatch chebi CHEBI:82405 Benzoyl peroxide lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D001585 Benzoyl Peroxide skos:exactMatch ncit C47411 Benzoyl Peroxide lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D001587 Benzoylarginine-2-Naphthylamide skos:exactMatch chebi CHEBI:91062 N-benzoyl-DL-arginine 2-naphthylamide lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D001591 Benzydamine skos:exactMatch chebi CHEBI:94563 benzydamine lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D001591 Benzydamine skos:exactMatch ncit C83548 Benzydamine lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D001601 Bereavement skos:exactMatch ncit C8499 Loss, Grief, and Bereavement lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D001605 Bermuda skos:exactMatch ncit C16334 Bermuda lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -16904,15 +29259,10 @@ mesh D001610 Beta Particles skos:exactMatch ncit C94864 Beta Particle lexical 0. mesh D001613 beta 2-Microglobulin skos:exactMatch ncit C81980 Beta-2 Microglobulin Measurement lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D001619 beta-N-Acetylhexosaminidases skos:exactMatch hgnc 7056 OGA lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D001620 beta-Thromboglobulin skos:exactMatch ncit C20468 Beta-Thromboglobulin lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D001621 Betahistine skos:exactMatch chebi CHEBI:35677 betahistine lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D001621 Betahistine skos:exactMatch ncit C83554 Betahistine lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D001622 Betaine skos:exactMatch chebi CHEBI:17750 glycine betaine lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D001623 Betamethasone skos:exactMatch chebi CHEBI:3077 betamethasone lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py -mesh D001624 Betamethasone Valerate skos:exactMatch chebi CHEBI:31277 betamethasone valerate lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D001624 Betamethasone Valerate skos:exactMatch ncit C47962 Betamethasone Valerate lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D001625 Betazole skos:exactMatch chebi CHEBI:59170 betazole lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D001625 Betazole skos:exactMatch ncit C65258 Betazole lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D001627 Bethanidine skos:exactMatch chebi CHEBI:37937 bethanidine lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D001627 Bethanidine skos:exactMatch ncit C81343 Bethanidine lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D001628 Beverages skos:exactMatch ncit C85058 Beverage lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D001629 Bezafibrate skos:exactMatch chebi CHEBI:47612 bezafibrate lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py @@ -16930,7 +29280,6 @@ mesh D001654 Bile Pigments skos:exactMatch ncit C304 Bile Pigment lexical 0.95 h mesh D001656 Biliary Atresia skos:exactMatch ncit C34421 Biliary Atresia lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D001659 Biliary Tract skos:exactMatch ncit C12678 Biliary Tract lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D001663 Bilirubin skos:exactMatch chebi CHEBI:16990 bilirubin IXalpha lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D001664 Biliverdine skos:exactMatch chebi CHEBI:17033 biliverdin lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D001665 Binding Sites skos:exactMatch ncit C13671 Ligand Binding Domain lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D001666 Binding Sites, Antibody skos:exactMatch ncit C13193 Antibody Binding Site lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D001671 Biochemistry skos:exactMatch ncit C16337 Biochemistry lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -16953,7 +29302,6 @@ mesh D001709 Biotechnology skos:exactMatch ncit C16351 Biotechnology lexical 0.9 mesh D001712 Biperiden skos:exactMatch chebi CHEBI:3112 biperiden lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D001712 Biperiden skos:exactMatch ncit C65263 Biperiden lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D001714 Bipolar Disorder skos:exactMatch ncit C34423 Bipolar Disorder lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D001716 Bird Fancier's Lung skos:exactMatch ncit C34425 Bird Fancier's Lung lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D001717 Birds skos:exactMatch ncit C14189 Aves lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D001720 Birth Injuries skos:exactMatch ncit C101035 Neonatal Injury Related to Birth lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D001722 Birth Order skos:exactMatch ncit C93517 Birth Order lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -16989,7 +29337,6 @@ mesh D001775 Blood Circulation skos:exactMatch ncit C16353 Blood Circulation lex mesh D001778 Blood Coagulation Disorders skos:exactMatch ncit C2902 Coagulation Disorder lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D001779 Blood Coagulation Factors skos:exactMatch ncit C16354 Coagulation Factor lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D001781 Blood Component Removal skos:exactMatch ncit C15191 Pheresis lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D001782 Blood Donors skos:exactMatch efo 0009635 blood donor lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D001782 Blood Donors skos:exactMatch ncit C132448 Blood Donor lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D001784 Blood Gas Analysis skos:exactMatch ncit C71252 Arterial Blood Gas Measurement lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D001786 Blood Glucose skos:exactMatch ncit C94312 Blood Glucose lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -16997,7 +29344,6 @@ mesh D001791 Blood Platelet Disorders skos:exactMatch ncit C131634 Platelet Diso mesh D001792 Blood Platelets skos:exactMatch ncit C23454 Blood Platelets lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D001799 Blood Sedimentation skos:exactMatch ncit C74611 Erythrocyte Sedimentation Rate Measurement lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D001800 Blood Specimen Collection skos:exactMatch efo 0009121 blood draw lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D001802 Blood Substitutes skos:exactMatch chebi CHEBI:38849 blood substitute lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D001802 Blood Substitutes skos:exactMatch ncit C314 Blood Substitute lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D001803 Blood Transfusion skos:exactMatch ncit C15192 Blood Transfusion lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D001804 Blood Transfusion, Autologous skos:exactMatch ncit C50870 Autotransfusion Procedure lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -17028,7 +29374,6 @@ mesh D001905 Botulinum Toxins skos:exactMatch ncit C163032 Botulinum Toxin lexic mesh D001906 Botulism skos:exactMatch ncit C84599 Botulism lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D001916 Brachial Artery skos:exactMatch ncit C12681 Brachial Artery lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D001918 Brachytherapy skos:exactMatch ncit C15195 Internal Radiation Therapy lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D001920 Bradykinin skos:exactMatch chebi CHEBI:3165 bradykinin lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D001922 Brain Abscess skos:exactMatch ncit C27030 Cerebral Abscess lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D001925 Brain Damage, Chronic skos:exactMatch ncit C34435 Chronic Encephalopathy lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D001926 Brain Death skos:exactMatch ncit C116340 Brain Death lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -17056,7 +29401,6 @@ mesh D001958 Brocresine skos:exactMatch ncit C76659 Brocresine lexical 0.95 http mesh D001959 Bromates skos:exactMatch chebi CHEBI:22923 bromate salt lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D001962 Bromcresol Purple skos:exactMatch chebi CHEBI:86154 bromocresol purple lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D001963 Bromelains skos:exactMatch ncit C28134 Bromelains lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D001964 Bromhexine skos:exactMatch chebi CHEBI:77032 bromhexine lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D001964 Bromhexine skos:exactMatch ncit C172826 Bromhexine lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D001965 Bromides skos:exactMatch chebi CHEBI:22925 bromide salt lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D001966 Bromine skos:exactMatch chebi CHEBI:52743 bromine-79 atom lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py @@ -17065,7 +29409,6 @@ mesh D001968 Bromisovalum skos:exactMatch chebi CHEBI:31304 bromisoval lexical 0 mesh D001973 Bromodeoxyuridine skos:exactMatch chebi CHEBI:472552 5-bromo-2'-deoxyuridine lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D001974 Bromosuccinimide skos:exactMatch chebi CHEBI:53174 N-bromosuccinimide lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D001976 Bromouracil skos:exactMatch chebi CHEBI:20552 5-bromouracil lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D001979 Bromthymol Blue skos:exactMatch chebi CHEBI:86155 bromothymol blue lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D001979 Bromthymol Blue skos:exactMatch ncit C47423 Bromthymol Blue lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D001981 Bronchial Arteries skos:exactMatch ncit C32230 Bronchial Artery lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D001987 Bronchiectasis skos:exactMatch ncit C84475 Bronchiectasis lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -17085,18 +29428,13 @@ mesh D002010 Brunei skos:exactMatch ncit C16367 Brunei Darussalam lexical 0.95 h mesh D002012 Bruxism skos:exactMatch ncit C73511 Bruxism lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D002015 Bucrylate skos:exactMatch ncit C171658 Bucrylate lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D002017 Budgets skos:exactMatch ncit C60757 Budget lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D002019 Bufexamac skos:exactMatch chebi CHEBI:31317 bufexamac lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D002019 Bufexamac skos:exactMatch ncit C166783 Bufexamac lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D002020 Buffaloes skos:exactMatch ncit C14396 BUF, Rat Strain lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D002026 Buformin skos:exactMatch chebi CHEBI:3209 Buformin lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D002030 Bulbourethral Glands skos:exactMatch ncit C32395 Cowper Gland lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D002031 Bulgaria skos:exactMatch ncit C16368 Bulgaria lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D002034 Bumetanide skos:exactMatch chebi CHEBI:3213 bumetanide lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D002034 Bumetanide skos:exactMatch ncit C28875 Bumetanide lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D002035 Bunaftine skos:exactMatch chebi CHEBI:135392 bunaftine lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D002035 Bunaftine skos:exactMatch ncit C72578 Bunaftine lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D002036 Bundle of His skos:exactMatch ncit C32160 Atrioventricular Bundle lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D002046 Bupranolol skos:exactMatch chebi CHEBI:135123 bupranolol lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D002046 Bupranolol skos:exactMatch ncit C72615 Bupranolol lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D002050 Burkina Faso skos:exactMatch ncit C16369 Burkina Faso lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D002051 Burkitt Lymphoma skos:exactMatch ncit C2912 Burkitt Lymphoma lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -17106,22 +29444,18 @@ mesh D002057 Burns, Chemical skos:exactMatch ncit C34442 Chemical Burn lexical 0 mesh D002061 Bursa, Synovial skos:exactMatch ncit C33717 Synovial Bursa lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D002062 Bursitis skos:exactMatch hp HP:0025232 Bursitis lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D002063 Burundi skos:exactMatch ncit C16371 Burundi lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D002064 Buserelin skos:exactMatch chebi CHEBI:135907 buserelin lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D002064 Buserelin skos:exactMatch ncit C320 Buserelin lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D002066 Busulfan skos:exactMatch chebi CHEBI:28901 busulfan lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D002069 Butaclamol skos:exactMatch chebi CHEBI:73298 (+)-butaclamol lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D002069 Butaclamol skos:exactMatch ncit C81088 Butaclamol lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D002076 Butirosin Sulfate skos:exactMatch ncit C142977 Butirosin Sulfate lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D002078 Butoxamine skos:exactMatch ncit C166428 Butaxamine lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D002079 Butter skos:exactMatch ncit C71930 Butter lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D002081 Buttocks skos:exactMatch ncit C89806 Buttock lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D002083 Butylated Hydroxyanisole skos:exactMatch chebi CHEBI:76359 butylated hydroxyanisole lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D002084 Butylated Hydroxytoluene skos:exactMatch chebi CHEBI:34247 2,6-di-tert-butyl-4-methylphenol lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D002084 Butylated Hydroxytoluene skos:exactMatch ncit C322 Butylated Hydroxytoluene lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D002085 Butylhydroxybutylnitrosamine skos:exactMatch chebi CHEBI:91275 N-butyl-N-(4-hydroxybutyl)nitrosamine lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D002086 Butylscopolammonium Bromide skos:exactMatch ncit C83571 Butylscopolamine lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D002095 Byssinosis skos:exactMatch ncit C84605 Byssinosis lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D002096 C-Peptide skos:exactMatch chebi CHEBI:80332 C-peptide lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D002096 C-Peptide skos:exactMatch ncit C94608 C Peptide lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D002097 C-Reactive Protein skos:exactMatch hgnc 2367 CRP lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D002097 C-Reactive Protein skos:exactMatch ncit C64548 C-Reactive Protein Measurement lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -17129,20 +29463,16 @@ mesh D002100 Cachexia skos:exactMatch ncit C2913 Cachexia lexical 0.95 https://g mesh D002101 Cacodylic Acid skos:exactMatch chebi CHEBI:48765 dimethylarsinic acid lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D002101 Cacodylic Acid skos:exactMatch ncit C80595 Cacodylic Acid lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D002102 Cadaver skos:exactMatch ncit C113674 Cadaver lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D002108 Ceruletide skos:exactMatch chebi CHEBI:59219 ceruletide lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D002108 Ceruletide skos:exactMatch ncit C65309 Ceruletide lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D002111 Calcaneus skos:exactMatch ncit C32250 Calcaneum lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D002112 Calcifediol skos:exactMatch chebi CHEBI:17933 calcidiol lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D002115 Calciphylaxis skos:exactMatch ncit C84607 Calciphylaxis lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D002116 Calcitonin skos:exactMatch hgnc 1437 CALCA lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D002117 Calcitriol skos:exactMatch chebi CHEBI:17823 calcitriol lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D002119 Calcium Carbonate skos:exactMatch ncit C332 Calcium Carbonate lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D002121 Calcium Channel Blockers skos:exactMatch chebi CHEBI:38215 calcium channel blocker lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D002121 Calcium Channel Blockers skos:exactMatch ncit C333 Calcium Channel Blocker lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D002122 Calcium Chloride skos:exactMatch ncit C28901 Calcium Chloride lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D002123 Calcium Dobesilate skos:exactMatch ncit C166829 Calcium Dobesilate lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D002124 Calcium Fluoride skos:exactMatch chebi CHEBI:35437 calcium difluoride lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D002126 Calcium Hydroxide skos:exactMatch ncit C77032 Calcium Hydroxide lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D002131 Calcium Pyrophosphate skos:exactMatch chebi CHEBI:32598 calcium diphosphate lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D002131 Calcium Pyrophosphate skos:exactMatch ncit C75639 Calcium Pyrophosphate lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D002133 Calcium Sulfate skos:exactMatch chebi CHEBI:31346 calcium sulfate lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py @@ -17165,25 +29495,19 @@ mesh D002175 Candida skos:exactMatch ncit C77163 Candida lexical 0.95 https://gi mesh D002177 Candidiasis skos:exactMatch ncit C26711 Candidiasis lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D002181 Candidiasis, Vulvovaginal skos:exactMatch ncit C2914 Vulvovaginal Candidiasis lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D002182 Candy skos:exactMatch ncit C64880 Candy Dosage Form lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D002185 Cannabidiol skos:exactMatch chebi CHEBI:69478 cannabidiol lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D002185 Cannabidiol skos:exactMatch ncit C118452 Cannabidiol lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D002189 Marijuana Abuse skos:exactMatch ncit C34445 Cannabis Dependence lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D002191 Canrenoic Acid skos:exactMatch chebi CHEBI:50156 canrenoic acid lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D002191 Canrenoic Acid skos:exactMatch ncit C79862 Canrenoic Acid lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D002192 Canrenone skos:exactMatch chebi CHEBI:135445 canrenone lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D002192 Canrenone skos:exactMatch ncit C83582 Canrenone lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D002194 Capgras Syndrome skos:exactMatch ncit C34446 Capgras Syndrome lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D002195 Capillaria skos:exactMatch ncit C122044 Capillaria lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D002198 Capillary Fragility skos:exactMatch hp HP:0025017 Capillary fragility lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D002206 Capnocytophaga skos:exactMatch ncit C76269 Capnocytophaga lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D002207 Capreomycin skos:exactMatch chebi CHEBI:3371 capreomycin lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D002207 Capreomycin skos:exactMatch ncit C72607 Capreomycin lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D002209 Caprolactam skos:exactMatch chebi CHEBI:28579 epsilon-caprolactam lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D002212 Capsicum skos:exactMatch ncit C75665 Capsicum lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D002215 Captan skos:exactMatch ncit C77379 Captan lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D002216 Captopril skos:exactMatch chebi CHEBI:3380 captopril lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D002216 Captopril skos:exactMatch ncit C340 Captopril lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D002217 Carbachol skos:exactMatch chebi CHEBI:3385 carbachol lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D002217 Carbachol skos:exactMatch ncit C47430 Carbachol lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D002218 Carbadox skos:exactMatch ncit C81718 Carbadox lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D002219 Carbamates skos:exactMatch chebi CHEBI:23003 carbamate ester lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -17193,13 +29517,10 @@ mesh D002228 Carbenicillin skos:exactMatch chebi CHEBI:3393 carbenicillin lexica mesh D002228 Carbenicillin skos:exactMatch ncit C343 Carbenicillin lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D002229 Carbenoxolone skos:exactMatch chebi CHEBI:41462 CARBENOXOLONE lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D002229 Carbenoxolone skos:exactMatch ncit C63669 Carbenoxolone lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D002230 Carbidopa skos:exactMatch chebi CHEBI:3395 carbidopa lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D002230 Carbidopa skos:exactMatch ncit C47431 Carbidopa lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D002231 Carbimazole skos:exactMatch chebi CHEBI:617099 carbimazole lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D002231 Carbimazole skos:exactMatch ncit C83590 Carbimazole lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D002233 Carbocysteine skos:exactMatch chebi CHEBI:16163 S-carboxymethyl-L-cysteine lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D002233 Carbocysteine skos:exactMatch ncit C83591 Carbocysteine lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D002241 Carbohydrates skos:exactMatch chebi CHEBI:16646 carbohydrate lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D002241 Carbohydrates skos:exactMatch ncit C344 Carbohydrate lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D002246 Carbon Disulfide skos:exactMatch ncit C29813 Carbon Disulfide lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D002251 Carbon Tetrachloride skos:exactMatch chebi CHEBI:27385 tetrachloromethane lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py @@ -17260,8 +29581,6 @@ mesh D002368 Castor Oil skos:exactMatch chebi CHEBI:140618 castor oil lexical 0. mesh D002368 Castor Oil skos:exactMatch ncit C80990 Castor Oil lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D002372 Cat-Scratch Disease skos:exactMatch ncit C84620 Cat-Scratch Disease lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D002374 Catalase skos:exactMatch hgnc 1516 CAT lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D002375 Catalepsy skos:exactMatch efo 0009845 catalepsy lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py -mesh D002375 Catalepsy skos:exactMatch ncit C34452 Catalepsy lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D002384 Catalysis skos:exactMatch ncit C52472 Catalysis lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D002385 Cataplexy skos:exactMatch ncit C84618 Cataplexy lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D002392 Catechin skos:exactMatch chebi CHEBI:15600 (+)-catechin lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py @@ -17273,7 +29592,6 @@ mesh D002402 Cathepsin D skos:exactMatch hgnc 2529 CTSD lexical 0.95 https://git mesh D002403 Cathepsins skos:exactMatch ncit C16389 Cathepsin lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D002404 Catheterization skos:exactMatch ncit C38045 Catheterization lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D002407 Catheterization, Swan-Ganz skos:exactMatch ncit C80411 Right Heart Catheterization lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D002408 Catheters, Indwelling skos:exactMatch ncit C54729 Indwelling Catheter lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D002415 Cats skos:exactMatch ncit C14191 Cat lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D002417 Cattle skos:exactMatch ncit C14192 Cow lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D002421 Caudate Nucleus skos:exactMatch ncit C12451 Caudate Nucleus lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -17353,8 +29671,6 @@ mesh D002571 Cerumen skos:exactMatch ncit C32293 Cerumen lexical 0.95 https://gi mesh D002575 Uterine Cervicitis skos:exactMatch ncit C26716 Cervicitis lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D002578 Uterine Cervical Dysplasia skos:exactMatch hp HP:0032131 Cervical dysplasia lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D002581 Uterine Cervical Incompetence skos:exactMatch ncit C50607 Incompetent Cervix lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D002585 Cesarean Section skos:exactMatch efo 0009636 cesarean section lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py -mesh D002585 Cesarean Section skos:exactMatch ncit C46088 Cesarean Section lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D002589 Cestoda skos:exactMatch ncit C122045 Cestoda lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D002592 Cetomacrogol skos:exactMatch ncit C84073 Ceteth-20 lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D002594 Cetylpyridinium skos:exactMatch chebi CHEBI:32914 cetylpyridinium lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py @@ -17520,8 +29836,6 @@ mesh D002896 Chromosomes, Human, Pair 6 skos:exactMatch ncit C13222 Chromosome 6 mesh D002897 Chromosomes, Human, Pair 7 skos:exactMatch ncit C13223 Chromosome 7 lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D002898 Chromosomes, Human, Pair 8 skos:exactMatch ncit C13224 Chromosome 8 lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D002899 Chromosomes, Human, Pair 9 skos:exactMatch ncit C13225 Chromosome 9 lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D002908 Chronic Disease skos:exactMatch efo 0009714 chronic disease lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py -mesh D002908 Chronic Disease skos:exactMatch ncit C165593 Chronic Disease lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D002912 Chrysosporium skos:exactMatch ncit C122260 Chrysosporium lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D002913 Chyle skos:exactMatch ncit C93166 Chyle lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D002914 Chylomicrons skos:exactMatch ncit C120633 Chylomicrons Measurement lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -17608,7 +29922,6 @@ mesh D003101 Collodion skos:exactMatch chebi CHEBI:53325 nitrocellulose lexical mesh D003102 Colloids skos:exactMatch ncit C32345 Colloid lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D003105 Colombia skos:exactMatch ncit C16449 Colombia lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D003107 Colorectal Surgery skos:exactMatch ncit C15210 Colon and Rectal Surgery lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D003111 Colonic Polyps skos:exactMatch ncit C2954 Colon Polyp lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D003113 Colonoscopy skos:exactMatch ncit C16450 Colonoscopy lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D003120 Colorado skos:exactMatch ncit C43501 Colorado lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D003124 Colorimetry skos:exactMatch ncit C111096 Colorimetry lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -17669,8 +29982,6 @@ mesh D003251 Constriction, Pathologic skos:exactMatch efo 0006818 stricture lexi mesh D003251 Constriction, Pathologic skos:exactMatch ncit C50754 Stenosis lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D003253 Consultants skos:exactMatch efo 0001732 consultant lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D003266 Continuity of Patient Care skos:exactMatch ncit C94377 Continuum of Care lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D003267 Contraception skos:exactMatch efo 0009520 contraception lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py -mesh D003267 Contraception skos:exactMatch ncit C37932 Contraception lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D003273 Contraceptive Devices skos:exactMatch ncit C42734 Contraceptive Device lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D003276 Contraceptives, Oral skos:exactMatch chebi CHEBI:49325 oral contraceptive lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D003276 Contraceptives, Oral skos:exactMatch ncit C389 Oral Contraceptive lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -17678,7 +29989,6 @@ mesh D003286 Contracture skos:exactMatch ncit C124948 Joint Contracture lexical mesh D003287 Contrast Media skos:exactMatch chebi CHEBI:37338 radioopaque medium lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D003287 Contrast Media skos:exactMatch ncit C390 Contrast Agent lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D003288 Contusions skos:exactMatch ncit C50441 Contusion lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D003289 Convalescence skos:exactMatch efo 0009630 convalescence lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D003294 Seizures, Febrile skos:exactMatch ncit C116503 Febrile Seizure lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D003296 Cooking skos:exactMatch ncit C95550 Cooking lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D003298 Coombs Test skos:exactMatch ncit C25163 Coombs Test lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -17776,7 +30086,6 @@ mesh D003541 Cystathionine beta-Synthase skos:exactMatch ncit C129051 Cystathion mesh D003542 Cystathionine gamma-Lyase skos:exactMatch hgnc 2501 CTH lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D003543 Cysteamine skos:exactMatch chebi CHEBI:17141 cysteamine lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D003549 Cystic Duct skos:exactMatch ncit C32421 Cystic Duct lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D003550 Cystic Fibrosis skos:exactMatch ncit C2975 Cystic Fibrosis lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D003551 Cysticercosis skos:exactMatch ncit C34520 Cysticercosis lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D003554 Cystinosis skos:exactMatch ncit C2976 Cystinosis lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D003555 Cystinuria skos:exactMatch ncit C84664 Cystinuria lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -17824,7 +30133,6 @@ mesh D003634 DDT skos:exactMatch chebi CHEBI:16130 DDT lexical 0.95 https://gith mesh D003635 De Lange Syndrome skos:exactMatch ncit C75016 Cornelia De Lange Syndrome lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D003642 Deanol skos:exactMatch chebi CHEBI:271436 N,N-dimethylethanolamine lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D003644 Death Certificates skos:exactMatch ncit C163970 Death Certificate lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D003645 Death, Sudden skos:exactMatch ncit C107103 Sudden Death lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D003646 Debridement skos:exactMatch ncit C51682 Debridement lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D003647 Debrisoquin skos:exactMatch chebi CHEBI:34665 debrisoquin lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D003655 Decerebrate State skos:exactMatch hp HP:0025013 Decerebrate rigidity lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -18122,7 +30430,6 @@ mesh D004199 Disease Vectors skos:exactMatch ncit C14198 Disease Vector lexical mesh D004202 Disinfectants skos:exactMatch chebi CHEBI:48219 disinfectant lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D004204 Joint Dislocations skos:exactMatch ncit C26750 Joint Dislocation lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D004205 Cromolyn Sodium skos:exactMatch chebi CHEBI:128458 disodium cromoglycate lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py -mesh D004205 Cromolyn Sodium skos:exactMatch ncit C28946 Cromolyn Sodium lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D004206 Disopyramide skos:exactMatch chebi CHEBI:4657 disopyramide lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D004206 Disopyramide skos:exactMatch ncit C61730 Disopyramide lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D004210 Dissection skos:exactMatch ncit C15227 Dissection lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -18143,9 +30450,7 @@ mesh D004232 Diuretics skos:exactMatch ncit C448 Diuretic lexical 0.95 https://g mesh D004237 Diuron skos:exactMatch chebi CHEBI:116509 diuron lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D004238 Diverticulitis skos:exactMatch ncit C26752 Diverticulitis lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D004240 Diverticulum skos:exactMatch ncit C26753 Diverticulum lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D004241 Diverticulum, Colon skos:exactMatch ncit C34550 Colonic Diverticulum lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D004246 Dimethylphenylpiperazinium Iodide skos:exactMatch chebi CHEBI:4290 1,1-dimethyl-4-phenylpiperazinium iodide lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D004247 DNA skos:exactMatch chebi CHEBI:16991 deoxyribonucleic acid lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D004249 DNA Damage skos:exactMatch ncit C16507 DNA Damage lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D004250 DNA Topoisomerases, Type II skos:exactMatch ncit C18434 Topoisomerase II lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D004253 DNA Nucleotidylexotransferase skos:exactMatch hgnc 2983 DNTT lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py @@ -18261,7 +30566,6 @@ mesh D004479 Ectopia Lentis skos:exactMatch ncit C125484 Ectopia Lentis lexical mesh D004480 Ectromelia skos:exactMatch ncit C34567 Ectromelia lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D004484 Ecuador skos:exactMatch ncit C16528 Ecuador lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D004485 Eczema skos:exactMatch ncit C3001 Eczema lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D004487 Edema skos:exactMatch efo 0009373 edema lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D004490 Cingulata skos:exactMatch ncit C79108 Cingulata lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D004491 Edrophonium skos:exactMatch chebi CHEBI:251408 edrophonium lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D004492 Edetic Acid skos:exactMatch ncit C61742 Edetic Acid lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -18355,7 +30659,6 @@ mesh D004714 Endometrial Hyperplasia skos:exactMatch ncit C3013 Endometrial Hype mesh D004715 Endometriosis skos:exactMatch ncit C3014 Endometriosis lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D004716 Endometritis skos:exactMatch hp HP:0025636 Endometritis lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D004718 Saccharomycetales skos:exactMatch ncit C106504 Budding Yeast Measurement lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D004719 Endomyocardial Fibrosis skos:exactMatch ncit C34585 Endomyocardial Fibrosis lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D004721 Endoplasmic Reticulum skos:exactMatch ncit C13230 Endoplasmic Reticulum lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D004723 Endorphins skos:exactMatch ncit C469 Endorphin lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D004724 Endoscopy skos:exactMatch ncit C16546 Endoscopic Procedure lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -18579,7 +30882,6 @@ mesh D005147 Facial Bones skos:exactMatch ncit C63706 Facial Bone lexical 0.95 h mesh D005150 Facial Hemiatrophy skos:exactMatch ncit C84703 Facial Hemiatrophy lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D005152 Facial Muscles skos:exactMatch ncit C13073 Facial Muscle lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D005154 Facial Nerve skos:exactMatch ncit C12714 Facial Nerve lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D005157 Facial Pain skos:exactMatch efo 0009625 facial pain lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D005164 Factor IX skos:exactMatch hgnc 3551 F9 lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D005166 Factor V Deficiency skos:exactMatch ncit C131738 Factor V Deficiency lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D005167 Factor VII skos:exactMatch hgnc 3544 F7 lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py @@ -18605,7 +30907,6 @@ mesh D005194 Family Practice skos:exactMatch ncit C89796 Family Practice lexical mesh D005195 Family Relations skos:exactMatch efo 0004424 family relationship lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D005196 Family Therapy skos:exactMatch ncit C93347 Family Therapy lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D005198 Fanconi Syndrome skos:exactMatch ncit C3034 Fanconi Syndrome lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D005203 Farmer's Lung skos:exactMatch ncit C34605 Farmer's Lung lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D005204 Farnesol skos:exactMatch chebi CHEBI:28600 farnesol lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D005205 Fascia skos:exactMatch ncit C13108 Fascia lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D005206 Fascia Lata skos:exactMatch ncit C32585 Fascia Lata lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -18615,7 +30916,6 @@ mesh D005209 Fasciola skos:exactMatch ncit C122021 Fasciola lexical 0.95 https:/ mesh D005210 Fasciola hepatica skos:exactMatch ncit C122308 Fasciola hepatica lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D005211 Fascioliasis skos:exactMatch ncit C128387 Fasciolosis lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D005215 Fasting skos:exactMatch ncit C63663 Fasting lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D005218 Fat Necrosis skos:exactMatch ncit C26772 Fat Necrosis lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D005221 Fatigue skos:exactMatch efo 0009641 malaise lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D005221 Fatigue skos:exactMatch ncit C104301 Feel Tired lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D005222 Mental Fatigue skos:exactMatch ncit C132285 Mental Fatigue Dimension lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -18689,7 +30989,6 @@ mesh D005352 Fibromuscular Dysplasia skos:exactMatch ncit C84714 Fibromuscular D mesh D005353 Fibronectins skos:exactMatch hgnc 3778 FN1 lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D005354 Fibrosarcoma skos:exactMatch efo 1000255 Fibroblastic Neoplasm lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D005354 Fibrosarcoma skos:exactMatch ncit C3043 Fibrosarcoma lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D005355 Fibrosis skos:exactMatch efo 0006890 fibrosis lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D005356 Fibromyalgia skos:exactMatch ncit C87497 Fibromyalgia lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D005357 Fibrous Dysplasia of Bone skos:exactMatch ncit C34609 Fibrous Dysplasia lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D005358 Fibrous Dysplasia, Monostotic skos:exactMatch ncit C53971 Monostotic Fibrous Dysplasia lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -18702,14 +31001,12 @@ mesh D005374 Filtration skos:exactMatch ncit C16583 Filtration lexical 0.95 http mesh D005383 Finger Injuries skos:exactMatch ncit C34613 Finger Injury lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D005385 Fingers skos:exactMatch ncit C32608 Finger lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D005387 Finland skos:exactMatch ncit C16584 Finland lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D005390 Fires skos:exactMatch ncit C63143 Device Fire lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D005391 Firesetting Behavior skos:exactMatch ncit C94334 Pyromania lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D005395 Fish Oils skos:exactMatch ncit C497 Fish Oil lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D005402 Fistula skos:exactMatch ncit C3045 Fistula lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D005411 Flame Retardants skos:exactMatch chebi CHEBI:79314 flame retardant lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D005413 Flatfoot skos:exactMatch hp HP:0004684 Talipes valgus lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D005413 Flatfoot skos:exactMatch ncit C34616 Flat Foot lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D005414 Flatulence skos:exactMatch efo 0009669 flatulence lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D005414 Flatulence skos:exactMatch ncit C50569 Flatus lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D005415 Flavins skos:exactMatch chebi CHEBI:30527 flavin lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D005417 Flavobacterium skos:exactMatch ncit C76320 Flavobacterium lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -18802,16 +31099,12 @@ mesh D005584 Fovea Centralis skos:exactMatch ncit C26463 Fovea Centralis lexical mesh D005588 Fox-Fordyce Disease skos:exactMatch ncit C84716 Fox-Fordyce Disease lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D005591 Chemical Fractionation skos:exactMatch ncit C18800 Chemical Fractionation lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D005592 Fracture Fixation skos:exactMatch ncit C52008 Orthopedic Stabilization lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D005596 Fractures, Closed skos:exactMatch ncit C34623 Closed Fracture lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D005597 Fractures, Open skos:exactMatch ncit C34624 Open Fracture lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D005598 Fractures, Spontaneous skos:exactMatch ncit C3047 Pathologic Fracture lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D005599 Fractures, Ununited skos:exactMatch efo 0009707 fractures, ununited lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D005600 Fragile X Syndrome skos:exactMatch ncit C84717 Fragile X Syndrome lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D005601 Framycetin skos:exactMatch chebi CHEBI:7508 framycetin lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D005603 Francisella skos:exactMatch ncit C86396 Francisella lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D005604 Francisella tularensis skos:exactMatch ncit C86397 Francisella tularensis lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D005605 Francium skos:exactMatch chebi CHEBI:33323 francium atom lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D005627 Frostbite skos:exactMatch efo 0009527 frostbite lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D005632 Fructose skos:exactMatch chebi CHEBI:28757 fructose lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D005633 Fructose Intolerance skos:exactMatch ncit C84720 Hereditary Fructose Intolerance lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D005643 Fucose skos:exactMatch chebi CHEBI:33984 fucose lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -18885,7 +31178,6 @@ mesh D005821 Genetic Techniques skos:exactMatch ncit C16623 Genetic Technique le mesh D005823 Genetics skos:exactMatch ncit C16624 Genetics lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D005824 Genetics, Behavioral skos:exactMatch ncit C16625 Behavioral Genetics lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D005826 Genetics, Medical skos:exactMatch ncit C16627 Medical Genetics lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D005827 Genetics, Microbial skos:exactMatch ncit C17940 Microbial Genetics lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D005828 Genetics, Population skos:exactMatch ncit C16628 Population Genetics lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D005829 Geniculate Bodies skos:exactMatch ncit C32673 Geniculate Body lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D005831 Genital Diseases, Female skos:exactMatch ncit C27020 Female Reproductive System Disorder lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -19029,11 +31321,8 @@ mesh D006038 Glyoxylates skos:exactMatch chebi CHEBI:51704 glyoxylates lexical 0 mesh D006039 Gnathostoma skos:exactMatch ncit C122023 Gnathostoma lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D006041 Goats skos:exactMatch ncit C14210 Goat lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D006042 Goiter skos:exactMatch ncit C26785 Goiter lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D006043 Goiter, Endemic skos:exactMatch ncit C35023 Endemic Goiter lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D006044 Goiter, Nodular skos:exactMatch ncit C131437 Nodular Goiter lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D006046 Gold skos:exactMatch chebi CHEBI:29287 gold atom lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D006051 Aurothioglucose skos:exactMatch chebi CHEBI:2930 Aurothioglucose lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py -mesh D006052 Gold Sodium Thiomalate skos:exactMatch ncit C74037 Gold Sodium Thiomalate lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D006053 Goldenhar Syndrome skos:exactMatch ncit C84740 Goldenhar Syndrome lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D006056 Golgi Apparatus skos:exactMatch ncit C13238 Golgi Apparatus lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D006058 Gonadal Disorders skos:exactMatch ncit C26786 Gonadal Disorder lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -19164,7 +31453,6 @@ mesh D006311 Hearing Disorders skos:exactMatch ncit C3078 Hearing Disorder lexic mesh D006314 Hearing Loss, Conductive skos:exactMatch ncit C27645 Conductive Hearing Loss lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D006315 Hearing Loss, Functional skos:exactMatch ncit C116365 Functional Hearing Loss lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D006317 Hearing Loss, Noise-Induced skos:exactMatch ncit C34664 Noise Induced Hearing Loss lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D006319 Hearing Loss, Sensorineural skos:exactMatch ncit C26739 Sensorineural Hearing Loss lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D006323 Heart Arrest skos:exactMatch ncit C50479 Cardiac Arrest lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D006327 Heart Block skos:exactMatch ncit C34665 Heart Block by ECG Finding lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D006328 Cardiac Catheterization skos:exactMatch ncit C38044 Cardiac Catheterization lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -19231,15 +31519,12 @@ mesh D006450 Hemoglobin SC Disease skos:exactMatch ncit C34676 Sickle Cell-Hemog mesh D006453 Hemoglobinopathies skos:exactMatch ncit C3092 Hemoglobinopathy lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D006454 Hemoglobins skos:exactMatch chebi CHEBI:5656 deoxyhemoglobin lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D006457 Hemoglobinuria, Paroxysmal skos:exactMatch ncit C61233 Paroxysmal Nocturnal Hemoglobinuria lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D006461 Hemolysis skos:exactMatch efo 0009473 hemolysis lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D006463 Hemolytic-Uremic Syndrome skos:exactMatch ncit C75545 Hemolytic Uremic Syndrome lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D006466 Hemopexin skos:exactMatch hgnc 5171 HPX lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D006467 Hemophilia A skos:exactMatch ncit C27146 Hemophilia A lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D006469 Hemoptysis skos:exactMatch ncit C3094 Hemoptysis lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D006470 Hemorrhage skos:exactMatch ncit C26791 Hemorrhage lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D006471 Gastrointestinal Hemorrhage skos:exactMatch ncit C48592 Gastrointestinal Hemorrhage lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D006473 Postpartum Hemorrhage skos:exactMatch efo 0009579 postpartum hemorrhage lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py -mesh D006473 Postpartum Hemorrhage skos:exactMatch ncit C92853 Postpartum Hemorrhage lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D006474 Hemorrhagic Disorders skos:exactMatch hp HP:0001892 Abnormal bleeding lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D006475 Vitamin K Deficiency Bleeding skos:exactMatch ncit C111857 Hemorrhagic Disease of Newborn lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D006479 Hemorrhagic Fever, Crimean skos:exactMatch ncit C34682 Congo-Crimean Hemorrhagic Fever lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -19278,10 +31563,8 @@ mesh D006539 Heptoses skos:exactMatch chebi CHEBI:33905 heptose lexical 0.95 htt mesh D006540 Herbicides skos:exactMatch chebi CHEBI:24527 herbicide lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D006547 Hernia skos:exactMatch ncit C34685 Hernia lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D006549 Hernia, Diaphragmatic, Traumatic skos:exactMatch ncit C34688 Traumatic Diaphragmatic Hernia lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D006550 Hernia, Femoral skos:exactMatch ncit C34689 Femoral Hernia lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D006552 Hernia, Inguinal skos:exactMatch ncit C34690 Inguinal Hernia lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D006554 Hernia, Umbilical skos:exactMatch hp HP:0001537 Umbilical hernia lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py -mesh D006555 Hernia, Ventral skos:exactMatch ncit C118313 Ventral Hernia lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D006556 Heroin Dependence skos:exactMatch ncit C34694 Heroin Dependence lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D006558 Herpes Genitalis skos:exactMatch ncit C14364 Genital Herpes lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D006559 Pemphigoid Gestationis skos:exactMatch ncit C85003 Pemphigoid Gestationis lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -19354,8 +31637,6 @@ mesh D006710 Homocysteine skos:exactMatch chebi CHEBI:17230 homocysteine lexical mesh D006711 Homocystine skos:exactMatch chebi CHEBI:17485 homocystine lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D006712 Homocystinuria skos:exactMatch ncit C84765 Homocystinuria lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D006714 Homoserine skos:exactMatch chebi CHEBI:15699 L-homoserine lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D006716 Homosexuality skos:exactMatch efo 0008485 homosexuality lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py -mesh D006716 Homosexuality skos:exactMatch ncit C84363 Homosexuality lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D006719 Homovanillic Acid skos:exactMatch chebi CHEBI:545959 homovanillic acid lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D006720 Homozygote skos:exactMatch ncit C45826 Homozygosity lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D006721 Honduras skos:exactMatch ncit C16694 Honduras lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -19376,7 +31657,6 @@ mesh D006793 Houseflies skos:exactMatch ncit C87500 Musca domestica lexical 0.95 mesh D006796 Housekeeping skos:exactMatch ncit C98072 Housework lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D006798 Housing skos:exactMatch ncit C49990 Housing Device lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D006801 Humans skos:exactMatch ncit C14225 Human lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D006810 Humeral Fractures skos:exactMatch ncit C26795 Humerus Fracture lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D006813 Humidity skos:exactMatch ncit C88206 Humidity lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D006814 Hungary skos:exactMatch ncit C16699 Hungary lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D006816 Huntington Disease skos:exactMatch ncit C82342 Huntington's Disease lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -19426,7 +31706,6 @@ mesh D006873 Hydroquinones skos:exactMatch chebi CHEBI:24646 hydroquinones lexic mesh D006876 Hydrothorax skos:exactMatch ncit C116338 Hydrothorax lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D006877 Hydroxamic Acids skos:exactMatch chebi CHEBI:24650 hydroxamic acid lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D006877 Hydroxamic Acids skos:exactMatch ncit C556 Hydroxamic Acids lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D006878 Hydroxides skos:exactMatch chebi CHEBI:24651 hydroxides lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D006879 Hydroxocobalamin skos:exactMatch chebi CHEBI:27786 hydroxocobalamin lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D006881 Hydroxyacetylaminofluorene skos:exactMatch chebi CHEBI:17931 N-hydroxy-2-acetamidofluorene lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D006884 Hydroxybutyrate Dehydrogenase skos:exactMatch hgnc 1027 BDH1 lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -19605,7 +31884,6 @@ mesh D007217 Indoramin skos:exactMatch ncit C65916 Indoramin lexical 0.95 https: mesh D007220 Industrial Waste skos:exactMatch ncit C577 Industrial Waste lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D007221 Industry skos:exactMatch ncit C25181 Industry lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D007223 Infant skos:exactMatch ncit C27956 Infant lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D007226 Infant Mortality skos:exactMatch ncit C16729 Infant Mortality lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D007230 Infant, Low Birth Weight skos:exactMatch ncit C34724 Low Birth Weight lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D007231 Infant, Newborn skos:exactMatch efo 0001372 neonate lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D007234 Infant, Premature skos:exactMatch ncit C49642 Preterm Infant lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -19658,7 +31936,6 @@ mesh D007376 Interleukin-2 skos:exactMatch hgnc 6001 IL2 lexical 0.95 https://gi mesh D007376 Interleukin-2 skos:exactMatch ncit C20507 Interleukin-2 lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D007377 Interleukin-3 skos:exactMatch hgnc 6011 IL3 lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D007377 Interleukin-3 skos:exactMatch ncit C20439 Interleukin-3 lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D007378 Interleukins skos:exactMatch chebi CHEBI:52998 interleukins lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D007378 Interleukins skos:exactMatch ncit C20497 Interleukin lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D007380 Intermediate Care Facilities skos:exactMatch ncit C99912 Intermediate Care Facility lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D007382 Intermediate Filaments skos:exactMatch ncit C13248 Intermediate Filament lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -19686,9 +31963,7 @@ mesh D007437 Intrinsic Factor skos:exactMatch ncit C99769 Intrinsic Factor lexic mesh D007438 Introns skos:exactMatch ncit C13249 Intron lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D007440 Intubation skos:exactMatch ncit C37981 Intubation Procedure lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D007443 Intussusception skos:exactMatch ncit C113484 Intussusception lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D007444 Inulin skos:exactMatch chebi CHEBI:15443 inulin lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D007448 Invertebrates skos:exactMatch ncit C14228 Invertebrate lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D007451 Iodamide skos:exactMatch chebi CHEBI:31703 iodamide lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D007451 Iodamide skos:exactMatch ncit C65928 Iodamide lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D007453 Iodide Peroxidase skos:exactMatch hgnc 21071 IYD lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D007453 Iodide Peroxidase skos:exactMatch ncit C16752 Thyroid Peroxidase lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -19706,26 +31981,18 @@ mesh D007468 Iodopyracet skos:exactMatch ncit C75627 Iodopyracet lexical 0.95 ht mesh D007470 Monoiodotyrosine skos:exactMatch chebi CHEBI:25400 monoiodotyrosine lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D007471 Ioglycamic Acid skos:exactMatch chebi CHEBI:135902 ioglycamic acid lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D007471 Ioglycamic Acid skos:exactMatch ncit C65938 Ioglycamic Acid lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D007472 Iohexol skos:exactMatch chebi CHEBI:31709 iohexol lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D007473 Ion Channels skos:exactMatch ncit C16754 Ion Channel lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D007476 Ionophores skos:exactMatch chebi CHEBI:24869 ionophore lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D007477 Ions skos:exactMatch ncit C597 Ion lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D007478 Iontophoresis skos:exactMatch ncit C38203 Iontophoresis Route of Administration lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D007479 Iopamidol skos:exactMatch chebi CHEBI:31711 iopamidol lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D007479 Iopamidol skos:exactMatch ncit C47567 Iopamidol lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D007480 Iopanoic Acid skos:exactMatch chebi CHEBI:5951 Iopanoic acid lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D007480 Iopanoic Acid skos:exactMatch ncit C65942 Iopanoic Acid lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D007481 Iophendylate skos:exactMatch ncit C83829 Iophendylate lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D007482 Iothalamate Meglumine skos:exactMatch chebi CHEBI:31714 Iothalamate meglumine lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D007482 Iothalamate Meglumine skos:exactMatch ncit C47568 Iothalamate Meglumine lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D007483 Iothalamic Acid skos:exactMatch ncit C61792 Iothalamic Acid lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D007485 Ioxaglic Acid skos:exactMatch chebi CHEBI:31718 ioxaglic acid lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D007485 Ioxaglic Acid skos:exactMatch ncit C61793 Ioxaglic Acid lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D007486 Ipecac skos:exactMatch ncit C65951 Ipecac lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D007487 Ipodate skos:exactMatch ncit C76634 Ipodic Acid lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D007488 Iprindole skos:exactMatch chebi CHEBI:135177 iprindole lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D007488 Iprindole skos:exactMatch ncit C166921 Iprindole lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D007490 Iproniazid skos:exactMatch chebi CHEBI:5958 Iproniazid lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D007491 Ipronidazole skos:exactMatch ncit C76423 Ipronidazole lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D007492 Iran skos:exactMatch ncit C16755 Iran, Islamic Republic of lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D007493 Iraq skos:exactMatch ncit C16756 Iraq lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -19734,21 +32001,14 @@ mesh D007495 Iridium skos:exactMatch chebi CHEBI:49666 iridium atom lexical 0.95 mesh D007495 Iridium skos:exactMatch ncit C95183 Iridium lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D007500 Iritis skos:exactMatch ncit C50621 Iritis lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D007501 Iron skos:exactMatch chebi CHEBI:18248 iron atom lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D007502 Iron Chelating Agents skos:exactMatch chebi CHEBI:38157 iron chelator lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D007505 Iron-Dextran Complex skos:exactMatch ncit C44394 Iron Dextran Complex lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D007506 Iron-Sulfur Proteins skos:exactMatch chebi CHEBI:35135 iron-sulfur protein lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D007510 Isatin skos:exactMatch chebi CHEBI:27539 isatin lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D007511 Ischemia skos:exactMatch ncit C34738 Ischemia lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D007512 Ischium skos:exactMatch ncit C32884 Ischium lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D007513 Isethionic Acid skos:exactMatch chebi CHEBI:1157 isethionic acid lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D007520 Isocarboxazid skos:exactMatch ncit C47573 Isocarboxazid lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D007524 Isodesmosine skos:exactMatch chebi CHEBI:64366 isodesmosine lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D007525 Isoelectric Focusing skos:exactMatch ncit C16758 Isoelectric Focusing lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D007526 Isoelectric Point skos:exactMatch ncit C54157 Isoelectric Point lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D007528 Isoetharine skos:exactMatch chebi CHEBI:6005 Isoetharine lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D007529 Isoflavones skos:exactMatch chebi CHEBI:38757 isoflavones lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D007529 Isoflavones skos:exactMatch ncit C599 Isoflavone lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D007530 Isoflurane skos:exactMatch chebi CHEBI:6015 isoflurane lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D007531 Isoflurophate skos:exactMatch chebi CHEBI:17941 diisopropyl fluorophosphate lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D007532 Isoleucine skos:exactMatch chebi CHEBI:17191 L-isoleucine lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D007534 Isomaltose skos:exactMatch chebi CHEBI:28189 isomaltose lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -19760,15 +32020,11 @@ mesh D007542 Inosine Pranobex skos:exactMatch ncit C601 Inosine Pranobex lexical mesh D007544 Isopropyl Thiogalactoside skos:exactMatch chebi CHEBI:61448 isopropyl beta-D-thiogalactopyranoside lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D007545 Isoproterenol skos:exactMatch chebi CHEBI:64317 isoprenaline lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D007545 Isoproterenol skos:exactMatch ncit C62041 Isoproterenol lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D007546 Isoquinolines skos:exactMatch chebi CHEBI:24922 isoquinolines lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D007547 Isosorbide skos:exactMatch chebi CHEBI:6060 Isosorbide lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D007548 Isosorbide Dinitrate skos:exactMatch ncit C29134 Isosorbide Dinitrate lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D007549 Isospora skos:exactMatch ncit C122325 Isospora lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D007555 Isoxazoles skos:exactMatch chebi CHEBI:55373 isoxazoles lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D007556 Isoxsuprine skos:exactMatch ncit C61795 Isoxsuprine lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D007557 Israel skos:exactMatch ncit C16760 Israel lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D007558 Italy skos:exactMatch ncit C16761 Italy lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D007559 Ivermectin skos:exactMatch chebi CHEBI:6078 ivermectin lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D007559 Ivermectin skos:exactMatch ncit C61796 Ivermectin lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D007560 Cote d'Ivoire skos:exactMatch ncit C16762 Cote d'Ivoire lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D007562 Creutzfeldt-Jakob Syndrome skos:exactMatch ncit C26802 Creutzfeldt-Jakob Disease lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -19778,8 +32034,6 @@ mesh D007565 Jaundice skos:exactMatch ncit C3143 Jaundice lexical 0.95 https://g mesh D007566 Jaundice, Chronic Idiopathic skos:exactMatch ncit C34741 Dubin-Johnson Syndrome lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D007567 Jaundice, Neonatal skos:exactMatch ncit C99246 Neonatal Jaundice lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D007571 Jaw Diseases skos:exactMatch efo 0009468 jaw disease lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D007572 Jaw Fractures skos:exactMatch efo 0009612 jaw fracture lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py -mesh D007572 Jaw Fractures skos:exactMatch ncit C26803 Jaw Fracture lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D007577 JC Virus skos:exactMatch ncit C14229 JC Virus lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D007580 Jejunal Neoplasms skos:exactMatch ncit C8401 Jejunal Neoplasm lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D007589 Job Syndrome skos:exactMatch ncit C126342 STAT3 Deficiency lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -19788,14 +32042,10 @@ mesh D007597 Jordan skos:exactMatch ncit C16765 Jordan lexical 0.95 https://gith mesh D007599 Judaism skos:exactMatch ncit C86561 Judaism lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D007600 Judgment skos:exactMatch ncit C113685 Judgment lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D007601 Jugular Veins skos:exactMatch ncit C12738 Jugular Vein lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D007605 Juvenile Hormones skos:exactMatch chebi CHEBI:24851 insect growth regulator lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D007606 Juxtaglomerular Apparatus skos:exactMatch ncit C32891 Juxtaglomerular Apparatus lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D007608 Kainic Acid skos:exactMatch chebi CHEBI:31746 kainic acid lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D007608 Kainic Acid skos:exactMatch ncit C79132 Kainic Acid lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D007609 Kallidin skos:exactMatch chebi CHEBI:6102 Kallidin lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D007610 Kallikreins skos:exactMatch ncit C16767 Kallikrein lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D007611 Aprotinin skos:exactMatch ncit C47402 Aprotinin lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D007612 Kanamycin skos:exactMatch chebi CHEBI:6104 kanamycin lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D007615 Kansas skos:exactMatch ncit C43493 Kansas lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D007616 Kaolin skos:exactMatch ncit C80285 Kaolin lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D007617 Kaposi Varicelliform Eruption skos:exactMatch ncit C35620 Herpes Simplex Dermatitis lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -19808,8 +32058,6 @@ mesh D007625 Kearns-Sayre Syndrome skos:exactMatch ncit C84798 Kearns-Sayre Synd mesh D007627 Keloid skos:exactMatch ncit C3145 Keloid lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D007629 Kentucky skos:exactMatch ncit C43484 Kentucky lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D007630 Kenya skos:exactMatch ncit C16769 Kenya lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D007631 Chlordecone skos:exactMatch chebi CHEBI:16548 chlordecone lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D007632 Keratan Sulfate skos:exactMatch chebi CHEBI:60924 keratan sulfate lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D007632 Keratan Sulfate skos:exactMatch ncit C28164 Keratan Sulfate lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D007633 Keratins skos:exactMatch ncit C20693 Cytokeratin lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D007636 Keratoacanthoma skos:exactMatch hp HP:0031525 Keratoacanthoma lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -19819,21 +32067,12 @@ mesh D007640 Keratoconus skos:exactMatch ncit C26806 Keratoconus lexical 0.95 ht mesh D007642 Keratosis skos:exactMatch ncit C34747 Keratosis lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D007644 Darier Disease skos:exactMatch ncit C84665 Darier Disease lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D007647 Kernicterus skos:exactMatch ncit C84799 Kernicterus lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D007649 Ketamine skos:exactMatch chebi CHEBI:6121 ketamine lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D007650 Ketanserin skos:exactMatch chebi CHEBI:6123 ketanserin lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D007654 Ketoconazole skos:exactMatch chebi CHEBI:47519 ketoconazole lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D007654 Ketoconazole skos:exactMatch ncit C605 Ketoconazole lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D007655 Ketoglutarate Dehydrogenase Complex skos:exactMatch hgnc 8124 OGDH lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py -mesh D007657 Ketone Bodies skos:exactMatch chebi CHEBI:73693 ketone body lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D007657 Ketone Bodies skos:exactMatch ncit C111239 Ketone Body Measurement lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D007659 Ketones skos:exactMatch chebi CHEBI:17087 ketone lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D007660 Ketoprofen skos:exactMatch chebi CHEBI:6128 ketoprofen lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D007661 Ketoses skos:exactMatch chebi CHEBI:24978 ketose lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D007662 Ketosis skos:exactMatch hp HP:0001993 Ketoacidosis lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D007664 Ketosteroids skos:exactMatch chebi CHEBI:35789 oxo steroid lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D007665 Ketotifen skos:exactMatch chebi CHEBI:92511 ketotifen lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D007665 Ketotifen skos:exactMatch ncit C61799 Ketotifen lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D007666 Khellin skos:exactMatch chebi CHEBI:6133 khellin lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D007666 Khellin skos:exactMatch ncit C75957 Khellin lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D007669 Kidney Calculi skos:exactMatch ncit C26807 Renal Stone lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D007674 Kidney Diseases skos:exactMatch ncit C3149 Kidney Disorder lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -19841,10 +32080,8 @@ mesh D007676 Kidney Failure, Chronic skos:exactMatch ncit C9439 Chronic Kidney D mesh D007677 Kidney Function Tests skos:exactMatch ncit C74972 Renal Function Test lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D007690 Polycystic Kidney Diseases skos:exactMatch efo 0008620 Polycystic Kidney Disease lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D007691 Medullary Sponge Kidney skos:exactMatch ncit C34751 Medullary Sponge Kidney lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D007692 Diatomaceous Earth skos:exactMatch chebi CHEBI:82661 diatomaceous earth lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D007699 Kinesthesis skos:exactMatch go GO:0019232 perception of rate of movement lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D007700 Kinetics skos:exactMatch ncit C16770 Kinetics lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D007701 Kinetin skos:exactMatch chebi CHEBI:27407 kinetin lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D007703 Peptidyl-Dipeptidase A skos:exactMatch hgnc 2707 ACE lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D007706 Menkes Kinky Hair Syndrome skos:exactMatch ncit C75486 Menkes Disease lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D007707 Kyrgyzstan skos:exactMatch ncit C16771 Kyrgyzstan lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -19859,9 +32096,7 @@ mesh D007719 Knee Joint skos:exactMatch ncit C32898 Knee Joint lexical 0.95 http mesh D007724 Vulvar Lichen Sclerosus skos:exactMatch ncit C27723 Vulvar Lichen Sclerosus lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D007725 Krukenberg Tumor skos:exactMatch ncit C3153 Krukenberg Tumor lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D007730 Kuwait skos:exactMatch ncit C16775 Kuwait lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D007735 Kynuramine skos:exactMatch chebi CHEBI:73472 kynuramine lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D007737 Kynurenine skos:exactMatch chebi CHEBI:28683 kynurenine lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D007741 Labetalol skos:exactMatch chebi CHEBI:6343 labetalol lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D007744 Obstetric Labor Complications skos:exactMatch ncit C118419 Labor Complication lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D007746 Labor Presentation skos:exactMatch ncit C92724 Fetal Presentation lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D007751 Labor, Induced skos:exactMatch ncit C92814 Induction of Labor lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -19876,7 +32111,6 @@ mesh D007764 Lacquer skos:exactMatch ncit C149626 Lacquer Dosage Form Category l mesh D007765 Lacrimal Apparatus skos:exactMatch ncit C32905 Lacrimal Apparatus lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D007766 Lacrimal Apparatus Diseases skos:exactMatch ncit C38031 Tearing lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D007767 Lacrimal Duct Obstruction skos:exactMatch ncit C34757 Lacrimal Duct Obstruction lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D007769 Lactams skos:exactMatch chebi CHEBI:24995 lactam lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D007773 Lactates skos:exactMatch chebi CHEBI:24997 lactate salt lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D007777 Lactobacillaceae skos:exactMatch ncit C85943 Lactobacillaceae lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D007778 Lactobacillus skos:exactMatch ncit C76352 Lactobacillus lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -19888,16 +32122,13 @@ mesh D007783 Lactones skos:exactMatch ncit C606 Lactone Compound lexical 0.95 ht mesh D007784 Lactoperoxidase skos:exactMatch hgnc 6678 LPO lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D007785 Lactose skos:exactMatch chebi CHEBI:36219 alpha-lactose lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D007787 Lactose Intolerance skos:exactMatch ncit C3154 Lactose Intolerance lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D007789 Lactose Tolerance Test skos:exactMatch efo 0010557 lactose tolerance test lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D007790 Lactosylceramides skos:exactMatch chebi CHEBI:17950 beta-D-galactosyl-(1->4)-beta-D-glucosyl-(1<->1)-N-acylsphingosine lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D007791 Lactoylglutathione Lyase skos:exactMatch hgnc 4323 GLO1 lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D007792 Lactulose skos:exactMatch chebi CHEBI:6359 lactulose lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D007793 Lagomorpha skos:exactMatch ncit C79106 Lagomorpha lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D007796 Laminectomy skos:exactMatch ncit C21061 Laminectomy lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D007797 Laminin skos:exactMatch ncit C16778 Laminin lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D007806 Language Disorders skos:exactMatch ncit C97155 Language Disorder lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D007809 Lanolin skos:exactMatch ncit C94238 Lanolin lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D007810 Lanosterol skos:exactMatch chebi CHEBI:16521 lanosterol lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D007811 Lanthanum skos:exactMatch chebi CHEBI:33336 lanthanum atom lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D007811 Lanthanum skos:exactMatch ncit C61800 Lanthanum lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D007812 Laos skos:exactMatch ncit C16780 Lao People's Democratic Republic lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -19960,8 +32191,6 @@ mesh D007928 Lethal Dose 50 skos:exactMatch ncit C16788 LD-50 lexical 0.95 https mesh D007930 Leucine skos:exactMatch chebi CHEBI:15603 L-leucine lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D007931 Leucyl Aminopeptidase skos:exactMatch hgnc 18449 LAP3 lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D007934 Leuconostoc skos:exactMatch ncit C76357 Leuconostoc lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D007937 Leukapheresis skos:exactMatch efo 0009126 leukapheresis lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py -mesh D007937 Leukapheresis skos:exactMatch ncit C15269 Leukapheresis lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D007938 Leukemia skos:exactMatch ncit C3161 Leukemia lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D007943 Leukemia, Hairy Cell skos:exactMatch ncit C7402 Hairy Cell Leukemia lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D007945 Leukemia, Lymphoid skos:exactMatch ncit C7539 Lymphoid Leukemia lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -19997,7 +32226,6 @@ mesh D007988 Liberia skos:exactMatch ncit C16791 Liberia lexical 0.95 https://gi mesh D007998 Library Science skos:exactMatch ncit C16792 Library Science lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D008002 Libya skos:exactMatch ncit C16793 Libya lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D008010 Lichen Planus skos:exactMatch ncit C3189 Lichen Planus lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D008012 Lidocaine skos:exactMatch chebi CHEBI:6456 lidocaine lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D008013 Lidoflazine skos:exactMatch ncit C81685 Lidoflazine lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D008015 Liechtenstein skos:exactMatch ncit C16794 Liechtenstein lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D008018 Life Cycle Stages skos:exactMatch efo 0000399 developmental stage lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -20075,7 +32303,6 @@ mesh D008155 Lucensomycin skos:exactMatch ncit C166679 Lucimycin lexical 0.95 ht mesh D008156 Luciferases skos:exactMatch ncit C16802 Luciferase lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D008160 Lumbosacral Plexus skos:exactMatch ncit C52805 Lumbosacral Plexus lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D008161 Lumbosacral Region skos:exactMatch ncit C48824 Lumbosacral Region lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D008169 Lung Abscess skos:exactMatch ncit C99090 Lung Abscess lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D008171 Lung Diseases skos:exactMatch ncit C3198 Lung Disorder lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D008179 Lupus Erythematosus, Discoid skos:exactMatch ncit C26820 Discoid Lupus Erythematosus lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D008181 Lupus Nephritis skos:exactMatch ncit C34789 Lupus Glomerulonephritis lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -20130,12 +32357,6 @@ mesh D008269 Macular Edema skos:exactMatch ncit C35468 Macular Edema lexical 0.9 mesh D008271 Mycetoma skos:exactMatch ncit C85505 Mycetoma lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D008272 Mafenide skos:exactMatch chebi CHEBI:6633 Mafenide lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D008274 Magnesium skos:exactMatch chebi CHEBI:25107 magnesium atom lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D008276 Magnesium Hydroxide skos:exactMatch chebi CHEBI:6637 magnesium dihydroxide lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py -mesh D008276 Magnesium Hydroxide skos:exactMatch ncit C29262 Magnesium Hydroxide lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D008277 Magnesium Oxide skos:exactMatch chebi CHEBI:31794 magnesium oxide lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py -mesh D008277 Magnesium Oxide skos:exactMatch ncit C29242 Magnesium Oxide lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D008278 Magnesium Sulfate skos:exactMatch chebi CHEBI:32599 magnesium sulfate lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py -mesh D008278 Magnesium Sulfate skos:exactMatch ncit C623 Magnesium Sulfate lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D008279 Magnetic Resonance Imaging skos:exactMatch ncit C16809 Magnetic Resonance Imaging lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D008281 Maine skos:exactMatch ncit C43457 Maine lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D008286 Malabsorption Syndromes skos:exactMatch hp HP:0002024 Malabsorption lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py @@ -20205,7 +32426,6 @@ mesh D008413 Mastitis skos:exactMatch ncit C53662 Mastitis lexical 0.95 https:// mesh D008415 Mastocytosis skos:exactMatch efo 0006453 MCAS lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D008415 Mastocytosis skos:exactMatch ncit C84269 Mastocytosis lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D008417 Mastoiditis skos:exactMatch ncit C128368 Mastoiditis lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D008428 Maternal Mortality skos:exactMatch ncit C111860 Maternal Mortality lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D008433 Mathematics skos:exactMatch ncit C16825 Mathematics lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D008435 Mauritania skos:exactMatch ncit C16826 Mauritania lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D008436 Mauritius skos:exactMatch ncit C16827 Mauritius lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -20213,7 +32433,6 @@ mesh D008437 Maxilla skos:exactMatch ncit C26470 Maxilla lexical 0.95 https://gi mesh D008438 Maxillary Artery skos:exactMatch ncit C34205 Maxillary Artery lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D008443 Maxillary Sinus skos:exactMatch ncit C12275 Maxillary Sinus lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D008444 Maxillary Sinus Neoplasms skos:exactMatch ncit C3219 Maxillary Sinus Neoplasm lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D008451 Maximal Voluntary Ventilation skos:exactMatch efo 0008431 maximal voluntary ventilation lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D008453 Maytansine skos:exactMatch chebi CHEBI:6701 maytansine lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D008454 Mazindol skos:exactMatch chebi CHEBI:6702 Mazindol lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D008456 2-Methyl-4-chlorophenoxyacetic Acid skos:exactMatch chebi CHEBI:50099 (4-chloro-2-methylphenoxy)acetic acid lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -20482,7 +32701,6 @@ mesh D008855 Microscopy, Electron, Scanning skos:exactMatch ncit C16855 Scanning mesh D008856 Microscopy, Fluorescence skos:exactMatch ncit C16856 Fluorescence Microscopy lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D008858 Microscopy, Phase-Contrast skos:exactMatch ncit C16857 Phase-Contrast Microscopy lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D008859 Microscopy, Polarization skos:exactMatch ncit C16858 Polarization Microscopy lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D008860 Microscopy, Ultraviolet skos:exactMatch ncit C16859 Ultraviolet Microscopy lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D008863 Microspheres skos:exactMatch ncit C94188 Microsphere lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D008864 Microsporum skos:exactMatch ncit C127294 Microsporum lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D008869 Microtubule-Associated Proteins skos:exactMatch ncit C16861 Microtubule Associated Protein lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -20566,15 +32784,11 @@ mesh D009018 Morocco skos:exactMatch ncit C16878 Morocco lexical 0.95 https://gi mesh D009020 Morphine skos:exactMatch chebi CHEBI:17303 morphine lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D009024 Morphogenesis skos:exactMatch ncit C16879 Morphogenesis lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D009025 Morpholines skos:exactMatch chebi CHEBI:38785 morpholines lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D009026 Mortality skos:exactMatch efo 0004352 mortality lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py -mesh D009026 Mortality skos:exactMatch ncit C16880 Mortality lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D009028 Morula skos:exactMatch ncit C34212 Morula lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D009030 Mosaicism skos:exactMatch ncit C92976 Mosaicism lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D009035 Mothers skos:exactMatch ncit C25189 Mother lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D009037 Motilin skos:exactMatch chebi CHEBI:80269 Motilin lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D009038 Motion skos:exactMatch ncit C75602 Motion lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D009041 Motion Sickness skos:exactMatch efo 0006928 motion sickness lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py -mesh D009041 Motion Sickness skos:exactMatch ncit C34824 Motion Sickness lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D009042 Motivation skos:exactMatch ncit C28495 Motivation lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D009044 Motor Cortex skos:exactMatch ncit C97339 Primary Motor Cortex lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D009046 Motor Neurons skos:exactMatch ncit C12644 Motor Neuron lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -20611,7 +32825,6 @@ mesh D009115 Muridae skos:exactMatch ncit C14246 Muridae lexical 0.95 https://gi mesh D009116 Muscarine skos:exactMatch chebi CHEBI:7034 Muscarine lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D009118 Muscimol skos:exactMatch chebi CHEBI:7035 muscimol lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D009119 Muscle Contraction skos:exactMatch ncit C30085 Muscle Contraction lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D009120 Muscle Cramp skos:exactMatch efo 0009846 muscle cramp lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D009122 Muscle Hypertonia skos:exactMatch ncit C87085 Hypertonia lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D009123 Muscle Hypotonia skos:exactMatch hp HP:0001290 Generalized hypotonia lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D009123 Muscle Hypotonia skos:exactMatch ncit C87070 Hypotonia lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -20725,7 +32938,6 @@ mesh D009331 Necator skos:exactMatch ncit C123426 Necator lexical 0.95 https://g mesh D009332 Necatoriasis skos:exactMatch ncit C34838 Necatoriasis lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D009334 Neck Muscles skos:exactMatch ncit C33163 Neck Muscle lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D009335 Necrobiosis Lipoidica skos:exactMatch ncit C34840 Necrobiosis Lipoidica lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D009336 Necrosis skos:exactMatch efo 0009426 necrosis lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D009340 Nefopam skos:exactMatch chebi CHEBI:88316 nefopam lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D009340 Nefopam skos:exactMatch ncit C83994 Nefopam lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D009341 Negativism skos:exactMatch hp HP:0410291 Negativism lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -20741,7 +32953,6 @@ mesh D009356 Neon skos:exactMatch chebi CHEBI:33310 neon atom lexical 0.95 https mesh D009357 Neonatal Abstinence Syndrome skos:exactMatch ncit C87101 Neonatal Abstinence Syndrome lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D009359 Neonatology skos:exactMatch ncit C105686 Neonatology lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D009362 Neoplasm Metastasis skos:exactMatch ncit C19151 Metastasis lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D009369 Neoplasms skos:exactMatch ncit C23988 Neoplasms lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D009375 Neoplasms, Glandular and Epithelial skos:exactMatch hp HP:0031492 Epithelial neoplasm lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D009377 Multiple Endocrine Neoplasia skos:exactMatch ncit C6432 Multiple Endocrine Neoplasia lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D009381 Neoplasms, Radiation-Induced skos:exactMatch ncit C3265 Radiation-Related Neoplasm lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -20789,8 +33000,6 @@ mesh D009457 Neuroglia skos:exactMatch ncit C12615 Neuroglia lexical 0.95 https: mesh D009459 Neuroleptic Malignant Syndrome skos:exactMatch ncit C94829 Neuroleptic Malignant Syndrome lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D009460 Neurologic Examination skos:exactMatch ncit C81313 Neurologic Examination lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D009462 Neurology skos:exactMatch ncit C16908 Neurology lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D009463 Neuroma skos:exactMatch efo 0009619 neuroma lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py -mesh D009463 Neuroma skos:exactMatch ncit C3275 Neuroma lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D009464 Neuroma, Acoustic skos:exactMatch ncit C3276 Acoustic Schwannoma lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D009470 Muscle Spindles skos:exactMatch ncit C13824 Muscle Spindle lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D009471 Neuromyelitis Optica skos:exactMatch ncit C84934 Neuromyelitis Optica lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -21046,8 +33255,6 @@ mesh D009902 Optic Neuritis skos:exactMatch ncit C84950 Optic Neuritis lexical 0 mesh D009903 Optical Illusions skos:exactMatch ncit C34865 Optical Illusion lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D009904 Optical Rotation skos:exactMatch ncit C103201 Optical Rotation lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D009910 Oral Hygiene skos:exactMatch ncit C60725 Oral Hygiene lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D009917 Orbital Fractures skos:exactMatch efo 0009611 orbital fracture lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py -mesh D009917 Orbital Fractures skos:exactMatch ncit C118744 Orbital Fracture lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D009918 Orbital Neoplasms skos:exactMatch ncit C3290 Orbit Neoplasm lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D009919 Orchiectomy skos:exactMatch ncit C15288 Orchiectomy lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D009920 Orchitis skos:exactMatch ncit C97145 Orchitis lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -21103,7 +33310,6 @@ mesh D010018 Osteomalacia skos:exactMatch hp HP:0002749 Osteomalacia lexical 0.9 mesh D010022 Osteopetrosis skos:exactMatch ncit C26840 Osteopetrosis lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D010023 Osteopoikilosis skos:exactMatch ncit C84985 Osteopoikilosis lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D010024 Osteoporosis skos:exactMatch ncit C3298 Osteoporosis lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D010025 Osteoradionecrosis skos:exactMatch ncit C63707 Osteoradionecrosis lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D010026 Osteosclerosis skos:exactMatch ncit C41236 Osteosclerosis lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D010027 Osteotomy skos:exactMatch ncit C51903 Osteotomy lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D010030 Ostomy skos:exactMatch ncit C15290 Ostomy lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -21593,7 +33799,6 @@ mesh D010984 Platinum skos:exactMatch chebi CHEBI:33400 platinum(0) lexical 0.95 mesh D010986 Platyhelminths skos:exactMatch ncit C122024 Platyhelminthes lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D010991 Plethysmography skos:exactMatch ncit C122173 Plethysmography lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D010995 Pleural Diseases skos:exactMatch ncit C26859 Pleural Disorder lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D010996 Pleural Effusion skos:exactMatch efo 0009637 pleural effusion lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D010997 Pleural Neoplasms skos:exactMatch ncit C3332 Pleural Neoplasm lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D011003 Ploidies skos:exactMatch ncit C17001 Ploidy lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D011004 Plummer-Vinson Syndrome skos:exactMatch ncit C85016 Plummer-Vinson Syndrome lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -21604,7 +33809,6 @@ mesh D011013 Pneumonectomy skos:exactMatch ncit C15305 Pneumonectomy lexical 0.9 mesh D011014 Pneumonia skos:exactMatch efo 1001991 pneumonitis lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D011014 Pneumonia skos:exactMatch ncit C3333 Pneumonia lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D011015 Pneumonia, Aspiration skos:exactMatch ncit C34932 Aspiration Pneumonitis lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D011019 Pneumonia, Mycoplasma skos:exactMatch ncit C122526 Mycoplasmal Pneumonia lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D011020 Pneumonia, Pneumocystis skos:exactMatch hp HP:0020102 Pneumocystis jirovecii pneumonia lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D011026 Pneumopericardium skos:exactMatch ncit C99019 Pneumopericardium lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D011027 Pneumoperitoneum skos:exactMatch ncit C99012 Pneumoperitoneum lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -21889,7 +34093,6 @@ mesh D011570 Psychiatry skos:exactMatch ncit C17026 Psychiatry lexical 0.95 http mesh D011584 Psychology skos:exactMatch ncit C17027 Psychology lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D011586 Psychology, Clinical skos:exactMatch ncit C17028 Clinical Psychology lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D011587 Psychology, Comparative skos:exactMatch ncit C17029 Comparative Psychology lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D011588 Psychology, Educational skos:exactMatch ncit C17030 Educational Psychology lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D011589 Psychology, Experimental skos:exactMatch ncit C19200 Experimental Psychology lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D011590 Psychology, Industrial skos:exactMatch ncit C17032 Industrial Psychology lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D011593 Psychology, Social skos:exactMatch ncit C17033 Social Psychology lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -21922,10 +34125,8 @@ mesh D011649 Pulmonary Alveolar Proteinosis skos:exactMatch ncit C85037 Pulmonar mesh D011650 Pulmonary Alveoli skos:exactMatch ncit C12986 Alveolus lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D011651 Pulmonary Artery skos:exactMatch ncit C12774 Pulmonary Artery lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D011653 Pulmonary Diffusing Capacity skos:exactMatch efo 0009369 diffusing capacity of the lung for carbon monoxide lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D011654 Pulmonary Edema skos:exactMatch ncit C26868 Pulmonary Edema lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D011655 Pulmonary Embolism skos:exactMatch ncit C50713 Pulmonary Embolism lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D011657 Pulmonary Eosinophilia skos:exactMatch hp HP:0032071 Pulmonary eosinophilic infiltration lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py -mesh D011658 Pulmonary Fibrosis skos:exactMatch ncit C26869 Pulmonary Fibrosis lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D011660 Pulmonary Heart Disease skos:exactMatch ncit C34478 Cor Pulmonale lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D011662 Pulmonary Subvalvular Stenosis skos:exactMatch ncit C34961 Congenital Infundibular Stenosis lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D011664 Pulmonary Valve skos:exactMatch ncit C12775 Pulmonic Valve lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -22038,7 +34239,6 @@ mesh D011835 Radiation Protection skos:exactMatch ncit C15475 Radioprotection le mesh D011836 Radiation Tolerance skos:exactMatch ncit C17051 Radiation Sensitivity lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D011838 Radiation-Sensitizing Agents skos:exactMatch chebi CHEBI:132992 radiosensitizing agent lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D011838 Radiation-Sensitizing Agents skos:exactMatch ncit C798 Radiosensitizing Agent lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D011839 Radiation, Ionizing skos:exactMatch ncit C17052 Ionizing Radiation lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D011840 Radiation, Nonionizing skos:exactMatch ncit C17053 Nonionizing Radiation lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D011845 Radio skos:exactMatch ncit C96980 Radio lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D011846 Radio Waves skos:exactMatch ncit C70832 Radio Frequency lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -22048,7 +34248,6 @@ mesh D011852 Radioallergosorbent Test skos:exactMatch ncit C78179 Radioallergoso mesh D011853 Radiobiology skos:exactMatch ncit C17055 Radiation Biology lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D011854 Radiochemistry skos:exactMatch ncit C17056 Radiochemistry lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D011855 Radiodermatitis skos:exactMatch ncit C3349 Radiation-Induced Dermatitis lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D011860 Radiography, Abdominal skos:exactMatch ncit C38102 Abdominal Radiography lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D011863 Radioimmunoassay skos:exactMatch ncit C17057 Radioimmunoassay lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D011870 Radiologic Health skos:exactMatch ncit C17058 Radiologic Health lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D011874 Radiometry skos:exactMatch ncit C15312 Radiation Dosimetry lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -22056,7 +34255,6 @@ mesh D011876 Radionuclide Generators skos:exactMatch ncit C94966 Radionuclide Ge mesh D011877 Radionuclide Imaging skos:exactMatch ncit C62667 Radionuclide Imaging lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D011878 Radiotherapy skos:exactMatch ncit C15313 Radiation Therapy lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D011883 Radium skos:exactMatch ncit C2391 Radium lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D011885 Radius Fractures skos:exactMatch ncit C99039 Radius Fracture lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D011886 Radon skos:exactMatch ncit C800 Radon lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D011887 Raffinose skos:exactMatch chebi CHEBI:16634 raffinose lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D011888 Rafoxanide skos:exactMatch ncit C152146 Rafoxanide lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -22070,7 +34268,6 @@ mesh D011928 Raynaud Disease skos:exactMatch ncit C50724 Raynaud Phenomenon lexi mesh D011929 Razoxane skos:exactMatch chebi CHEBI:50225 razoxane lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D011929 Razoxane skos:exactMatch ncit C801 Razoxane lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D011933 Reagent Kits, Diagnostic skos:exactMatch ncit C15314 Diagnostic Reagents and Test Kits lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D011941 Receptors, Adrenergic skos:exactMatch ncit C105824 Adrenergic Receptor lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D011944 Receptors, Androgen skos:exactMatch ncit C17063 Androgen Receptor lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D011946 Receptors, Antigen skos:exactMatch ncit C126107 Antigen Receptor lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D011948 Receptors, Antigen, T-Cell skos:exactMatch ncit C17065 T-Cell Receptor lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -22083,7 +34280,6 @@ mesh D011965 Receptors, Glucocorticoid skos:exactMatch ncit C17071 Glucocorticoi mesh D011966 Receptors, LHRH skos:exactMatch hgnc 4421 GNRHR lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D011966 Receptors, LHRH skos:exactMatch ncit C38910 Gonadotropin-Releasing Hormone Receptor lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D011969 Receptors, Histamine H1 skos:exactMatch hgnc 5182 HRH1 lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D011972 Receptor, Insulin skos:exactMatch ncit C17072 Insulin Receptor lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D011973 Receptors, LDL skos:exactMatch hgnc 6547 LDLR lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D011973 Receptors, LDL skos:exactMatch ncit C17074 Low-Density Lipoprotein Receptor lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D011974 Receptors, LH skos:exactMatch hgnc 6585 LHCGR lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py @@ -22115,9 +34311,6 @@ mesh D012038 Regeneration skos:exactMatch ncit C17083 Regeneration lexical 0.95 mesh D012042 Registries skos:exactMatch ncit C61393 Registry lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D012044 Regression Analysis skos:exactMatch ncit C53237 Regression Method lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D012045 Regulatory Sequences, Nucleic Acid skos:exactMatch ncit C13734 Regulatory Element lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D012046 Rehabilitation skos:exactMatch efo 0009581 rehabilitation lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py -mesh D012046 Rehabilitation skos:exactMatch ncit C15315 Rehabilitation lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D012047 Rehabilitation Centers skos:exactMatch ncit C53535 Rehabilitation Center lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D012062 Relative Biological Effectiveness skos:exactMatch ncit C94971 Relative Biological Effectiveness lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D012063 Relaxation skos:exactMatch ncit C62188 Relaxation lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D012064 Relaxation Therapy skos:exactMatch ncit C15316 Relaxation Therapy lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -22155,7 +34348,6 @@ mesh D012143 Respiratory Physiological Phenomena skos:exactMatch ncit C17092 Res mesh D012144 Respite Care skos:exactMatch ncit C94472 Respite Care lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D012146 Rest skos:exactMatch ncit C28185 Resting lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D012148 Restless Legs Syndrome skos:exactMatch ncit C84501 Restless Leg Syndrome lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D012149 Restraint, Physical skos:exactMatch ncit C158344 Physical Restraint lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D012150 Polymorphism, Restriction Fragment Length skos:exactMatch ncit C17093 Restriction Fragment Length Polymorphism lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D012151 Resuscitation skos:exactMatch ncit C50822 Resuscitation lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D012155 Reticulin skos:exactMatch chebi CHEBI:24750 5'-hydroxystreptomycin lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py @@ -22175,7 +34367,6 @@ mesh D012176 Retinoids skos:exactMatch chebi CHEBI:26537 retinoid lexical 0.95 h mesh D012176 Retinoids skos:exactMatch ncit C804 Retinoic Acid Agent lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D012178 Retinopathy of Prematurity skos:exactMatch hp HP:0500049 Retinopathy of prematurity lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D012179 Retirement skos:exactMatch ncit C78237 Retirement lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D012185 Retroperitoneal Fibrosis skos:exactMatch ncit C26876 Retroperitoneal Fibrosis lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D012186 Retroperitoneal Neoplasms skos:exactMatch ncit C3357 Retroperitoneal Neoplasm lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D012189 Retrospective Studies skos:exactMatch ncit C53312 Retrospective Study lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D012194 RNA-Directed DNA Polymerase skos:exactMatch ncit C17096 Reverse Transcriptase lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -22194,7 +34385,6 @@ mesh D012219 Rheumatology skos:exactMatch ncit C17099 Rheumatology lexical 0.95 mesh D012220 Rhinitis skos:exactMatch hp HP:0031417 Rhinorrhea lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D012220 Rhinitis skos:exactMatch ncit C34986 Rhinitis lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D012221 Rhinitis, Allergic, Perennial skos:exactMatch ncit C92189 Perennial Allergic Rhinitis lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D012223 Rhinitis, Vasomotor skos:exactMatch ncit C34988 Vasomotor Rhinitis lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D012224 Rhinophyma skos:exactMatch ncit C34989 Rhinophyma lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D012230 Rhizobiaceae skos:exactMatch ncit C85959 Rhizobiaceae lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D012231 Rhizobium skos:exactMatch ncit C86718 Rhizobium lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -22208,8 +34398,6 @@ mesh D012243 Rhodopsin skos:exactMatch hgnc 10012 RHO lexical 0.95 https://githu mesh D012244 Rhodospirillaceae skos:exactMatch ncit C85960 Rhodospirillaceae lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D012248 Rhodotorula skos:exactMatch ncit C124370 Rhodotorula lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D012249 Rhombencephalon skos:exactMatch ncit C40336 Hind-Brain lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D012253 Rib Fractures skos:exactMatch efo 0009620 rib fracture lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py -mesh D012253 Rib Fractures skos:exactMatch ncit C34990 Rib Fracture lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D012254 Ribavirin skos:exactMatch chebi CHEBI:63580 ribavirin lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D012255 Ribitol skos:exactMatch chebi CHEBI:15963 ribitol lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D012256 Riboflavin skos:exactMatch chebi CHEBI:17015 riboflavin lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -22242,7 +34430,6 @@ mesh D012309 Risk-Taking skos:exactMatch hp HP:0031472 Risk taking lexical 0.95 mesh D012310 Ristocetin skos:exactMatch chebi CHEBI:85129 ristocetin lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D012310 Ristocetin skos:exactMatch ncit C152234 Ristocetin lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D012312 Ritodrine skos:exactMatch chebi CHEBI:8872 Ritodrine lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D012313 RNA skos:exactMatch chebi CHEBI:33697 ribonucleic acid lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D012318 RNA Polymerase I skos:exactMatch ncit C95947 RNA Polymerase I lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D012319 RNA Polymerase II skos:exactMatch ncit C95948 RNA Polymerase II lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D012321 DNA-Directed RNA Polymerases skos:exactMatch ncit C20076 RNA Polymerase lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -22393,7 +34580,6 @@ mesh D012578 Schools, Nursery skos:exactMatch ncit C147937 Preschool lexical 0.9 mesh D012584 Sciatic Nerve skos:exactMatch ncit C52810 Sciatic Nerve lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D012586 Science skos:exactMatch ncit C61397 Science lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D012587 Scimitar Syndrome skos:exactMatch ncit C85056 Scimitar Syndrome lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D012592 Scleredema Adultorum skos:exactMatch ncit C85057 Scleredema Adultorum lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D012593 Sclerema Neonatorum skos:exactMatch ncit C35009 Sclerema Neonatorum lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D012598 Sclerosis skos:exactMatch ncit C69309 Sclerosis lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D012601 Scopolamine skos:exactMatch chebi CHEBI:16794 scopolamine lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -22473,15 +34659,12 @@ mesh D012769 Shock skos:exactMatch hp HP:0031273 Shock lexical 0.95 https://gith mesh D012770 Shock, Cardiogenic skos:exactMatch ncit C50482 Cardiogenic Shock lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D012771 Shock, Hemorrhagic skos:exactMatch ncit C35017 Hemorrhagic Shock lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D012772 Shock, Septic skos:exactMatch efo 0006834 septic shock lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py -mesh D012772 Shock, Septic skos:exactMatch ncit C35018 Septic Shock lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D012773 Shock, Surgical skos:exactMatch ncit C35019 Surgical Shock lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D012774 Shock, Traumatic skos:exactMatch ncit C50782 Traumatic Shock lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D012778 Short Bowel Syndrome skos:exactMatch ncit C99059 Short Bowel Syndrome lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D012779 Short Rib-Polydactyly Syndrome skos:exactMatch ncit C85065 Short Rib-Polydactyly Syndrome lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D012782 Shoulder skos:exactMatch ncit C25203 Shoulder lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D012783 Shoulder Dislocation skos:exactMatch ncit C35020 Shoulder Dislocation lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D012784 Shoulder Fractures skos:exactMatch efo 0009621 shoulder fracture lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py -mesh D012784 Shoulder Fractures skos:exactMatch ncit C35021 Shoulder Fracture lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D012785 Shoulder Joint skos:exactMatch ncit C33548 Shoulder Joint lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D012793 Sialadenitis skos:exactMatch hp HP:0031281 Sialadenitis lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D012798 Sialorrhea skos:exactMatch ncit C118301 Sialorrhea lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -22522,7 +34705,6 @@ mesh D012873 Skin Diseases, Genetic skos:exactMatch ncit C156032 Genodermatosis mesh D012880 Skin Pigmentation skos:exactMatch ncit C35026 Skin Pigmentation lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D012882 Skin Tests skos:exactMatch ncit C17137 Skin Test lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D012883 Skin Ulcer skos:exactMatch ncit C54247 Skin Ulcer lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D012887 Skull Fractures skos:exactMatch ncit C50745 Skull Fracture lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D012888 Skull Neoplasms skos:exactMatch ncit C3375 Skull Neoplasm lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D012890 Sleep skos:exactMatch ncit C73425 Sleep lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D012895 Sleep, REM skos:exactMatch ncit C94418 REM Sleep lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -22531,7 +34713,6 @@ mesh D012902 Smegma skos:exactMatch ncit C33574 Smegma lexical 0.95 https://gith mesh D012903 Smell skos:exactMatch ncit C17139 Olfaction lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D012906 Smoke skos:exactMatch ncit C829 Tobacco Smoke lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D012913 Snoring skos:exactMatch hp HP:0025267 Snoring lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D012915 Soaps skos:exactMatch ncit C42983 Soap Dosage Form lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D012934 Social Isolation skos:exactMatch ncit C21100 Social Isolation lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D012942 Social Sciences skos:exactMatch ncit C17141 Social Sciences lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D012943 Social Security skos:exactMatch ncit C120451 Social Security Retirement Benefit lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -22542,32 +34723,10 @@ mesh D012959 Socioeconomic Factors skos:exactMatch ncit C17468 Socioeconomic Fac mesh D012961 Sociology skos:exactMatch ncit C17143 Sociology lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D012962 Sociology, Medical skos:exactMatch ncit C17144 Medical Sociology lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D012964 Sodium skos:exactMatch chebi CHEBI:52634 sodium-23 atom lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D012965 Sodium Chloride skos:exactMatch chebi CHEBI:26710 sodium chloride lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py -mesh D012965 Sodium Chloride skos:exactMatch ncit C29974 Sodium Chloride lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D012966 Sodium Cyanide skos:exactMatch chebi CHEBI:33192 sodium cyanide lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py -mesh D012966 Sodium Cyanide skos:exactMatch ncit C163699 Sodium Cyanide lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D012967 Sodium Dodecyl Sulfate skos:exactMatch chebi CHEBI:8984 sodium dodecyl sulfate lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py -mesh D012967 Sodium Dodecyl Sulfate skos:exactMatch ncit C76733 Sodium Lauryl Sulfate lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D012968 Etidronic Acid skos:exactMatch chebi CHEBI:4907 etidronic acid lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D012968 Etidronic Acid skos:exactMatch ncit C1332 Etidronic Acid lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D012969 Sodium Fluoride skos:exactMatch ncit C832 Sodium Fluoride lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D012970 Sodium Glutamate skos:exactMatch ncit C82288 Monosodium Glutamate lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D012971 Gold Sodium Thiosulfate skos:exactMatch chebi CHEBI:53622 sodium aurothiosulfate lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py -mesh D012971 Gold Sodium Thiosulfate skos:exactMatch ncit C152109 Gold Sodium Thiosulfate lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D012972 Sodium Hydroxide skos:exactMatch chebi CHEBI:32145 sodium hydroxide lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py -mesh D012972 Sodium Hydroxide skos:exactMatch ncit C74373 Sodium Hydroxide lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D012973 Sodium Hypochlorite skos:exactMatch chebi CHEBI:32146 sodium hypochlorite lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py -mesh D012973 Sodium Hypochlorite skos:exactMatch ncit C80658 Sodium Hypochlorite lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D012974 Sodium Iodide skos:exactMatch chebi CHEBI:33167 sodium iodide lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py -mesh D012974 Sodium Iodide skos:exactMatch ncit C80943 Sodium Iodide lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D012976 Sodium Morrhuate skos:exactMatch ncit C152110 Morrhuate Sodium lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D012977 Sodium Nitrite skos:exactMatch chebi CHEBI:78870 sodium nitrite lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D012978 Sodium Oxybate skos:exactMatch ncit C61870 Sodium Oxybate lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D012980 Sodium Salicylate skos:exactMatch chebi CHEBI:9180 Sodium salicylate lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py -mesh D012980 Sodium Salicylate skos:exactMatch ncit C834 Sodium Salicylate lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D012981 Sodium Tetradecyl Sulfate skos:exactMatch chebi CHEBI:75273 sodium tetradecyl sulfate lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py -mesh D012981 Sodium Tetradecyl Sulfate skos:exactMatch ncit C66555 Sodium Tetradecyl Sulfate lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D012982 Sodium, Dietary skos:exactMatch ncit C68287 Dietary Sodium lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D012983 Soft Tissue Neoplasms skos:exactMatch efo 1000541 Soft Tissue Neoplasm lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D012984 Software skos:exactMatch ncit C17146 Computer Program lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D012986 Software Validation skos:exactMatch ncit C142690 Software Validation lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -22765,8 +34924,6 @@ mesh D013396 Suction skos:exactMatch ncit C51939 Suction Procedure lexical 0.95 mesh D013397 Sudan skos:exactMatch ncit C17170 Sudan lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D013402 Sugar Alcohols skos:exactMatch chebi CHEBI:17522 alditol lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D013404 Suggestion skos:exactMatch ncit C48313 Suggestion lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D013405 Suicide skos:exactMatch efo 0007624 suicide lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py -mesh D013405 Suicide skos:exactMatch ncit C3394 Suicide lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D013407 Sulbactam skos:exactMatch chebi CHEBI:9321 sulbactam lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D013407 Sulbactam skos:exactMatch ncit C61957 Sulbactam lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D013408 Sulbenicillin skos:exactMatch chebi CHEBI:9322 sulbenicillin lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -23107,7 +35264,6 @@ mesh D013973 Thyrotropin-Releasing Hormone skos:exactMatch chebi CHEBI:35940 pro mesh D013973 Thyrotropin-Releasing Hormone skos:exactMatch ncit C136413 Thyrotropin-Releasing Hormone lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D013974 Thyroxine skos:exactMatch ncit C2302 Thyroxine lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D013976 Tiapamil Hydrochloride skos:exactMatch ncit C152601 Tiapamil Hydrochloride lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D013978 Tibial Fractures skos:exactMatch ncit C99083 Tibia Fracture lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D013979 Tibial Nerve skos:exactMatch ncit C52809 Tibial Nerve lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D013982 Ticarcillin skos:exactMatch chebi CHEBI:9587 ticarcillin lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D013982 Ticarcillin skos:exactMatch ncit C889 Ticarcillin lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -23166,16 +35322,13 @@ mesh D014069 Tonsillitis skos:exactMatch ncit C116006 Tonsillitis lexical 0.95 h mesh D014072 Tooth Abrasion skos:exactMatch ncit C35076 Tooth Abrasion lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D014076 Tooth Diseases skos:exactMatch ncit C35077 Dental Disorder lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D014078 Tooth Eruption skos:exactMatch ncit C94569 Tooth Eruption lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D014082 Tooth Fractures skos:exactMatch ncit C50777 Tooth Fracture lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D014092 Tooth Root skos:exactMatch ncit C33446 Root lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D014094 Tooth, Deciduous skos:exactMatch ncit C33745 Temporary Tooth lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D014095 Tooth, Impacted skos:exactMatch hp HP:0001571 Multiple impacted teeth lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D014097 Tooth, Unerupted skos:exactMatch hp HP:0000706 Unerupted tooth lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D014098 Toothache skos:exactMatch efo 0010072 toothache lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D014099 Toothbrushing skos:exactMatch ncit C63734 Toothbrushing lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D014106 Tosylarginine Methyl Ester skos:exactMatch chebi CHEBI:62167 TAMe lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D014108 Tosylphenylalanyl Chloromethyl Ketone skos:exactMatch chebi CHEBI:9642 N-tosyl-L-phenylalanyl chloromethyl ketone lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D014109 Total Lung Capacity skos:exactMatch ncit C111325 Total Lung Capacity lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D014110 Touch skos:exactMatch ncit C38535 Touch lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D014111 Tourniquets skos:exactMatch ncit C93057 Tourniquet lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D014112 Toxaphene skos:exactMatch chebi CHEBI:77850 toxaphene lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py @@ -23471,7 +35624,6 @@ mesh D014599 Uterus skos:exactMatch ncit C12405 Uterus lexical 0.95 https://gith mesh D014602 Uvea skos:exactMatch ncit C12811 Uveal Tract lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D014603 Uveal Diseases skos:exactMatch ncit C26908 Uveal Disorder lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D014604 Uveal Neoplasms skos:exactMatch ncit C3436 Uveal Neoplasm lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D014606 Uveitis, Anterior skos:exactMatch ncit C35109 Anterior Uveitis lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D014607 Uveomeningoencephalitic Syndrome skos:exactMatch ncit C85218 Uveomeningoencephalitic Syndrome lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D014610 Uzbekistan skos:exactMatch ncit C17246 Uzbekistan lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D014611 Vaccination skos:exactMatch ncit C15346 Vaccination lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -23491,7 +35643,6 @@ mesh D014640 Vancomycin skos:exactMatch chebi CHEBI:28001 vancomycin lexical 0.9 mesh D014642 Vanilmandelic Acid skos:exactMatch chebi CHEBI:20106 vanillylmandelic acid lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D014644 Genetic Variation skos:exactMatch ncit C17248 Genetic Variation lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D014645 Herpesvirus 3, Human skos:exactMatch ncit C71091 Varicella Zoster Virus lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D014647 Varicose Ulcer skos:exactMatch efo 1001923 varicose ulcer lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D014648 Varicose Veins skos:exactMatch ncit C35114 Varicose Vein lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D014649 Vas Deferens skos:exactMatch ncit C12813 Vas Deferens lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D014651 Vasa Vasorum skos:exactMatch ncit C33852 Vasa Vasorum lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -23644,8 +35795,6 @@ mesh D014982 Xenopus laevis skos:exactMatch ncit C61089 Xenopus laevis lexical 0 mesh D014983 Xeroderma Pigmentosum skos:exactMatch ncit C3452 Xeroderma Pigmentosum lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D014985 Xerophthalmia skos:exactMatch ncit C34503 Xerophthalmia lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D014986 Xeroradiography skos:exactMatch ncit C17263 Xeroradiography lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D014987 Xerostomia skos:exactMatch efo 0009869 xerostomia lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py -mesh D014987 Xerostomia skos:exactMatch ncit C26917 Xerostomia lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D014988 Xipamide skos:exactMatch chebi CHEBI:135499 xipamide lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D014988 Xipamide skos:exactMatch ncit C87708 Xipamide lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D014989 Xiphoid Bone skos:exactMatch ncit C33895 Xiphoid Process lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -23772,7 +35921,6 @@ mesh D015212 Inflammatory Bowel Diseases skos:exactMatch ncit C3138 Inflammatory mesh D015215 Zidovudine skos:exactMatch chebi CHEBI:10110 zidovudine lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D015220 Calcium Channels skos:exactMatch ncit C16374 Calcium Channel lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D015221 Potassium Channels skos:exactMatch ncit C17008 Potassium Channel lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D015222 Sodium Channels skos:exactMatch ncit C17145 Sodium Channel lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D015223 Wolman Disease skos:exactMatch ncit C61271 Wolman Disease lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D015225 Magnetoencephalography skos:exactMatch ncit C16811 Magnetoencephalography lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D015227 Lipid Peroxidation skos:exactMatch ncit C81870 Lipid Peroxidation lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -23925,8 +36073,6 @@ mesh D015622 Epithelioid Cells skos:exactMatch ncit C12559 Epithelioid Cell lexi mesh D015624 Lambert-Eaton Myasthenic Syndrome skos:exactMatch ncit C3155 Lambert Eaton Myasthenic Syndrome lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D015625 Tissue Expansion Devices skos:exactMatch ncit C85840 Breast Tissue Expander lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D015632 1-Methyl-4-phenyl-1,2,3,6-tetrahydropyridine skos:exactMatch chebi CHEBI:17963 1-methyl-4-phenyl-1,2,3,6-tetrahydropyridine lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D015636 Magnesium Chloride skos:exactMatch chebi CHEBI:6636 magnesium dichloride lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py -mesh D015636 Magnesium Chloride skos:exactMatch ncit C29240 Magnesium Chloride lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D015638 Cytochalasin D skos:exactMatch chebi CHEBI:529996 cytochalasin D lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D015642 Radiology, Interventional skos:exactMatch ncit C17952 Interventional Radiology lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D015643 Erythromycin Ethylsuccinate skos:exactMatch chebi CHEBI:31555 Erythromycin ethylsuccinate lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py @@ -23959,7 +36105,6 @@ mesh D015700 HIV Envelope Protein gp41 skos:exactMatch ncit C16690 HIV Envelope mesh D015703 Antigens, CD skos:exactMatch ncit C78347 Cluster of Differentiation lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D015704 CD4 Antigens skos:exactMatch hgnc 1678 CD4 lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D015704 CD4 Antigens skos:exactMatch ncit C16300 T-Cell Surface Glycoprotein CD4 lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D015715 Corneal Edema skos:exactMatch ncit C50508 Corneal Edema lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D015718 Fibrin Tissue Adhesive skos:exactMatch ncit C2664 Fibrin Sealant lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D015725 Fluconazole skos:exactMatch chebi CHEBI:46081 fluconazole lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D015725 Fluconazole skos:exactMatch ncit C500 Fluconazole lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -23979,7 +36124,6 @@ mesh D015742 Propofol skos:exactMatch chebi CHEBI:44915 propofol lexical 0.95 ht mesh D015743 Giant Cells, Foreign-Body skos:exactMatch ncit C23495 Giant Cells, Foreign-Body lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D015744 Giant Cells, Langhans skos:exactMatch ncit C23496 Giant Cells, Langhans lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D015745 Granuloma, Foreign-Body skos:exactMatch ncit C3066 Foreign Body Granuloma lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D015746 Abdominal Pain skos:exactMatch ncit C140947 How Often Experienced Abdominal Discomfort lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D015750 Genes, gag skos:exactMatch ncit C16614 GAG Gene lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D015751 Genes, pol skos:exactMatch ncit C16618 POL Gene lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D015752 Genes, env skos:exactMatch ncit C16613 ENV lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -23996,7 +36140,6 @@ mesh D015766 Albendazole skos:exactMatch chebi CHEBI:16664 albendazole lexical 0 mesh D015767 Mefloquine skos:exactMatch chebi CHEBI:63609 mefloquine lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D015767 Mefloquine skos:exactMatch ncit C61827 Mefloquine lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D015773 Enalaprilat skos:exactMatch chebi CHEBI:4786 enalaprilat (anhydrous) lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D015775 Fractures, Stress skos:exactMatch ncit C26779 Stress Fracture lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D015776 Keratoderma, Palmoplantar, Diffuse skos:exactMatch ncit C3147 Tylosis lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D015777 Eicosanoids skos:exactMatch chebi CHEBI:23899 icosanoid lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D015777 Eicosanoids skos:exactMatch ncit C463 Eicosanoid lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -24042,9 +36185,7 @@ mesh D015865 Racquet Sports skos:exactMatch ncit C85400 Racquet Sport lexical 0. mesh D015866 Uveitis, Posterior skos:exactMatch ncit C35111 Posterior Uveitis lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D015867 Uveitis, Intermediate skos:exactMatch efo 0002927 International Unit lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D015873 Northwest Territories skos:exactMatch ncit C89816 Northwest Territories lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D015874 Yukon Territory skos:exactMatch ncit C89818 Yukon lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D015891 Cystatins skos:exactMatch hgnc 2476 CST4 lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D015894 Genome, Human skos:exactMatch ncit C16630 Human Genome lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D015897 Comorbidity skos:exactMatch ncit C16457 Comorbidity lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D015899 Tomography, Emission-Computed, Single-Photon skos:exactMatch ncit C17203 Single Photon Emission Computed Tomography lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D015901 Angiography, Digital Subtraction skos:exactMatch ncit C16291 Digital Subtraction Angiography lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -24101,7 +36242,6 @@ mesh D016030 Kidney Transplantation skos:exactMatch ncit C15265 Kidney Transplan mesh D016031 Liver Transplantation skos:exactMatch ncit C15271 Liver Transplantation lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D016035 Pancreas Transplantation skos:exactMatch ncit C15293 Pancreas Transplantation lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D016038 Skin Transplantation skos:exactMatch ncit C15325 Skin Transplantation lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D016040 Lung Transplantation skos:exactMatch ncit C15274 Lung Transplantation lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D016041 Heart-Lung Transplantation skos:exactMatch ncit C15247 Heart and Lung Transplantation lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D016045 Human Genome Project skos:exactMatch ncit C15254 Human Genome Project lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D016047 Zalcitabine skos:exactMatch chebi CHEBI:10101 zalcitabine lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py @@ -24110,10 +36250,7 @@ mesh D016048 Dideoxyadenosine skos:exactMatch ncit C429 Dideoxyadenosine lexical mesh D016049 Didanosine skos:exactMatch chebi CHEBI:490877 didanosine lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D016059 Range of Motion, Articular skos:exactMatch ncit C63507 Range of Motion lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D016064 Vaginal Birth after Cesarean skos:exactMatch ncit C81302 Vaginal Birth after Cesarean Delivery lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D016066 Pleural Effusion, Malignant skos:exactMatch ncit C9432 Malignant Pleural Effusion lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D016080 Arachnoid Cysts skos:exactMatch ncit C3455 Arachnoid Cyst lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D016084 Bronchoconstriction skos:exactMatch efo 0009836 bronchoconstriction lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py -mesh D016084 Bronchoconstriction skos:exactMatch ncit C40942 Bronchoconstriction lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D016085 Bronchoconstrictor Agents skos:exactMatch chebi CHEBI:50141 bronchoconstrictor agent lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D016086 Lentivirus skos:exactMatch ncit C14290 Lentivirus lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D016087 Immunodeficiency Virus, Bovine skos:exactMatch ncit C117711 Bovine Immunodeficiency Virus lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -24286,8 +36423,6 @@ mesh D016514 Genes, Neurofibromatosis 1 skos:exactMatch ncit C17424 NF1 Gene lex mesh D016515 Genes, Neurofibromatosis 2 skos:exactMatch ncit C17425 NF2 Gene lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D016521 Electrophoresis, Gel, Pulsed-Field skos:exactMatch ncit C17426 Pulsed-Field Gel Electrophoresis lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D016529 Emergency Nursing skos:exactMatch ncit C20881 Emergency Room Nursing lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D016530 Orthopedic Nursing skos:exactMatch efo 0009577 orthopedic nursing lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py -mesh D016530 Orthopedic Nursing skos:exactMatch ncit C20875 Orthopedic Nursing lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D016532 Mucopolysaccharidosis II skos:exactMatch ncit C61260 Hunter Syndrome lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D016537 Gangliosidosis, GM1 skos:exactMatch ncit C84739 GM1 Gangliosidosis lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D016538 Mucopolysaccharidosis VII skos:exactMatch ncit C84903 Sly Syndrome lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -24360,7 +36495,6 @@ mesh D016672 Zenker Diverticulum skos:exactMatch ncit C35138 Pharyngoesophageal mesh D016677 Tocainide skos:exactMatch chebi CHEBI:9611 tocainide lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D016677 Tocainide skos:exactMatch ncit C66607 Tocainide lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D016678 Genome skos:exactMatch ncit C16629 Genome lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D016679 Genome, Viral skos:exactMatch ncit C17253 Viral Genome lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D016682 Lupus Coagulation Inhibitor skos:exactMatch hp HP:0025343 Lupus anticoagulant lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D016683 Supine Position skos:exactMatch ncit C62167 Supine Position lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D016684 Prone Position skos:exactMatch ncit C62165 Prone Position lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -24526,7 +36660,6 @@ mesh D017320 HIV Protease Inhibitors skos:exactMatch chebi CHEBI:35660 HIV prote mesh D017321 Clinical Trials, Phase I as Topic skos:exactMatch ncit C15600 Phase I Trial lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D017323 Dihematoporphyrin Ether skos:exactMatch chebi CHEBI:60652 porfimer lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D017324 Hematoporphyrin Derivative skos:exactMatch ncit C1377 Hematoporphyrin Derivative lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D017325 Hepatitis B Vaccines skos:exactMatch ncit C29091 Hepatitis B Vaccine lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D017328 Fosinopril skos:exactMatch chebi CHEBI:5163 fosinopril lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D017329 Triptorelin Pamoate skos:exactMatch ncit C29523 Triptorelin Pamoate lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D017330 Remoxipride skos:exactMatch ncit C73312 Remoxipride lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -24640,7 +36773,6 @@ mesh D017539 Tunica Intima skos:exactMatch ncit C33820 Tunica Intima lexical 0.9 mesh D017540 Tunica Media skos:exactMatch ncit C33821 Tunica Media lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D017541 Aneurysm, False skos:exactMatch hp HP:0031625 Pseudoaneurysm lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D017542 Aneurysm, Ruptured skos:exactMatch ncit C26999 Ruptured Aneurysm lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D017544 Aortic Aneurysm, Abdominal skos:exactMatch ncit C27000 Abdominal Aortic Aneurysm lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D017545 Aortic Aneurysm, Thoracic skos:exactMatch ncit C27001 Thoracic Aortic Aneurysm lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D017548 Echocardiography, Transesophageal skos:exactMatch ncit C80405 Transesophageal Echocardiography lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D017551 Microdialysis skos:exactMatch ncit C116642 Microdialysis lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -24660,7 +36792,6 @@ mesh D017582 Renal Replacement Therapy skos:exactMatch ncit C126400 Renal Replac mesh D017584 Reproductive History skos:exactMatch ncit C17655 Reproductive History lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D017585 Ultrasonography, Doppler, Transcranial skos:exactMatch ncit C122930 Transcranial Doppler Ultrasonography lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D017586 Diskectomy skos:exactMatch ncit C21009 Discectomy lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D017588 Hyperandrogenism skos:exactMatch efo 0009006 hyperandrogenism lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D017588 Hyperandrogenism skos:exactMatch ncit C113215 Androgen Excess lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D017590 Myelinolysis, Central Pontine skos:exactMatch ncit C84623 Central Pontine Myelinolysis lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D017593 Kleine-Levin Syndrome skos:exactMatch ncit C84800 Kleine-Levin Syndrome lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -24698,7 +36829,6 @@ mesh D017669 Mercury Compounds skos:exactMatch chebi CHEBI:25196 mercury molecul mesh D017670 Sodium Compounds skos:exactMatch chebi CHEBI:26712 sodium molecular entity lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D017671 Platinum Compounds skos:exactMatch chebi CHEBI:33749 platinum molecular entity lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D017672 Nitrogen Compounds skos:exactMatch chebi CHEBI:51143 nitrogen molecular entity lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D017673 Sodium Chloride, Dietary skos:exactMatch ncit C72068 Table Salt lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D017675 CREST Syndrome skos:exactMatch ncit C70646 CREST Syndrome lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D017676 Lichen Planus, Oral skos:exactMatch efo 0008517 oral lichen planus lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D017676 Lichen Planus, Oral skos:exactMatch ncit C7406 Oral Lichen Planus lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -24707,10 +36837,6 @@ mesh D017679 Cryotherapy skos:exactMatch ncit C40030 Cryotherapy lexical 0.95 ht mesh D017681 Hypereosinophilic Syndrome skos:exactMatch ncit C27038 Hypereosinophilic Syndrome lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D017689 Polydactyly skos:exactMatch hp HP:0100259 Postaxial polydactyly lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D017689 Polydactyly skos:exactMatch ncit C87110 Polydactyly lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D017693 Sodium Bicarbonate skos:exactMatch chebi CHEBI:32139 sodium hydrogencarbonate lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py -mesh D017693 Sodium Bicarbonate skos:exactMatch ncit C29457 Sodium Bicarbonate lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D017701 Reticulocyte Count skos:exactMatch efo 0007986 reticulocyte count lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py -mesh D017701 Reticulocyte Count skos:exactMatch ncit C51947 Reticulocyte Count lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D017703 Retropharyngeal Abscess skos:exactMatch ncit C128324 Retropharyngeal Abscess lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D017705 Lignans skos:exactMatch chebi CHEBI:25036 lignan lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D017706 Lisinopril skos:exactMatch chebi CHEBI:6503 lisinopril dihydrate lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -24735,7 +36861,6 @@ mesh D017777 Parasympathetic Fibers, Postganglionic skos:exactMatch ncit C12649 mesh D017779 Sympathetic Fibers, Postganglionic skos:exactMatch ncit C12650 Sympathetic Fibers, Postganglionic lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D017783 Superior Cervical Ganglion skos:exactMatch ncit C92213 Superior Cervical Ganglion lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D017789 Granuloma, Pyogenic skos:exactMatch ncit C3480 Lobular Capillary Hemangioma lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D017824 Bone Cysts, Aneurysmal skos:exactMatch ncit C3516 Aneurysmal Bone Cyst lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D017825 Canavan Disease skos:exactMatch ncit C84611 Canavan Disease lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D017827 Machado-Joseph Disease skos:exactMatch ncit C84830 Spinocerebellar Ataxia Type 3 lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D017828 Rifabutin skos:exactMatch chebi CHEBI:45367 rifabutin lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -24745,7 +36870,6 @@ mesh D017830 Octoxynol skos:exactMatch chebi CHEBI:9750 Triton X-100 lexical 0.9 mesh D017835 Nedocromil skos:exactMatch chebi CHEBI:7492 nedocromil lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D017843 Ligamentum Flavum skos:exactMatch ncit C32986 Ligamentum Flavum lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D017847 Patellar Ligament skos:exactMatch ncit C33283 Patellar Ligament lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D017850 Economics, Pharmaceutical skos:exactMatch ncit C142636 Pharmacoeconomics lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D017861 Porphyromonas skos:exactMatch ncit C86653 Porphyromonas lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D017868 Cyclic AMP-Dependent Protein Kinases skos:exactMatch ncit C16479 Protein Kinase A lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D017878 4,4'-Diisothiocyanostilbene-2,2'-Disulfonic Acid skos:exactMatch chebi CHEBI:4286 4,4'-diisothiocyano-trans-stilbene-2,2'-disulfonic acid lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -24753,7 +36877,6 @@ mesh D017879 Isothiocyanates skos:exactMatch ncit C45711 Isothiocyanate lexical mesh D017881 Kingella skos:exactMatch ncit C86449 Kingella lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D017882 Kingella kingae skos:exactMatch ncit C86451 Kingella kingae lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D017886 Durapatite skos:exactMatch ncit C84224 Tribasic Calcium Phosphate lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D017887 Ossification of Posterior Longitudinal Ligament skos:exactMatch efo 0005895 ossification of the posterior longitudinal ligament of the spine lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D017889 Exfoliation Syndrome skos:exactMatch ncit C129025 Exfoliation Syndrome lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D017892 Osmium Compounds skos:exactMatch chebi CHEBI:35732 osmium molecular entity lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D017893 Photopheresis skos:exactMatch ncit C62729 Extracorporeal Photopheresis lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -24807,7 +36930,6 @@ mesh D018046 Protein C Inhibitor skos:exactMatch hgnc 8723 SERPINA5 lexical 0.95 mesh D018047 Receptors, Purinergic P1 skos:exactMatch ncit C16262 Purinergic P1 Receptor lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D018050 Arenavirus skos:exactMatch ncit C14306 Arenavirus lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D018054 Hydrobromic Acid skos:exactMatch chebi CHEBI:47266 hydrogen bromide lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D018058 Tympanic Membrane Perforation skos:exactMatch efo 0009472 tympanic membrane perforation lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D018067 Flaviviridae skos:exactMatch ncit C113201 Flaviviridae lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D018069 Hair Cells, Vestibular skos:exactMatch ncit C23566 Hair Cells, Vestibular lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D018076 DNA, Complementary skos:exactMatch ncit C324 cDNA lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -24921,21 +37043,18 @@ mesh D018282 Cystadenocarcinoma, Mucinous skos:exactMatch ncit C3776 Mucinous Cy mesh D018283 Cystadenocarcinoma, Papillary skos:exactMatch ncit C3777 Papillary Cystadenocarcinoma lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D018284 Cystadenocarcinoma, Serous skos:exactMatch ncit C3778 Serous Cystadenocarcinoma lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D018285 Klatskin Tumor skos:exactMatch ncit C36077 Hilar Cholangiocarcinoma lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D018286 Carcinoma, Giant Cell skos:exactMatch ncit C3779 Giant Cell Carcinoma lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D018289 Carcinoma, Verrucous skos:exactMatch ncit C3781 Verrucous Carcinoma lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D018290 Cervical Intraepithelial Neoplasia skos:exactMatch hp HP:0032242 Cervical intraepithelial neoplasia lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D018290 Cervical Intraepithelial Neoplasia skos:exactMatch ncit C3782 Cervical Intraepithelial Neoplasia lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D018291 Cystadenoma, Mucinous skos:exactMatch ncit C2973 Mucinous Cystadenoma lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D018292 Cystadenoma, Papillary skos:exactMatch ncit C2974 Papillary Cystadenoma lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D018293 Cystadenoma, Serous skos:exactMatch ncit C3783 Serous Cystadenoma lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D018295 Neoplasms, Basal Cell skos:exactMatch ncit C3784 Basal Cell Neoplasm lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D018296 Pilomatrixoma skos:exactMatch efo 0009082 Pilomatrixoma lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D018300 Papilloma, Intraductal skos:exactMatch ncit C3785 Intraductal Papilloma lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D018301 Neoplasms, Mesothelial skos:exactMatch ncit C3786 Mesothelial Neoplasm lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D018304 Esthesioneuroblastoma, Olfactory skos:exactMatch ncit C3789 Olfactory Neuroblastoma lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D018305 Ganglioneuroblastoma skos:exactMatch ncit C3790 Ganglioneuroblastoma lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D018307 Neoplasms, Squamous Cell skos:exactMatch ncit C3792 Squamous Cell Neoplasm lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D018308 Papilloma, Inverted skos:exactMatch ncit C3793 Inverted Papilloma lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D018310 Sertoli-Leydig Cell Tumor skos:exactMatch ncit C2880 Ovarian Sertoli-Leydig Cell Tumor lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D018311 Luteoma skos:exactMatch ncit C3202 Ovarian Stromal Luteoma lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D018314 Leishmania infantum skos:exactMatch ncit C123509 Leishmania infantum lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -24947,7 +37066,6 @@ mesh D018322 Angiofibroma skos:exactMatch ncit C3799 Angiofibroma lexical 0.95 h mesh D018325 Hemangioblastoma skos:exactMatch ncit C3801 Hemangioblastoma lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D018327 Hutchinson's Melanotic Freckle skos:exactMatch ncit C43372 Lentigo Maligna lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D018328 Melanoma, Amelanotic skos:exactMatch ncit C3802 Amelanotic Melanoma lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D018329 Nevus, Blue skos:exactMatch ncit C3803 Blue Nevus lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D018330 Nevus, Intradermal skos:exactMatch ncit C3804 Dermal Nevus lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D018331 Nevus, Spindle Cell skos:exactMatch ncit C66758 Spindle Cell Nevus lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D018332 Nevus, Epithelioid and Spindle Cell skos:exactMatch ncit C27007 Spitz Nevus lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -24956,7 +37074,6 @@ mesh D018336 Receptors, Aryl Hydrocarbon skos:exactMatch ncit C17273 Aryl Hydroc mesh D018342 Receptors, Adrenergic, beta-1 skos:exactMatch hgnc 285 ADRB1 lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D018343 Receptors, Adrenergic, beta-2 skos:exactMatch hgnc 286 ADRB2 lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D018344 T-Lymphocytopenia, Idiopathic CD4-Positive skos:exactMatch ncit C84780 Idiopathic CD4-Positive T-Lymphocytopenia lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D018345 Mice, Knockout skos:exactMatch ncit C14339 Knock-Out Mouse lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D018350 alpha-Amino-3-hydroxy-5-methyl-4-isoxazolepropionic Acid skos:exactMatch chebi CHEBI:28812 (aminomethyl)phosphonic acid lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D018357 Respiratory Syncytial Virus Infections skos:exactMatch ncit C3354 Respiratory Syncytial Virus Infection lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D018360 Crystallography, X-Ray skos:exactMatch ncit C17672 X-Ray Crystallography lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -24990,7 +37107,6 @@ mesh D018426 SEER Program skos:exactMatch ncit C15432 Surveillance, Epidemiology mesh D018427 Breast Implants skos:exactMatch ncit C28335 Breast Implant lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D018432 Drug Resistance, Multiple skos:exactMatch ncit C17745 Multidrug Resistance Process lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D018437 Brown-Sequard Syndrome skos:exactMatch ncit C84601 Brown-Sequard Syndrome lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D018451 Homosexuality, Male skos:exactMatch efo 0008486 male homosexuality lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D018454 Spouses skos:exactMatch ncit C62649 Spouse lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D018455 Protein S Deficiency skos:exactMatch ncit C99026 Protein S Deficiency Disease lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D018456 Reproductive Medicine skos:exactMatch ncit C17748 Reproductive Medicine lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -25153,7 +37269,6 @@ mesh D018912 Arabs skos:exactMatch ncit C43876 Arab lexical 0.95 https://github. mesh D018921 Leukostasis skos:exactMatch ncit C4062 Leukostasis lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D018925 Chemokines skos:exactMatch ncit C20466 Chemokine lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D018926 Anti-Allergic Agents skos:exactMatch chebi CHEBI:50857 anti-allergic agent lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D018928 Immunity, Mucosal skos:exactMatch ncit C17889 Mucosal Immunity lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D018929 Cell Culture Techniques skos:exactMatch ncit C16396 Cell Culture lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D018932 Chemokine CCL2 skos:exactMatch hgnc 10618 CCL2 lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D018932 Chemokine CCL2 skos:exactMatch ncit C82025 Monocyte Chemotactic Protein 1 Measurement lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -25203,7 +37318,6 @@ mesh D019000 Phosphotyrosine skos:exactMatch chebi CHEBI:37788 O(4)-phospho-L-ty mesh D019001 Nitric Oxide Synthase skos:exactMatch ncit C28511 Nitric Oxide Synthetase lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D019004 Galanin skos:exactMatch chebi CHEBI:80161 Galanin lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D019005 Cystic Fibrosis Transmembrane Conductance Regulator skos:exactMatch hgnc 1884 CFTR lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py -mesh D019005 Cystic Fibrosis Transmembrane Conductance Regulator skos:exactMatch ncit C111927 Cystic Fibrosis Transmembrane Conductance Regulator lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D019006 Neural Cell Adhesion Molecules skos:exactMatch hgnc 7656 NCAM1 lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D019007 P-Selectin skos:exactMatch hgnc 10721 SELP lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D019007 P-Selectin skos:exactMatch ncit C17522 P-Selectin lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -25225,7 +37339,6 @@ mesh D019040 E-Selectin skos:exactMatch ncit C17491 E-Selectin lexical 0.95 http mesh D019041 L-Selectin skos:exactMatch ncit C17512 L-Selectin lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D019042 Muscle Neoplasms skos:exactMatch ncit C4063 Myomatous Neoplasm lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D019046 Bone Marrow Neoplasms skos:exactMatch ncit C35370 Bone Marrow Neoplasm lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D019047 Phantoms, Imaging skos:exactMatch ncit C17892 Imaging Phantoms lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D019048 Prostatic Intraepithelial Neoplasia skos:exactMatch ncit C4064 Prostatic Intraepithelial Neoplasia lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D019050 Acupressure skos:exactMatch ncit C15606 Acupressure Therapy lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D019052 Depression, Postpartum skos:exactMatch ncit C92852 Postpartum Depression lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -25257,7 +37370,6 @@ mesh D019115 Fasciitis, Necrotizing skos:exactMatch ncit C84916 Necrotizing Fasc mesh D019122 Meditation skos:exactMatch ncit C51975 Meditation Therapy lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D019124 Therapeutic Touch skos:exactMatch ncit C15373 Therapeutic Touch lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D019142 Hemorrhagic Fever, Ebola skos:exactMatch ncit C36171 Ebola Hemorrhagic Fever lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D019145 Rehabilitation Nursing skos:exactMatch ncit C17959 Rehabilitation Nursing lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D019146 Hypermedia skos:exactMatch ncit C17960 Hypermedia lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D019148 Neuromuscular Blockade skos:exactMatch ncit C158070 Neuromuscular Blockade lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D019150 Neuroaxonal Dystrophies skos:exactMatch ncit C161542 Neuroaxonal Dystrophy lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -25351,12 +37463,8 @@ mesh D019341 Aromatherapy skos:exactMatch ncit C62681 Aromatherapy and Essential mesh D019342 Acetic Acid skos:exactMatch ncit C61623 Acetic Acid lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D019345 Zinc Acetate skos:exactMatch chebi CHEBI:62984 zinc acetate lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D019345 Zinc Acetate skos:exactMatch ncit C47787 Zinc Acetate lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D019346 Sodium Acetate skos:exactMatch chebi CHEBI:32954 sodium acetate lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py -mesh D019346 Sodium Acetate skos:exactMatch ncit C47720 Sodium Acetate lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D019347 Potassium Acetate skos:exactMatch ncit C47677 Potassium Acetate lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D019353 Endemic Diseases skos:exactMatch ncit C171503 Endemic Disorder lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D019354 Sodium Lactate skos:exactMatch chebi CHEBI:75228 sodium lactate lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py -mesh D019354 Sodium Lactate skos:exactMatch ncit C47726 Sodium Lactate lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D019355 Calcium Citrate skos:exactMatch ncit C1355 Calcium Citrate lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D019357 Potassium Citrate skos:exactMatch ncit C29372 Potassium Citrate lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D019363 Cytochrome P-450 CYP1A1 skos:exactMatch hgnc 2595 CYP1A1 lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -25403,7 +37511,6 @@ mesh D019487 Annual Report skos:exactMatch ncit C96089 Annual Report lexical 0.9 mesh D019494 Catalog skos:exactMatch ncit C71899 Catalog lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D019497 Diary skos:exactMatch ncit C159580 Diary lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D019509 Herbal skos:exactMatch ncit C94319 Herbal lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D019522 Vaginal Discharge skos:exactMatch efo 0009365 vaginal discharge lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D019529 Sexuality skos:exactMatch ncit C92984 Sexuality lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D019533 Streptococcus oralis skos:exactMatch ncit C86799 Streptococcus oralis lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D019534 Shoulder Impingement Syndrome skos:exactMatch hp HP:0030881 Shoulder impingement lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -25474,23 +37581,13 @@ mesh D019788 Fluorodeoxyglucose F18 skos:exactMatch chebi CHEBI:49134 2-deoxy-2- mesh D019789 Tetraethylammonium skos:exactMatch chebi CHEBI:44296 tetraethylammonium lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D019791 Guanidine skos:exactMatch chebi CHEBI:30087 guanidinium lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D019791 Guanidine skos:exactMatch ncit C77851 Guanidine lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D019793 Fluorescein skos:exactMatch chebi CHEBI:31624 fluorescein lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D019793 Fluorescein skos:exactMatch ncit C61766 Fluorescein lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D019794 2,3-Diphosphoglycerate skos:exactMatch chebi CHEBI:19324 2,3-bisphosphoglycerate lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D019797 3-Iodobenzylguanidine skos:exactMatch ncit C87757 Iobenguane lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D019798 Neopterin skos:exactMatch chebi CHEBI:28670 neopterin lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py -mesh D019800 Phenol skos:exactMatch chebi CHEBI:15882 phenol lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D019802 Succinic Acid skos:exactMatch chebi CHEBI:15741 succinic acid lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D019802 Succinic Acid skos:exactMatch ncit C61954 Succinic Acid lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D019803 Glutathione Disulfide skos:exactMatch chebi CHEBI:17858 glutathione disulfide lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D019804 Mesalamine skos:exactMatch chebi CHEBI:6775 mesalamine lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D019805 alpha-Methyltyrosine skos:exactMatch chebi CHEBI:6912 alpha-methyl-L-tyrosine lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D019806 Cromakalim skos:exactMatch chebi CHEBI:3921 Cromakalim lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D019807 Iodoacetic Acid skos:exactMatch chebi CHEBI:74571 iodoacetic acid lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D019808 Losartan skos:exactMatch chebi CHEBI:6541 losartan lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D019809 Streptavidin skos:exactMatch ncit C17334 Streptavidin lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D019810 Sodium Azide skos:exactMatch chebi CHEBI:278547 sodium azide lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D019811 Hydroxylamine skos:exactMatch chebi CHEBI:15429 hydroxylamine lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D019812 Heparan Sulfate Proteoglycans skos:exactMatch hgnc 1681 CD44 lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D019813 1,2-Dimethylhydrazine skos:exactMatch chebi CHEBI:73755 1,2-dimethylhydrazine lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D019813 1,2-Dimethylhydrazine skos:exactMatch ncit C29787 1,2-Dimethylhydrazine lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -25498,11 +37595,8 @@ mesh D019814 Myristic Acid skos:exactMatch ncit C68393 Myristic Acid lexical 0.9 mesh D019815 Oxalic Acid skos:exactMatch ncit C84036 Oxalic Acid lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D019817 Benzoic Acid skos:exactMatch ncit C61646 Benzoic Acid lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D019818 Clavulanic Acid skos:exactMatch ncit C61681 Clavulanic Acid lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D019819 Budesonide skos:exactMatch chebi CHEBI:3207 budesonide lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D019819 Budesonide skos:exactMatch ncit C1027 Budesonide lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D019821 Simvastatin skos:exactMatch chebi CHEBI:9150 simvastatin lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D019825 gamma-MSH skos:exactMatch chebi CHEBI:80349 gamma-Melanotropin lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D019829 Nevirapine skos:exactMatch chebi CHEBI:63613 nevirapine lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D019830 Adenosine-5'-(N-ethylcarboxamide) skos:exactMatch chebi CHEBI:73284 N-ethyl-5'-carboxamidoadenosine lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D019832 N-Methylscopolamine skos:exactMatch chebi CHEBI:135361 methscopolamine lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D019832 N-Methylscopolamine skos:exactMatch ncit C76001 Methscopolamine lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -25523,14 +37617,12 @@ mesh D019871 Dyskeratosis Congenita skos:exactMatch ncit C111802 Dyskeratosis Co mesh D019872 Chief Cells, Gastric skos:exactMatch ncit C23514 Chief Cells, Gastric lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D019886 Gastrin-Releasing Peptide skos:exactMatch hgnc 4605 GRP lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D019886 Gastrin-Releasing Peptide skos:exactMatch ncit C2272 Gastrin-Releasing Peptide lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D019888 Nelfinavir skos:exactMatch chebi CHEBI:7496 nelfinavir lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D019888 Nelfinavir skos:exactMatch ncit C29285 Nelfinavir lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D019891 Leukopoiesis skos:exactMatch ncit C18019 Leukopoiesis lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D019892 eIF-2 Kinase skos:exactMatch hgnc 9437 EIF2AK2 lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D019892 eIF-2 Kinase skos:exactMatch ncit C34095 Interferon-Induced, Double-Stranded RNA-Activated Protein Kinase lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D019894 Peptide YY skos:exactMatch hgnc 9748 PYY lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D019902 Chondrocytes skos:exactMatch ncit C12557 Chondrocyte lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D019905 Benzyl Alcohol skos:exactMatch chebi CHEBI:17987 benzyl alcohol lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D019908 Proto-Oncogene Proteins c-raf skos:exactMatch ncit C17484 RAF Proto-Oncogene Serine/Threonine-Protein Kinase lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D019910 Mycobacterium marinum skos:exactMatch ncit C86545 Mycobacterium marinum lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D019911 Mycobacterium ulcerans skos:exactMatch ncit C86595 Mycobacterium ulcerans lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -25622,7 +37714,6 @@ mesh D020156 Salicylic Acid skos:exactMatch ncit C61934 Salicylic Acid lexical 0 mesh D020158 Hyperglycinemia, Nonketotic skos:exactMatch ncit C84937 Glycine Encephalopathy lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D020159 Citrullinemia skos:exactMatch hp HP:0032397 Citrullinuria lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D020159 Citrullinemia skos:exactMatch ncit C84639 Citrullinemia lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D020160 Sodium Benzoate skos:exactMatch ncit C66541 Sodium Benzoate lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D020162 Hyperargininemia skos:exactMatch hp HP:0500153 Hyperargininemia lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D020163 Ornithine Carbamoyltransferase Deficiency Disease skos:exactMatch ncit C84957 Ornithine Carbamoyltransferase Deficiency Disease lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D020165 Carbamoyl-Phosphate Synthase I Deficiency Disease skos:exactMatch ncit C84612 Carbamoyl-Phosphate Synthetase I Deficiency lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -25678,7 +37769,6 @@ mesh D020345 Enterocolitis, Necrotizing skos:exactMatch ncit C84915 Necrotizing mesh D020347 Lithiasis skos:exactMatch ncit C97086 Lithiasis lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D020349 Surface Plasmon Resonance skos:exactMatch ncit C18117 Surface Plasmon Resonance lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D020357 Selenomonas skos:exactMatch ncit C86732 Selenomonas lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D020358 Sodium Cholate skos:exactMatch chebi CHEBI:26711 sodium cholate lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D020360 Neoadjuvant Therapy skos:exactMatch ncit C15665 Neoadjuvant Therapy lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D020362 Paraneoplastic Cerebellar Degeneration skos:exactMatch ncit C4685 Paraneoplastic Cerebellar Degeneration lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D020363 Limbic Encephalitis skos:exactMatch ncit C4350 Limbic Encephalitis lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -25901,7 +37991,6 @@ mesh D020934 Ciliary Neurotrophic Factor skos:exactMatch hgnc 2169 CNTF lexical mesh D020936 Epilepsy, Benign Neonatal skos:exactMatch ncit C84593 Benign Neonatal Epilepsy lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D020938 Epilepsy, Partial, Motor skos:exactMatch ncit C50847 Partial Motor Seizure lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D020939 Ginger skos:exactMatch ncit C54083 Zingiber officinale lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D020942 Shiitake Mushrooms skos:exactMatch ncit C72008 Shiitake Mushroom lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D020944 Milk Thistle skos:exactMatch ncit C72274 Silybum marianum lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D020945 Lupus Vasculitis, Central Nervous System skos:exactMatch ncit C116919 Central Nervous System Lupus lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D020947 Tea Tree Oil skos:exactMatch chebi CHEBI:83629 tea tree oil lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py @@ -25948,11 +38037,7 @@ mesh D022125 Lacerations skos:exactMatch ncit C50446 Laceration lexical 0.95 htt mesh D022141 Jaagsiekte sheep retrovirus skos:exactMatch ncit C14318 Ovine Jaagziekte Virus lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D022161 Transport Vesicles skos:exactMatch ncit C33804 Transport Vesicle lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D022202 Chromosomes, Artificial, Bacterial skos:exactMatch ncit C1860 Bacterial Artificial Chromosome lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D022341 Yellow Fever Vaccine skos:exactMatch ncit C96396 Yellow Fever Vaccine lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D022362 Hepatitis A Vaccines skos:exactMatch ncit C29090 Hepatitis A Vaccine lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D022401 Meningococcal Vaccines skos:exactMatch ncit C96397 Meningococcal Vaccine lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D022423 Myeloid Cells skos:exactMatch ncit C12549 Myeloid Cell lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D022542 Measles-Mumps-Rubella Vaccine skos:exactMatch ncit C96403 Measles/Mumps/Rubella Vaccine lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D022621 Shiga Toxin skos:exactMatch ncit C1225 Shiga Toxin lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D022661 RNA, Untranslated skos:exactMatch ncit C26549 Untranslated RNA lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D022701 Virosomes skos:exactMatch ncit C33953 Virosome lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -26084,7 +38169,6 @@ mesh D026681 Vitamin B 6 Deficiency skos:exactMatch ncit C85221 Vitamin B6 Defic mesh D026690 Ethics, Clinical skos:exactMatch ncit C17553 Clinical Ethics lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D026723 Polyadenylation skos:exactMatch ncit C18947 RNA Polyadenylation lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D026905 Amino Acid Transport Systems skos:exactMatch ncit C17271 Amino Acid Transporter lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D026941 Sodium Channel Blockers skos:exactMatch chebi CHEBI:38633 sodium channel blocker lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D026982 Urtica dioica skos:exactMatch ncit C72458 Urtica dioica lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D027042 Chromosomes, Artificial, P1 Bacteriophage skos:exactMatch ncit C1917 P1-derived Artificial Chromosome lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D027101 DNA Topoisomerase IV skos:exactMatch ncit C17405 Topoisomerase IV lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -26233,7 +38317,6 @@ mesh D033182 Intention skos:exactMatch ncit C25725 Intent lexical 0.95 https://g mesh D033241 Lawyers skos:exactMatch ncit C51959 Attorney lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D033262 Narration skos:exactMatch ncit C80446 Narrative lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D033362 Powder Diffraction skos:exactMatch ncit C78872 Powder Diffraction lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D033461 Hyperuricemia skos:exactMatch efo 0009104 hyperuricemia lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D033721 Equilibrative Nucleoside Transporter 1 skos:exactMatch hgnc 11003 SLC29A1 lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D033721 Equilibrative Nucleoside Transporter 1 skos:exactMatch ncit C105063 Equilibrative Nucleoside Transporter 1 lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D033741 Adenine Nucleotide Translocator 1 skos:exactMatch hgnc 10990 SLC25A4 lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py @@ -26279,7 +38362,6 @@ mesh D034761 Heterogeneous-Nuclear Ribonucleoprotein Group M skos:exactMatch hgn mesh D034801 Mastocytoma skos:exactMatch ncit C9303 Mastocytoma lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D034802 RNA-Binding Protein EWS skos:exactMatch hgnc 3508 EWSR1 lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D034802 RNA-Binding Protein EWS skos:exactMatch ncit C17904 RNA-Binding Protein EWS lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D034861 Abdominal Wall skos:exactMatch ncit C77608 Abdominal Wall lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D034881 Nuclear Lamina skos:exactMatch ncit C13809 Nuclear Lamina lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D034921 Lamin Type B skos:exactMatch ncit C111790 Lamin B lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D034941 Upper Extremity skos:exactMatch ncit C12671 Upper Extremity lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -26516,10 +38598,8 @@ mesh D043266 Steryl-Sulfatase skos:exactMatch ncit C75587 Steryl-Sulfatase lexic mesh D043283 Chromosome Fragile Sites skos:exactMatch ncit C13375 Chromosome Fragile Site lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D043303 Aryldialkylphosphatase skos:exactMatch ncit C17569 Aryldialkylphosphatase lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D043323 alpha-Mannosidase skos:exactMatch hgnc 6827 MAN2C1 lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D043343 Testosterone Propionate skos:exactMatch chebi CHEBI:9466 Testosterone propionate lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D043343 Testosterone Propionate skos:exactMatch ncit C863 Testosterone Propionate lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D043367 Ralstonia skos:exactMatch ncit C86712 Ralstonia lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D043371 Fatty Acids, Omega-6 skos:exactMatch chebi CHEBI:36009 omega-6 fatty acid lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D043383 Adenosylhomocysteinase skos:exactMatch hgnc 343 AHCY lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D043384 Glutamyl Aminopeptidase skos:exactMatch hgnc 3355 ENPEP lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D043402 Cathepsin A skos:exactMatch hgnc 9251 CTSA lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -26541,15 +38621,10 @@ mesh D043684 Receptor, Adenosine A3 skos:exactMatch ncit C38616 Adenosine Recept mesh D043704 Receptor, Adenosine A2B skos:exactMatch hgnc 264 ADORA2B lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D043704 Receptor, Adenosine A2B skos:exactMatch ncit C38614 Adenosine Receptor A2b lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D043705 Receptor, Adenosine A2A skos:exactMatch hgnc 263 ADORA2A lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py -mesh D043844 Crown Ethers skos:exactMatch chebi CHEBI:37408 crown ether lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D043862 Rotaxanes skos:exactMatch chebi CHEBI:50961 rotaxane lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D043863 Catenanes skos:exactMatch chebi CHEBI:50960 catenane lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D043886 Receptor, Cholecystokinin A skos:exactMatch hgnc 1570 CCKAR lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D043887 Receptor, Cholecystokinin B skos:exactMatch hgnc 1571 CCKBR lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D043887 Receptor, Cholecystokinin B skos:exactMatch ncit C21598 Gastrin/Cholecystokinin Type B Receptor lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D043942 Nanotubes skos:exactMatch ncit C73455 Nanotube lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D043963 Diverticulosis, Colonic skos:exactMatch ncit C34551 Colonic Diverticulosis lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D044004 Xanthones skos:exactMatch chebi CHEBI:51149 xanthones lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D044006 Receptors, Epoprostenol skos:exactMatch hgnc 9602 PTGIR lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D044007 Moraxellaceae skos:exactMatch ncit C85948 Moraxellaceae lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D044022 Receptor, Endothelin A skos:exactMatch hgnc 3179 EDNRA lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py @@ -26557,7 +38632,6 @@ mesh D044022 Receptor, Endothelin A skos:exactMatch ncit C71453 Endothelin-1 Rec mesh D044023 Receptor, Endothelin B skos:exactMatch ncit C105930 Endothelin B Receptor lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D044042 Receptors, Formyl Peptide skos:exactMatch ncit C26208 fMet-Leu-Phe Receptor lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D044044 Aeromonadaceae skos:exactMatch ncit C85903 Aeromonadaceae lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D044045 Lipoxins skos:exactMatch chebi CHEBI:6497 lipoxin lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D044065 Cardiobacteriaceae skos:exactMatch ncit C85921 Cardiobacteriaceae lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D044066 Cardiobacterium skos:exactMatch ncit C86243 Cardiobacterium lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D044083 Cronobacter sakazakii skos:exactMatch ncit C86329 Cronobacter sakazakii lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -26592,7 +38666,6 @@ mesh D044202 Pseudomonas alcaligenes skos:exactMatch ncit C86697 Pseudomonas alc mesh D044203 Pseudomonas mendocina skos:exactMatch ncit C86702 Pseudomonas mendocina lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D044205 Pseudomonas pseudoalcaligenes skos:exactMatch ncit C86704 Pseudomonas pseudoalcaligenes lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D044223 Pseudomonas stutzeri skos:exactMatch ncit C86706 Pseudomonas stutzeri lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D044243 Linoleic Acids, Conjugated skos:exactMatch chebi CHEBI:61159 conjugated linoleic acid lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D044282 Receptor, Serotonin, 5-HT1A skos:exactMatch ncit C105870 5-Hydroxytryptamine Receptor 1A lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D044302 Receptor, Serotonin, 5-HT1B skos:exactMatch hgnc 5287 HTR1B lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D044342 Malnutrition skos:exactMatch ncit C157938 Nutritional Deficiency lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -26601,7 +38674,6 @@ mesh D044402 Receptor, Serotonin, 5-HT2A skos:exactMatch ncit C40095 5-Hydroxytr mesh D044406 Receptors, Serotonin, 5-HT3 skos:exactMatch ncit C105979 5-HT3 Receptor lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D044423 Kelp skos:exactMatch ncit C93343 Kelp lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D044502 Thymine DNA Glycosylase skos:exactMatch hgnc 11700 TDG lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D044503 5-Methylcytosine skos:exactMatch chebi CHEBI:27551 5-methylcytosine lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D044542 LEOPARD Syndrome skos:exactMatch ncit C84820 LEOPARD Syndrome lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D044584 Carcinoma, Ductal skos:exactMatch ncit C4017 Ductal Breast Carcinoma lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D044682 Colon, Ascending skos:exactMatch ncit C12266 Hepatic Flexure of Colon lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -26622,16 +38694,10 @@ mesh D044922 Helicobacter felis skos:exactMatch ncit C14330 Helicobacter felis l mesh D044926 Butyryl-CoA Dehydrogenase skos:exactMatch hgnc 90 ACADS lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D044926 Butyryl-CoA Dehydrogenase skos:exactMatch ncit C82876 Short-Chain Specific Acyl-CoA Dehydrogenase, Mitochondrial lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D044942 Acyl-CoA Dehydrogenase, Long-Chain skos:exactMatch hgnc 92 ACADVL lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D044945 Proanthocyanidins skos:exactMatch chebi CHEBI:26267 proanthocyanidin lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py -mesh D044946 Biflavonoids skos:exactMatch chebi CHEBI:50128 biflavonoid lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D044947 Flavonolignans skos:exactMatch chebi CHEBI:72709 flavonolignan lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D044948 Flavonols skos:exactMatch chebi CHEBI:28802 flavonols lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py -mesh D044950 Flavanones skos:exactMatch chebi CHEBI:28863 flavanones lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D044962 Data Compression skos:exactMatch ncit C64347 Data Compression lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D044963 Biopsy, Fine-Needle skos:exactMatch ncit C15361 Fine-Needle Aspiration lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D044967 Serum skos:exactMatch ncit C13325 Serum lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D044968 Regenerative Medicine skos:exactMatch ncit C93254 Regenerative Medicine lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D045162 Thiazolidinediones skos:exactMatch chebi CHEBI:50990 thiazolidinediones lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D045164 Mesenchymal Stem Cell Transplantation skos:exactMatch ncit C116467 Mesenchymal Stem Cell Transplantation lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D045169 Severe Acute Respiratory Syndrome skos:exactMatch ncit C85064 Severe Acute Respiratory Syndrome lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D045170 Matrix Attachment Regions skos:exactMatch ncit C13437 Matrix Attachment Region lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -26671,10 +38737,7 @@ mesh D045683 Furin skos:exactMatch hgnc 8568 FURIN lexical 0.95 https://github.c mesh D045702 Proprotein Convertase 5 skos:exactMatch hgnc 8747 PCSK5 lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D045704 Mycoplasma genitalium skos:exactMatch ncit C166047 Mycoplasma genitalium Measurement lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D045706 Proprotein Convertase 2 skos:exactMatch hgnc 8744 PCSK2 lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D045725 Tetrapyrroles skos:exactMatch chebi CHEBI:26932 tetrapyrrole lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D045728 Corrinoids skos:exactMatch chebi CHEBI:33913 corrinoid lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D045744 Cell Line, Tumor skos:exactMatch ncit C20313 Tumor Cell Line lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D045782 Hemiterpenes skos:exactMatch chebi CHEBI:35188 hemiterpene lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D045783 Clove Oil skos:exactMatch ncit C65346 Clove Oil lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D045784 Abietanes skos:exactMatch chebi CHEBI:36762 abietane diterpenoid lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D045786 Diterpenes, Kaurane skos:exactMatch chebi CHEBI:53666 kaurane diterpenoid lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -26700,7 +38763,6 @@ mesh D046349 Coproporphyria, Hereditary skos:exactMatch ncit C84759 Hereditary C mesh D046350 Porphyria, Variegate skos:exactMatch ncit C85219 Variegate Porphyria lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D046351 Protoporphyria, Erythropoietic skos:exactMatch ncit C84698 Erythropoietic Protoporphyria lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D046368 Crows skos:exactMatch ncit C43965 Crow lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D046449 Hernia, Abdominal skos:exactMatch ncit C98700 Abdominal Hernia lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D046528 Chimerism skos:exactMatch ncit C62582 Chimerism lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D046529 Microscopy, Electron, Transmission skos:exactMatch ncit C18216 Transmission Electron Microscopy lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D046569 Neuroepithelial Cells skos:exactMatch ncit C41410 Neuroepithelial Cell lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -26711,7 +38773,6 @@ mesh D046729 Colitis, Collagenous skos:exactMatch ncit C27021 Collagenous Coliti mesh D046730 Colitis, Lymphocytic skos:exactMatch ncit C27147 Lymphocytic Colitis lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D046768 Nesidioblastosis skos:exactMatch hp HP:0000825 Hyperinsulinemic hypoglycemia lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D046790 Pancreas, Exocrine skos:exactMatch ncit C32546 Exocrine Pancreas lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D046934 Ginkgolides skos:exactMatch chebi CHEBI:136909 ginkgolide lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D046969 Clostridium acetobutylicum skos:exactMatch ncit C86269 Clostridium acetobutylicum lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D046970 Clostridium beijerinckii skos:exactMatch ncit C86271 Clostridium beijerinckii lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D046971 Clostridium bifermentans skos:exactMatch ncit C86272 Clostridium bifermentans lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -26720,21 +38781,12 @@ mesh D046988 Proteasome Endopeptidase Complex skos:exactMatch ncit C13737 20S Pr mesh D047009 Clostridium histolyticum skos:exactMatch ncit C86282 Clostridium histolyticum lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D047011 Silk skos:exactMatch ncit C79671 Silk lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D047068 Arylalkylamine N-Acetyltransferase skos:exactMatch hgnc 19 AANAT lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D047069 Pyrazolones skos:exactMatch chebi CHEBI:83328 pyrazolone lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D047072 Aromatase Inhibitors skos:exactMatch chebi CHEBI:50790 EC 1.14.14.14 (aromatase) inhibitor lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D047090 beta-Lactams skos:exactMatch chebi CHEBI:35627 beta-lactam lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D047108 Embryonic Development skos:exactMatch ncit C16649 Embryogenesis lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D047150 Eosinophil Cationic Protein skos:exactMatch hgnc 10046 RNASE3 lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D047188 Chalcones skos:exactMatch chebi CHEBI:23086 chalcones lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D047208 Eosinophil-Derived Neurotoxin skos:exactMatch hgnc 10045 RNASE2 lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D047248 Crown Compounds skos:exactMatch chebi CHEBI:37409 crown compound lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D047309 Flavones skos:exactMatch chebi CHEBI:24043 flavones lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D047310 Apigenin skos:exactMatch chebi CHEBI:18388 apigenin lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D047311 Luteolin skos:exactMatch chebi CHEBI:15864 luteolin lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D047348 Hydrolyzable Tannins skos:exactMatch chebi CHEBI:78689 hydrolysable tannin lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D047368 Tumor Burden skos:exactMatch ncit C28384 Tumor Burden lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D047369 Chromatin Immunoprecipitation skos:exactMatch ncit C106048 Chromatin Immunoprecipitation lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D047428 Protein Kinase Inhibitors skos:exactMatch chebi CHEBI:37699 protein kinase inhibitor lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D047468 Immunoprecipitation skos:exactMatch ncit C16724 Immunoprecipitation lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D047488 Retinoid X Receptors skos:exactMatch ncit C17534 Retinoid X Receptor lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D047490 Retinoid X Receptor alpha skos:exactMatch ncit C38416 Retinoic Acid Receptor RXR-Alpha lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -26744,7 +38796,6 @@ mesh D047493 PPAR alpha skos:exactMatch ncit C91750 PPARA wt Allele lexical 0.95 mesh D047495 PPAR gamma skos:exactMatch hgnc 9236 PPARG lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D047569 Laser Scanning Cytometry skos:exactMatch ncit C64861 Laser Scanning Cytometry lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D047629 Estrogen Receptor beta skos:exactMatch hgnc 3468 ESR2 lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D047630 Depsipeptides skos:exactMatch chebi CHEBI:23643 depsipeptide lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D047688 Breast Cyst skos:exactMatch ncit C5315 Breast Cyst lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D047708 Myofibroma skos:exactMatch ncit C7052 Myofibroma lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D047728 Myopia, Degenerative skos:exactMatch ncit C157149 Pathological Myopia lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -26788,9 +38839,6 @@ mesh D048209 Echinococcus granulosus skos:exactMatch ncit C122289 Echinococcus g mesh D048210 Echinococcus multilocularis skos:exactMatch ncit C122290 Echinococcus multilocularis lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D048248 Acanthamoeba castellanii skos:exactMatch ncit C119298 Acanthamoeba castellanii lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D048249 Streptococcus thermophilus skos:exactMatch ncit C86808 Streptococcus thermophilus lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D048271 Chitosan skos:exactMatch chebi CHEBI:16261 chitosan lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D048288 Imidazolines skos:exactMatch chebi CHEBI:53095 imidazolines lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D048289 Imidazolidines skos:exactMatch chebi CHEBI:38261 imidazolidines lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D048290 Mitogen-Activated Protein Kinase 11 skos:exactMatch hgnc 6873 MAPK11 lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D048290 Mitogen-Activated Protein Kinase 11 skos:exactMatch ncit C26364 Mitogen-Activated Protein Kinase 11 lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D048291 Mitogen-Activated Protein Kinase 12 skos:exactMatch hgnc 6874 MAPK12 lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py @@ -26801,11 +38849,8 @@ mesh D048308 Mitogen-Activated Protein Kinase 14 skos:exactMatch hgnc 6876 MAPK1 mesh D048308 Mitogen-Activated Protein Kinase 14 skos:exactMatch ncit C26369 Mitogen-Activated Protein Kinase 14 lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D048348 Reverse Transcription skos:exactMatch ncit C17097 Reverse Transcription Process lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D048369 MAP Kinase Kinase 1 skos:exactMatch hgnc 6840 MAP2K1 lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py -mesh D048369 MAP Kinase Kinase 1 skos:exactMatch ncit C17808 Dual Specificity Mitogen-Activated Protein Kinase Kinase 1 lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D048370 MAP Kinase Kinase 2 skos:exactMatch hgnc 6842 MAP2K2 lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py -mesh D048370 MAP Kinase Kinase 2 skos:exactMatch ncit C106633 Dual Specificity Mitogen-Activated Protein Kinase Kinase 2 lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D048371 MAP Kinase Kinase 3 skos:exactMatch hgnc 6843 MAP2K3 lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py -mesh D048371 MAP Kinase Kinase 3 skos:exactMatch ncit C125166 Dual Specificity Mitogen-Activated Protein Kinase Kinase 3 lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D048409 Aeromonas salmonicida skos:exactMatch ncit C86128 Aeromonas salmonicida lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D048491 Proto-Oncogene Proteins A-raf skos:exactMatch ncit C18535 Serine/Threonine-Protein Kinase A-Raf lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D048492 Paragonimus westermani skos:exactMatch ncit C123538 Paragonimus westermani lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -26814,11 +38859,8 @@ mesh D048530 Papio anubis skos:exactMatch ncit C161025 Papio anubis lexical 0.95 mesh D048531 Papio papio skos:exactMatch ncit C161028 Papio papio lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D048548 Papio cynocephalus skos:exactMatch ncit C161026 Papio cynocephalus lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D048550 Hepatic Insufficiency skos:exactMatch ncit C141245 Liver Insufficiency lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D048588 Benzoxazines skos:exactMatch chebi CHEBI:46969 benzoxazine lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D048669 MAP Kinase Kinase 6 skos:exactMatch hgnc 6846 MAP2K6 lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py -mesh D048669 MAP Kinase Kinase 6 skos:exactMatch ncit C26485 Dual Specificity Mitogen-Activated Protein Kinase Kinase 6 lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D048670 MAP Kinase Kinase 4 skos:exactMatch hgnc 6844 MAP2K4 lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py -mesh D048670 MAP Kinase Kinase 4 skos:exactMatch ncit C97676 Dual Specificity Mitogen-Activated Protein Kinase Kinase 4 lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D048671 MAP Kinase Kinase 5 skos:exactMatch hgnc 6845 MAP2K5 lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D048688 MAP Kinase Kinase 7 skos:exactMatch hgnc 6847 MAP2K7 lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D048728 MAP Kinase Kinase Kinase 1 skos:exactMatch hgnc 6848 MAP3K1 lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py @@ -26831,7 +38873,6 @@ mesh D048750 Cell Nucleus Division skos:exactMatch ncit C20143 Nuclear Division mesh D048768 MAP Kinase Kinase Kinase 4 skos:exactMatch hgnc 6856 MAP3K4 lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D048768 MAP Kinase Kinase Kinase 4 skos:exactMatch ncit C147957 Mitogen-Activated Protein Kinase Kinase Kinase 4 lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D048788 Growth and Development skos:exactMatch ncit C53789 Adverse Event Associated with Growth and Development lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D048789 Phytoestrogens skos:exactMatch chebi CHEBI:76989 phytoestrogen lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D048789 Phytoestrogens skos:exactMatch ncit C1194 Phytoestrogen lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D048809 alpha-N-Acetylgalactosaminidase skos:exactMatch hgnc 7631 NAGA lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D048828 beta-N-Acetyl-Galactosaminidase skos:exactMatch hgnc 26307 HEXD lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -26873,17 +38914,13 @@ mesh D049914 DNA Repair-Deficiency Disorders skos:exactMatch ncit C7757 DNA Repa mesh D049920 Ralstonia pickettii skos:exactMatch ncit C86713 Ralstonia pickettii lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D049921 Cupriavidus skos:exactMatch ncit C86330 Cupriavidus lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D049932 Nijmegen Breakage Syndrome skos:exactMatch ncit C4692 Nijmegen Breakage Syndrome lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D049934 Isocoumarins skos:exactMatch chebi CHEBI:38758 isocoumarins lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D049950 Hyperparathyroidism, Primary skos:exactMatch ncit C48280 Primary Hyperparathyroidism lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D049951 X Chromosome Inactivation skos:exactMatch ncit C20674 X-Chromosome Inactivation lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D049971 Thiazides skos:exactMatch chebi CHEBI:50264 thiazide lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D049990 Membrane Transport Modulators skos:exactMatch chebi CHEBI:38632 membrane transport modulator lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D050010 Hyperthyroxinemia, Familial Dysalbuminemic skos:exactMatch ncit C131813 Familial Dysalbuminemic Hyperthyroidism lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D050030 Andersen Syndrome skos:exactMatch ncit C84559 Andersen Syndrome lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D050031 Hashimoto Disease skos:exactMatch efo 0002200 HT lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D050032 Postpartum Thyroiditis skos:exactMatch ncit C114389 Postpartum Thyroiditis lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D050033 Thyroid Dysgenesis skos:exactMatch ncit C85190 Thyroid Dysgenesis lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D050071 Bone Density Conservation Agents skos:exactMatch chebi CHEBI:50646 bone density conservation agent lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D050090 Ovotesticular Disorders of Sex Development skos:exactMatch ncit C127167 Ovotesticular Differences of Sex Development lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D050091 Dendrimers skos:exactMatch chebi CHEBI:61483 dendritic polymer lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D050091 Dendrimers skos:exactMatch ncit C62363 Dendrimer lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -26898,11 +38935,8 @@ mesh D050197 Atherosclerosis skos:exactMatch ncit C35768 Atherosclerosis lexical mesh D050199 Podocytes skos:exactMatch ncit C33334 Podocyte lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D050216 Metabolic Detoxication, Phase I skos:exactMatch ncit C93205 Phase I Detoxification lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D050217 Metabolic Detoxication, Phase II skos:exactMatch ncit C93206 Phase II Detoxification lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D050256 Antimitotic Agents skos:exactMatch chebi CHEBI:64911 antimitotic lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D050256 Antimitotic Agents skos:exactMatch ncit C273 Antimitotic Agent lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D050257 Tubulin Modulators skos:exactMatch chebi CHEBI:60832 tubulin modulator lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D050260 Carbohydrate Metabolism skos:exactMatch ncit C17933 Carbohydrate Metabolic Process lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D050299 Fibrin Modulating Agents skos:exactMatch chebi CHEBI:48676 fibrin modulating drug lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D050336 Mulibrey Nanism skos:exactMatch ncit C84906 Mulibrey Nanism lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D050379 Arteriolosclerosis skos:exactMatch ncit C35543 Arteriolosclerosis lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D050397 Radiotherapy, Intensity-Modulated skos:exactMatch ncit C16135 Intensity-Modulated Radiation Therapy lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -26938,7 +38972,6 @@ mesh D050599 Vesicular Glutamate Transport Protein 2 skos:exactMatch hgnc 16703 mesh D050601 Kynurenine 3-Monooxygenase skos:exactMatch hgnc 6381 KMO lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D050603 Squalene Monooxygenase skos:exactMatch hgnc 11279 SQLE lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D050606 Mannose-Binding Protein-Associated Serine Proteases skos:exactMatch hgnc 6901 MASP1 lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D050607 Organogold Compounds skos:exactMatch chebi CHEBI:51184 organogold compound lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D050637 Receptors, Dopamine D3 skos:exactMatch hgnc 3024 DRD3 lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D050638 Receptors, Dopamine D4 skos:exactMatch hgnc 3025 DRD4 lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D050638 Receptors, Dopamine D4 skos:exactMatch ncit C26121 D(4) Dopamine Receptor lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -27009,7 +39042,6 @@ mesh D050813 Octamer Transcription Factor-2 skos:exactMatch ncit C17539 POU Doma mesh D050814 Octamer Transcription Factor-3 skos:exactMatch hgnc 9221 POU5F1 lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D050814 Octamer Transcription Factor-3 skos:exactMatch ncit C61142 POU Domain, Class 5, Transcription Factor 1 lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D050815 Fractures, Compression skos:exactMatch hp HP:0002953 Vertebral compression fractures lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py -mesh D050815 Fractures, Compression skos:exactMatch ncit C27170 Compression Fracture lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D050819 Transcription Factor Brn-3A skos:exactMatch hgnc 9218 POU4F1 lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D050820 Transcription Factor Brn-3B skos:exactMatch hgnc 9219 POU4F2 lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D050821 Transcription Factor Brn-3C skos:exactMatch hgnc 9220 POU4F3 lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -27024,7 +39056,6 @@ mesh D050838 Interferon Regulatory Factor-3 skos:exactMatch ncit C26625 Interfer mesh D050839 Interferon Regulatory Factor-7 skos:exactMatch ncit C128883 Interferon Regulatory Factor 7 lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D050841 Glycine Dehydrogenase (Decarboxylating) skos:exactMatch hgnc 4313 GLDC lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D050856 Interferon Regulatory Factor-1 skos:exactMatch ncit C26627 Interferon Regulatory Factor 1 lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D050858 Betalains skos:exactMatch chebi CHEBI:22861 betalain lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D050861 Synaptotagmin II skos:exactMatch hgnc 11510 SYT2 lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D050863 Synaptotagmin I skos:exactMatch hgnc 11509 SYT1 lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D050876 Sulfite Oxidase skos:exactMatch hgnc 11460 SUOX lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -27315,28 +39346,22 @@ mesh D052018 Bulimia Nervosa skos:exactMatch ncit C34440 Bulimia Nervosa lexical mesh D052065 Vaginismus skos:exactMatch ncit C78703 Vaginismus lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D052066 N-Ethylmaleimide-Sensitive Proteins skos:exactMatch hgnc 8016 NSF lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D052097 Quadriceps Muscle skos:exactMatch ncit C33441 Quadriceps Muscle of the Thigh lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D052117 Benzodioxoles skos:exactMatch chebi CHEBI:38298 benzodioxoles lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D052118 Lysosomal-Associated Membrane Protein 1 skos:exactMatch hgnc 6499 LAMP1 lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D052118 Lysosomal-Associated Membrane Protein 1 skos:exactMatch ncit C104629 Lysosome-Associated Membrane Glycoprotein 1 lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D052119 Lysosomal-Associated Membrane Protein 2 skos:exactMatch hgnc 6501 LAMP2 lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D052119 Lysosomal-Associated Membrane Protein 2 skos:exactMatch ncit C116024 Lysosome-Associated Membrane Glycoprotein 2 lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D052120 Glycogen Storage Disease Type IIb skos:exactMatch ncit C84735 Glycogen Storage Disease Type IIb lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D052140 Human papillomavirus 11 skos:exactMatch ncit C99178 Human Papillomavirus-11 lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D052158 Aptamers, Peptide skos:exactMatch chebi CHEBI:140491 peptide aptamer lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D052159 Frasier Syndrome skos:exactMatch ncit C122805 Frasier Syndrome lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D052160 Benzothiazoles skos:exactMatch chebi CHEBI:37947 benzothiazoles lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D052161 Human papillomavirus 18 skos:exactMatch ncit C14377 Human Papillomavirus Type 18 lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D052162 Human papillomavirus 16 skos:exactMatch ncit C14338 Human Papillomavirus Type 16 lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D052163 Human papillomavirus 6 skos:exactMatch ncit C14319 Human Papillomavirus-6 lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D052176 Azulenes skos:exactMatch chebi CHEBI:38096 azulenes lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D052177 Kidney Diseases, Cystic skos:exactMatch ncit C34750 Cystic Kidney Disease lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D052178 Cephalopelvic Disproportion skos:exactMatch ncit C92749 Cephalo-Pelvic Disproportion lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D052196 Lactobacillus brevis skos:exactMatch ncit C86475 Lactobacillus brevis lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D052197 Lactobacillus fermentum skos:exactMatch ncit C86478 Lactobacillus fermentum lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D052201 Lactobacillus rhamnosus skos:exactMatch ncit C123495 Lactobacillus rhamnosus lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D052203 Ferrosoferric Oxide skos:exactMatch chebi CHEBI:50821 ferrosoferric oxide lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D052203 Ferrosoferric Oxide skos:exactMatch ncit C38138 Ferrosoferric Oxide lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D052216 Glucagon-Like Peptide 1 skos:exactMatch chebi CHEBI:80270 Glucagon-like peptide 1 lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D052216 Glucagon-Like Peptide 1 skos:exactMatch ncit C80183 Glucagon-like Peptide-1 Measurement lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D052217 Fanconi Anemia Complementation Group A Protein skos:exactMatch hgnc 3582 FANCA lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D052217 Fanconi Anemia Complementation Group A Protein skos:exactMatch ncit C85882 Fanconi Anemia Group A Protein lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -27354,7 +39379,6 @@ mesh D052241 Fanconi Anemia Complementation Group G Protein skos:exactMatch hgnc mesh D052241 Fanconi Anemia Complementation Group G Protein skos:exactMatch ncit C26135 Fanconi Anemia Group G Protein lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D052242 Adiponectin skos:exactMatch hgnc 13633 ADIPOQ lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D052243 Resistin skos:exactMatch hgnc 20389 RETN lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D052244 Endocrine Disruptors skos:exactMatch chebi CHEBI:138015 endocrine disruptor lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D052245 Usher Syndromes skos:exactMatch ncit C85217 Usher Syndrome lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D052247 Nitric Oxide Synthase Type II skos:exactMatch ncit C38565 Nitric Oxide Synthase, Inducible lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D052248 Nitric Oxide Synthase Type I skos:exactMatch ncit C38563 Nitric Oxide Synthase, Brain lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -27371,7 +39395,6 @@ mesh D052536 Niemann-Pick Disease, Type A skos:exactMatch ncit C126561 Niemann-P mesh D052537 Niemann-Pick Disease, Type B skos:exactMatch ncit C126866 Niemann-Pick Disease, Type B lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D052556 Niemann-Pick Disease, Type C skos:exactMatch ncit C85214 Niemann-Pick Disease, Type C lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D052557 Clostridium septicum skos:exactMatch ncit C86292 Clostridium septicum lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D052578 Ionic Liquids skos:exactMatch chebi CHEBI:63895 ionic liquid lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D052581 Pinch Strength skos:exactMatch ncit C139211 Pinch Strength lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D052582 Trigger Finger Disorder skos:exactMatch ncit C85203 Trigger Finger Disorder lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D052617 Solid Phase Microextraction skos:exactMatch ncit C129962 Solid Phase Microextraction lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -27387,14 +39410,11 @@ mesh D052878 Urolithiasis skos:exactMatch ncit C114688 Urolithiasis lexical 0.95 mesh D052880 Pyomyositis skos:exactMatch ncit C128382 Pyomyositis lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D052898 Optical Tweezers skos:exactMatch ncit C62320 Optical Tweezers lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D052919 Refsum Disease, Infantile skos:exactMatch ncit C84789 Infantile Refsum Disease lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D052998 Microcystins skos:exactMatch chebi CHEBI:48041 microcystin lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D053018 Pyonephrosis skos:exactMatch ncit C123032 Pyonephrosis lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D053039 Ureterolithiasis skos:exactMatch ncit C114696 Ureterolithiasis lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D053058 Trophozoites skos:exactMatch efo 0002592 trophozoite lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D053098 Familial Hypophosphatemic Rickets skos:exactMatch ncit C85234 X-Linked Dominant Hypophosphatemic Rickets lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D053119 Benzophenanthridines skos:exactMatch chebi CHEBI:38518 benzophenanthridine lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D053120 Respiratory Aspiration skos:exactMatch ncit C83507 Respiratory Tract Aspiration lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D053139 Oseltamivir skos:exactMatch chebi CHEBI:7798 oseltamivir lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D053143 Caspase 2 skos:exactMatch hgnc 1503 CASP2 lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D053146 Myeloblastin skos:exactMatch hgnc 9495 PRTN3 lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D053146 Myeloblastin skos:exactMatch ncit C17548 Myeloblastin lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -27409,7 +39429,6 @@ mesh D053221 TNF-Related Apoptosis-Inducing Ligand skos:exactMatch ncit C20533 T mesh D053222 Fas Ligand Protein skos:exactMatch hgnc 11936 FASLG lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D053240 Receptors, Tumor Necrosis Factor, Member 14 skos:exactMatch ncit C97845 Tumor Necrosis Factor Receptor Superfamily Member 14 lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D053241 Apoprotein(a) skos:exactMatch ncit C140118 Apolipoprotein(a) lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D053243 Zanamivir skos:exactMatch chebi CHEBI:50663 zanamivir lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D053243 Zanamivir skos:exactMatch ncit C47786 Zanamivir lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D053244 Osteoprotegerin skos:exactMatch hgnc 11909 TNFRSF11B lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D053245 RANK Ligand skos:exactMatch hgnc 11926 TNFSF11 lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py @@ -27460,7 +39479,6 @@ mesh D053380 Tumor Necrosis Factor Ligand Superfamily Member 15 skos:exactMatch mesh D053380 Tumor Necrosis Factor Ligand Superfamily Member 15 skos:exactMatch ncit C18289 Tumor Necrosis Factor Ligand Superfamily Member 15 lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D053381 Secretogranin II skos:exactMatch hgnc 10575 SCG2 lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D053399 Apolipoproteins D skos:exactMatch hgnc 612 APOD lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D053419 Lipoproteins, IDL skos:exactMatch chebi CHEBI:132933 intermediate-density lipoprotein lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D053420 CRADD Signaling Adaptor Protein skos:exactMatch hgnc 2340 CRADD lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D053442 High-Density Lipoproteins, Pre-beta skos:exactMatch go GO:0034365 discoidal high-density lipoprotein particle lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D053446 CASP8 and FADD-Like Apoptosis Regulating Protein skos:exactMatch ncit C114491 FLICE Inhibitory Protein lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -27483,8 +39501,6 @@ mesh D053493 Cholestanetriol 26-Monooxygenase skos:exactMatch hgnc 2605 CYP27A1 mesh D053493 Cholestanetriol 26-Monooxygenase skos:exactMatch ncit C104151 Sterol 26-Hydroxylase, Mitochondrial lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D053495 Osteopontin skos:exactMatch hgnc 11255 SPP1 lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D053495 Osteopontin skos:exactMatch ncit C46082 Osteopontin lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D053496 Inositol 1,4,5-Trisphosphate Receptors skos:exactMatch chebi CHEBI:131186 IP3 receptor antagonist lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py -mesh D053500 gamma-Lipotropin skos:exactMatch chebi CHEBI:80248 gamma-Lipotropin lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D053506 Matrix Metalloproteinase 10 skos:exactMatch ncit C101761 Stromelysin-2 lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D053507 Matrix Metalloproteinase 11 skos:exactMatch ncit C17594 Stromelysin-3 lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D053508 Matrix Metalloproteinase 12 skos:exactMatch hgnc 7158 MMP12 lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -27511,7 +39527,6 @@ mesh D053557 Keratin-2 skos:exactMatch hgnc 6439 KRT2 lexical 0.95 https://githu mesh D053558 Keratin-3 skos:exactMatch hgnc 6440 KRT3 lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D053559 Corneal Dystrophy, Juvenile Epithelial of Meesmann skos:exactMatch ncit C84795 Meesmann Corneal Dystrophy lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D053560 Ichthyosis Bullosa of Siemens skos:exactMatch ncit C84777 Ichthyosis Bullosa of Siemens lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D053561 Somatostatin-28 skos:exactMatch chebi CHEBI:80249 somatostatin-28 lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D053565 Hypercalciuria skos:exactMatch ncit C114707 Hypercalciuria lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D053569 Keratin-15 skos:exactMatch hgnc 6421 KRT15 lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D053573 Receptors, Interleukin-1 Type I skos:exactMatch hgnc 5993 IL1R1 lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py @@ -27527,7 +39542,6 @@ mesh D053589 Nuchal Cord skos:exactMatch ncit C113153 Nuchal Cord lexical 0.95 h mesh D053605 Leukemia Inhibitory Factor skos:exactMatch hgnc 6596 LIF lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D053605 Leukemia Inhibitory Factor skos:exactMatch ncit C20524 Leukemia Inhibitory Factor lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D053606 Receptors, OSM-LIF skos:exactMatch hgnc 6597 LIFR lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py -mesh D053607 Adrenomedullin skos:exactMatch chebi CHEBI:80339 Adrenomedullin lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D053613 Janus Kinase 1 skos:exactMatch ncit C28493 Tyrosine-Protein Kinase JAK1 lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D053614 Janus Kinase 2 skos:exactMatch ncit C28494 Tyrosine-Protein Kinase JAK2 lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D053616 Janus Kinase 3 skos:exactMatch ncit C28492 Tyrosine-Protein Kinase JAK3 lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -27570,7 +39584,6 @@ mesh D053707 Receptors, Interleukin-12 skos:exactMatch ncit C38915 Interleukin 1 mesh D053709 Interleukin-10 Receptor alpha Subunit skos:exactMatch ncit C107586 Interleukin-10 Receptor Subunit Alpha lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D053710 Interleukin-10 Receptor beta Subunit skos:exactMatch ncit C26270 Interleukin-10 Receptor Subunit Beta lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D053714 Aspermia skos:exactMatch ncit C80076 Azoospermia lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D053718 Scleromyxedema skos:exactMatch ncit C85061 Scleromyxedema lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D053719 Tandem Mass Spectrometry skos:exactMatch ncit C18142 Tandem Mass Spectrometry lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D053727 Interleukin-18 Receptor alpha Subunit skos:exactMatch hgnc 5988 IL18R1 lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D053727 Interleukin-18 Receptor alpha Subunit skos:exactMatch ncit C124084 Interleukin-18 Receptor 1 lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -27583,20 +39596,15 @@ mesh D053762 Interleukin-12 Subunit p40 skos:exactMatch ncit C28509 Interleukin- mesh D053764 Presenilin-1 skos:exactMatch hgnc 9508 PSEN1 lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D053765 Interleukin-12 Subunit p35 skos:exactMatch hgnc 5969 IL12A lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D053766 Presenilin-2 skos:exactMatch hgnc 9509 PSEN2 lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D053767 Glucagon-Like Peptide 2 skos:exactMatch chebi CHEBI:80271 Glucagon-like peptide 2 lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D053770 Nanowires skos:exactMatch ncit C62376 Nanowire lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D053771 Glicentin skos:exactMatch chebi CHEBI:80272 Glicentin lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D053772 Oxyntomodulin skos:exactMatch chebi CHEBI:81576 Oxyntomodulin lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D053773 Transforming Growth Factor beta1 skos:exactMatch hgnc 11766 TGFB1 lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D053781 Transforming Growth Factor beta2 skos:exactMatch ncit C20458 Transforming Growth Factor Beta-2 lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D053804 Granzymes skos:exactMatch ncit C20619 Granzyme lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D053818 Chymases skos:exactMatch hgnc 2097 CMA1 lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D053824 Protein Tyrosine Phosphatase, Non-Receptor Type 6 skos:exactMatch ncit C26343 Tyrosine-Protein Phosphatase Non-Receptor Type 6 lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D053834 Explosive Agents skos:exactMatch chebi CHEBI:63490 explosive lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D053840 Brugada Syndrome skos:exactMatch ncit C142891 Brugada Syndrome lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D053843 DNA Mismatch Repair skos:exactMatch ncit C20639 Mismatch Repair lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D053938 DNA Fragmentation skos:exactMatch ncit C107432 DNA Fragmentation lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D053959 Alpha-Amanitin skos:exactMatch chebi CHEBI:37415 alpha-amanitin lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D054025 Lasers, Dye skos:exactMatch ncit C64722 Dye Laser lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D054038 Posterior Leukoencephalopathy Syndrome skos:exactMatch ncit C78598 Reversible Posterior Leukoencephalopathy Syndrome lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D054039 Onycholysis skos:exactMatch ncit C112212 Onycholysis lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -27616,12 +39624,9 @@ mesh D054091 Periventricular Nodular Heterotopia skos:exactMatch hp HP:0032388 P mesh D054092 Foramen Ovale, Patent skos:exactMatch ncit C34619 Patent Foramen Ovale lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D054118 Nanospheres skos:exactMatch ncit C62388 Nanosphere lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D054160 Systolic Murmurs skos:exactMatch ncit C167437 Systolic Heart Murmur lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D054179 Angioedemas, Hereditary skos:exactMatch ncit C84758 Hereditary Angioedema lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D054199 Pseudoephedrine skos:exactMatch chebi CHEBI:51209 pseudoephedrine lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D054218 Precursor T-Cell Lymphoblastic Leukemia-Lymphoma skos:exactMatch ncit C6919 T Lymphoblastic Lymphoma lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D054219 Neoplasms, Plasma Cell skos:exactMatch ncit C4665 Plasma Cell Neoplasm lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D054220 Malformations of Cortical Development skos:exactMatch ncit C84834 Malformations of Cortical Development lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D054238 Perinatal Mortality skos:exactMatch ncit C118676 Perinatal Mortality lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D054240 Primitive Streak skos:exactMatch ncit C28402 Primitive Streak lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D054258 Neural Plate skos:exactMatch ncit C34225 Neural Plate lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D054259 Neural Tube skos:exactMatch ncit C34226 Neural Tube lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -27645,12 +39650,10 @@ mesh D054349 Receptors, KIR3DS1 skos:exactMatch hgnc 6340 KIR3DS1 lexical 0.95 h mesh D054351 Electrical Synapses skos:exactMatch ncit C32498 Electrical Synapse lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D054353 Perforin skos:exactMatch hgnc 9360 PRF1 lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D054357 Chemokine CXCL10 skos:exactMatch ncit C28756 C-X-C Motif Chemokine 10 lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D054358 Withanolides skos:exactMatch chebi CHEBI:74716 withanolide lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D054360 Chemokine CXCL1 skos:exactMatch ncit C20471 Growth-Regulated Alpha Protein lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D054362 Cananga skos:exactMatch ncit C72493 Cananga odorata lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D054366 Agouti Signaling Protein skos:exactMatch hgnc 745 ASIP lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D054366 Agouti Signaling Protein skos:exactMatch ncit C131343 Agouti-Signaling Protein lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D054368 Laxatives skos:exactMatch chebi CHEBI:50503 laxative lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D054369 Agouti-Related Protein skos:exactMatch hgnc 330 AGRP lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D054369 Agouti-Related Protein skos:exactMatch ncit C115169 Agouti-Related Protein lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D054370 Chemokine CXCL9 skos:exactMatch ncit C28468 C-X-C Motif Chemokine 9 lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -27705,7 +39708,6 @@ mesh D054547 National Cancer Institute (U.S.) skos:exactMatch ncit C19202 Nation mesh D054548 Montenegro skos:exactMatch ncit C64378 Montenegro lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D054549 Takotsubo Cardiomyopathy skos:exactMatch ncit C85181 Takotsubo Cardiomyopathy lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D054554 National Eye Institute (U.S.) skos:exactMatch ncit C82611 National Eye Institute lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D054555 National Heart, Lung, and Blood Institute (U.S.) skos:exactMatch ncit C82613 National Heart, Lung, and Blood Institute lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D054556 Venous Thromboembolism skos:exactMatch ncit C99537 Venous Thromboembolism lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D054560 National Human Genome Research Institute (U.S.) skos:exactMatch ncit C82617 National Human Genome Research Institute lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D054561 National Institute on Aging (U.S.) skos:exactMatch ncit C82604 National Institute on Aging lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -27740,9 +39742,6 @@ mesh D054685 Lymphoma, Primary Effusion skos:exactMatch ncit C6915 Primary Effus mesh D054705 Mastocytoma, Skin skos:exactMatch ncit C7138 Solitary Mastocytoma of the Skin lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D054706 Cyclic Nucleotide Phosphodiesterases, Type 5 skos:exactMatch hgnc 8784 PDE5A lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D054709 Lecithins skos:exactMatch ncit C68386 Lecithin lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D054713 Bryostatins skos:exactMatch chebi CHEBI:3200 bryostatins lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D054714 Echinocandins skos:exactMatch chebi CHEBI:57248 echinocandin lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D054728 Cucurbitacins skos:exactMatch chebi CHEBI:16219 cucurbitacin lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D054729 Calcium-Calmodulin-Dependent Protein Kinase Type 1 skos:exactMatch hgnc 1459 CAMK1 lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D054729 Calcium-Calmodulin-Dependent Protein Kinase Type 1 skos:exactMatch ncit C116671 Calcium/Calmodulin-Dependent Protein Kinase Type 1 lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D054731 PDZ Domains skos:exactMatch ncit C133734 PDZ Domain lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -27761,16 +39760,10 @@ mesh D054774 G-Protein-Coupled Receptor Kinase 5 skos:exactMatch ncit C26235 G P mesh D054776 Semicircular Ducts skos:exactMatch ncit C33528 Semicircular Duct lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D054794 Glycomics skos:exactMatch ncit C153192 Glycomics lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D054801 Phosphoinositide Phospholipase C skos:exactMatch ncit C104824 1-Phosphatidylinositol 4,5-Bisphosphate Phosphodiesterase Gamma-1 lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D054811 Phytochelatins skos:exactMatch chebi CHEBI:60836 phytochelatin lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D054812 Cyclitols skos:exactMatch chebi CHEBI:23451 cyclitol lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D054813 Polyhydroxyalkanoates skos:exactMatch chebi CHEBI:53387 poly(hydroxyalkanoate) lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D054814 Anatomists skos:exactMatch ncit C93185 Anatomist lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D054816 Levopropoxyphene skos:exactMatch ncit C170118 Levopropoxyphene lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D054829 RING Finger Domains skos:exactMatch ncit C13746 Ring Finger Domain lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D054830 Sesterterpenes skos:exactMatch chebi CHEBI:35192 sesterterpene lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D054833 Isoindoles skos:exactMatch chebi CHEBI:24897 isoindoles lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D054835 Lipocalin 1 skos:exactMatch hgnc 6525 LCN1 lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D054837 Quinolizidines skos:exactMatch chebi CHEBI:26516 quinolizidines lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D054843 Negative-Pressure Wound Therapy skos:exactMatch ncit C159891 Negative Pressure Wound Therapy lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D054850 Osteophyte skos:exactMatch ncit C139151 Osteophyte lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D054851 Tropheryma skos:exactMatch ncit C86826 Tropheryma lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -27778,13 +39771,11 @@ mesh D054853 Malignant Atrophic Papulosis skos:exactMatch ncit C84835 Malignant mesh D054854 Vertebroplasty skos:exactMatch ncit C62752 Vertebroplasty lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D054856 G-Quadruplexes skos:exactMatch ncit C13725 G-Quartets lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D054868 Jacobsen Distal 11q Deletion Syndrome skos:exactMatch ncit C75457 Jacobsen Syndrome lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D054872 Fatty Acid Synthesis Inhibitors skos:exactMatch chebi CHEBI:50185 fatty acid synthesis inhibitor lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D054873 Dipeptidyl-Peptidase IV Inhibitors skos:exactMatch chebi CHEBI:68612 EC 3.4.14.5 (dipeptidyl-peptidase IV) inhibitor lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D054875 Ubiquitination skos:exactMatch ncit C19358 Ubiquitination lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D054876 Prenylation skos:exactMatch ncit C17560 Isoprenylation Process lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D054877 Wolf-Hirschhorn Syndrome skos:exactMatch ncit C35528 Wolf-Hirschhorn Syndrome lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D054880 Aspartylglucosaminuria skos:exactMatch ncit C61273 Aspartylglycosaminuria lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D054883 Oxylipins skos:exactMatch chebi CHEBI:61121 oxylipin lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D054892 Metagenome skos:exactMatch ncit C153196 Metagenome lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D054893 Cone-Beam Computed Tomography skos:exactMatch ncit C71695 Cone-Beam Computed Tomography lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D054908 Extensively Drug-Resistant Tuberculosis skos:exactMatch ncit C128417 Extensively Drug-Resistant Tuberculosis lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -27794,7 +39785,6 @@ mesh D054973 Perivascular Epithelioid Cell Neoplasms skos:exactMatch ncit C38150 mesh D054975 Pallister-Hall Syndrome skos:exactMatch ncit C84987 Pallister-Hall Syndrome lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D054988 Idiopathic Interstitial Pneumonias skos:exactMatch ncit C35714 Idiopathic Interstitial Pneumonia lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D054989 Nephrogenic Fibrosing Dermopathy skos:exactMatch ncit C84920 Nephrogenic Fibrosing Dermopathy lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D054990 Idiopathic Pulmonary Fibrosis skos:exactMatch ncit C35716 Idiopathic Pulmonary Fibrosis lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D055008 Anthracosis skos:exactMatch ncit C34390 Anthracosis lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D055009 Spondylosis skos:exactMatch efo 0009477 vertebral joint disease lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D055010 Posterior Cervical Sympathetic Syndrome skos:exactMatch ncit C34411 Cervicocranial Syndrome lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -27809,7 +39799,6 @@ mesh D055070 Resistance Training skos:exactMatch ncit C154219 Resistance Trainin mesh D055089 Tracheobronchomalacia skos:exactMatch ncit C85195 Tracheobronchomalacia lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D055090 Tracheomalacia skos:exactMatch ncit C98634 Tracheomalacia lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D055091 Bronchomalacia skos:exactMatch ncit C98847 Bronchomalacia lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D055092 Laryngomalacia skos:exactMatch ncit C98971 Laryngomalacia lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D055098 Endocrine Cells skos:exactMatch ncit C32506 Endocrine Cell lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D055099 Neuroendocrine Cells skos:exactMatch ncit C12485 Neuroendocrine Cell lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D055100 Optical Fibers skos:exactMatch ncit C49954 Optical Fiber Device lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -27839,7 +39828,6 @@ mesh D055323 Byssochlamys skos:exactMatch ncit C127276 Byssochlamys lexical 0.95 mesh D055325 Eurotium skos:exactMatch ncit C127282 Eurotium lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D055356 Endometrial Ablation Techniques skos:exactMatch ncit C157834 Endometrial Ablation lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D055360 Osteopathic Physicians skos:exactMatch ncit C39385 Doctor of Osteopathic Medicine lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D055371 Acute Lung Injury skos:exactMatch ncit C155766 Acute Lung Injury lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D055372 AMP-Activated Protein Kinases skos:exactMatch ncit C94701 5-AMP-Activated Protein Kinase lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D055396 Bone Morphogenetic Protein 2 skos:exactMatch ncit C21350 Bone Morphogenetic Protein 2 lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D055398 Bone Morphogenetic Protein 3 skos:exactMatch ncit C21352 Bone Morphogenetic Protein 3 lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -27872,7 +39860,6 @@ mesh D055542 alpha-Globins skos:exactMatch hgnc 4824 HBA2 lexical 0.95 https://g mesh D055543 zeta-Globins skos:exactMatch hgnc 4835 HBZ lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D055546 delta-Globins skos:exactMatch hgnc 4829 HBD lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D055547 epsilon-Globins skos:exactMatch hgnc 4830 HBE1 lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D055549 Volatile Organic Compounds skos:exactMatch chebi CHEBI:134179 volatile organic compound lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D055551 HSP27 Heat-Shock Proteins skos:exactMatch hgnc 5246 HSPB1 lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D055551 HSP27 Heat-Shock Proteins skos:exactMatch ncit C16671 Heat Shock Protein Beta-1 lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D055556 Nasal Lavage skos:exactMatch ncit C132126 Nasal Wash and Collection lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -27897,15 +39884,12 @@ mesh D055652 Gray Platelet Syndrome skos:exactMatch ncit C84741 Gray Platelet Sy mesh D055653 Muir-Torre Syndrome skos:exactMatch ncit C84905 Muir-Torre Syndrome lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D055656 Prescriptions skos:exactMatch ncit C28180 Prescription lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D055665 Purpura Fulminans skos:exactMatch efo 1001913 Purpura Fulminans lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D055666 Lipopeptides skos:exactMatch chebi CHEBI:46895 lipopeptide lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D055667 Arcanobacterium skos:exactMatch ncit C86147 Arcanobacterium lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D055673 Acrocallosal Syndrome skos:exactMatch ncit C84531 Acrocallosal Syndrome lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D055726 Cabo Verde skos:exactMatch ncit C16382 Cape Verde lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D055728 Primary Myelofibrosis skos:exactMatch ncit C2862 Primary Myelofibrosis lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D055731 Carbohydrate Biochemistry skos:exactMatch ncit C18676 Carbohydrate Biochemistry lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D055744 Invasive Pulmonary Aspergillosis skos:exactMatch hp HP:0020103 Invasive pulmonary aspergillosis lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D055744 Invasive Pulmonary Aspergillosis skos:exactMatch ncit C162141 Invasive Pulmonary Aspergillosis lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D055752 Small Cell Lung Carcinoma skos:exactMatch ncit C4917 Small Cell Lung Carcinoma lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D055756 Meningeal Carcinomatosis skos:exactMatch ncit C27383 Meningeal Carcinomatosis lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D055771 Serbia skos:exactMatch ncit C64377 Serbia lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D055785 Gene Knockdown Techniques skos:exactMatch ncit C74927 Gene Knockdown lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -27940,8 +39924,6 @@ mesh D056284 Histone Deacetylase 1 skos:exactMatch ncit C19671 Histone Deacetyla mesh D056285 Cryptococcus gattii skos:exactMatch ncit C114268 Cryptococcus gattii lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D056305 Genu Varum skos:exactMatch ncit C84726 Genu Varum lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D056324 Diffusion Tensor Imaging skos:exactMatch ncit C64862 Diffusion Tensor Imaging lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D056344 Executive Function skos:exactMatch efo 0007046 executive function lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py -mesh D056344 Executive Function skos:exactMatch ncit C88419 Executive Function lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D056346 Sternotomy skos:exactMatch ncit C25220 Sternotomy lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D056464 Histone Deacetylase 2 skos:exactMatch ncit C18294 Histone Deacetylase 2 lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D056465 Retinoblastoma-Binding Protein 1 skos:exactMatch hgnc 9885 ARID4A lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -28004,11 +39986,9 @@ mesh D056806 Urea Cycle Disorders, Inborn skos:exactMatch ncit C84785 Urea Cycle mesh D056807 Argininosuccinic Aciduria skos:exactMatch ncit C84569 Argininosuccinic Aciduria lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D056808 Biostatistics skos:exactMatch ncit C16347 Biostatistics lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D056809 Alveolar Epithelial Cells skos:exactMatch ncit C32053 Alveolar Cell lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D056810 Acaricides skos:exactMatch chebi CHEBI:22153 acaricide lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D056811 Unfolded Protein Response skos:exactMatch ncit C118900 Unfolded Protein Response lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D056825 Thyroxine-Binding Globulin skos:exactMatch hgnc 11583 SERPINA7 lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D056825 Thyroxine-Binding Globulin skos:exactMatch ncit C106005 Thyroxine-Binding Globulin lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D056829 Hereditary Angioedema Types I and II skos:exactMatch ncit C84757 Hereditary Angioedema Types I and II lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D056833 Central Serous Chorioretinopathy skos:exactMatch ncit C115124 Central Serous Chorioretinopathy lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D056846 Weill-Marchesani Syndrome skos:exactMatch ncit C85226 Weill-Marchesani Syndrome lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D056849 Cyclin-Dependent Kinase 3 skos:exactMatch ncit C25865 Cyclin-Dependent Kinase 3 lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -28234,8 +40214,6 @@ mesh D061165 Glenoid Cavity skos:exactMatch ncit C32682 Glenoid Fossa lexical 0. mesh D061205 Vascular Calcification skos:exactMatch ncit C114846 Vascular Calcification lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D061206 Neoplasm Micrometastasis skos:exactMatch efo 0009710 micrometastasis lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D061206 Neoplasm Micrometastasis skos:exactMatch ncit C38486 Micrometastasis lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D061207 Calcium Ionophores skos:exactMatch chebi CHEBI:22986 calcium ionophore lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D061216 Potassium Ionophores skos:exactMatch chebi CHEBI:88227 potassium ionophore lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D061218 Depressive Disorder, Treatment-Resistant skos:exactMatch efo 0009854 treatment resistant depression lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D061226 Recurrent Laryngeal Nerve Injuries skos:exactMatch ncit C103171 Recurrent Laryngeal Nerve Injury lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D061251 Primary Cell Culture skos:exactMatch ncit C19315 Primary Cell Culture lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -28249,11 +40227,9 @@ mesh D061625 Immunoreceptor Tyrosine-Based Activation Motif skos:exactMatch ncit mesh D061765 Endoscopic Ultrasound-Guided Fine Needle Aspiration skos:exactMatch ncit C67287 Endoscopic Ultrasound-Guided Fine-Needle Aspiration lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D061766 Proton Therapy skos:exactMatch ncit C66897 Proton Beam Radiation Therapy lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D062005 Biopsy, Large-Core Needle skos:exactMatch ncit C15680 Core Biopsy lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D062025 Organophosphate Poisoning skos:exactMatch efo 0010581 organophosphate poisoning lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D062026 Alice in Wonderland Syndrome skos:exactMatch ncit C116362 Alice in Wonderland Syndrome lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D062027 Linear IgA Bullous Dermatosis skos:exactMatch ncit C118233 Childhood Linear IgA Disease lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D062109 Dermatologic Surgical Procedures skos:exactMatch ncit C51559 Dermatologic Surgery lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D062327 Skin Lightening Preparations skos:exactMatch chebi CHEBI:85046 skin lightening agent lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D062556 NAV1.7 Voltage-Gated Sodium Channel skos:exactMatch ncit C114813 Sodium Channel Protein Type 9 Subunit Alpha lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D062688 Buschke-Lowenstein Tumor skos:exactMatch ncit C6371 Giant Condyloma lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D062727 Coxsackie and Adenovirus Receptor-Like Membrane Protein skos:exactMatch hgnc 24039 CLMP lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -28281,7 +40257,6 @@ mesh D063268 Sialic Acid Binding Ig-like Lectin 3 skos:exactMatch hgnc 1659 CD33 mesh D063306 Mitochondrial Degradation skos:exactMatch go GO:0000423 mitophagy lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D063308 Myelin-Oligodendrocyte Glycoprotein skos:exactMatch hgnc 7197 MOG lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D063345 Oligodendrocyte-Myelin Glycoprotein skos:exactMatch hgnc 8135 OMG lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D063387 Cannabinoid Receptor Antagonists skos:exactMatch chebi CHEBI:73413 cannabinoid receptor antagonist lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D063730 Rickets, Hypophosphatemic skos:exactMatch ncit C131449 Hypophosphatemic Rickets lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D063748 Bland White Garland Syndrome skos:exactMatch hp HP:0011638 Anomalous origin of left coronary artery from the pulmonary artery lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D063988 3-Hydroxyacyl-CoA Dehydrogenase skos:exactMatch ncit C112050 3-Hydroxyacyl-CoA Dehydrogenase lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -28327,7 +40302,6 @@ mesh D064451 Hepcidins skos:exactMatch hgnc 15598 HAMP lexical 0.95 https://gith mesh D064466 Solute Carrier Family 12, Member 1 skos:exactMatch hgnc 10910 SLC12A1 lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D064486 Solute Carrier Family 12, Member 3 skos:exactMatch hgnc 10912 SLC12A3 lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D064507 Solute Carrier Family 12, Member 4 skos:exactMatch hgnc 10913 SLC12A4 lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py -mesh D064527 Etiolation skos:exactMatch efo 0007589 etiolation lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D064529 Receptor, Metabotropic Glutamate 5 skos:exactMatch hgnc 4597 GRM5 lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D064549 Myeloid Cell Leukemia Sequence 1 Protein skos:exactMatch hgnc 6943 MCL1 lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D064549 Myeloid Cell Leukemia Sequence 1 Protein skos:exactMatch ncit C17688 Induced Myeloid Leukemia Cell Differentiation Protein Mcl-1 lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py @@ -28365,7 +40339,92 @@ mesh D066208 Olfactory Tubercle skos:exactMatch ncit C33371 Posterior Olfactory mesh D066229 Speech Sound Disorder skos:exactMatch ncit C92564 Phonological Disorder lexical 0.95 https://github.com/biomappings/biomappings/blob/a80ed2/scripts/import_gilda_mappings.py mesh D066259 Betacellulin skos:exactMatch hgnc 1121 BTC lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py mesh D066261 Epigen skos:exactMatch hgnc 17470 EPGN lexical 0.95 https://github.com/biomappings/biomappings/blob/492ede/scripts/import_gilda_mappings.py -pr PR:000043586 von Willebrand factor isoform 1 cleaved 1 (human) skos:exactMatch uniprot.chain PRO_0000022682 von Willebrand antigen 2 lexical 0.8 https://github.com/indralab/gilda/blob/master/scripts/generate_uniprot_chain_proonto_mappings.py +mondo MONDO:0001049 Dressler syndrome skos:exactMatch mesh C538618 Donath-Landsteiner hemolytic anemia lexical 0.9 generate_mondo_mesh_mappings.py +mondo MONDO:0001115 familial polycythemia skos:exactMatch mesh C536842 Polycythemia, primary familial and congenital lexical 0.9 generate_mondo_mesh_mappings.py +mondo MONDO:0002814 adrenal carcinoma skos:exactMatch mesh D018268 Adrenocortical Carcinoma lexical 0.9 generate_mondo_mesh_mappings.py +mondo MONDO:0005161 human papilloma virus infection skos:exactMatch mesh D030361 Papillomavirus Infections lexical 0.9 generate_mondo_mesh_mappings.py +mondo MONDO:0005594 severe cutaneous adverse reaction skos:exactMatch mesh D002921 Cicatrix lexical 0.9 generate_mondo_mesh_mappings.py +mondo MONDO:0006209 fibroblastic neoplasm skos:exactMatch mesh D005354 Fibrosarcoma lexical 0.9 generate_mondo_mesh_mappings.py +mondo MONDO:0007028 rotator cuff syndrome skos:exactMatch mesh D000070636 Rotator Cuff Injuries lexical 0.9 generate_mondo_mesh_mappings.py +mondo MONDO:0007116 hereditary neurocutaneous angioma skos:exactMatch mesh C536364 Angioma hereditary neurocutaneous lexical 0.9 generate_mondo_mesh_mappings.py +mondo MONDO:0007323 Chondronectin skos:exactMatch mesh C029172 chondronectin protein, human lexical 0.9 generate_mondo_mesh_mappings.py +mondo MONDO:0007608 desmoid tumor skos:exactMatch mesh D018222 Fibromatosis, Aggressive lexical 0.9 generate_mondo_mesh_mappings.py +mondo MONDO:0007614 congenital fibrosis of extraocular muscles skos:exactMatch mesh C580012 Congenital Fibrosis of the Extraocular Muscles lexical 0.9 generate_mondo_mesh_mappings.py +mondo MONDO:0007767 hyperparathyroidism 1 skos:exactMatch mesh C564166 Hyperparathyroidism 1 lexical 0.9 generate_mondo_mesh_mappings.py +mondo MONDO:0007794 hypogonadotropic hypogonadism 7 with or without anosmia skos:exactMatch mesh C562785 Idiopathic Hypogonadotropic Hypogonadism lexical 0.9 generate_mondo_mesh_mappings.py +mondo MONDO:0007876 laryngeal abductor paralysis skos:exactMatch mesh C536354 Vocal cord dysfunction familial lexical 0.9 generate_mondo_mesh_mappings.py +mondo MONDO:0008161 otodental syndrome skos:exactMatch mesh C563482 Otodental Dysplasia lexical 0.9 generate_mondo_mesh_mappings.py +mondo MONDO:0008718 Morvan syndrome skos:exactMatch mesh D020385 Myokymia lexical 0.9 generate_mondo_mesh_mappings.py +mondo MONDO:0008751 corticosterone methyloxidase type 1 deficiency skos:exactMatch mesh C537806 18-Hydroxylase deficiency lexical 0.9 generate_mondo_mesh_mappings.py +mondo MONDO:0008888 Williams-Campbell syndrome skos:exactMatch mesh D055089 Tracheobronchomalacia lexical 0.9 generate_mondo_mesh_mappings.py +mondo MONDO:0008990 cleft larynx, posterior skos:exactMatch mesh C537851 Novak syndrome lexical 0.9 generate_mondo_mesh_mappings.py +mondo MONDO:0009097 persistent hyperplastic primary vitreous, autosomal recessive skos:exactMatch mesh C566966 Persistent Hyperplastic Primary Vitreous, Autosomal Recessive lexical 0.9 generate_mondo_mesh_mappings.py +mondo MONDO:0009336 hemosiderosis, pulmonary, with deficiency of gamma-a globulin skos:exactMatch mesh C536281 Idiopathic pulmonary hemosiderosis lexical 0.9 generate_mondo_mesh_mappings.py +mondo MONDO:0009349 holoprosencephaly 1 skos:exactMatch mesh C562573 cyclopia sequence lexical 0.9 generate_mondo_mesh_mappings.py +mondo MONDO:0009606 methemoglobinemia due to deficiency of methemoglobin reductase skos:exactMatch mesh C537841 NADH cytochrome B5 reductase deficiency lexical 0.9 generate_mondo_mesh_mappings.py +mondo MONDO:0009622 Jawad syndrome skos:exactMatch mesh C567101 Microcephaly with Mental Retardation and Digital Anomalies lexical 0.9 generate_mondo_mesh_mappings.py +mondo MONDO:0009809 multicentric osteolysis, nodulosis, and arthropathy skos:exactMatch mesh C536051 Osteolysis hereditary multicentric lexical 0.9 generate_mondo_mesh_mappings.py +mondo MONDO:0010323 Atkin-Flaitz syndrome skos:exactMatch mesh C538195 Atkin syndrome lexical 0.9 generate_mondo_mesh_mappings.py +mondo MONDO:0010746 thumbs, congenital Clasped skos:exactMatch mesh C562949 Adducted Thumbs Syndrome lexical 0.9 generate_mondo_mesh_mappings.py +mondo MONDO:0010778 cyclic vomiting syndrome skos:exactMatch mesh C536228 Familial cyclic vomiting syndrome lexical 0.9 generate_mondo_mesh_mappings.py +mondo MONDO:0010831 familial caudal dysgenesis skos:exactMatch mesh C535879 Rudd Klimek syndrome lexical 0.9 generate_mondo_mesh_mappings.py +mondo MONDO:0010880 telangiectasia, hereditary hemorrhagic, type 2 skos:exactMatch mesh C537139 Osler-rendu-weber syndrome 2 lexical 0.9 generate_mondo_mesh_mappings.py +mondo MONDO:0011232 migraine, familial hemiplegic, 2 skos:exactMatch mesh C537246 Hemiplegic migraine, familial type 2 lexical 0.9 generate_mondo_mesh_mappings.py +mondo MONDO:0011898 Charcot-Marie-Tooth disease, axonal, with vocal cord paresis, autosomal recessive skos:exactMatch mesh C539595 Charcot-Marie-Tooth disease, Type 4A, axonal form lexical 0.9 generate_mondo_mesh_mappings.py +mondo MONDO:0012548 Kostmann syndrome skos:exactMatch mesh C537592 Neutropenia, Severe Congenital, Autosomal Recessive 3 lexical 0.9 generate_mondo_mesh_mappings.py +mondo MONDO:0012914 chromosome 1q21.1 deletion syndrome skos:exactMatch mesh C567291 Chromosome 1q21.1 Deletion Syndrome, 1.35-Mb lexical 0.9 generate_mondo_mesh_mappings.py +mondo MONDO:0012937 Diamond-Blackfan anemia 6 skos:exactMatch mesh C538442 Aase Smith syndrome 2 lexical 0.9 generate_mondo_mesh_mappings.py +mondo MONDO:0013996 focal facial dermal dysplasia type II skos:exactMatch mesh C536385 Facial ectodermal dysplasia lexical 0.9 generate_mondo_mesh_mappings.py +mondo MONDO:0014945 myopathy, distal, with rimmed vacuoles skos:exactMatch mesh C536816 Distal myopathy, Nonaka type lexical 0.9 generate_mondo_mesh_mappings.py +mondo MONDO:0015450 triatrial heart skos:exactMatch mesh D003310 Cor Triatriatum lexical 0.9 generate_mondo_mesh_mappings.py +mondo MONDO:0015465 craniometaphyseal dysplasia skos:exactMatch mesh C537519 Schwartz-Lelek syndrome lexical 0.9 generate_mondo_mesh_mappings.py +mondo MONDO:0015518 infantile bilateral striatal necrosis skos:exactMatch mesh C537500 Striatonigral degeneration infantile lexical 0.9 generate_mondo_mesh_mappings.py +mondo MONDO:0015903 hyperalphalipoproteinemia skos:exactMatch mesh C564591 Cholesteryl Ester Transfer Protein Deficiency lexical 0.9 generate_mondo_mesh_mappings.py +mondo MONDO:0015924 pulmonary arterial hypertension skos:exactMatch mesh D000081029 Pulmonary Arterial Hypertension lexical 0.9 generate_mondo_mesh_mappings.py +mondo MONDO:0015986 bilateral renal agenesis skos:exactMatch mesh C536482 Hereditary renal agenesis lexical 0.9 generate_mondo_mesh_mappings.py +mondo MONDO:0016581 conotruncal heart malformations skos:exactMatch mesh C535464 Conotruncal cardiac defects lexical 0.9 generate_mondo_mesh_mappings.py +mondo MONDO:0016743 tumor of meninges skos:exactMatch mesh D008577 Meningeal Neoplasms lexical 0.9 generate_mondo_mesh_mappings.py +mondo MONDO:0016784 gestational trophoblastic disease skos:exactMatch mesh D031901 Gestational Trophoblastic Disease lexical 0.9 generate_mondo_mesh_mappings.py +mondo MONDO:0017182 familial hyperinsulinism skos:exactMatch mesh D044903 Congenital Hyperinsulinism lexical 0.9 generate_mondo_mesh_mappings.py +mondo MONDO:0017388 celiac trunk compression syndrome skos:exactMatch mesh D000074742 Median Arcuate Ligament Syndrome lexical 0.9 generate_mondo_mesh_mappings.py +mondo MONDO:0017568 Prata-Liberal-Goncalves syndrome skos:exactMatch mesh C538180 Acrodysplasia scoliosis lexical 0.9 generate_mondo_mesh_mappings.py +mondo MONDO:0017609 renal tubular dysgenesis skos:exactMatch mesh C537048 Allanson Pantzar McLeod syndrome lexical 0.9 generate_mondo_mesh_mappings.py +mondo MONDO:0017672 focal palmoplantar keratoderma skos:exactMatch mesh C538682 Hyperkeratosis of the palms and soles and esophageal papillomas lexical 0.9 generate_mondo_mesh_mappings.py +mondo MONDO:0017779 alpha-N-acetylgalactosaminidase deficiency skos:exactMatch mesh C536631 Schindler Disease, Type I lexical 0.9 generate_mondo_mesh_mappings.py +mondo MONDO:0017816 primary systemic amyloidosis skos:exactMatch mesh D000075363 Immunoglobulin Light-chain Amyloidosis lexical 0.9 generate_mondo_mesh_mappings.py +mondo MONDO:0018037 hyper-IgE syndrome skos:exactMatch mesh D007589 Job Syndrome lexical 0.9 generate_mondo_mesh_mappings.py +mondo MONDO:0018215 paraneoplastic neurologic syndrome skos:exactMatch mesh D020361 Paraneoplastic Syndromes, Nervous System lexical 0.9 generate_mondo_mesh_mappings.py +mondo MONDO:0018274 GM3 synthase deficiency skos:exactMatch mesh C563799 Amish Infantile Epilepsy Syndrome lexical 0.9 generate_mondo_mesh_mappings.py +mondo MONDO:0018440 autosomal recessive distal renal tubular acidosis skos:exactMatch mesh C537758 Renal tubular acidosis, distal, autosomal recessive lexical 0.9 generate_mondo_mesh_mappings.py +mondo MONDO:0018484 semicircular canal dehiscence syndrome skos:exactMatch mesh D000084322 Semicircular Canal Dehiscence lexical 0.9 generate_mondo_mesh_mappings.py +mondo MONDO:0018669 snakebite envenomation skos:exactMatch mesh D012909 Snake Bites lexical 0.9 generate_mondo_mesh_mappings.py +mondo MONDO:0018755 scorpion envenomation skos:exactMatch mesh D065008 Scorpion Stings lexical 0.9 generate_mondo_mesh_mappings.py +mondo MONDO:0018772 Joubert syndrome skos:exactMatch mesh C536293 Agenesis of Cerebellar Vermis lexical 0.9 generate_mondo_mesh_mappings.py +mondo MONDO:0018787 genetic cerebral small vessel disease skos:exactMatch mesh D059345 Cerebral Small Vessel Diseases lexical 0.9 generate_mondo_mesh_mappings.py +mondo MONDO:0018801 congenital bilateral absence of vas deferens skos:exactMatch mesh C535984 Congenital bilateral aplasia of vas deferens lexical 0.9 generate_mondo_mesh_mappings.py +mondo MONDO:0018871 acute myelomonocytic leukemia M4 skos:exactMatch mesh D015479 Leukemia, Myelomonocytic, Acute lexical 0.9 generate_mondo_mesh_mappings.py +mondo MONDO:0018948 multiminicore myopathy skos:exactMatch mesh C564969 Minicore Myopathy with External Ophthalmoplegia lexical 0.9 generate_mondo_mesh_mappings.py +mondo MONDO:0018951 distal myopathy with vocal cord weakness skos:exactMatch mesh C565262 Myopathy, Distal 2 lexical 0.9 generate_mondo_mesh_mappings.py +mondo MONDO:0019203 acute interstitial pneumonia skos:exactMatch mesh D000080203 Hamman-Rich Syndrome lexical 0.9 generate_mondo_mesh_mappings.py +mondo MONDO:0019308 junctional epidermolysis bullosa inversa skos:exactMatch mesh C535958 Epidermolysis bullosa inversa dystrophica lexical 0.9 generate_mondo_mesh_mappings.py +mondo MONDO:0019518 Waardenburg-Shah syndrome skos:exactMatch mesh C536467 Waardenburg syndrome, type 4 lexical 0.9 generate_mondo_mesh_mappings.py +mondo MONDO:0019636 renal agenesis, unilateral skos:exactMatch mesh D000075529 Solitary Kidney lexical 0.9 generate_mondo_mesh_mappings.py +mondo MONDO:0020506 ovarioleukodystrophy skos:exactMatch mesh C565836 Vanishing White Matter Leukodystrophy with Ovarian Failure lexical 0.9 generate_mondo_mesh_mappings.py +mondo MONDO:0021053 carotid body paraganglioma skos:exactMatch mesh D002345 Carotid Body Tumor lexical 0.9 generate_mondo_mesh_mappings.py +mondo MONDO:0021248 nervous system neoplasm skos:exactMatch mesh D009380 Neoplasms, Nerve Tissue lexical 0.9 generate_mondo_mesh_mappings.py +mondo MONDO:0021661 coronary atherosclerosis skos:exactMatch mesh D003324 Coronary Artery Disease lexical 0.9 generate_mondo_mesh_mappings.py +mondo MONDO:0024685 Philadelphia-positive myelogenous leukemia skos:exactMatch mesh D015466 Leukemia, Myeloid, Chronic-Phase lexical 0.9 generate_mondo_mesh_mappings.py +mondo MONDO:0030639 Teebi hypertelorism syndrome skos:exactMatch mesh C536951 Teebi syndrome lexical 0.9 generate_mondo_mesh_mappings.py +mondo MONDO:0031001 vitreoretinopathy with phalangeal epiphyseal dysplasia skos:exactMatch mesh C565179 Vitreoretinopathy with Phalangeal Epiphyseal Dysplasia lexical 0.9 generate_mondo_mesh_mappings.py +mondo MONDO:0031169 odontochondrodysplasia skos:exactMatch mesh C535792 Spondylometaphyseal dysplasia with dentinogenesis imperfecta lexical 0.9 generate_mondo_mesh_mappings.py +mondo MONDO:0044746 zoonotic bacterial infection skos:exactMatch mesh D000086966 Bacterial Zoonoses lexical 0.9 generate_mondo_mesh_mappings.py +mondo MONDO:0100001 alpha-gal syndrome skos:exactMatch mesh C000655084 red meat allergy lexical 0.9 generate_mondo_mesh_mappings.py +mondo MONDO:0100064 tyrosine hydroxylase deficiency skos:exactMatch mesh C537537 Segawa syndrome, autosomal recessive lexical 0.9 generate_mondo_mesh_mappings.py +mondo MONDO:0100089 GATA1-Related X-Linked Cytopenia skos:exactMatch mesh C564525 Dyserythropoietic Anemia with Thrombocytopenia lexical 0.9 generate_mondo_mesh_mappings.py +mondo MONDO:0100184 GTP cyclohydrolase I deficiency skos:exactMatch mesh C562656 Hyperphenylalaninemia, BH4-Deficient, B lexical 0.9 generate_mondo_mesh_mappings.py +mondo MONDO:0100234 paroxysmal familial ventricular fibrillation skos:exactMatch mesh C537182 Paroxysmal ventricular fibrillation lexical 0.9 generate_mondo_mesh_mappings.py +mondo MONDO:0100312 vestibular ataxia skos:exactMatch mesh D000071699 Bilateral Vestibulopathy lexical 0.9 generate_mondo_mesh_mappings.py +mondo MONDO:0700127 mosaic trisomy 21 skos:exactMatch mesh C536794 Chromosome 21, uniparental disomy of lexical 0.9 generate_mondo_mesh_mappings.py reactome R-CEL-72172 mRNA Splicing speciesSpecific go GO:0000372 Group I intron splicing lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/0969bd/scripts/generate_pathway_mappings.py reactome R-CEL-72172 mRNA Splicing speciesSpecific go GO:0000373 Group II intron splicing lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/0969bd/scripts/generate_pathway_mappings.py reactome R-CFA-72172 mRNA Splicing speciesSpecific go GO:0000372 Group I intron splicing lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/0969bd/scripts/generate_pathway_mappings.py @@ -28386,2056 +40445,72 @@ reactome R-SSC-72172 mRNA Splicing speciesSpecific go GO:0000372 Group I intron reactome R-SSC-72172 mRNA Splicing speciesSpecific go GO:0000373 Group II intron splicing lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/0969bd/scripts/generate_pathway_mappings.py reactome R-XTR-72172 mRNA Splicing speciesSpecific go GO:0000372 Group I intron splicing lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/0969bd/scripts/generate_pathway_mappings.py reactome R-XTR-72172 mRNA Splicing speciesSpecific go GO:0000373 Group II intron splicing lexical 0.549371263656978 https://github.com/biomappings/biomappings/blob/0969bd/scripts/generate_pathway_mappings.py -wikipathways WP1 Statin pathway RO:HOM0000017 wikipathways WP1041 Statin pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1 Statin pathway RO:HOM0000017 wikipathways WP1157 Statin pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1 Statin pathway RO:HOM0000017 wikipathways WP145 Statin pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1 Statin pathway RO:HOM0000017 wikipathways WP921 Statin pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP10 IL-9 signaling pathway RO:HOM0000017 wikipathways WP1320 IL-9 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP10 IL-9 signaling pathway RO:HOM0000017 wikipathways WP22 IL-9 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP10 IL-9 signaling pathway RO:HOM0000017 wikipathways WP8 IL-9 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP10 IL-9 signaling pathway RO:HOM0000017 wikipathways WP974 IL-9 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP100 Glutathione metabolism RO:HOM0000017 wikipathways WP164 Glutathione metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP100 Glutathione metabolism RO:HOM0000017 wikipathways WP3207 Glutathione metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP100 Glutathione metabolism RO:HOM0000017 wikipathways WP469 Glutathione metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1000 Arachidonate epoxygenase / epoxide hydrolase RO:HOM0000017 wikipathways WP1250 Arachidonate epoxygenase / epoxide hydrolase lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1000 Arachidonate epoxygenase / epoxide hydrolase RO:HOM0000017 wikipathways WP1285 Arachidonate epoxygenase / epoxide hydrolase lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1000 Arachidonate epoxygenase / epoxide hydrolase RO:HOM0000017 wikipathways WP678 Arachidonate epoxygenase / epoxide hydrolase lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1001 Peptide GPCRs RO:HOM0000017 wikipathways WP131 Peptide GPCRs lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1001 Peptide GPCRs RO:HOM0000017 wikipathways WP1338 Peptide GPCRs lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1001 Peptide GPCRs RO:HOM0000017 wikipathways WP24 Peptide GPCRs lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1002 Electron transport chain RO:HOM0000017 wikipathways WP1119 Electron transport chain lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1002 Electron transport chain RO:HOM0000017 wikipathways WP1339 Electron transport chain lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1002 Electron transport chain RO:HOM0000017 wikipathways WP295 Electron transport chain lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1002 Electron transport chain RO:HOM0000017 wikipathways WP542 Electron transport chain lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1002 Electron transport chain RO:HOM0000017 wikipathways WP59 Electron transport chain lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1004 Kit receptor signaling pathway RO:HOM0000017 wikipathways WP1121 Kit receptor signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1004 Kit receptor signaling pathway RO:HOM0000017 wikipathways WP1341 Kit receptor signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1004 Kit receptor signaling pathway RO:HOM0000017 wikipathways WP147 Kit receptor signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1004 Kit receptor signaling pathway RO:HOM0000017 wikipathways WP304 Kit receptor signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1004 Kit receptor signaling pathway RO:HOM0000017 wikipathways WP407 Kit receptor signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1004 Kit receptor signaling pathway RO:HOM0000017 wikipathways WP774 Kit receptor signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1004 Kit receptor signaling pathway RO:HOM0000017 wikipathways WP886 Kit receptor signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1005 GPCRs, class B secretin-like RO:HOM0000017 wikipathways WP334 GPCRs, class B secretin-like lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1005 GPCRs, class B secretin-like RO:HOM0000017 wikipathways WP378 GPCRs, class B secretin-like lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1005 GPCRs, class B secretin-like RO:HOM0000017 wikipathways WP456 GPCRs, class B secretin-like lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1006 Metapathway biotransformation RO:HOM0000017 wikipathways WP1212 Metapathway biotransformation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1006 Metapathway biotransformation RO:HOM0000017 wikipathways WP1251 Metapathway biotransformation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1006 Metapathway biotransformation RO:HOM0000017 wikipathways WP1286 Metapathway biotransformation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1007 Osteoclast signaling RO:HOM0000017 wikipathways WP12 Osteoclast signaling lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1007 Osteoclast signaling RO:HOM0000017 wikipathways WP1342 Osteoclast signaling lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1007 Osteoclast signaling RO:HOM0000017 wikipathways WP454 Osteoclast signaling lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1007 Osteoclast signaling RO:HOM0000017 wikipathways WP890 Osteoclast signaling lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1008 Amino acid conjugation of benzoic acid RO:HOM0000017 wikipathways WP1252 Amino acid conjugation of benzoic acid lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1008 Amino acid conjugation of benzoic acid RO:HOM0000017 wikipathways WP1287 Amino acid conjugation of benzoic acid lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1008 Amino acid conjugation of benzoic acid RO:HOM0000017 wikipathways WP1577 Amino acid conjugation of benzoic acid lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1008 Amino acid conjugation of benzoic acid RO:HOM0000017 wikipathways WP521 Amino acid conjugation of benzoic acid lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1009 MAPK cascade RO:HOM0000017 wikipathways WP1343 mapk cascade lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1009 MAPK cascade RO:HOM0000017 wikipathways WP251 Mapk cascade lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1009 MAPK cascade RO:HOM0000017 wikipathways WP422 MAPK cascade lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1009 MAPK cascade RO:HOM0000017 wikipathways WP446 Mapk cascade lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP101 Synthesis and degradation of ketone bodies RO:HOM0000017 wikipathways WP349 Synthesis and degradation of ketone bodies lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP101 Synthesis and degradation of ketone bodies RO:HOM0000017 wikipathways WP543 Synthesis and degradation of ketone bodies lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1010 Wnt signaling pathway and pluripotency RO:HOM0000017 wikipathways WP1129 Wnt signaling pathway and pluripotency lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1010 Wnt signaling pathway and pluripotency RO:HOM0000017 wikipathways WP1288 Wnt signaling pathway and pluripotency lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1010 Wnt signaling pathway and pluripotency RO:HOM0000017 wikipathways WP1344 Wnt Signaling Pathway and Pluripotency lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1010 Wnt signaling pathway and pluripotency RO:HOM0000017 wikipathways WP399 Wnt signaling pathway and pluripotency lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1010 Wnt signaling pathway and pluripotency RO:HOM0000017 wikipathways WP723 Wnt signaling pathway and pluripotency lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1010 Wnt signaling pathway and pluripotency RO:HOM0000017 wikipathways WP779 Wnt signaling pathway and pluripotency lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1012 IL-7 signaling pathway RO:HOM0000017 wikipathways WP1346 IL-7 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1012 IL-7 signaling pathway RO:HOM0000017 wikipathways WP205 IL-7 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1012 IL-7 signaling pathway RO:HOM0000017 wikipathways WP297 IL-7 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1013 Triacylglyceride synthesis RO:HOM0000017 wikipathways WP212 Triacylglyceride synthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1013 Triacylglyceride synthesis RO:HOM0000017 wikipathways WP325 Triacylglyceride synthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1013 Triacylglyceride synthesis RO:HOM0000017 wikipathways WP386 Triacylglyceride synthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1014 Androgen receptor signaling pathway RO:HOM0000017 wikipathways WP1133 Androgen receptor signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1014 Androgen receptor signaling pathway RO:HOM0000017 wikipathways WP138 Androgen receptor signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1014 Androgen receptor signaling pathway RO:HOM0000017 wikipathways WP897 Androgen receptor signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1015 Ketone bodies synthesis and degradation RO:HOM0000017 wikipathways WP1134 Ketone bodies synthesis and degradation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1015 Ketone bodies synthesis and degradation RO:HOM0000017 wikipathways WP311 Ketone bodies synthesis and degradation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1015 Ketone bodies synthesis and degradation RO:HOM0000017 wikipathways WP427 Ketone bodies synthesis and degradation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1015 Ketone bodies synthesis and degradation RO:HOM0000017 wikipathways WP784 Ketone bodies synthesis and degradation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1015 Ketone bodies synthesis and degradation RO:HOM0000017 wikipathways WP898 Ketone bodies synthesis and degradation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1016 Wnt signaling pathway RO:HOM0000017 wikipathways WP1135 Wnt signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1016 Wnt signaling pathway RO:HOM0000017 wikipathways WP1349 Wnt Signaling Pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1016 Wnt signaling pathway RO:HOM0000017 wikipathways WP363 Wnt signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1016 Wnt signaling pathway RO:HOM0000017 wikipathways WP403 Wnt signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1016 Wnt signaling pathway RO:HOM0000017 wikipathways WP785 Wnt signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1016 Wnt signaling pathway RO:HOM0000017 wikipathways WP899 Wnt signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1016 Wnt signaling pathway RO:HOM0000017 wikipathways WP97 Wnt signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1017 Type II interferon signaling (IFNG) RO:HOM0000017 wikipathways WP1253 Type II interferon signaling (IFNG) lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1017 Type II interferon signaling (IFNG) RO:HOM0000017 wikipathways WP1289 Type II interferon signaling (IFNG) lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1017 Type II interferon signaling (IFNG) RO:HOM0000017 wikipathways WP619 Type II interferon signaling (IFNG) lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1018 Apoptosis RO:HOM0000017 wikipathways WP1254 Apoptosis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1018 Apoptosis RO:HOM0000017 wikipathways WP1290 Apoptosis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1018 Apoptosis RO:HOM0000017 wikipathways WP1351 Apoptosis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1018 Apoptosis RO:HOM0000017 wikipathways WP254 Apoptosis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1018 Apoptosis RO:HOM0000017 wikipathways WP787 Apoptosis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1019 FAS pathway and stress induction of HSP regulation RO:HOM0000017 wikipathways WP1138 FAS pathway and stress induction of HSP regulation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1019 FAS pathway and stress induction of HSP regulation RO:HOM0000017 wikipathways WP511 FAS pathway and stress induction of HSP regulation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1019 FAS pathway and stress induction of HSP regulation RO:HOM0000017 wikipathways WP571 FAS pathway and stress induction of HSP regulation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1019 FAS pathway and stress induction of HSP regulation RO:HOM0000017 wikipathways WP788 FAS pathway and stress induction of HSP regulation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1019 FAS pathway and stress induction of HSP regulation RO:HOM0000017 wikipathways WP89 FAS pathway and stress induction of HSP regulation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1019 FAS pathway and stress induction of HSP regulation RO:HOM0000017 wikipathways WP902 FAS pathway and stress induction of HSP regulation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1020 Fatty acid biosynthesis RO:HOM0000017 wikipathways WP1352 Fatty acid biosynthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1020 Fatty acid biosynthesis RO:HOM0000017 wikipathways WP336 Fatty acid biosynthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1020 Fatty acid biosynthesis RO:HOM0000017 wikipathways WP357 Fatty acid biosynthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1020 Fatty acid biosynthesis RO:HOM0000017 wikipathways WP38 Fatty acid biosynthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1020 Fatty acid biosynthesis RO:HOM0000017 wikipathways WP504 Fatty acid biosynthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1020 Fatty acid biosynthesis RO:HOM0000017 wikipathways WP568 Fatty acid biosynthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1021 Phase I biotransformations, non P450 RO:HOM0000017 wikipathways WP1213 Phase I biotransformations, non P450 lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1021 Phase I biotransformations, non P450 RO:HOM0000017 wikipathways WP1291 Phase I biotransformations, non P450 lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1021 Phase I biotransformations, non P450 RO:HOM0000017 wikipathways WP136 Phase I biotransformations, non P450 lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1022 Hedgehog signaling pathway RO:HOM0000017 wikipathways WP1141 Hedgehog signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1022 Hedgehog signaling pathway RO:HOM0000017 wikipathways WP116 Hedgehog signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1022 Hedgehog signaling pathway RO:HOM0000017 wikipathways WP4249 Hedgehog signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1022 Hedgehog signaling pathway RO:HOM0000017 wikipathways WP492 Hedgehog signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1022 Hedgehog signaling pathway RO:HOM0000017 wikipathways WP574 Hedgehog signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1022 Hedgehog signaling pathway RO:HOM0000017 wikipathways WP790 Hedgehog signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1022 Hedgehog signaling pathway RO:HOM0000017 wikipathways WP905 Hedgehog signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1023 mRNA Processing RO:HOM0000017 wikipathways WP1142 mRNA Processing lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1023 mRNA Processing RO:HOM0000017 wikipathways WP1229 mRNA processing lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1023 mRNA Processing RO:HOM0000017 wikipathways WP123 mRNA processing lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1023 mRNA Processing RO:HOM0000017 wikipathways WP142 mRNA processing lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1023 mRNA Processing RO:HOM0000017 wikipathways WP310 mRNA processing lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1023 mRNA Processing RO:HOM0000017 wikipathways WP411 mRNA processing lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1023 mRNA Processing RO:HOM0000017 wikipathways WP467 mRNA processing lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1023 mRNA Processing RO:HOM0000017 wikipathways WP529 mRNA processing lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1023 mRNA Processing RO:HOM0000017 wikipathways WP793 mRNA processing lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1023 mRNA Processing RO:HOM0000017 wikipathways WP906 mRNA Processing lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1024 Steroid biosynthesis RO:HOM0000017 wikipathways WP496 Steroid biosynthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1024 Steroid biosynthesis RO:HOM0000017 wikipathways WP55 Steroid biosynthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1024 Steroid biosynthesis RO:HOM0000017 wikipathways WP66 Steroid biosynthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1025 B cell receptor signaling pathway RO:HOM0000017 wikipathways WP23 B cell receptor signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1026 One-carbon metabolism RO:HOM0000017 wikipathways WP1203 One-carbon metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1026 One-carbon metabolism RO:HOM0000017 wikipathways WP1230 One-carbon metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1026 One-carbon metabolism RO:HOM0000017 wikipathways WP1292 One-carbon metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1026 One-carbon metabolism RO:HOM0000017 wikipathways WP1355 One-carbon metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1026 One-carbon metabolism RO:HOM0000017 wikipathways WP241 One-carbon metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1026 One-carbon metabolism RO:HOM0000017 wikipathways WP435 One-carbon metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1026 One-carbon metabolism RO:HOM0000017 wikipathways WP796 One-carbon metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1026 One-carbon metabolism RO:HOM0000017 wikipathways WP909 One-carbon metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1027 Glycolysis and gluconeogenesis RO:HOM0000017 wikipathways WP1356 Glycolysis and gluconeogenesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1027 Glycolysis and gluconeogenesis RO:HOM0000017 wikipathways WP144 Glycolysis and gluconeogenesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1027 Glycolysis and gluconeogenesis RO:HOM0000017 wikipathways WP157 Glycolysis and gluconeogenesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1027 Glycolysis and gluconeogenesis RO:HOM0000017 wikipathways WP515 Glycolysis and gluconeogenesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1027 Glycolysis and gluconeogenesis RO:HOM0000017 wikipathways WP534 Glycolysis and gluconeogenesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1027 Glycolysis and gluconeogenesis RO:HOM0000017 wikipathways WP96 Glycolysis and Gluconeogenesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1028 Pentose phosphate pathway RO:HOM0000017 wikipathways WP1231 Pentose phosphate pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1028 Pentose phosphate pathway RO:HOM0000017 wikipathways WP282 Pentose phosphate pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1028 Pentose phosphate pathway RO:HOM0000017 wikipathways WP312 Pentose phosphate pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1028 Pentose phosphate pathway RO:HOM0000017 wikipathways WP369 Pentose phosphate pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1028 Pentose phosphate pathway RO:HOM0000017 wikipathways WP63 Pentose phosphate pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1029 Notch signaling pathway RO:HOM0000017 wikipathways WP1148 Notch signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1029 Notch signaling pathway RO:HOM0000017 wikipathways WP1232 Notch signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1029 Notch signaling pathway RO:HOM0000017 wikipathways WP208 Notch signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1029 Notch signaling pathway RO:HOM0000017 wikipathways WP29 Notch signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1029 Notch signaling pathway RO:HOM0000017 wikipathways WP517 Notch signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1029 Notch signaling pathway RO:HOM0000017 wikipathways WP798 Notch signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1029 Notch signaling pathway RO:HOM0000017 wikipathways WP912 Notch signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP103 Cholesterol biosynthesis RO:HOM0000017 wikipathways WP1070 Cholesterol biosynthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP103 Cholesterol biosynthesis RO:HOM0000017 wikipathways WP1186 Cholesterol biosynthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP103 Cholesterol biosynthesis RO:HOM0000017 wikipathways WP132 Cholesterol biosynthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP103 Cholesterol biosynthesis RO:HOM0000017 wikipathways WP1387 Cholesterol biosynthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP103 Cholesterol biosynthesis RO:HOM0000017 wikipathways WP461 Cholesterol biosynthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP103 Cholesterol biosynthesis RO:HOM0000017 wikipathways WP833 Cholesterol biosynthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP103 Cholesterol biosynthesis RO:HOM0000017 wikipathways WP952 Cholesterol biosynthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1031 IL-3 signaling pathway RO:HOM0000017 wikipathways WP1359 IL-3 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1031 IL-3 signaling pathway RO:HOM0000017 wikipathways WP286 IL-3 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1031 IL-3 signaling pathway RO:HOM0000017 wikipathways WP319 IL-3 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1031 IL-3 signaling pathway RO:HOM0000017 wikipathways WP373 IL-3 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1032 Nod-like receptor (NLR) signaling pathway RO:HOM0000017 wikipathways WP1256 Nod-like receptor (NLR) signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1032 Nod-like receptor (NLR) signaling pathway RO:HOM0000017 wikipathways WP1294 Nod-like receptor (NLR) signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1032 Nod-like receptor (NLR) signaling pathway RO:HOM0000017 wikipathways WP1360 Nod-like receptor (NLR) signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1032 Nod-like receptor (NLR) signaling pathway RO:HOM0000017 wikipathways WP288 Nod-like receptor (NLR) signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1032 Nod-like receptor (NLR) signaling pathway RO:HOM0000017 wikipathways WP799 Nod-like receptor (NLR) signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1032 Nod-like receptor (NLR) signaling pathway RO:HOM0000017 wikipathways WP914 Nod-like receptor (NLR) signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1033 ACE inhibitor pathway RO:HOM0000017 wikipathways WP1151 ACE inhibitor pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1033 ACE inhibitor pathway RO:HOM0000017 wikipathways WP396 ACE inhibitor pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1033 ACE inhibitor pathway RO:HOM0000017 wikipathways WP468 ACE inhibitor pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1033 ACE inhibitor pathway RO:HOM0000017 wikipathways WP554 ACE inhibitor pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1033 ACE inhibitor pathway RO:HOM0000017 wikipathways WP557 ACE inhibitor pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1033 ACE inhibitor pathway RO:HOM0000017 wikipathways WP801 ACE inhibitor pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1033 ACE inhibitor pathway RO:HOM0000017 wikipathways WP915 ACE inhibitor pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1034 Acetylcholine synthesis RO:HOM0000017 wikipathways WP175 Acetylcholine synthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1034 Acetylcholine synthesis RO:HOM0000017 wikipathways WP264 Acetylcholine synthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1034 Acetylcholine synthesis RO:HOM0000017 wikipathways WP360 Acetylcholine synthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1034 Acetylcholine synthesis RO:HOM0000017 wikipathways WP476 Acetylcholine synthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1034 Acetylcholine synthesis RO:HOM0000017 wikipathways WP528 Acetylcholine synthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1035 Mismatch repair RO:HOM0000017 wikipathways WP1152 Mismatch repair lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1035 Mismatch repair RO:HOM0000017 wikipathways WP1233 Mismatch repair lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1035 Mismatch repair RO:HOM0000017 wikipathways WP1257 Mismatch repair lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1035 Mismatch repair RO:HOM0000017 wikipathways WP1295 Mismatch repair lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1035 Mismatch repair RO:HOM0000017 wikipathways WP802 Mismatch repair lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1036 Homologous recombination RO:HOM0000017 wikipathways WP1153 Homologous recombination lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1036 Homologous recombination RO:HOM0000017 wikipathways WP1205 Homologous recombination lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1036 Homologous recombination RO:HOM0000017 wikipathways WP1258 Homologous recombination lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1036 Homologous recombination RO:HOM0000017 wikipathways WP1296 Homologous recombination lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1036 Homologous recombination RO:HOM0000017 wikipathways WP186 Homologous recombination lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1036 Homologous recombination RO:HOM0000017 wikipathways WP804 Homologous recombination lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1036 Homologous recombination RO:HOM0000017 wikipathways WP917 Homologous recombination lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1037 p38 MAPK signaling pathway RO:HOM0000017 wikipathways WP1154 p38 MAPK signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1037 p38 MAPK signaling pathway RO:HOM0000017 wikipathways WP1363 p38 mapk signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1037 p38 MAPK signaling pathway RO:HOM0000017 wikipathways WP294 p38 Mapk signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1037 p38 MAPK signaling pathway RO:HOM0000017 wikipathways WP350 p38 Mapk signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1037 p38 MAPK signaling pathway RO:HOM0000017 wikipathways WP400 p38 MAPK signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1037 p38 MAPK signaling pathway RO:HOM0000017 wikipathways WP803 p38 MAPK signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1037 p38 MAPK signaling pathway RO:HOM0000017 wikipathways WP918 p38 MAPK signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1038 Vitamin A and carotenoid metabolism RO:HOM0000017 wikipathways WP716 Vitamin A and carotenoid metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1040 Inflammatory response pathway RO:HOM0000017 wikipathways WP40 Inflammatory response pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1040 Inflammatory response pathway RO:HOM0000017 wikipathways WP453 Inflammatory response pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1040 Inflammatory response pathway RO:HOM0000017 wikipathways WP458 Inflammatory response pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1041 Statin pathway RO:HOM0000017 wikipathways WP1157 Statin pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1041 Statin pathway RO:HOM0000017 wikipathways WP145 Statin pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1041 Statin pathway RO:HOM0000017 wikipathways WP921 Statin pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1042 Nucleotide GPCRs RO:HOM0000017 wikipathways WP207 Nucleotide GPCRs lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1042 Nucleotide GPCRs RO:HOM0000017 wikipathways WP502 Nucleotide GPCRs lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1042 Nucleotide GPCRs RO:HOM0000017 wikipathways WP80 Nucleotide GPCRs lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1044 ErbB signaling pathway RO:HOM0000017 wikipathways WP1261 ErbB signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1044 ErbB signaling pathway RO:HOM0000017 wikipathways WP1299 ErbB signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1044 ErbB signaling pathway RO:HOM0000017 wikipathways WP1366 ErbB signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1044 ErbB signaling pathway RO:HOM0000017 wikipathways WP673 ErbB signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1045 TGF-beta signaling pathway RO:HOM0000017 wikipathways WP113 TGF-beta signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1045 TGF-beta signaling pathway RO:HOM0000017 wikipathways WP366 TGF-beta signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1046 Hepatocyte growth factor receptor signaling RO:HOM0000017 wikipathways WP1162 Hepatocyte growth factor receptor signaling lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1046 Hepatocyte growth factor receptor signaling RO:HOM0000017 wikipathways WP193 Hepatocyte growth factor receptor signaling lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1046 Hepatocyte growth factor receptor signaling RO:HOM0000017 wikipathways WP313 Hepatocyte growth factor receptor signaling lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1046 Hepatocyte growth factor receptor signaling RO:HOM0000017 wikipathways WP444 Hepatocyte growth factor receptor signaling lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1046 Hepatocyte growth factor receptor signaling RO:HOM0000017 wikipathways WP810 Hepatocyte growth factor receptor signaling lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1046 Hepatocyte growth factor receptor signaling RO:HOM0000017 wikipathways WP927 Hepatocyte growth factor receptor signaling lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1046 Hepatocyte growth factor receptor signaling RO:HOM0000017 wikipathways WP94 Hepatocyte growth factor receptor signaling lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1047 TNF-alpha signaling pathway RO:HOM0000017 wikipathways WP231 TNF-alpha signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1048 TGF-beta receptor signaling RO:HOM0000017 wikipathways WP560 TGF-beta receptor signaling lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1049 G protein signaling pathways RO:HOM0000017 wikipathways WP1165 G protein signaling pathways lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1049 G protein signaling pathways RO:HOM0000017 wikipathways WP1371 G protein signaling pathways lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1049 G protein signaling pathways RO:HOM0000017 wikipathways WP232 G protein signaling pathways lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1049 G protein signaling pathways RO:HOM0000017 wikipathways WP35 G protein signaling pathways lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1049 G protein signaling pathways RO:HOM0000017 wikipathways WP73 G protein signaling pathways lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1049 G protein signaling pathways RO:HOM0000017 wikipathways WP813 G protein signaling pathways lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1049 G protein signaling pathways RO:HOM0000017 wikipathways WP931 G protein signaling pathways lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1050 Oxidative stress response RO:HOM0000017 wikipathways WP1372 Oxidative stress response lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1050 Oxidative stress response RO:HOM0000017 wikipathways WP173 Oxidative stress response lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1050 Oxidative stress response RO:HOM0000017 wikipathways WP408 Oxidative stress response lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1050 Oxidative stress response RO:HOM0000017 wikipathways WP412 Oxidative stress response lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1051 GPCRs, class C metabotropic glutamate, pheromone RO:HOM0000017 wikipathways WP1373 GPCRs, class C metabotropic glutamate, pheromone lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1051 GPCRs, class C metabotropic glutamate, pheromone RO:HOM0000017 wikipathways WP327 GPCRs, class C metabotropic glutamate, pheromone lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1051 GPCRs, class C metabotropic glutamate, pheromone RO:HOM0000017 wikipathways WP42 GPCRs, class C metabotropic glutamate, pheromone lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1051 GPCRs, class C metabotropic glutamate, pheromone RO:HOM0000017 wikipathways WP501 GPCRs, class C metabotropic glutamate, pheromone lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1052 ID signaling pathway RO:HOM0000017 wikipathways WP1168 Id signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1052 ID signaling pathway RO:HOM0000017 wikipathways WP1374 Id signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1052 ID signaling pathway RO:HOM0000017 wikipathways WP397 Id signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1052 ID signaling pathway RO:HOM0000017 wikipathways WP512 Id signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1052 ID signaling pathway RO:HOM0000017 wikipathways WP53 ID signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1052 ID signaling pathway RO:HOM0000017 wikipathways WP934 Id signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1053 Estrogen metabolism RO:HOM0000017 wikipathways WP1264 Estrogen metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1053 Estrogen metabolism RO:HOM0000017 wikipathways WP1302 Estrogen metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1053 Estrogen metabolism RO:HOM0000017 wikipathways WP697 Estrogen metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1054 Polyol pathway RO:HOM0000017 wikipathways WP1170 Polyol pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1054 Polyol pathway RO:HOM0000017 wikipathways WP1218 Polyol pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1054 Polyol pathway RO:HOM0000017 wikipathways WP1236 Polyol pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1054 Polyol pathway RO:HOM0000017 wikipathways WP1265 Polyol pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1054 Polyol pathway RO:HOM0000017 wikipathways WP1303 Polyol pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1054 Polyol pathway RO:HOM0000017 wikipathways WP1375 Polyol pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1054 Polyol pathway RO:HOM0000017 wikipathways WP690 Polyol pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1054 Polyol pathway RO:HOM0000017 wikipathways WP936 Polyol pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1055 IL-4 signaling pathway RO:HOM0000017 wikipathways WP1376 IL-4 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1055 IL-4 signaling pathway RO:HOM0000017 wikipathways WP395 IL-4 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1056 Complement and coagulation cascades RO:HOM0000017 wikipathways WP547 Complement and coagulation cascades lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1056 Complement and coagulation cascades RO:HOM0000017 wikipathways WP558 Complement and coagulation cascades lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP106 Alanine and aspartate metabolism RO:HOM0000017 wikipathways WP240 Alanine and aspartate metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP106 Alanine and aspartate metabolism RO:HOM0000017 wikipathways WP3262 Alanine and aspartate metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1060 Matrix metalloproteinases RO:HOM0000017 wikipathways WP1176 Matrix metalloproteinases lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1060 Matrix metalloproteinases RO:HOM0000017 wikipathways WP129 Matrix metalloproteinases lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1060 Matrix metalloproteinases RO:HOM0000017 wikipathways WP278 Matrix metalloproteinases lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1060 Matrix metalloproteinases RO:HOM0000017 wikipathways WP441 Matrix metalloproteinases lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1060 Matrix metalloproteinases RO:HOM0000017 wikipathways WP823 Matrix metalloproteinases lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1060 Matrix metalloproteinases RO:HOM0000017 wikipathways WP942 Matrix metalloproteinases lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1061 Fatty acid beta-oxidation RO:HOM0000017 wikipathways WP1269 Fatty acid beta-oxidation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1061 Fatty acid beta-oxidation RO:HOM0000017 wikipathways WP1307 Fatty acid beta-oxidation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1061 Fatty acid beta-oxidation RO:HOM0000017 wikipathways WP143 Fatty acid beta-oxidation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1061 Fatty acid beta-oxidation RO:HOM0000017 wikipathways WP506 Fatty acid beta-oxidation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1063 G13 signaling pathway RO:HOM0000017 wikipathways WP1179 G13 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1063 G13 signaling pathway RO:HOM0000017 wikipathways WP1381 G13 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1063 G13 signaling pathway RO:HOM0000017 wikipathways WP298 G13 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1063 G13 signaling pathway RO:HOM0000017 wikipathways WP520 G13 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1063 G13 signaling pathway RO:HOM0000017 wikipathways WP524 G13 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1063 G13 signaling pathway RO:HOM0000017 wikipathways WP826 G13 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1063 G13 signaling pathway RO:HOM0000017 wikipathways WP945 G13 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1064 Notch signaling pathway RO:HOM0000017 wikipathways WP1148 Notch signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1064 Notch signaling pathway RO:HOM0000017 wikipathways WP1232 Notch signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1064 Notch signaling pathway RO:HOM0000017 wikipathways WP208 Notch signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1064 Notch signaling pathway RO:HOM0000017 wikipathways WP29 Notch signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1064 Notch signaling pathway RO:HOM0000017 wikipathways WP517 Notch signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1064 Notch signaling pathway RO:HOM0000017 wikipathways WP798 Notch signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1064 Notch signaling pathway RO:HOM0000017 wikipathways WP912 Notch signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1065 Endochondral ossification RO:HOM0000017 wikipathways WP1270 Endochondral ossification lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1065 Endochondral ossification RO:HOM0000017 wikipathways WP1308 Endochondral ossification lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1065 Endochondral ossification RO:HOM0000017 wikipathways WP1383 Endochondral ossification lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1065 Endochondral ossification RO:HOM0000017 wikipathways WP474 Endochondral ossification lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1066 Eukaryotic transcription initiation RO:HOM0000017 wikipathways WP1182 Eukaryotic transcription initiation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1066 Eukaryotic transcription initiation RO:HOM0000017 wikipathways WP1238 Eukaryotic transcription initiation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1066 Eukaryotic transcription initiation RO:HOM0000017 wikipathways WP177 Eukaryotic transcription initiation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1066 Eukaryotic transcription initiation RO:HOM0000017 wikipathways WP405 Eukaryotic transcription initiation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1066 Eukaryotic transcription initiation RO:HOM0000017 wikipathways WP425 Eukaryotic transcription initiation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1066 Eukaryotic transcription initiation RO:HOM0000017 wikipathways WP491 Eukaryotic transcription initiation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1066 Eukaryotic transcription initiation RO:HOM0000017 wikipathways WP518 Eukaryotic transcription initiation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1066 Eukaryotic transcription initiation RO:HOM0000017 wikipathways WP567 Eukaryotic transcription initiation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1066 Eukaryotic transcription initiation RO:HOM0000017 wikipathways WP830 Eukaryotic transcription initiation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1066 Eukaryotic transcription initiation RO:HOM0000017 wikipathways WP948 Eukaryotic transcription initiation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1067 Toll-like receptor signaling pathway RO:HOM0000017 wikipathways WP1309 Toll-like receptor signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1067 Toll-like receptor signaling pathway RO:HOM0000017 wikipathways WP1384 Toll-like receptor signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1067 Toll-like receptor signaling pathway RO:HOM0000017 wikipathways WP75 Toll-like receptor signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1068 Nuclear receptors RO:HOM0000017 wikipathways WP1184 Nuclear receptors lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1068 Nuclear receptors RO:HOM0000017 wikipathways WP170 Nuclear receptors lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1068 Nuclear receptors RO:HOM0000017 wikipathways WP217 Nuclear receptors lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1068 Nuclear receptors RO:HOM0000017 wikipathways WP509 Nuclear Receptors lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1068 Nuclear receptors RO:HOM0000017 wikipathways WP831 Nuclear receptors lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1068 Nuclear receptors RO:HOM0000017 wikipathways WP950 Nuclear receptors lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1069 Integrin-mediated cell adhesion RO:HOM0000017 wikipathways WP1185 Integrin-mediated cell adhesion lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1069 Integrin-mediated cell adhesion RO:HOM0000017 wikipathways WP1386 Integrin-mediated cell adhesion lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1069 Integrin-mediated cell adhesion RO:HOM0000017 wikipathways WP185 Integrin-mediated cell adhesion lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1069 Integrin-mediated cell adhesion RO:HOM0000017 wikipathways WP6 Integrin-mediated cell adhesion lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1069 Integrin-mediated cell adhesion RO:HOM0000017 wikipathways WP74 Integrin-mediated cell adhesion lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1069 Integrin-mediated cell adhesion RO:HOM0000017 wikipathways WP832 Integrin-mediated cell adhesion lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1069 Integrin-mediated cell adhesion RO:HOM0000017 wikipathways WP951 Integrin-mediated cell adhesion lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP107 Translation factors RO:HOM0000017 wikipathways WP110 Translation factors lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP107 Translation factors RO:HOM0000017 wikipathways WP149 Translation factors lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP107 Translation factors RO:HOM0000017 wikipathways WP307 Translation factors lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP107 Translation factors RO:HOM0000017 wikipathways WP32 Translation factors lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP107 Translation factors RO:HOM0000017 wikipathways WP537 Translation factors lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP107 Translation factors RO:HOM0000017 wikipathways WP965 Translation factors lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1070 Cholesterol biosynthesis RO:HOM0000017 wikipathways WP1186 Cholesterol biosynthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1070 Cholesterol biosynthesis RO:HOM0000017 wikipathways WP132 Cholesterol biosynthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1070 Cholesterol biosynthesis RO:HOM0000017 wikipathways WP1387 Cholesterol biosynthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1070 Cholesterol biosynthesis RO:HOM0000017 wikipathways WP461 Cholesterol biosynthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1070 Cholesterol biosynthesis RO:HOM0000017 wikipathways WP833 Cholesterol biosynthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1070 Cholesterol biosynthesis RO:HOM0000017 wikipathways WP952 Cholesterol biosynthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1071 Cytoplasmic ribosomal proteins RO:HOM0000017 wikipathways WP1239 Cytoplasmic ribosomal proteins lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1071 Cytoplasmic ribosomal proteins RO:HOM0000017 wikipathways WP163 Cytoplasmic ribosomal proteins lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1071 Cytoplasmic ribosomal proteins RO:HOM0000017 wikipathways WP210 Cytoplasmic ribosomal proteins lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1071 Cytoplasmic ribosomal proteins RO:HOM0000017 wikipathways WP30 Cytoplasmic ribosomal proteins lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1071 Cytoplasmic ribosomal proteins RO:HOM0000017 wikipathways WP324 Cytoplasmic ribosomal proteins lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1071 Cytoplasmic ribosomal proteins RO:HOM0000017 wikipathways WP477 Cytoplasmic ribosomal proteins lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1071 Cytoplasmic ribosomal proteins RO:HOM0000017 wikipathways WP540 Cytoplasmic ribosomal proteins lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1072 GPCRs, class A rhodopsin-like RO:HOM0000017 wikipathways WP189 GPCRs, class A rhodopsin-like lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1072 GPCRs, class A rhodopsin-like RO:HOM0000017 wikipathways WP455 GPCRs, class A rhodopsin-like lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1072 GPCRs, class A rhodopsin-like RO:HOM0000017 wikipathways WP473 GPCRs, class A rhodopsin-like lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1073 Glycogen metabolism RO:HOM0000017 wikipathways WP1189 Glycogen metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1073 Glycogen metabolism RO:HOM0000017 wikipathways WP1388 Glycogen metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1073 Glycogen metabolism RO:HOM0000017 wikipathways WP160 Glycogen metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1073 Glycogen metabolism RO:HOM0000017 wikipathways WP317 Glycogen metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1073 Glycogen metabolism RO:HOM0000017 wikipathways WP436 Glycogen metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1073 Glycogen metabolism RO:HOM0000017 wikipathways WP835 Glycogen metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1073 Glycogen metabolism RO:HOM0000017 wikipathways WP955 Glycogen metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1074 Osteoblast signaling RO:HOM0000017 wikipathways WP227 Osteoblast signaling lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1074 Osteoblast signaling RO:HOM0000017 wikipathways WP238 Osteoblast signaling lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1074 Osteoblast signaling RO:HOM0000017 wikipathways WP322 Osteoblast signaling lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1074 Osteoblast signaling RO:HOM0000017 wikipathways WP956 Osteoblast signaling lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1075 Folate metabolism RO:HOM0000017 wikipathways WP176 Folate metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1076 Monoamine GPCRs RO:HOM0000017 wikipathways WP1193 Monoamine GPCRs lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1076 Monoamine GPCRs RO:HOM0000017 wikipathways WP1389 Monoamine GPCRs lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1076 Monoamine GPCRs RO:HOM0000017 wikipathways WP276 Monoamine GPCRs lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1076 Monoamine GPCRs RO:HOM0000017 wikipathways WP570 Monoamine GPCRs lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1076 Monoamine GPCRs RO:HOM0000017 wikipathways WP58 Monoamine GPCRs lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1076 Monoamine GPCRs RO:HOM0000017 wikipathways WP839 Monoamine GPCRs lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1076 Monoamine GPCRs RO:HOM0000017 wikipathways WP957 Monoamine GPCRs lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1077 Oxidation by cytochrome P450 RO:HOM0000017 wikipathways WP1274 Oxidation by cytochrome P450 lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1077 Oxidation by cytochrome P450 RO:HOM0000017 wikipathways WP43 Oxidation by cytochrome P450 lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1078 G1 to S cell cycle control RO:HOM0000017 wikipathways WP1195 G1 to S cell cycle control lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1078 G1 to S cell cycle control RO:HOM0000017 wikipathways WP348 G1 to S cell cycle control lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1078 G1 to S cell cycle control RO:HOM0000017 wikipathways WP413 G1 to S cell cycle control lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1078 G1 to S cell cycle control RO:HOM0000017 wikipathways WP445 G1 to S cell cycle control lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1078 G1 to S cell cycle control RO:HOM0000017 wikipathways WP45 G1 to S cell cycle control lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1078 G1 to S cell cycle control RO:HOM0000017 wikipathways WP840 G1 to S cell cycle control lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1078 G1 to S cell cycle control RO:HOM0000017 wikipathways WP959 G1 to S cell cycle control lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1079 Proteasome degradation RO:HOM0000017 wikipathways WP1240 Proteasome Degradation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1079 Proteasome degradation RO:HOM0000017 wikipathways WP158 Proteasome degradation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1079 Proteasome degradation RO:HOM0000017 wikipathways WP183 Proteasome degradation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1079 Proteasome degradation RO:HOM0000017 wikipathways WP281 Proteasome degradation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1079 Proteasome degradation RO:HOM0000017 wikipathways WP302 Proteasome degradation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1079 Proteasome degradation RO:HOM0000017 wikipathways WP470 Proteasome degradation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1079 Proteasome degradation RO:HOM0000017 wikipathways WP519 Proteasome degradation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1080 Irinotecan pathway RO:HOM0000017 wikipathways WP1197 Irinotecan pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1080 Irinotecan pathway RO:HOM0000017 wikipathways WP124 Irinotecan pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1080 Irinotecan pathway RO:HOM0000017 wikipathways WP229 Irinotecan pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1080 Irinotecan pathway RO:HOM0000017 wikipathways WP475 Irinotecan pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1080 Irinotecan pathway RO:HOM0000017 wikipathways WP961 Irinotecan pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1081 S1P receptor signal transduction RO:HOM0000017 wikipathways WP1198 S1P receptor signal transduction lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1081 S1P receptor signal transduction RO:HOM0000017 wikipathways WP1312 S1P receptor signal transduction lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1081 S1P receptor signal transduction RO:HOM0000017 wikipathways WP1391 S1P receptor signal transduction lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1081 S1P receptor signal transduction RO:HOM0000017 wikipathways WP26 S1P receptor signal transduction lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1082 Apoptosis modulation by HSP70 RO:HOM0000017 wikipathways WP1392 Apoptosis modulation by HSP70 lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1082 Apoptosis modulation by HSP70 RO:HOM0000017 wikipathways WP166 Apoptosis modulation by HSP70 lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1082 Apoptosis modulation by HSP70 RO:HOM0000017 wikipathways WP384 Apoptosis modulation by HSP70 lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1082 Apoptosis modulation by HSP70 RO:HOM0000017 wikipathways WP487 Apoptosis modulation by HSP70 lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1082 Apoptosis modulation by HSP70 RO:HOM0000017 wikipathways WP963 Apoptosis modulation by HSP70 lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1083 Cell cycle RO:HOM0000017 wikipathways WP1200 Cell cycle lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1083 Cell cycle RO:HOM0000017 wikipathways WP1393 Cell cycle lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1083 Cell cycle RO:HOM0000017 wikipathways WP179 Cell cycle lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1083 Cell cycle RO:HOM0000017 wikipathways WP844 Cell cycle lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1083 Cell cycle RO:HOM0000017 wikipathways WP964 Cell cycle lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1086 Heme biosynthesis RO:HOM0000017 wikipathways WP1221 Heme biosynthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1086 Heme biosynthesis RO:HOM0000017 wikipathways WP1314 Heme biosynthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1086 Heme biosynthesis RO:HOM0000017 wikipathways WP18 Heme biosynthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1086 Heme biosynthesis RO:HOM0000017 wikipathways WP269 Heme biosynthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1086 Heme biosynthesis RO:HOM0000017 wikipathways WP561 Heme biosynthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1086 Heme biosynthesis RO:HOM0000017 wikipathways WP848 Heme biosynthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1086 Heme biosynthesis RO:HOM0000017 wikipathways WP86 Heme biosynthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1086 Heme biosynthesis RO:HOM0000017 wikipathways WP967 Heme biosynthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1090 Eicosanoid synthesis RO:HOM0000017 wikipathways WP1318 Eicosanoid synthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1090 Eicosanoid synthesis RO:HOM0000017 wikipathways WP167 Eicosanoid synthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1090 Eicosanoid synthesis RO:HOM0000017 wikipathways WP293 Eicosanoid synthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1090 Eicosanoid synthesis RO:HOM0000017 wikipathways WP318 Eicosanoid synthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1090 Eicosanoid synthesis RO:HOM0000017 wikipathways WP854 Eicosanoid synthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1090 Eicosanoid synthesis RO:HOM0000017 wikipathways WP972 Eicosanoid synthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1091 IL-2 signaling pathway RO:HOM0000017 wikipathways WP1319 IL-2 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1091 IL-2 signaling pathway RO:HOM0000017 wikipathways WP450 IL-2 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1091 IL-2 signaling pathway RO:HOM0000017 wikipathways WP49 IL-2 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1091 IL-2 signaling pathway RO:HOM0000017 wikipathways WP569 IL-2 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1091 IL-2 signaling pathway RO:HOM0000017 wikipathways WP973 IL-2 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1096 EGFR1 signaling pathway RO:HOM0000017 wikipathways WP1323 EGFR1 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1096 EGFR1 signaling pathway RO:HOM0000017 wikipathways WP5 EGFR1 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1096 EGFR1 signaling pathway RO:HOM0000017 wikipathways WP572 EGFR1 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1096 EGFR1 signaling pathway RO:HOM0000017 wikipathways WP752 EGFR1 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1096 EGFR1 signaling pathway RO:HOM0000017 wikipathways WP860 EGFR1 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1099 Nuclear receptors in lipid metabolism and toxicity RO:HOM0000017 wikipathways WP1326 Nuclear receptors in lipid metabolism and toxicity lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1099 Nuclear receptors in lipid metabolism and toxicity RO:HOM0000017 wikipathways WP139 Nuclear receptors in lipid metabolism and toxicity lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1099 Nuclear receptors in lipid metabolism and toxicity RO:HOM0000017 wikipathways WP299 Nuclear receptors in lipid metabolism and toxicity lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1099 Nuclear receptors in lipid metabolism and toxicity RO:HOM0000017 wikipathways WP431 Nuclear receptors in lipid metabolism and toxicity lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1099 Nuclear receptors in lipid metabolism and toxicity RO:HOM0000017 wikipathways WP755 Nuclear receptors in lipid metabolism and toxicity lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1099 Nuclear receptors in lipid metabolism and toxicity RO:HOM0000017 wikipathways WP863 Nuclear receptors in lipid metabolism and toxicity lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1099 Nuclear receptors in lipid metabolism and toxicity RO:HOM0000017 wikipathways WP981 Nuclear receptors in lipid metabolism and toxicity lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP110 Translation factors RO:HOM0000017 wikipathways WP149 Translation factors lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP110 Translation factors RO:HOM0000017 wikipathways WP307 Translation factors lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP110 Translation factors RO:HOM0000017 wikipathways WP32 Translation factors lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP110 Translation factors RO:HOM0000017 wikipathways WP537 Translation factors lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP110 Translation factors RO:HOM0000017 wikipathways WP965 Translation factors lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1101 DNA replication RO:HOM0000017 wikipathways WP1223 DNA replication lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1101 DNA replication RO:HOM0000017 wikipathways WP13 DNA replication lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1101 DNA replication RO:HOM0000017 wikipathways WP150 DNA replication lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1101 DNA replication RO:HOM0000017 wikipathways WP192 DNA replication lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1101 DNA replication RO:HOM0000017 wikipathways WP451 DNA replication lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1101 DNA replication RO:HOM0000017 wikipathways WP466 DNA replication lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1101 DNA replication RO:HOM0000017 wikipathways WP484 DNA replication lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1101 DNA replication RO:HOM0000017 wikipathways WP565 DNA replication lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1101 DNA replication RO:HOM0000017 wikipathways WP757 DNA replication lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1101 DNA replication RO:HOM0000017 wikipathways WP865 DNA replication lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1101 DNA replication RO:HOM0000017 wikipathways WP983 DNA replication lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1105 Adipogenesis RO:HOM0000017 wikipathways WP1331 Adipogenesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1105 Adipogenesis RO:HOM0000017 wikipathways WP155 Adipogenesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1105 Adipogenesis RO:HOM0000017 wikipathways WP236 Adipogenesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1105 Adipogenesis RO:HOM0000017 wikipathways WP869 Adipogenesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1105 Adipogenesis RO:HOM0000017 wikipathways WP987 Adipogenesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1112 EPO receptor signaling RO:HOM0000017 wikipathways WP1249 EPO receptor signaling lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1112 EPO receptor signaling RO:HOM0000017 wikipathways WP1284 EPO receptor signaling lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1112 EPO receptor signaling RO:HOM0000017 wikipathways WP1336 EPO receptor signaling lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1112 EPO receptor signaling RO:HOM0000017 wikipathways WP581 EPO receptor signaling lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1112 EPO receptor signaling RO:HOM0000017 wikipathways WP768 EPO receptor signaling lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1112 EPO receptor signaling RO:HOM0000017 wikipathways WP878 EPO receptor signaling lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1112 EPO receptor signaling RO:HOM0000017 wikipathways WP996 EPO receptor signaling lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1113 Cytokines and inflammatory response RO:HOM0000017 wikipathways WP222 Cytokines and inflammatory response lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1113 Cytokines and inflammatory response RO:HOM0000017 wikipathways WP271 Cytokines and inflammatory response lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1113 Cytokines and inflammatory response RO:HOM0000017 wikipathways WP530 Cytokines and inflammatory response lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1113 Cytokines and inflammatory response RO:HOM0000017 wikipathways WP879 Cytokines and inflammatory response lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1113 Cytokines and inflammatory response RO:HOM0000017 wikipathways WP997 Cytokines and inflammatory response lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1114 MAPK signaling pathway RO:HOM0000017 wikipathways WP1337 MAPK signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1114 MAPK signaling pathway RO:HOM0000017 wikipathways WP358 MAPK signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1114 MAPK signaling pathway RO:HOM0000017 wikipathways WP382 MAPK signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1114 MAPK signaling pathway RO:HOM0000017 wikipathways WP493 Mapk signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1114 MAPK signaling pathway RO:HOM0000017 wikipathways WP510 MAPK signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1114 MAPK signaling pathway RO:HOM0000017 wikipathways WP769 MAPK signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1114 MAPK signaling pathway RO:HOM0000017 wikipathways WP880 MAPK signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1114 MAPK signaling pathway RO:HOM0000017 wikipathways WP998 MAPK signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1118 Biogenic amine synthesis RO:HOM0000017 wikipathways WP125 Biogenic amine synthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1118 Biogenic amine synthesis RO:HOM0000017 wikipathways WP154 Biogenic amine synthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1118 Biogenic amine synthesis RO:HOM0000017 wikipathways WP3168 Biogenic amine synthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1118 Biogenic amine synthesis RO:HOM0000017 wikipathways WP323 Biogenic amine synthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1118 Biogenic amine synthesis RO:HOM0000017 wikipathways WP522 Biogenic amine synthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1118 Biogenic amine synthesis RO:HOM0000017 wikipathways WP550 Biogenic amine synthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1119 Electron transport chain RO:HOM0000017 wikipathways WP1339 Electron transport chain lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1119 Electron transport chain RO:HOM0000017 wikipathways WP295 Electron transport chain lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1119 Electron transport chain RO:HOM0000017 wikipathways WP542 Electron transport chain lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1119 Electron transport chain RO:HOM0000017 wikipathways WP59 Electron transport chain lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1121 Kit receptor signaling pathway RO:HOM0000017 wikipathways WP1341 Kit receptor signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1121 Kit receptor signaling pathway RO:HOM0000017 wikipathways WP147 Kit receptor signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1121 Kit receptor signaling pathway RO:HOM0000017 wikipathways WP304 Kit receptor signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1121 Kit receptor signaling pathway RO:HOM0000017 wikipathways WP407 Kit receptor signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1121 Kit receptor signaling pathway RO:HOM0000017 wikipathways WP774 Kit receptor signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1121 Kit receptor signaling pathway RO:HOM0000017 wikipathways WP886 Kit receptor signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1122 Blood clotting cascade RO:HOM0000017 wikipathways WP255 Blood clotting cascade lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1122 Blood clotting cascade RO:HOM0000017 wikipathways WP272 Blood clotting cascade lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1122 Blood clotting cascade RO:HOM0000017 wikipathways WP3251 Blood clotting cascade lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1122 Blood clotting cascade RO:HOM0000017 wikipathways WP460 Blood clotting cascade lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1122 Blood clotting cascade RO:HOM0000017 wikipathways WP775 Blood clotting cascade lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1122 Blood clotting cascade RO:HOM0000017 wikipathways WP887 Blood clotting cascade lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1126 Tryptophan metabolism RO:HOM0000017 wikipathways WP270 Tryptophan metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1126 Tryptophan metabolism RO:HOM0000017 wikipathways WP3248 Tryptophan metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1126 Tryptophan metabolism RO:HOM0000017 wikipathways WP465 Tryptophan metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1126 Tryptophan metabolism RO:HOM0000017 wikipathways WP79 Tryptophan metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1129 Wnt signaling pathway and pluripotency RO:HOM0000017 wikipathways WP1288 Wnt signaling pathway and pluripotency lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1129 Wnt signaling pathway and pluripotency RO:HOM0000017 wikipathways WP1344 Wnt Signaling Pathway and Pluripotency lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1129 Wnt signaling pathway and pluripotency RO:HOM0000017 wikipathways WP399 Wnt signaling pathway and pluripotency lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1129 Wnt signaling pathway and pluripotency RO:HOM0000017 wikipathways WP723 Wnt signaling pathway and pluripotency lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1129 Wnt signaling pathway and pluripotency RO:HOM0000017 wikipathways WP779 Wnt signaling pathway and pluripotency lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP113 TGF-beta signaling pathway RO:HOM0000017 wikipathways WP366 TGF-beta signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1133 Androgen receptor signaling pathway RO:HOM0000017 wikipathways WP138 Androgen receptor signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1133 Androgen receptor signaling pathway RO:HOM0000017 wikipathways WP897 Androgen receptor signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1134 Ketone bodies synthesis and degradation RO:HOM0000017 wikipathways WP311 Ketone bodies synthesis and degradation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1134 Ketone bodies synthesis and degradation RO:HOM0000017 wikipathways WP427 Ketone bodies synthesis and degradation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1134 Ketone bodies synthesis and degradation RO:HOM0000017 wikipathways WP784 Ketone bodies synthesis and degradation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1134 Ketone bodies synthesis and degradation RO:HOM0000017 wikipathways WP898 Ketone bodies synthesis and degradation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1135 Wnt signaling pathway RO:HOM0000017 wikipathways WP1349 Wnt Signaling Pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1135 Wnt signaling pathway RO:HOM0000017 wikipathways WP363 Wnt signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1135 Wnt signaling pathway RO:HOM0000017 wikipathways WP403 Wnt signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1135 Wnt signaling pathway RO:HOM0000017 wikipathways WP785 Wnt signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1135 Wnt signaling pathway RO:HOM0000017 wikipathways WP899 Wnt signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1135 Wnt signaling pathway RO:HOM0000017 wikipathways WP97 Wnt signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1138 FAS pathway and stress induction of HSP regulation RO:HOM0000017 wikipathways WP511 FAS pathway and stress induction of HSP regulation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1138 FAS pathway and stress induction of HSP regulation RO:HOM0000017 wikipathways WP571 FAS pathway and stress induction of HSP regulation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1138 FAS pathway and stress induction of HSP regulation RO:HOM0000017 wikipathways WP788 FAS pathway and stress induction of HSP regulation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1138 FAS pathway and stress induction of HSP regulation RO:HOM0000017 wikipathways WP89 FAS pathway and stress induction of HSP regulation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1138 FAS pathway and stress induction of HSP regulation RO:HOM0000017 wikipathways WP902 FAS pathway and stress induction of HSP regulation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1141 Hedgehog signaling pathway RO:HOM0000017 wikipathways WP116 Hedgehog signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1141 Hedgehog signaling pathway RO:HOM0000017 wikipathways WP4249 Hedgehog signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1141 Hedgehog signaling pathway RO:HOM0000017 wikipathways WP492 Hedgehog signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1141 Hedgehog signaling pathway RO:HOM0000017 wikipathways WP574 Hedgehog signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1141 Hedgehog signaling pathway RO:HOM0000017 wikipathways WP790 Hedgehog signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1141 Hedgehog signaling pathway RO:HOM0000017 wikipathways WP905 Hedgehog signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1142 mRNA Processing RO:HOM0000017 wikipathways WP1229 mRNA processing lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1142 mRNA Processing RO:HOM0000017 wikipathways WP123 mRNA processing lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1142 mRNA Processing RO:HOM0000017 wikipathways WP142 mRNA processing lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1142 mRNA Processing RO:HOM0000017 wikipathways WP310 mRNA processing lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1142 mRNA Processing RO:HOM0000017 wikipathways WP411 mRNA processing lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1142 mRNA Processing RO:HOM0000017 wikipathways WP467 mRNA processing lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1142 mRNA Processing RO:HOM0000017 wikipathways WP529 mRNA processing lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1142 mRNA Processing RO:HOM0000017 wikipathways WP793 mRNA processing lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1142 mRNA Processing RO:HOM0000017 wikipathways WP906 mRNA Processing lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1148 Notch signaling pathway RO:HOM0000017 wikipathways WP1232 Notch signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1148 Notch signaling pathway RO:HOM0000017 wikipathways WP208 Notch signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1148 Notch signaling pathway RO:HOM0000017 wikipathways WP29 Notch signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1148 Notch signaling pathway RO:HOM0000017 wikipathways WP517 Notch signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1148 Notch signaling pathway RO:HOM0000017 wikipathways WP798 Notch signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1148 Notch signaling pathway RO:HOM0000017 wikipathways WP912 Notch signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1151 ACE inhibitor pathway RO:HOM0000017 wikipathways WP396 ACE inhibitor pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1151 ACE inhibitor pathway RO:HOM0000017 wikipathways WP468 ACE inhibitor pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1151 ACE inhibitor pathway RO:HOM0000017 wikipathways WP554 ACE inhibitor pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1151 ACE inhibitor pathway RO:HOM0000017 wikipathways WP557 ACE inhibitor pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1151 ACE inhibitor pathway RO:HOM0000017 wikipathways WP801 ACE inhibitor pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1151 ACE inhibitor pathway RO:HOM0000017 wikipathways WP915 ACE inhibitor pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1152 Mismatch repair RO:HOM0000017 wikipathways WP1233 Mismatch repair lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1152 Mismatch repair RO:HOM0000017 wikipathways WP1257 Mismatch repair lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1152 Mismatch repair RO:HOM0000017 wikipathways WP1295 Mismatch repair lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1152 Mismatch repair RO:HOM0000017 wikipathways WP802 Mismatch repair lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1153 Homologous recombination RO:HOM0000017 wikipathways WP1205 Homologous recombination lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1153 Homologous recombination RO:HOM0000017 wikipathways WP1258 Homologous recombination lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1153 Homologous recombination RO:HOM0000017 wikipathways WP1296 Homologous recombination lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1153 Homologous recombination RO:HOM0000017 wikipathways WP186 Homologous recombination lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1153 Homologous recombination RO:HOM0000017 wikipathways WP804 Homologous recombination lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1153 Homologous recombination RO:HOM0000017 wikipathways WP917 Homologous recombination lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1154 p38 MAPK signaling pathway RO:HOM0000017 wikipathways WP1363 p38 mapk signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1154 p38 MAPK signaling pathway RO:HOM0000017 wikipathways WP294 p38 Mapk signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1154 p38 MAPK signaling pathway RO:HOM0000017 wikipathways WP350 p38 Mapk signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1154 p38 MAPK signaling pathway RO:HOM0000017 wikipathways WP400 p38 MAPK signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1154 p38 MAPK signaling pathway RO:HOM0000017 wikipathways WP803 p38 MAPK signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1154 p38 MAPK signaling pathway RO:HOM0000017 wikipathways WP918 p38 MAPK signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1157 Statin pathway RO:HOM0000017 wikipathways WP145 Statin pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1157 Statin pathway RO:HOM0000017 wikipathways WP921 Statin pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1159 Calcium regulation in cardiac cells RO:HOM0000017 wikipathways WP1365 Calcium regulation in cardiac cells lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1159 Calcium regulation in cardiac cells RO:HOM0000017 wikipathways WP326 Calcium regulation in cardiac cells lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1159 Calcium regulation in cardiac cells RO:HOM0000017 wikipathways WP536 Calcium regulation in cardiac cells lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1159 Calcium regulation in cardiac cells RO:HOM0000017 wikipathways WP553 Calcium regulation in cardiac cells lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1159 Calcium regulation in cardiac cells RO:HOM0000017 wikipathways WP808 Calcium regulation in cardiac cells lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1159 Calcium regulation in cardiac cells RO:HOM0000017 wikipathways WP923 Calcium regulation in cardiac cells lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP116 Hedgehog signaling pathway RO:HOM0000017 wikipathways WP4249 Hedgehog signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP116 Hedgehog signaling pathway RO:HOM0000017 wikipathways WP492 Hedgehog signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP116 Hedgehog signaling pathway RO:HOM0000017 wikipathways WP574 Hedgehog signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP116 Hedgehog signaling pathway RO:HOM0000017 wikipathways WP790 Hedgehog signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP116 Hedgehog signaling pathway RO:HOM0000017 wikipathways WP905 Hedgehog signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1162 Hepatocyte growth factor receptor signaling RO:HOM0000017 wikipathways WP193 Hepatocyte growth factor receptor signaling lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1162 Hepatocyte growth factor receptor signaling RO:HOM0000017 wikipathways WP313 Hepatocyte growth factor receptor signaling lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1162 Hepatocyte growth factor receptor signaling RO:HOM0000017 wikipathways WP444 Hepatocyte growth factor receptor signaling lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1162 Hepatocyte growth factor receptor signaling RO:HOM0000017 wikipathways WP810 Hepatocyte growth factor receptor signaling lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1162 Hepatocyte growth factor receptor signaling RO:HOM0000017 wikipathways WP927 Hepatocyte growth factor receptor signaling lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1162 Hepatocyte growth factor receptor signaling RO:HOM0000017 wikipathways WP94 Hepatocyte growth factor receptor signaling lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1165 G protein signaling pathways RO:HOM0000017 wikipathways WP1371 G protein signaling pathways lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1165 G protein signaling pathways RO:HOM0000017 wikipathways WP232 G protein signaling pathways lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1165 G protein signaling pathways RO:HOM0000017 wikipathways WP35 G protein signaling pathways lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1165 G protein signaling pathways RO:HOM0000017 wikipathways WP73 G protein signaling pathways lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1165 G protein signaling pathways RO:HOM0000017 wikipathways WP813 G protein signaling pathways lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1165 G protein signaling pathways RO:HOM0000017 wikipathways WP931 G protein signaling pathways lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1168 Id signaling pathway RO:HOM0000017 wikipathways WP1374 Id signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1168 Id signaling pathway RO:HOM0000017 wikipathways WP397 Id signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1168 Id signaling pathway RO:HOM0000017 wikipathways WP512 Id signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1168 Id signaling pathway RO:HOM0000017 wikipathways WP53 ID signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1168 Id signaling pathway RO:HOM0000017 wikipathways WP934 Id signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP117 GPCRs, other RO:HOM0000017 wikipathways WP409 GPCRs, other lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP117 GPCRs, other RO:HOM0000017 wikipathways WP41 GPCRs, other lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP117 GPCRs, other RO:HOM0000017 wikipathways WP990 GPCRs, other lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1170 Polyol pathway RO:HOM0000017 wikipathways WP1218 Polyol pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1170 Polyol pathway RO:HOM0000017 wikipathways WP1236 Polyol pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1170 Polyol pathway RO:HOM0000017 wikipathways WP1265 Polyol pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1170 Polyol pathway RO:HOM0000017 wikipathways WP1303 Polyol pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1170 Polyol pathway RO:HOM0000017 wikipathways WP1375 Polyol pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1170 Polyol pathway RO:HOM0000017 wikipathways WP690 Polyol pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1170 Polyol pathway RO:HOM0000017 wikipathways WP936 Polyol pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1176 Matrix metalloproteinases RO:HOM0000017 wikipathways WP129 Matrix metalloproteinases lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1176 Matrix metalloproteinases RO:HOM0000017 wikipathways WP278 Matrix metalloproteinases lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1176 Matrix metalloproteinases RO:HOM0000017 wikipathways WP441 Matrix metalloproteinases lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1176 Matrix metalloproteinases RO:HOM0000017 wikipathways WP823 Matrix metalloproteinases lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1176 Matrix metalloproteinases RO:HOM0000017 wikipathways WP942 Matrix metalloproteinases lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1179 G13 signaling pathway RO:HOM0000017 wikipathways WP1381 G13 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1179 G13 signaling pathway RO:HOM0000017 wikipathways WP298 G13 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1179 G13 signaling pathway RO:HOM0000017 wikipathways WP520 G13 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1179 G13 signaling pathway RO:HOM0000017 wikipathways WP524 G13 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1179 G13 signaling pathway RO:HOM0000017 wikipathways WP826 G13 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1179 G13 signaling pathway RO:HOM0000017 wikipathways WP945 G13 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1180 Delta-Notch signaling pathway RO:HOM0000017 wikipathways WP1382 Delta-Notch signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1180 Delta-Notch signaling pathway RO:HOM0000017 wikipathways WP199 Delta-Notch signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1180 Delta-Notch signaling pathway RO:HOM0000017 wikipathways WP265 Delta-Notch signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1180 Delta-Notch signaling pathway RO:HOM0000017 wikipathways WP827 Delta-Notch signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1180 Delta-Notch signaling pathway RO:HOM0000017 wikipathways WP946 Delta-Notch signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1182 Eukaryotic transcription initiation RO:HOM0000017 wikipathways WP1238 Eukaryotic transcription initiation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1182 Eukaryotic transcription initiation RO:HOM0000017 wikipathways WP177 Eukaryotic transcription initiation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1182 Eukaryotic transcription initiation RO:HOM0000017 wikipathways WP405 Eukaryotic transcription initiation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1182 Eukaryotic transcription initiation RO:HOM0000017 wikipathways WP425 Eukaryotic transcription initiation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1182 Eukaryotic transcription initiation RO:HOM0000017 wikipathways WP491 Eukaryotic transcription initiation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1182 Eukaryotic transcription initiation RO:HOM0000017 wikipathways WP518 Eukaryotic transcription initiation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1182 Eukaryotic transcription initiation RO:HOM0000017 wikipathways WP567 Eukaryotic transcription initiation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1182 Eukaryotic transcription initiation RO:HOM0000017 wikipathways WP830 Eukaryotic transcription initiation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1182 Eukaryotic transcription initiation RO:HOM0000017 wikipathways WP948 Eukaryotic transcription initiation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1184 Nuclear receptors RO:HOM0000017 wikipathways WP170 Nuclear receptors lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1184 Nuclear receptors RO:HOM0000017 wikipathways WP217 Nuclear receptors lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1184 Nuclear receptors RO:HOM0000017 wikipathways WP509 Nuclear Receptors lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1184 Nuclear receptors RO:HOM0000017 wikipathways WP831 Nuclear receptors lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1184 Nuclear receptors RO:HOM0000017 wikipathways WP950 Nuclear receptors lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1185 Integrin-mediated cell adhesion RO:HOM0000017 wikipathways WP1386 Integrin-mediated cell adhesion lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1185 Integrin-mediated cell adhesion RO:HOM0000017 wikipathways WP185 Integrin-mediated cell adhesion lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1185 Integrin-mediated cell adhesion RO:HOM0000017 wikipathways WP6 Integrin-mediated cell adhesion lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1185 Integrin-mediated cell adhesion RO:HOM0000017 wikipathways WP74 Integrin-mediated cell adhesion lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1185 Integrin-mediated cell adhesion RO:HOM0000017 wikipathways WP832 Integrin-mediated cell adhesion lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1185 Integrin-mediated cell adhesion RO:HOM0000017 wikipathways WP951 Integrin-mediated cell adhesion lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1186 Cholesterol biosynthesis RO:HOM0000017 wikipathways WP132 Cholesterol biosynthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1186 Cholesterol biosynthesis RO:HOM0000017 wikipathways WP1387 Cholesterol biosynthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1186 Cholesterol biosynthesis RO:HOM0000017 wikipathways WP461 Cholesterol biosynthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1186 Cholesterol biosynthesis RO:HOM0000017 wikipathways WP833 Cholesterol biosynthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1186 Cholesterol biosynthesis RO:HOM0000017 wikipathways WP952 Cholesterol biosynthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1189 Glycogen metabolism RO:HOM0000017 wikipathways WP1388 Glycogen metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1189 Glycogen metabolism RO:HOM0000017 wikipathways WP160 Glycogen metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1189 Glycogen metabolism RO:HOM0000017 wikipathways WP317 Glycogen metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1189 Glycogen metabolism RO:HOM0000017 wikipathways WP436 Glycogen metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1189 Glycogen metabolism RO:HOM0000017 wikipathways WP835 Glycogen metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1189 Glycogen metabolism RO:HOM0000017 wikipathways WP955 Glycogen metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1193 Monoamine GPCRs RO:HOM0000017 wikipathways WP1389 Monoamine GPCRs lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1193 Monoamine GPCRs RO:HOM0000017 wikipathways WP276 Monoamine GPCRs lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1193 Monoamine GPCRs RO:HOM0000017 wikipathways WP570 Monoamine GPCRs lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1193 Monoamine GPCRs RO:HOM0000017 wikipathways WP58 Monoamine GPCRs lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1193 Monoamine GPCRs RO:HOM0000017 wikipathways WP839 Monoamine GPCRs lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1193 Monoamine GPCRs RO:HOM0000017 wikipathways WP957 Monoamine GPCRs lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1195 G1 to S cell cycle control RO:HOM0000017 wikipathways WP348 G1 to S cell cycle control lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1195 G1 to S cell cycle control RO:HOM0000017 wikipathways WP413 G1 to S cell cycle control lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1195 G1 to S cell cycle control RO:HOM0000017 wikipathways WP445 G1 to S cell cycle control lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1195 G1 to S cell cycle control RO:HOM0000017 wikipathways WP45 G1 to S cell cycle control lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1195 G1 to S cell cycle control RO:HOM0000017 wikipathways WP840 G1 to S cell cycle control lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1195 G1 to S cell cycle control RO:HOM0000017 wikipathways WP959 G1 to S cell cycle control lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1197 Irinotecan pathway RO:HOM0000017 wikipathways WP124 Irinotecan pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1197 Irinotecan pathway RO:HOM0000017 wikipathways WP229 Irinotecan pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1197 Irinotecan pathway RO:HOM0000017 wikipathways WP475 Irinotecan pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1197 Irinotecan pathway RO:HOM0000017 wikipathways WP961 Irinotecan pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1198 S1P receptor signal transduction RO:HOM0000017 wikipathways WP1312 S1P receptor signal transduction lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1198 S1P receptor signal transduction RO:HOM0000017 wikipathways WP1391 S1P receptor signal transduction lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1198 S1P receptor signal transduction RO:HOM0000017 wikipathways WP26 S1P receptor signal transduction lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP12 Osteoclast signaling RO:HOM0000017 wikipathways WP1342 Osteoclast signaling lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP12 Osteoclast signaling RO:HOM0000017 wikipathways WP454 Osteoclast signaling lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP12 Osteoclast signaling RO:HOM0000017 wikipathways WP890 Osteoclast signaling lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1200 Cell cycle RO:HOM0000017 wikipathways WP1393 Cell cycle lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1200 Cell cycle RO:HOM0000017 wikipathways WP179 Cell cycle lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1200 Cell cycle RO:HOM0000017 wikipathways WP844 Cell cycle lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1200 Cell cycle RO:HOM0000017 wikipathways WP964 Cell cycle lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1201 Non-homologous end joining RO:HOM0000017 wikipathways WP1242 Non-homologous end joining lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1201 Non-homologous end joining RO:HOM0000017 wikipathways WP1277 Non-homologous end joining lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1201 Non-homologous end joining RO:HOM0000017 wikipathways WP438 Non-homologous end joining lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1201 Non-homologous end joining RO:HOM0000017 wikipathways WP979 Non-homologous end joining lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1203 One-carbon metabolism RO:HOM0000017 wikipathways WP1230 One-carbon metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1203 One-carbon metabolism RO:HOM0000017 wikipathways WP1292 One-carbon metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1203 One-carbon metabolism RO:HOM0000017 wikipathways WP1355 One-carbon metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1203 One-carbon metabolism RO:HOM0000017 wikipathways WP241 One-carbon metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1203 One-carbon metabolism RO:HOM0000017 wikipathways WP435 One-carbon metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1203 One-carbon metabolism RO:HOM0000017 wikipathways WP796 One-carbon metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1203 One-carbon metabolism RO:HOM0000017 wikipathways WP909 One-carbon metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1204 DNA mismatch repair RO:HOM0000017 wikipathways WP531 DNA mismatch repair lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1205 Homologous recombination RO:HOM0000017 wikipathways WP1258 Homologous recombination lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1205 Homologous recombination RO:HOM0000017 wikipathways WP1296 Homologous recombination lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1205 Homologous recombination RO:HOM0000017 wikipathways WP186 Homologous recombination lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1205 Homologous recombination RO:HOM0000017 wikipathways WP804 Homologous recombination lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1205 Homologous recombination RO:HOM0000017 wikipathways WP917 Homologous recombination lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1211 Arylamine metabolism RO:HOM0000017 wikipathways WP694 Arylamine metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1211 Arylamine metabolism RO:HOM0000017 wikipathways WP993 Arylamine metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1212 Metapathway biotransformation RO:HOM0000017 wikipathways WP1251 Metapathway biotransformation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1212 Metapathway biotransformation RO:HOM0000017 wikipathways WP1286 Metapathway biotransformation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1213 Phase I biotransformations, non P450 RO:HOM0000017 wikipathways WP1291 Phase I biotransformations, non P450 lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1213 Phase I biotransformations, non P450 RO:HOM0000017 wikipathways WP136 Phase I biotransformations, non P450 lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1217 Aflatoxin B1 metabolism RO:HOM0000017 wikipathways WP1262 Aflatoxin B1 metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1217 Aflatoxin B1 metabolism RO:HOM0000017 wikipathways WP1300 Aflatoxin B1 metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1217 Aflatoxin B1 metabolism RO:HOM0000017 wikipathways WP3247 Aflatoxin B1 metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1217 Aflatoxin B1 metabolism RO:HOM0000017 wikipathways WP699 Aflatoxin B1 metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1217 Aflatoxin B1 metabolism RO:HOM0000017 wikipathways WP925 Aflatoxin B1 metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1218 Polyol pathway RO:HOM0000017 wikipathways WP1236 Polyol pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1218 Polyol pathway RO:HOM0000017 wikipathways WP1265 Polyol pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1218 Polyol pathway RO:HOM0000017 wikipathways WP1303 Polyol pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1218 Polyol pathway RO:HOM0000017 wikipathways WP1375 Polyol pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1218 Polyol pathway RO:HOM0000017 wikipathways WP690 Polyol pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1218 Polyol pathway RO:HOM0000017 wikipathways WP936 Polyol pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1221 Heme biosynthesis RO:HOM0000017 wikipathways WP1314 Heme biosynthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1221 Heme biosynthesis RO:HOM0000017 wikipathways WP18 Heme biosynthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1221 Heme biosynthesis RO:HOM0000017 wikipathways WP269 Heme biosynthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1221 Heme biosynthesis RO:HOM0000017 wikipathways WP561 Heme biosynthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1221 Heme biosynthesis RO:HOM0000017 wikipathways WP848 Heme biosynthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1221 Heme biosynthesis RO:HOM0000017 wikipathways WP86 Heme biosynthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1221 Heme biosynthesis RO:HOM0000017 wikipathways WP967 Heme biosynthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1223 DNA replication RO:HOM0000017 wikipathways WP13 DNA replication lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1223 DNA replication RO:HOM0000017 wikipathways WP150 DNA replication lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1223 DNA replication RO:HOM0000017 wikipathways WP192 DNA replication lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1223 DNA replication RO:HOM0000017 wikipathways WP451 DNA replication lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1223 DNA replication RO:HOM0000017 wikipathways WP466 DNA replication lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1223 DNA replication RO:HOM0000017 wikipathways WP484 DNA replication lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1223 DNA replication RO:HOM0000017 wikipathways WP565 DNA replication lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1223 DNA replication RO:HOM0000017 wikipathways WP757 DNA replication lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1223 DNA replication RO:HOM0000017 wikipathways WP865 DNA replication lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1223 DNA replication RO:HOM0000017 wikipathways WP983 DNA replication lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1224 EBV LMP1 signaling RO:HOM0000017 wikipathways WP1243 EBV LMP1 signaling lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1224 EBV LMP1 signaling RO:HOM0000017 wikipathways WP1278 EBV LMP1 signaling lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1224 EBV LMP1 signaling RO:HOM0000017 wikipathways WP984 EBV LMP1 signaling lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1227 TCA cycle RO:HOM0000017 wikipathways WP19 TCA cycle lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1227 TCA cycle RO:HOM0000017 wikipathways WP347 TCA cycle lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1227 TCA cycle RO:HOM0000017 wikipathways WP434 TCA cycle lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1227 TCA cycle RO:HOM0000017 wikipathways WP490 TCA cycle lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1227 TCA cycle RO:HOM0000017 wikipathways WP76 TCA cycle lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1227 TCA cycle RO:HOM0000017 wikipathways WP999 TCA cycle lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1229 mRNA processing RO:HOM0000017 wikipathways WP123 mRNA processing lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1229 mRNA processing RO:HOM0000017 wikipathways WP142 mRNA processing lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1229 mRNA processing RO:HOM0000017 wikipathways WP310 mRNA processing lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1229 mRNA processing RO:HOM0000017 wikipathways WP411 mRNA processing lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1229 mRNA processing RO:HOM0000017 wikipathways WP467 mRNA processing lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1229 mRNA processing RO:HOM0000017 wikipathways WP529 mRNA processing lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1229 mRNA processing RO:HOM0000017 wikipathways WP793 mRNA processing lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1229 mRNA processing RO:HOM0000017 wikipathways WP906 mRNA Processing lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP123 mRNA processing RO:HOM0000017 wikipathways WP142 mRNA processing lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP123 mRNA processing RO:HOM0000017 wikipathways WP310 mRNA processing lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP123 mRNA processing RO:HOM0000017 wikipathways WP411 mRNA processing lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP123 mRNA processing RO:HOM0000017 wikipathways WP467 mRNA processing lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP123 mRNA processing RO:HOM0000017 wikipathways WP529 mRNA processing lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP123 mRNA processing RO:HOM0000017 wikipathways WP793 mRNA processing lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP123 mRNA processing RO:HOM0000017 wikipathways WP906 mRNA Processing lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1230 One-carbon metabolism RO:HOM0000017 wikipathways WP1292 One-carbon metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1230 One-carbon metabolism RO:HOM0000017 wikipathways WP1355 One-carbon metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1230 One-carbon metabolism RO:HOM0000017 wikipathways WP241 One-carbon metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1230 One-carbon metabolism RO:HOM0000017 wikipathways WP435 One-carbon metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1230 One-carbon metabolism RO:HOM0000017 wikipathways WP796 One-carbon metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1230 One-carbon metabolism RO:HOM0000017 wikipathways WP909 One-carbon metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1231 Pentose phosphate pathway RO:HOM0000017 wikipathways WP282 Pentose phosphate pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1231 Pentose phosphate pathway RO:HOM0000017 wikipathways WP312 Pentose phosphate pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1231 Pentose phosphate pathway RO:HOM0000017 wikipathways WP369 Pentose phosphate pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1231 Pentose phosphate pathway RO:HOM0000017 wikipathways WP63 Pentose phosphate pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1232 Notch signaling pathway RO:HOM0000017 wikipathways WP208 Notch signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1232 Notch signaling pathway RO:HOM0000017 wikipathways WP29 Notch signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1232 Notch signaling pathway RO:HOM0000017 wikipathways WP517 Notch signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1232 Notch signaling pathway RO:HOM0000017 wikipathways WP798 Notch signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1232 Notch signaling pathway RO:HOM0000017 wikipathways WP912 Notch signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1233 Mismatch repair RO:HOM0000017 wikipathways WP1257 Mismatch repair lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1233 Mismatch repair RO:HOM0000017 wikipathways WP1295 Mismatch repair lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1233 Mismatch repair RO:HOM0000017 wikipathways WP802 Mismatch repair lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1236 Polyol pathway RO:HOM0000017 wikipathways WP1265 Polyol pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1236 Polyol pathway RO:HOM0000017 wikipathways WP1303 Polyol pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1236 Polyol pathway RO:HOM0000017 wikipathways WP1375 Polyol pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1236 Polyol pathway RO:HOM0000017 wikipathways WP690 Polyol pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1236 Polyol pathway RO:HOM0000017 wikipathways WP936 Polyol pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1238 Eukaryotic transcription initiation RO:HOM0000017 wikipathways WP177 Eukaryotic transcription initiation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1238 Eukaryotic transcription initiation RO:HOM0000017 wikipathways WP405 Eukaryotic transcription initiation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1238 Eukaryotic transcription initiation RO:HOM0000017 wikipathways WP425 Eukaryotic transcription initiation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1238 Eukaryotic transcription initiation RO:HOM0000017 wikipathways WP491 Eukaryotic transcription initiation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1238 Eukaryotic transcription initiation RO:HOM0000017 wikipathways WP518 Eukaryotic transcription initiation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1238 Eukaryotic transcription initiation RO:HOM0000017 wikipathways WP567 Eukaryotic transcription initiation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1238 Eukaryotic transcription initiation RO:HOM0000017 wikipathways WP830 Eukaryotic transcription initiation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1238 Eukaryotic transcription initiation RO:HOM0000017 wikipathways WP948 Eukaryotic transcription initiation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1239 Cytoplasmic ribosomal proteins RO:HOM0000017 wikipathways WP163 Cytoplasmic ribosomal proteins lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1239 Cytoplasmic ribosomal proteins RO:HOM0000017 wikipathways WP210 Cytoplasmic ribosomal proteins lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1239 Cytoplasmic ribosomal proteins RO:HOM0000017 wikipathways WP30 Cytoplasmic ribosomal proteins lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1239 Cytoplasmic ribosomal proteins RO:HOM0000017 wikipathways WP324 Cytoplasmic ribosomal proteins lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1239 Cytoplasmic ribosomal proteins RO:HOM0000017 wikipathways WP477 Cytoplasmic ribosomal proteins lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1239 Cytoplasmic ribosomal proteins RO:HOM0000017 wikipathways WP540 Cytoplasmic ribosomal proteins lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP124 Irinotecan pathway RO:HOM0000017 wikipathways WP229 Irinotecan pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP124 Irinotecan pathway RO:HOM0000017 wikipathways WP475 Irinotecan pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP124 Irinotecan pathway RO:HOM0000017 wikipathways WP961 Irinotecan pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1240 Proteasome Degradation RO:HOM0000017 wikipathways WP158 Proteasome degradation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1240 Proteasome Degradation RO:HOM0000017 wikipathways WP183 Proteasome degradation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1240 Proteasome Degradation RO:HOM0000017 wikipathways WP281 Proteasome degradation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1240 Proteasome Degradation RO:HOM0000017 wikipathways WP302 Proteasome degradation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1240 Proteasome Degradation RO:HOM0000017 wikipathways WP470 Proteasome degradation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1240 Proteasome Degradation RO:HOM0000017 wikipathways WP519 Proteasome degradation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1241 Glucuronidation RO:HOM0000017 wikipathways WP1276 Glucuronidation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1241 Glucuronidation RO:HOM0000017 wikipathways WP3210 Glucuronidation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1241 Glucuronidation RO:HOM0000017 wikipathways WP698 Glucuronidation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1242 Non-homologous end joining RO:HOM0000017 wikipathways WP1277 Non-homologous end joining lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1242 Non-homologous end joining RO:HOM0000017 wikipathways WP438 Non-homologous end joining lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1242 Non-homologous end joining RO:HOM0000017 wikipathways WP979 Non-homologous end joining lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1243 EBV LMP1 signaling RO:HOM0000017 wikipathways WP1278 EBV LMP1 signaling lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1243 EBV LMP1 signaling RO:HOM0000017 wikipathways WP984 EBV LMP1 signaling lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1244 Estrogen signaling RO:HOM0000017 wikipathways WP1279 Estrogen signaling lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1244 Estrogen signaling RO:HOM0000017 wikipathways WP1330 Estrogen signaling lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1245 Transcriptional activation by Nfe2l2 in response to phytochemicals RO:HOM0000017 wikipathways WP1280 Transcriptional activation by Nfe2l2 in response to phytochemicals lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1245 Transcriptional activation by Nfe2l2 in response to phytochemicals RO:HOM0000017 wikipathways WP1332 Transcriptional activation by nfe2l2 in response to phytochemicals lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1246 Hypothetical network for drug addiction RO:HOM0000017 wikipathways WP1281 Hypothetical network for drug addiction lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1246 Hypothetical network for drug addiction RO:HOM0000017 wikipathways WP1333 Hypothetical network for drug addiction lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1247 Methylation RO:HOM0000017 wikipathways WP1282 Methylation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1248 Oxidative phosphorylation RO:HOM0000017 wikipathways WP1283 Oxidative phosphorylation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1248 Oxidative phosphorylation RO:HOM0000017 wikipathways WP1335 Oxidative phosphorylation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1248 Oxidative phosphorylation RO:HOM0000017 wikipathways WP623 Oxidative phosphorylation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1248 Oxidative phosphorylation RO:HOM0000017 wikipathways WP994 Oxidative phosphorylation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1249 EPO receptor signaling RO:HOM0000017 wikipathways WP1284 EPO receptor signaling lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1249 EPO receptor signaling RO:HOM0000017 wikipathways WP1336 EPO receptor signaling lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1249 EPO receptor signaling RO:HOM0000017 wikipathways WP581 EPO receptor signaling lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1249 EPO receptor signaling RO:HOM0000017 wikipathways WP768 EPO receptor signaling lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1249 EPO receptor signaling RO:HOM0000017 wikipathways WP878 EPO receptor signaling lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1249 EPO receptor signaling RO:HOM0000017 wikipathways WP996 EPO receptor signaling lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP125 Biogenic amine synthesis RO:HOM0000017 wikipathways WP154 Biogenic amine synthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP125 Biogenic amine synthesis RO:HOM0000017 wikipathways WP3168 Biogenic amine synthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP125 Biogenic amine synthesis RO:HOM0000017 wikipathways WP323 Biogenic amine synthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP125 Biogenic amine synthesis RO:HOM0000017 wikipathways WP522 Biogenic amine synthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP125 Biogenic amine synthesis RO:HOM0000017 wikipathways WP550 Biogenic amine synthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1250 Arachidonate epoxygenase / epoxide hydrolase RO:HOM0000017 wikipathways WP1285 Arachidonate epoxygenase / epoxide hydrolase lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1250 Arachidonate epoxygenase / epoxide hydrolase RO:HOM0000017 wikipathways WP678 Arachidonate epoxygenase / epoxide hydrolase lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1251 Metapathway biotransformation RO:HOM0000017 wikipathways WP1286 Metapathway biotransformation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1252 Amino acid conjugation of benzoic acid RO:HOM0000017 wikipathways WP1287 Amino acid conjugation of benzoic acid lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1252 Amino acid conjugation of benzoic acid RO:HOM0000017 wikipathways WP1577 Amino acid conjugation of benzoic acid lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1252 Amino acid conjugation of benzoic acid RO:HOM0000017 wikipathways WP521 Amino acid conjugation of benzoic acid lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1253 Type II interferon signaling (IFNG) RO:HOM0000017 wikipathways WP1289 Type II interferon signaling (IFNG) lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1253 Type II interferon signaling (IFNG) RO:HOM0000017 wikipathways WP619 Type II interferon signaling (IFNG) lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1254 Apoptosis RO:HOM0000017 wikipathways WP1290 Apoptosis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1254 Apoptosis RO:HOM0000017 wikipathways WP1351 Apoptosis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1254 Apoptosis RO:HOM0000017 wikipathways WP254 Apoptosis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1254 Apoptosis RO:HOM0000017 wikipathways WP787 Apoptosis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1256 Nod-like receptor (NLR) signaling pathway RO:HOM0000017 wikipathways WP1294 Nod-like receptor (NLR) signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1256 Nod-like receptor (NLR) signaling pathway RO:HOM0000017 wikipathways WP1360 Nod-like receptor (NLR) signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1256 Nod-like receptor (NLR) signaling pathway RO:HOM0000017 wikipathways WP288 Nod-like receptor (NLR) signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1256 Nod-like receptor (NLR) signaling pathway RO:HOM0000017 wikipathways WP799 Nod-like receptor (NLR) signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1256 Nod-like receptor (NLR) signaling pathway RO:HOM0000017 wikipathways WP914 Nod-like receptor (NLR) signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1257 Mismatch repair RO:HOM0000017 wikipathways WP1295 Mismatch repair lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1257 Mismatch repair RO:HOM0000017 wikipathways WP802 Mismatch repair lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1258 Homologous recombination RO:HOM0000017 wikipathways WP1296 Homologous recombination lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1258 Homologous recombination RO:HOM0000017 wikipathways WP186 Homologous recombination lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1258 Homologous recombination RO:HOM0000017 wikipathways WP804 Homologous recombination lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1258 Homologous recombination RO:HOM0000017 wikipathways WP917 Homologous recombination lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1259 Retinol metabolism RO:HOM0000017 wikipathways WP1297 Retinol metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1259 Retinol metabolism RO:HOM0000017 wikipathways WP805 Retinol metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP126 Fatty acid beta-oxidation 1 RO:HOM0000017 wikipathways WP39 Fatty acid beta-oxidation 1 lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1261 ErbB signaling pathway RO:HOM0000017 wikipathways WP1299 ErbB signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1261 ErbB signaling pathway RO:HOM0000017 wikipathways WP1366 ErbB signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1261 ErbB signaling pathway RO:HOM0000017 wikipathways WP673 ErbB signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1262 Aflatoxin B1 metabolism RO:HOM0000017 wikipathways WP1300 Aflatoxin B1 metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1262 Aflatoxin B1 metabolism RO:HOM0000017 wikipathways WP3247 Aflatoxin B1 metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1262 Aflatoxin B1 metabolism RO:HOM0000017 wikipathways WP699 Aflatoxin B1 metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1262 Aflatoxin B1 metabolism RO:HOM0000017 wikipathways WP925 Aflatoxin B1 metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1263 Mitochondrial gene expression RO:HOM0000017 wikipathways WP1301 Mitochondrial gene expression lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1263 Mitochondrial gene expression RO:HOM0000017 wikipathways WP3134 Mitochondrial gene expression lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1263 Mitochondrial gene expression RO:HOM0000017 wikipathways WP391 Mitochondrial gene expression lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1264 Estrogen metabolism RO:HOM0000017 wikipathways WP1302 Estrogen metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1264 Estrogen metabolism RO:HOM0000017 wikipathways WP697 Estrogen metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1265 Polyol pathway RO:HOM0000017 wikipathways WP1303 Polyol pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1265 Polyol pathway RO:HOM0000017 wikipathways WP1375 Polyol pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1265 Polyol pathway RO:HOM0000017 wikipathways WP690 Polyol pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1265 Polyol pathway RO:HOM0000017 wikipathways WP936 Polyol pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1266 SIDS susceptibility pathways RO:HOM0000017 wikipathways WP3130 SIDS susceptibility pathways lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1269 Fatty acid beta-oxidation RO:HOM0000017 wikipathways WP1307 Fatty acid beta-oxidation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1269 Fatty acid beta-oxidation RO:HOM0000017 wikipathways WP143 Fatty acid beta-oxidation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1269 Fatty acid beta-oxidation RO:HOM0000017 wikipathways WP506 Fatty acid beta-oxidation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP127 IL-5 signaling pathway RO:HOM0000017 wikipathways WP1315 IL-5 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP127 IL-5 signaling pathway RO:HOM0000017 wikipathways WP151 IL-5 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP127 IL-5 signaling pathway RO:HOM0000017 wikipathways WP44 IL-5 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP127 IL-5 signaling pathway RO:HOM0000017 wikipathways WP968 IL-5 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1270 Endochondral ossification RO:HOM0000017 wikipathways WP1308 Endochondral ossification lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1270 Endochondral ossification RO:HOM0000017 wikipathways WP1383 Endochondral ossification lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1270 Endochondral ossification RO:HOM0000017 wikipathways WP474 Endochondral ossification lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1272 Selenium micronutrient network RO:HOM0000017 wikipathways WP15 Selenium micronutrient network lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1272 Selenium micronutrient network RO:HOM0000017 wikipathways WP3257 Selenium micronutrient network lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1273 Folic acid network RO:HOM0000017 wikipathways WP1311 Folic acid network lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1274 Oxidation by cytochrome P450 RO:HOM0000017 wikipathways WP43 Oxidation by cytochrome P450 lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1276 Glucuronidation RO:HOM0000017 wikipathways WP3210 Glucuronidation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1276 Glucuronidation RO:HOM0000017 wikipathways WP698 Glucuronidation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1277 Non-homologous end joining RO:HOM0000017 wikipathways WP438 Non-homologous end joining lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1277 Non-homologous end joining RO:HOM0000017 wikipathways WP979 Non-homologous end joining lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1278 EBV LMP1 signaling RO:HOM0000017 wikipathways WP984 EBV LMP1 signaling lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1279 Estrogen signaling RO:HOM0000017 wikipathways WP1330 Estrogen signaling lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1280 Transcriptional activation by Nfe2l2 in response to phytochemicals RO:HOM0000017 wikipathways WP1332 Transcriptional activation by nfe2l2 in response to phytochemicals lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1281 Hypothetical network for drug addiction RO:HOM0000017 wikipathways WP1333 Hypothetical network for drug addiction lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1283 Oxidative phosphorylation RO:HOM0000017 wikipathways WP1335 Oxidative phosphorylation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1283 Oxidative phosphorylation RO:HOM0000017 wikipathways WP623 Oxidative phosphorylation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1283 Oxidative phosphorylation RO:HOM0000017 wikipathways WP994 Oxidative phosphorylation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1284 EPO receptor signaling RO:HOM0000017 wikipathways WP1336 EPO receptor signaling lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1284 EPO receptor signaling RO:HOM0000017 wikipathways WP581 EPO receptor signaling lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1284 EPO receptor signaling RO:HOM0000017 wikipathways WP768 EPO receptor signaling lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1284 EPO receptor signaling RO:HOM0000017 wikipathways WP878 EPO receptor signaling lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1284 EPO receptor signaling RO:HOM0000017 wikipathways WP996 EPO receptor signaling lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1285 Arachidonate epoxygenase / epoxide hydrolase RO:HOM0000017 wikipathways WP678 Arachidonate epoxygenase / epoxide hydrolase lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1287 Amino acid conjugation of benzoic acid RO:HOM0000017 wikipathways WP1577 Amino acid conjugation of benzoic acid lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1287 Amino acid conjugation of benzoic acid RO:HOM0000017 wikipathways WP521 Amino acid conjugation of benzoic acid lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1288 Wnt signaling pathway and pluripotency RO:HOM0000017 wikipathways WP1344 Wnt Signaling Pathway and Pluripotency lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1288 Wnt signaling pathway and pluripotency RO:HOM0000017 wikipathways WP399 Wnt signaling pathway and pluripotency lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1288 Wnt signaling pathway and pluripotency RO:HOM0000017 wikipathways WP723 Wnt signaling pathway and pluripotency lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1288 Wnt signaling pathway and pluripotency RO:HOM0000017 wikipathways WP779 Wnt signaling pathway and pluripotency lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1289 Type II interferon signaling (IFNG) RO:HOM0000017 wikipathways WP619 Type II interferon signaling (IFNG) lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP129 Matrix metalloproteinases RO:HOM0000017 wikipathways WP278 Matrix metalloproteinases lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP129 Matrix metalloproteinases RO:HOM0000017 wikipathways WP441 Matrix metalloproteinases lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP129 Matrix metalloproteinases RO:HOM0000017 wikipathways WP823 Matrix metalloproteinases lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP129 Matrix metalloproteinases RO:HOM0000017 wikipathways WP942 Matrix metalloproteinases lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1290 Apoptosis RO:HOM0000017 wikipathways WP1351 Apoptosis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1290 Apoptosis RO:HOM0000017 wikipathways WP254 Apoptosis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1290 Apoptosis RO:HOM0000017 wikipathways WP787 Apoptosis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1291 Phase I biotransformations, non P450 RO:HOM0000017 wikipathways WP136 Phase I biotransformations, non P450 lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1292 One-carbon metabolism RO:HOM0000017 wikipathways WP1355 One-carbon metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1292 One-carbon metabolism RO:HOM0000017 wikipathways WP241 One-carbon metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1292 One-carbon metabolism RO:HOM0000017 wikipathways WP435 One-carbon metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1292 One-carbon metabolism RO:HOM0000017 wikipathways WP796 One-carbon metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1292 One-carbon metabolism RO:HOM0000017 wikipathways WP909 One-carbon metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1293 Selenium metabolism selenoproteins RO:HOM0000017 wikipathways WP1358 Selenium metabolism selenoproteins lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1294 Nod-like receptor (NLR) signaling pathway RO:HOM0000017 wikipathways WP1360 Nod-like receptor (NLR) signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1294 Nod-like receptor (NLR) signaling pathway RO:HOM0000017 wikipathways WP288 Nod-like receptor (NLR) signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1294 Nod-like receptor (NLR) signaling pathway RO:HOM0000017 wikipathways WP799 Nod-like receptor (NLR) signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1294 Nod-like receptor (NLR) signaling pathway RO:HOM0000017 wikipathways WP914 Nod-like receptor (NLR) signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1295 Mismatch repair RO:HOM0000017 wikipathways WP802 Mismatch repair lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1296 Homologous recombination RO:HOM0000017 wikipathways WP186 Homologous recombination lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1296 Homologous recombination RO:HOM0000017 wikipathways WP804 Homologous recombination lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1296 Homologous recombination RO:HOM0000017 wikipathways WP917 Homologous recombination lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1297 Retinol metabolism RO:HOM0000017 wikipathways WP805 Retinol metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1299 ErbB signaling pathway RO:HOM0000017 wikipathways WP1366 ErbB signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1299 ErbB signaling pathway RO:HOM0000017 wikipathways WP673 ErbB signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP13 DNA replication RO:HOM0000017 wikipathways WP150 DNA replication lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP13 DNA replication RO:HOM0000017 wikipathways WP192 DNA replication lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP13 DNA replication RO:HOM0000017 wikipathways WP451 DNA replication lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP13 DNA replication RO:HOM0000017 wikipathways WP466 DNA replication lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP13 DNA replication RO:HOM0000017 wikipathways WP484 DNA replication lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP13 DNA replication RO:HOM0000017 wikipathways WP565 DNA replication lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP13 DNA replication RO:HOM0000017 wikipathways WP757 DNA replication lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP13 DNA replication RO:HOM0000017 wikipathways WP865 DNA replication lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP13 DNA replication RO:HOM0000017 wikipathways WP983 DNA replication lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1300 Aflatoxin B1 metabolism RO:HOM0000017 wikipathways WP3247 Aflatoxin B1 metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1300 Aflatoxin B1 metabolism RO:HOM0000017 wikipathways WP699 Aflatoxin B1 metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1300 Aflatoxin B1 metabolism RO:HOM0000017 wikipathways WP925 Aflatoxin B1 metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1301 Mitochondrial gene expression RO:HOM0000017 wikipathways WP3134 Mitochondrial gene expression lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1301 Mitochondrial gene expression RO:HOM0000017 wikipathways WP391 Mitochondrial gene expression lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1302 Estrogen metabolism RO:HOM0000017 wikipathways WP697 Estrogen metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1303 Polyol pathway RO:HOM0000017 wikipathways WP1375 Polyol pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1303 Polyol pathway RO:HOM0000017 wikipathways WP690 Polyol pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1303 Polyol pathway RO:HOM0000017 wikipathways WP936 Polyol pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1307 Fatty acid beta-oxidation RO:HOM0000017 wikipathways WP143 Fatty acid beta-oxidation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1308 Endochondral ossification RO:HOM0000017 wikipathways WP1383 Endochondral ossification lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1308 Endochondral ossification RO:HOM0000017 wikipathways WP474 Endochondral ossification lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1309 Toll-like receptor signaling pathway RO:HOM0000017 wikipathways WP1384 Toll-like receptor signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1309 Toll-like receptor signaling pathway RO:HOM0000017 wikipathways WP75 Toll-like receptor signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP131 Peptide GPCRs RO:HOM0000017 wikipathways WP1338 Peptide GPCRs lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP131 Peptide GPCRs RO:HOM0000017 wikipathways WP24 Peptide GPCRs lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1312 S1P receptor signal transduction RO:HOM0000017 wikipathways WP1391 S1P receptor signal transduction lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1312 S1P receptor signal transduction RO:HOM0000017 wikipathways WP26 S1P receptor signal transduction lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1313 Insulin signaling RO:HOM0000017 wikipathways WP439 Insulin signaling lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1313 Insulin signaling RO:HOM0000017 wikipathways WP481 Insulin signaling lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1313 Insulin signaling RO:HOM0000017 wikipathways WP65 Insulin signaling lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1313 Insulin signaling RO:HOM0000017 wikipathways WP743 Insulin signaling lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1313 Insulin signaling RO:HOM0000017 wikipathways WP966 Insulin signaling lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1314 Heme biosynthesis RO:HOM0000017 wikipathways WP18 Heme biosynthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1314 Heme biosynthesis RO:HOM0000017 wikipathways WP269 Heme biosynthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1314 Heme biosynthesis RO:HOM0000017 wikipathways WP561 Heme biosynthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1314 Heme biosynthesis RO:HOM0000017 wikipathways WP848 Heme biosynthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1314 Heme biosynthesis RO:HOM0000017 wikipathways WP86 Heme biosynthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1314 Heme biosynthesis RO:HOM0000017 wikipathways WP967 Heme biosynthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1315 IL-5 signaling pathway RO:HOM0000017 wikipathways WP151 IL-5 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1315 IL-5 signaling pathway RO:HOM0000017 wikipathways WP44 IL-5 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1315 IL-5 signaling pathway RO:HOM0000017 wikipathways WP968 IL-5 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1316 Striated muscle contraction RO:HOM0000017 wikipathways WP316 Striated muscle contraction lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1316 Striated muscle contraction RO:HOM0000017 wikipathways WP969 Striated muscle contraction lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1317 Small ligand GPCRs RO:HOM0000017 wikipathways WP161 Small ligand GPCRs lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1317 Small ligand GPCRs RO:HOM0000017 wikipathways WP247 Small ligand GPCRs lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1317 Small ligand GPCRs RO:HOM0000017 wikipathways WP971 Small ligand GPCRs lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1318 Eicosanoid synthesis RO:HOM0000017 wikipathways WP167 Eicosanoid synthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1318 Eicosanoid synthesis RO:HOM0000017 wikipathways WP293 Eicosanoid synthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1318 Eicosanoid synthesis RO:HOM0000017 wikipathways WP318 Eicosanoid synthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1318 Eicosanoid synthesis RO:HOM0000017 wikipathways WP854 Eicosanoid synthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1318 Eicosanoid synthesis RO:HOM0000017 wikipathways WP972 Eicosanoid synthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1319 IL-2 signaling pathway RO:HOM0000017 wikipathways WP450 IL-2 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1319 IL-2 signaling pathway RO:HOM0000017 wikipathways WP49 IL-2 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1319 IL-2 signaling pathway RO:HOM0000017 wikipathways WP569 IL-2 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1319 IL-2 signaling pathway RO:HOM0000017 wikipathways WP973 IL-2 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP132 Cholesterol biosynthesis RO:HOM0000017 wikipathways WP1387 Cholesterol biosynthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP132 Cholesterol biosynthesis RO:HOM0000017 wikipathways WP461 Cholesterol biosynthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP132 Cholesterol biosynthesis RO:HOM0000017 wikipathways WP833 Cholesterol biosynthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP132 Cholesterol biosynthesis RO:HOM0000017 wikipathways WP952 Cholesterol biosynthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1320 IL-9 signaling pathway RO:HOM0000017 wikipathways WP22 IL-9 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1320 IL-9 signaling pathway RO:HOM0000017 wikipathways WP8 IL-9 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1320 IL-9 signaling pathway RO:HOM0000017 wikipathways WP974 IL-9 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1322 IL-6 signaling pathway RO:HOM0000017 wikipathways WP135 IL-6 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1322 IL-6 signaling pathway RO:HOM0000017 wikipathways WP364 IL-6 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1322 IL-6 signaling pathway RO:HOM0000017 wikipathways WP387 IL-6 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1322 IL-6 signaling pathway RO:HOM0000017 wikipathways WP976 IL-6 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1323 EGFR1 signaling pathway RO:HOM0000017 wikipathways WP5 EGFR1 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1323 EGFR1 signaling pathway RO:HOM0000017 wikipathways WP572 EGFR1 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1323 EGFR1 signaling pathway RO:HOM0000017 wikipathways WP752 EGFR1 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1323 EGFR1 signaling pathway RO:HOM0000017 wikipathways WP860 EGFR1 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1326 Nuclear receptors in lipid metabolism and toxicity RO:HOM0000017 wikipathways WP139 Nuclear receptors in lipid metabolism and toxicity lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1326 Nuclear receptors in lipid metabolism and toxicity RO:HOM0000017 wikipathways WP299 Nuclear receptors in lipid metabolism and toxicity lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1326 Nuclear receptors in lipid metabolism and toxicity RO:HOM0000017 wikipathways WP431 Nuclear receptors in lipid metabolism and toxicity lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1326 Nuclear receptors in lipid metabolism and toxicity RO:HOM0000017 wikipathways WP755 Nuclear receptors in lipid metabolism and toxicity lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1326 Nuclear receptors in lipid metabolism and toxicity RO:HOM0000017 wikipathways WP863 Nuclear receptors in lipid metabolism and toxicity lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1326 Nuclear receptors in lipid metabolism and toxicity RO:HOM0000017 wikipathways WP981 Nuclear receptors in lipid metabolism and toxicity lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1327 Hypertrophy model RO:HOM0000017 wikipathways WP202 Hypertrophy model lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1327 Hypertrophy model RO:HOM0000017 wikipathways WP442 Hypertrophy model lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1327 Hypertrophy model RO:HOM0000017 wikipathways WP516 Hypertrophy model lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1327 Hypertrophy model RO:HOM0000017 wikipathways WP982 Hypertrophy model lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP133 Fatty acid omega-oxidation RO:HOM0000017 wikipathways WP206 Fatty acid omega-oxidation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP133 Fatty acid omega-oxidation RO:HOM0000017 wikipathways WP33 Fatty acid omega-oxidation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP133 Fatty acid omega-oxidation RO:HOM0000017 wikipathways WP852 Fatty acid omega-oxidation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP133 Fatty acid omega-oxidation RO:HOM0000017 wikipathways WP970 Fatty acid omega-oxidation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1331 Adipogenesis RO:HOM0000017 wikipathways WP155 Adipogenesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1331 Adipogenesis RO:HOM0000017 wikipathways WP236 Adipogenesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1331 Adipogenesis RO:HOM0000017 wikipathways WP869 Adipogenesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1331 Adipogenesis RO:HOM0000017 wikipathways WP987 Adipogenesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1335 Oxidative phosphorylation RO:HOM0000017 wikipathways WP623 Oxidative phosphorylation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1335 Oxidative phosphorylation RO:HOM0000017 wikipathways WP994 Oxidative phosphorylation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1336 EPO receptor signaling RO:HOM0000017 wikipathways WP581 EPO receptor signaling lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1336 EPO receptor signaling RO:HOM0000017 wikipathways WP768 EPO receptor signaling lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1336 EPO receptor signaling RO:HOM0000017 wikipathways WP878 EPO receptor signaling lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1336 EPO receptor signaling RO:HOM0000017 wikipathways WP996 EPO receptor signaling lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1337 MAPK signaling pathway RO:HOM0000017 wikipathways WP358 MAPK signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1337 MAPK signaling pathway RO:HOM0000017 wikipathways WP382 MAPK signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1337 MAPK signaling pathway RO:HOM0000017 wikipathways WP493 Mapk signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1337 MAPK signaling pathway RO:HOM0000017 wikipathways WP510 MAPK signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1337 MAPK signaling pathway RO:HOM0000017 wikipathways WP769 MAPK signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1337 MAPK signaling pathway RO:HOM0000017 wikipathways WP880 MAPK signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1337 MAPK signaling pathway RO:HOM0000017 wikipathways WP998 MAPK signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1338 Peptide GPCRs RO:HOM0000017 wikipathways WP24 Peptide GPCRs lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1339 Electron transport chain RO:HOM0000017 wikipathways WP295 Electron transport chain lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1339 Electron transport chain RO:HOM0000017 wikipathways WP542 Electron transport chain lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1339 Electron transport chain RO:HOM0000017 wikipathways WP59 Electron transport chain lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1341 Kit receptor signaling pathway RO:HOM0000017 wikipathways WP147 Kit receptor signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1341 Kit receptor signaling pathway RO:HOM0000017 wikipathways WP304 Kit receptor signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1341 Kit receptor signaling pathway RO:HOM0000017 wikipathways WP407 Kit receptor signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1341 Kit receptor signaling pathway RO:HOM0000017 wikipathways WP774 Kit receptor signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1341 Kit receptor signaling pathway RO:HOM0000017 wikipathways WP886 Kit receptor signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1342 Osteoclast signaling RO:HOM0000017 wikipathways WP454 Osteoclast signaling lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1342 Osteoclast signaling RO:HOM0000017 wikipathways WP890 Osteoclast signaling lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1343 mapk cascade RO:HOM0000017 wikipathways WP251 Mapk cascade lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1343 mapk cascade RO:HOM0000017 wikipathways WP422 MAPK cascade lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1343 mapk cascade RO:HOM0000017 wikipathways WP446 Mapk cascade lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1344 Wnt Signaling Pathway and Pluripotency RO:HOM0000017 wikipathways WP399 Wnt signaling pathway and pluripotency lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1344 Wnt Signaling Pathway and Pluripotency RO:HOM0000017 wikipathways WP723 Wnt signaling pathway and pluripotency lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1344 Wnt Signaling Pathway and Pluripotency RO:HOM0000017 wikipathways WP779 Wnt signaling pathway and pluripotency lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1346 IL-7 signaling pathway RO:HOM0000017 wikipathways WP205 IL-7 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1346 IL-7 signaling pathway RO:HOM0000017 wikipathways WP297 IL-7 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1349 Wnt Signaling Pathway RO:HOM0000017 wikipathways WP363 Wnt signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1349 Wnt Signaling Pathway RO:HOM0000017 wikipathways WP403 Wnt signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1349 Wnt Signaling Pathway RO:HOM0000017 wikipathways WP785 Wnt signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1349 Wnt Signaling Pathway RO:HOM0000017 wikipathways WP899 Wnt signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1349 Wnt Signaling Pathway RO:HOM0000017 wikipathways WP97 Wnt signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP135 IL-6 signaling pathway RO:HOM0000017 wikipathways WP364 IL-6 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP135 IL-6 signaling pathway RO:HOM0000017 wikipathways WP387 IL-6 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP135 IL-6 signaling pathway RO:HOM0000017 wikipathways WP976 IL-6 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1351 Apoptosis RO:HOM0000017 wikipathways WP254 Apoptosis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1351 Apoptosis RO:HOM0000017 wikipathways WP787 Apoptosis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1352 Fatty acid biosynthesis RO:HOM0000017 wikipathways WP336 Fatty acid biosynthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1352 Fatty acid biosynthesis RO:HOM0000017 wikipathways WP357 Fatty acid biosynthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1352 Fatty acid biosynthesis RO:HOM0000017 wikipathways WP38 Fatty acid biosynthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1352 Fatty acid biosynthesis RO:HOM0000017 wikipathways WP504 Fatty acid biosynthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1352 Fatty acid biosynthesis RO:HOM0000017 wikipathways WP568 Fatty acid biosynthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1355 One-carbon metabolism RO:HOM0000017 wikipathways WP241 One-carbon metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1355 One-carbon metabolism RO:HOM0000017 wikipathways WP435 One-carbon metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1355 One-carbon metabolism RO:HOM0000017 wikipathways WP796 One-carbon metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1355 One-carbon metabolism RO:HOM0000017 wikipathways WP909 One-carbon metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1356 Glycolysis and gluconeogenesis RO:HOM0000017 wikipathways WP144 Glycolysis and gluconeogenesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1356 Glycolysis and gluconeogenesis RO:HOM0000017 wikipathways WP157 Glycolysis and gluconeogenesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1356 Glycolysis and gluconeogenesis RO:HOM0000017 wikipathways WP515 Glycolysis and gluconeogenesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1356 Glycolysis and gluconeogenesis RO:HOM0000017 wikipathways WP534 Glycolysis and gluconeogenesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1356 Glycolysis and gluconeogenesis RO:HOM0000017 wikipathways WP96 Glycolysis and Gluconeogenesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1359 IL-3 signaling pathway RO:HOM0000017 wikipathways WP286 IL-3 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1359 IL-3 signaling pathway RO:HOM0000017 wikipathways WP319 IL-3 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1359 IL-3 signaling pathway RO:HOM0000017 wikipathways WP373 IL-3 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1360 Nod-like receptor (NLR) signaling pathway RO:HOM0000017 wikipathways WP288 Nod-like receptor (NLR) signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1360 Nod-like receptor (NLR) signaling pathway RO:HOM0000017 wikipathways WP799 Nod-like receptor (NLR) signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1360 Nod-like receptor (NLR) signaling pathway RO:HOM0000017 wikipathways WP914 Nod-like receptor (NLR) signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1363 p38 mapk signaling pathway RO:HOM0000017 wikipathways WP294 p38 Mapk signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1363 p38 mapk signaling pathway RO:HOM0000017 wikipathways WP350 p38 Mapk signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1363 p38 mapk signaling pathway RO:HOM0000017 wikipathways WP400 p38 MAPK signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1363 p38 mapk signaling pathway RO:HOM0000017 wikipathways WP803 p38 MAPK signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1363 p38 mapk signaling pathway RO:HOM0000017 wikipathways WP918 p38 MAPK signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1365 Calcium regulation in cardiac cells RO:HOM0000017 wikipathways WP326 Calcium regulation in cardiac cells lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1365 Calcium regulation in cardiac cells RO:HOM0000017 wikipathways WP536 Calcium regulation in cardiac cells lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1365 Calcium regulation in cardiac cells RO:HOM0000017 wikipathways WP553 Calcium regulation in cardiac cells lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1365 Calcium regulation in cardiac cells RO:HOM0000017 wikipathways WP808 Calcium regulation in cardiac cells lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1365 Calcium regulation in cardiac cells RO:HOM0000017 wikipathways WP923 Calcium regulation in cardiac cells lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1366 ErbB signaling pathway RO:HOM0000017 wikipathways WP673 ErbB signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1369 TNF-alpha NF-kB signaling pathway RO:HOM0000017 wikipathways WP246 TNF-alpha NF-kB signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1369 TNF-alpha NF-kB signaling pathway RO:HOM0000017 wikipathways WP457 TNF-alpha NF-kB signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1371 G protein signaling pathways RO:HOM0000017 wikipathways WP232 G protein signaling pathways lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1371 G protein signaling pathways RO:HOM0000017 wikipathways WP35 G protein signaling pathways lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1371 G protein signaling pathways RO:HOM0000017 wikipathways WP73 G protein signaling pathways lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1371 G protein signaling pathways RO:HOM0000017 wikipathways WP813 G protein signaling pathways lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1371 G protein signaling pathways RO:HOM0000017 wikipathways WP931 G protein signaling pathways lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1372 Oxidative stress response RO:HOM0000017 wikipathways WP173 Oxidative stress response lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1372 Oxidative stress response RO:HOM0000017 wikipathways WP408 Oxidative stress response lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1372 Oxidative stress response RO:HOM0000017 wikipathways WP412 Oxidative stress response lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1373 GPCRs, class C metabotropic glutamate, pheromone RO:HOM0000017 wikipathways WP327 GPCRs, class C metabotropic glutamate, pheromone lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1373 GPCRs, class C metabotropic glutamate, pheromone RO:HOM0000017 wikipathways WP42 GPCRs, class C metabotropic glutamate, pheromone lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1373 GPCRs, class C metabotropic glutamate, pheromone RO:HOM0000017 wikipathways WP501 GPCRs, class C metabotropic glutamate, pheromone lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1374 Id signaling pathway RO:HOM0000017 wikipathways WP397 Id signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1374 Id signaling pathway RO:HOM0000017 wikipathways WP512 Id signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1374 Id signaling pathway RO:HOM0000017 wikipathways WP53 ID signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1374 Id signaling pathway RO:HOM0000017 wikipathways WP934 Id signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1375 Polyol pathway RO:HOM0000017 wikipathways WP690 Polyol pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1375 Polyol pathway RO:HOM0000017 wikipathways WP936 Polyol pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1376 IL-4 signaling pathway RO:HOM0000017 wikipathways WP395 IL-4 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP138 Androgen receptor signaling pathway RO:HOM0000017 wikipathways WP897 Androgen receptor signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1380 Regulation of actin cytoskeleton RO:HOM0000017 wikipathways WP351 Regulation of actin cytoskeleton lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1380 Regulation of actin cytoskeleton RO:HOM0000017 wikipathways WP51 Regulation of actin cytoskeleton lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1380 Regulation of actin cytoskeleton RO:HOM0000017 wikipathways WP523 Regulation of actin cytoskeleton lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1380 Regulation of actin cytoskeleton RO:HOM0000017 wikipathways WP824 Regulation of actin cytoskeleton lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1381 G13 signaling pathway RO:HOM0000017 wikipathways WP298 G13 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1381 G13 signaling pathway RO:HOM0000017 wikipathways WP520 G13 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1381 G13 signaling pathway RO:HOM0000017 wikipathways WP524 G13 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1381 G13 signaling pathway RO:HOM0000017 wikipathways WP826 G13 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1381 G13 signaling pathway RO:HOM0000017 wikipathways WP945 G13 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1382 Delta-Notch signaling pathway RO:HOM0000017 wikipathways WP199 Delta-Notch signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1382 Delta-Notch signaling pathway RO:HOM0000017 wikipathways WP265 Delta-Notch signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1382 Delta-Notch signaling pathway RO:HOM0000017 wikipathways WP827 Delta-Notch signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1382 Delta-Notch signaling pathway RO:HOM0000017 wikipathways WP946 Delta-Notch signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1383 Endochondral ossification RO:HOM0000017 wikipathways WP474 Endochondral ossification lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1384 Toll-like receptor signaling pathway RO:HOM0000017 wikipathways WP75 Toll-like receptor signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1386 Integrin-mediated cell adhesion RO:HOM0000017 wikipathways WP185 Integrin-mediated cell adhesion lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1386 Integrin-mediated cell adhesion RO:HOM0000017 wikipathways WP6 Integrin-mediated cell adhesion lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1386 Integrin-mediated cell adhesion RO:HOM0000017 wikipathways WP74 Integrin-mediated cell adhesion lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1386 Integrin-mediated cell adhesion RO:HOM0000017 wikipathways WP832 Integrin-mediated cell adhesion lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1386 Integrin-mediated cell adhesion RO:HOM0000017 wikipathways WP951 Integrin-mediated cell adhesion lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1387 Cholesterol biosynthesis RO:HOM0000017 wikipathways WP461 Cholesterol biosynthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1387 Cholesterol biosynthesis RO:HOM0000017 wikipathways WP833 Cholesterol biosynthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1387 Cholesterol biosynthesis RO:HOM0000017 wikipathways WP952 Cholesterol biosynthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1388 Glycogen metabolism RO:HOM0000017 wikipathways WP160 Glycogen metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1388 Glycogen metabolism RO:HOM0000017 wikipathways WP317 Glycogen metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1388 Glycogen metabolism RO:HOM0000017 wikipathways WP436 Glycogen metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1388 Glycogen metabolism RO:HOM0000017 wikipathways WP835 Glycogen metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1388 Glycogen metabolism RO:HOM0000017 wikipathways WP955 Glycogen metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1389 Monoamine GPCRs RO:HOM0000017 wikipathways WP276 Monoamine GPCRs lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1389 Monoamine GPCRs RO:HOM0000017 wikipathways WP570 Monoamine GPCRs lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1389 Monoamine GPCRs RO:HOM0000017 wikipathways WP58 Monoamine GPCRs lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1389 Monoamine GPCRs RO:HOM0000017 wikipathways WP839 Monoamine GPCRs lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1389 Monoamine GPCRs RO:HOM0000017 wikipathways WP957 Monoamine GPCRs lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP139 Nuclear receptors in lipid metabolism and toxicity RO:HOM0000017 wikipathways WP299 Nuclear receptors in lipid metabolism and toxicity lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP139 Nuclear receptors in lipid metabolism and toxicity RO:HOM0000017 wikipathways WP431 Nuclear receptors in lipid metabolism and toxicity lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP139 Nuclear receptors in lipid metabolism and toxicity RO:HOM0000017 wikipathways WP755 Nuclear receptors in lipid metabolism and toxicity lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP139 Nuclear receptors in lipid metabolism and toxicity RO:HOM0000017 wikipathways WP863 Nuclear receptors in lipid metabolism and toxicity lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP139 Nuclear receptors in lipid metabolism and toxicity RO:HOM0000017 wikipathways WP981 Nuclear receptors in lipid metabolism and toxicity lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1391 S1P receptor signal transduction RO:HOM0000017 wikipathways WP26 S1P receptor signal transduction lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1392 Apoptosis modulation by HSP70 RO:HOM0000017 wikipathways WP166 Apoptosis modulation by HSP70 lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1392 Apoptosis modulation by HSP70 RO:HOM0000017 wikipathways WP384 Apoptosis modulation by HSP70 lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1392 Apoptosis modulation by HSP70 RO:HOM0000017 wikipathways WP487 Apoptosis modulation by HSP70 lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1392 Apoptosis modulation by HSP70 RO:HOM0000017 wikipathways WP963 Apoptosis modulation by HSP70 lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1393 Cell cycle RO:HOM0000017 wikipathways WP179 Cell cycle lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1393 Cell cycle RO:HOM0000017 wikipathways WP844 Cell cycle lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1393 Cell cycle RO:HOM0000017 wikipathways WP964 Cell cycle lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP140 Myometrial relaxation and contraction pathways RO:HOM0000017 wikipathways WP289 Myometrial relaxation and contraction pathways lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP140 Myometrial relaxation and contraction pathways RO:HOM0000017 wikipathways WP3276 Myometrial relaxation and contraction pathways lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP140 Myometrial relaxation and contraction pathways RO:HOM0000017 wikipathways WP385 Myometrial relaxation and contraction pathways lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP142 mRNA processing RO:HOM0000017 wikipathways WP310 mRNA processing lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP142 mRNA processing RO:HOM0000017 wikipathways WP411 mRNA processing lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP142 mRNA processing RO:HOM0000017 wikipathways WP467 mRNA processing lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP142 mRNA processing RO:HOM0000017 wikipathways WP529 mRNA processing lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP142 mRNA processing RO:HOM0000017 wikipathways WP793 mRNA processing lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP142 mRNA processing RO:HOM0000017 wikipathways WP906 mRNA Processing lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1423 Ganglio sphingolipid metabolism RO:HOM0000017 wikipathways WP3219 Ganglio sphingolipid metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1424 Globo sphingolipid metabolism RO:HOM0000017 wikipathways WP3278 Globo sphingolipid metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP143 Fatty acid beta-oxidation RO:HOM0000017 wikipathways WP506 Fatty acid beta-oxidation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1434 Osteopontin signaling RO:HOM0000017 wikipathways WP3156 Osteopontin signaling lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1438 Influenza A virus infection RO:HOM0000017 wikipathways WP3214 Influenza A virus infection lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP144 Glycolysis and gluconeogenesis RO:HOM0000017 wikipathways WP157 Glycolysis and gluconeogenesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP144 Glycolysis and gluconeogenesis RO:HOM0000017 wikipathways WP515 Glycolysis and gluconeogenesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP144 Glycolysis and gluconeogenesis RO:HOM0000017 wikipathways WP534 Glycolysis and gluconeogenesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP144 Glycolysis and gluconeogenesis RO:HOM0000017 wikipathways WP96 Glycolysis and Gluconeogenesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1449 Regulation of toll-like receptor signaling pathway RO:HOM0000017 wikipathways WP3132 Regulation of toll-like receptor signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP145 Statin pathway RO:HOM0000017 wikipathways WP921 Statin pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1455 Serotonin transporter activity RO:HOM0000017 wikipathways WP3138 Serotonin transporter activity lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP146 Nucleotide metabolism RO:HOM0000017 wikipathways WP321 Nucleotide metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP146 Nucleotide metabolism RO:HOM0000017 wikipathways WP3211 Nucleotide metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP146 Nucleotide metabolism RO:HOM0000017 wikipathways WP404 Nucleotide metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP146 Nucleotide metabolism RO:HOM0000017 wikipathways WP87 Nucleotide metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP147 Kit receptor signaling pathway RO:HOM0000017 wikipathways WP304 Kit receptor signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP147 Kit receptor signaling pathway RO:HOM0000017 wikipathways WP407 Kit receptor signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP147 Kit receptor signaling pathway RO:HOM0000017 wikipathways WP774 Kit receptor signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP147 Kit receptor signaling pathway RO:HOM0000017 wikipathways WP886 Kit receptor signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1471 Target of rapamycin (TOR) signaling RO:HOM0000017 wikipathways WP3256 Target of rapamycin (TOR) signaling lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP149 Translation factors RO:HOM0000017 wikipathways WP307 Translation factors lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP149 Translation factors RO:HOM0000017 wikipathways WP32 Translation factors lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP149 Translation factors RO:HOM0000017 wikipathways WP537 Translation factors lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP149 Translation factors RO:HOM0000017 wikipathways WP965 Translation factors lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1495 Glycine metabolism RO:HOM0000017 wikipathways WP3142 Glycine metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1496 Oxidative damage response RO:HOM0000017 wikipathways WP3941 Oxidative damage response lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1498 Dopaminergic neurogenesis RO:HOM0000017 wikipathways WP2855 Dopaminergic neurogenesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1498 Dopaminergic neurogenesis RO:HOM0000017 wikipathways WP3196 Dopaminergic neurogenesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP15 Selenium micronutrient network RO:HOM0000017 wikipathways WP3257 Selenium micronutrient network lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP150 DNA replication RO:HOM0000017 wikipathways WP192 DNA replication lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP150 DNA replication RO:HOM0000017 wikipathways WP451 DNA replication lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP150 DNA replication RO:HOM0000017 wikipathways WP466 DNA replication lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP150 DNA replication RO:HOM0000017 wikipathways WP484 DNA replication lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP150 DNA replication RO:HOM0000017 wikipathways WP565 DNA replication lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP150 DNA replication RO:HOM0000017 wikipathways WP757 DNA replication lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP150 DNA replication RO:HOM0000017 wikipathways WP865 DNA replication lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP150 DNA replication RO:HOM0000017 wikipathways WP983 DNA replication lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP151 IL-5 signaling pathway RO:HOM0000017 wikipathways WP44 IL-5 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP151 IL-5 signaling pathway RO:HOM0000017 wikipathways WP968 IL-5 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1528 Physiological and pathological hypertrophy of the heart RO:HOM0000017 wikipathways WP3121 Physiological and pathological hypertrophy of the heart lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1531 Vitamin D metabolism RO:HOM0000017 wikipathways WP3162 Vitamin D metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1533 Vitamin B12 metabolism RO:HOM0000017 wikipathways WP3193 Vitamin B12 metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1539 Angiogenesis RO:HOM0000017 wikipathways WP3184 Angiogenesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP154 Biogenic amine synthesis RO:HOM0000017 wikipathways WP3168 Biogenic amine synthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP154 Biogenic amine synthesis RO:HOM0000017 wikipathways WP323 Biogenic amine synthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP154 Biogenic amine synthesis RO:HOM0000017 wikipathways WP522 Biogenic amine synthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP154 Biogenic amine synthesis RO:HOM0000017 wikipathways WP550 Biogenic amine synthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1544 MicroRNAs in cardiomyocyte hypertrophy RO:HOM0000017 wikipathways WP1560 MicroRNAs in cardiomyocyte hypertrophy lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP155 Adipogenesis RO:HOM0000017 wikipathways WP236 Adipogenesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP155 Adipogenesis RO:HOM0000017 wikipathways WP869 Adipogenesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP155 Adipogenesis RO:HOM0000017 wikipathways WP987 Adipogenesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP157 Glycolysis and gluconeogenesis RO:HOM0000017 wikipathways WP515 Glycolysis and gluconeogenesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP157 Glycolysis and gluconeogenesis RO:HOM0000017 wikipathways WP534 Glycolysis and gluconeogenesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP157 Glycolysis and gluconeogenesis RO:HOM0000017 wikipathways WP96 Glycolysis and Gluconeogenesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1577 Amino acid conjugation of benzoic acid RO:HOM0000017 wikipathways WP521 Amino acid conjugation of benzoic acid lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP158 Proteasome degradation RO:HOM0000017 wikipathways WP183 Proteasome degradation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP158 Proteasome degradation RO:HOM0000017 wikipathways WP281 Proteasome degradation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP158 Proteasome degradation RO:HOM0000017 wikipathways WP302 Proteasome degradation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP158 Proteasome degradation RO:HOM0000017 wikipathways WP470 Proteasome degradation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP158 Proteasome degradation RO:HOM0000017 wikipathways WP519 Proteasome degradation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1584 Type II diabetes mellitus RO:HOM0000017 wikipathways WP3117 Type II diabetes mellitus lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1591 Heart development RO:HOM0000017 wikipathways WP2067 Heart development lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1591 Heart development RO:HOM0000017 wikipathways WP3280 Heart development lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP160 Glycogen metabolism RO:HOM0000017 wikipathways WP317 Glycogen metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP160 Glycogen metabolism RO:HOM0000017 wikipathways WP436 Glycogen metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP160 Glycogen metabolism RO:HOM0000017 wikipathways WP835 Glycogen metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP160 Glycogen metabolism RO:HOM0000017 wikipathways WP955 Glycogen metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1601 Fluoropyrimidine activity RO:HOM0000017 wikipathways WP3275 Fluoropyrimidine activity lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1604 Codeine and morphine metabolism RO:HOM0000017 wikipathways WP3270 Codeine and morphine metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP161 Small ligand GPCRs RO:HOM0000017 wikipathways WP247 Small ligand GPCRs lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP161 Small ligand GPCRs RO:HOM0000017 wikipathways WP971 Small ligand GPCRs lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP163 Cytoplasmic ribosomal proteins RO:HOM0000017 wikipathways WP210 Cytoplasmic ribosomal proteins lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP163 Cytoplasmic ribosomal proteins RO:HOM0000017 wikipathways WP30 Cytoplasmic ribosomal proteins lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP163 Cytoplasmic ribosomal proteins RO:HOM0000017 wikipathways WP324 Cytoplasmic ribosomal proteins lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP163 Cytoplasmic ribosomal proteins RO:HOM0000017 wikipathways WP477 Cytoplasmic ribosomal proteins lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP163 Cytoplasmic ribosomal proteins RO:HOM0000017 wikipathways WP540 Cytoplasmic ribosomal proteins lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP164 Glutathione metabolism RO:HOM0000017 wikipathways WP3207 Glutathione metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP164 Glutathione metabolism RO:HOM0000017 wikipathways WP469 Glutathione metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP166 Apoptosis modulation by HSP70 RO:HOM0000017 wikipathways WP384 Apoptosis modulation by HSP70 lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP166 Apoptosis modulation by HSP70 RO:HOM0000017 wikipathways WP487 Apoptosis modulation by HSP70 lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP166 Apoptosis modulation by HSP70 RO:HOM0000017 wikipathways WP963 Apoptosis modulation by HSP70 lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP167 Eicosanoid synthesis RO:HOM0000017 wikipathways WP293 Eicosanoid synthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP167 Eicosanoid synthesis RO:HOM0000017 wikipathways WP318 Eicosanoid synthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP167 Eicosanoid synthesis RO:HOM0000017 wikipathways WP854 Eicosanoid synthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP167 Eicosanoid synthesis RO:HOM0000017 wikipathways WP972 Eicosanoid synthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP170 Nuclear receptors RO:HOM0000017 wikipathways WP217 Nuclear receptors lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP170 Nuclear receptors RO:HOM0000017 wikipathways WP509 Nuclear Receptors lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP170 Nuclear receptors RO:HOM0000017 wikipathways WP831 Nuclear receptors lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP170 Nuclear receptors RO:HOM0000017 wikipathways WP950 Nuclear receptors lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP173 Oxidative stress response RO:HOM0000017 wikipathways WP408 Oxidative stress response lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP173 Oxidative stress response RO:HOM0000017 wikipathways WP412 Oxidative stress response lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1742 TP53 network RO:HOM0000017 wikipathways WP3239 TP53 network lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP175 Acetylcholine synthesis RO:HOM0000017 wikipathways WP264 Acetylcholine synthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP175 Acetylcholine synthesis RO:HOM0000017 wikipathways WP360 Acetylcholine synthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP175 Acetylcholine synthesis RO:HOM0000017 wikipathways WP476 Acetylcholine synthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP175 Acetylcholine synthesis RO:HOM0000017 wikipathways WP528 Acetylcholine synthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP177 Eukaryotic transcription initiation RO:HOM0000017 wikipathways WP405 Eukaryotic transcription initiation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP177 Eukaryotic transcription initiation RO:HOM0000017 wikipathways WP425 Eukaryotic transcription initiation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP177 Eukaryotic transcription initiation RO:HOM0000017 wikipathways WP491 Eukaryotic transcription initiation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP177 Eukaryotic transcription initiation RO:HOM0000017 wikipathways WP518 Eukaryotic transcription initiation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP177 Eukaryotic transcription initiation RO:HOM0000017 wikipathways WP567 Eukaryotic transcription initiation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP177 Eukaryotic transcription initiation RO:HOM0000017 wikipathways WP830 Eukaryotic transcription initiation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP177 Eukaryotic transcription initiation RO:HOM0000017 wikipathways WP948 Eukaryotic transcription initiation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1770 One-carbon metabolism and related pathways RO:HOM0000017 wikipathways WP3940 One-carbon metabolism and related pathways lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1772 Apoptosis modulation and signaling RO:HOM0000017 wikipathways WP3148 Apoptosis modulation and signaling lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP179 Cell cycle RO:HOM0000017 wikipathways WP844 Cell cycle lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP179 Cell cycle RO:HOM0000017 wikipathways WP964 Cell cycle lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP18 Heme biosynthesis RO:HOM0000017 wikipathways WP269 Heme biosynthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP18 Heme biosynthesis RO:HOM0000017 wikipathways WP561 Heme biosynthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP18 Heme biosynthesis RO:HOM0000017 wikipathways WP848 Heme biosynthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP18 Heme biosynthesis RO:HOM0000017 wikipathways WP86 Heme biosynthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP18 Heme biosynthesis RO:HOM0000017 wikipathways WP967 Heme biosynthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP183 Proteasome degradation RO:HOM0000017 wikipathways WP281 Proteasome degradation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP183 Proteasome degradation RO:HOM0000017 wikipathways WP302 Proteasome degradation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP183 Proteasome degradation RO:HOM0000017 wikipathways WP470 Proteasome degradation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP183 Proteasome degradation RO:HOM0000017 wikipathways WP519 Proteasome degradation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP185 Integrin-mediated cell adhesion RO:HOM0000017 wikipathways WP6 Integrin-mediated cell adhesion lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP185 Integrin-mediated cell adhesion RO:HOM0000017 wikipathways WP74 Integrin-mediated cell adhesion lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP185 Integrin-mediated cell adhesion RO:HOM0000017 wikipathways WP832 Integrin-mediated cell adhesion lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP185 Integrin-mediated cell adhesion RO:HOM0000017 wikipathways WP951 Integrin-mediated cell adhesion lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP186 Homologous recombination RO:HOM0000017 wikipathways WP804 Homologous recombination lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP186 Homologous recombination RO:HOM0000017 wikipathways WP917 Homologous recombination lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP188 Focal adhesion RO:HOM0000017 wikipathways WP306 Focal adhesion lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP188 Focal adhesion RO:HOM0000017 wikipathways WP3197 Focal adhesion lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP188 Focal adhesion RO:HOM0000017 wikipathways WP85 Focal adhesion lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP189 GPCRs, class A rhodopsin-like RO:HOM0000017 wikipathways WP455 GPCRs, class A rhodopsin-like lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP189 GPCRs, class A rhodopsin-like RO:HOM0000017 wikipathways WP473 GPCRs, class A rhodopsin-like lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP19 TCA cycle RO:HOM0000017 wikipathways WP347 TCA cycle lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP19 TCA cycle RO:HOM0000017 wikipathways WP434 TCA cycle lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP19 TCA cycle RO:HOM0000017 wikipathways WP490 TCA cycle lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP19 TCA cycle RO:HOM0000017 wikipathways WP76 TCA cycle lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP19 TCA cycle RO:HOM0000017 wikipathways WP999 TCA cycle lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP192 DNA replication RO:HOM0000017 wikipathways WP451 DNA replication lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP192 DNA replication RO:HOM0000017 wikipathways WP466 DNA replication lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP192 DNA replication RO:HOM0000017 wikipathways WP484 DNA replication lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP192 DNA replication RO:HOM0000017 wikipathways WP565 DNA replication lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP192 DNA replication RO:HOM0000017 wikipathways WP757 DNA replication lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP192 DNA replication RO:HOM0000017 wikipathways WP865 DNA replication lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP192 DNA replication RO:HOM0000017 wikipathways WP983 DNA replication lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP193 Hepatocyte growth factor receptor signaling RO:HOM0000017 wikipathways WP313 Hepatocyte growth factor receptor signaling lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP193 Hepatocyte growth factor receptor signaling RO:HOM0000017 wikipathways WP444 Hepatocyte growth factor receptor signaling lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP193 Hepatocyte growth factor receptor signaling RO:HOM0000017 wikipathways WP810 Hepatocyte growth factor receptor signaling lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP193 Hepatocyte growth factor receptor signaling RO:HOM0000017 wikipathways WP927 Hepatocyte growth factor receptor signaling lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP193 Hepatocyte growth factor receptor signaling RO:HOM0000017 wikipathways WP94 Hepatocyte growth factor receptor signaling lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1941 Peroxisomal beta-oxidation of tetracosanoyl-CoA RO:HOM0000017 wikipathways WP3146 Peroxisomal beta-oxidation of tetracosanoyl-CoA lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1946 Cori cycle RO:HOM0000017 wikipathways WP3114 Cori cycle lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP195 IL-1 signaling pathway RO:HOM0000017 wikipathways WP3271 IL-1 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP195 IL-1 signaling pathway RO:HOM0000017 wikipathways WP355 IL-1 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP195 IL-1 signaling pathway RO:HOM0000017 wikipathways WP37 IL-1 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1971 Integrated cancer pathway RO:HOM0000017 wikipathways WP3244 Integrated cancer pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1981 Thyroxine (thyroid hormone) production RO:HOM0000017 wikipathways WP3237 Thyroxine (thyroid hormone) production lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1983 Splicing factor NOVA regulated synaptic proteins RO:HOM0000017 wikipathways WP4148 Splicing factor NOVA regulated synaptic proteins lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1984 Integrated breast cancer pathway RO:HOM0000017 wikipathways WP3260 Integrated breast cancer pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP199 Delta-Notch signaling pathway RO:HOM0000017 wikipathways WP265 Delta-Notch signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP199 Delta-Notch signaling pathway RO:HOM0000017 wikipathways WP827 Delta-Notch signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP199 Delta-Notch signaling pathway RO:HOM0000017 wikipathways WP946 Delta-Notch signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP1995 Effects of nitric oxide RO:HOM0000017 wikipathways WP3182 Effects of nitric oxide lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP200 Complement activation, classical pathway RO:HOM0000017 wikipathways WP977 Complement activation, classical pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP2007 Iron metabolism in placenta RO:HOM0000017 wikipathways WP2908 Iron metabolism in placenta lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP201 Ptf1a related regulatory pathway RO:HOM0000017 wikipathways WP4147 PTF1A related regulatory pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP2011 SREBF and miR33 in cholesterol and lipid homeostasis RO:HOM0000017 wikipathways WP2084 SREBF and miR33 in cholesterol and lipid homeostasis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP2011 SREBF and miR33 in cholesterol and lipid homeostasis RO:HOM0000017 wikipathways WP3137 SREBF and miR33 in cholesterol and lipid homeostasis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP202 Hypertrophy model RO:HOM0000017 wikipathways WP442 Hypertrophy model lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP202 Hypertrophy model RO:HOM0000017 wikipathways WP516 Hypertrophy model lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP202 Hypertrophy model RO:HOM0000017 wikipathways WP982 Hypertrophy model lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP2029 Cell differentiation - index RO:HOM0000017 wikipathways WP3202 Cell differentiation - index lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP2032 Thyroid stimulating hormone (TSH) signaling pathway RO:HOM0000017 wikipathways WP3227 Thyroid stimulating hormone (TSH) signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP2034 Leptin signaling pathway RO:HOM0000017 wikipathways WP3274 Leptin signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP2038 Microtubule cytoskeleton regulation RO:HOM0000017 wikipathways WP3177 Microtubule cytoskeleton regulation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP205 IL-7 signaling pathway RO:HOM0000017 wikipathways WP297 IL-7 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP206 Fatty acid omega-oxidation RO:HOM0000017 wikipathways WP33 Fatty acid omega-oxidation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP206 Fatty acid omega-oxidation RO:HOM0000017 wikipathways WP852 Fatty acid omega-oxidation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP206 Fatty acid omega-oxidation RO:HOM0000017 wikipathways WP970 Fatty acid omega-oxidation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP2064 Neural crest differentiation RO:HOM0000017 wikipathways WP2074 Neural crest differentiation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP2064 Neural crest differentiation RO:HOM0000017 wikipathways WP3273 Neural crest differentiation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP2067 Heart development RO:HOM0000017 wikipathways WP3280 Heart development lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP207 Nucleotide GPCRs RO:HOM0000017 wikipathways WP502 Nucleotide GPCRs lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP207 Nucleotide GPCRs RO:HOM0000017 wikipathways WP80 Nucleotide GPCRs lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP2074 Neural crest differentiation RO:HOM0000017 wikipathways WP3273 Neural crest differentiation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP2075 Alzheimer's disease RO:HOM0000017 wikipathways WP5124 Alzheimer's disease lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP2079 Serotonin receptor 2 and STAT3 signaling RO:HOM0000017 wikipathways WP3115 Serotonin receptor 2 and STAT3 signaling lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP2079 Serotonin receptor 2 and STAT3 signaling RO:HOM0000017 wikipathways WP733 Serotonin receptor 2 and STAT3 signaling lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP208 Notch signaling pathway RO:HOM0000017 wikipathways WP29 Notch signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP208 Notch signaling pathway RO:HOM0000017 wikipathways WP517 Notch signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP208 Notch signaling pathway RO:HOM0000017 wikipathways WP798 Notch signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP208 Notch signaling pathway RO:HOM0000017 wikipathways WP912 Notch signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP2084 SREBF and miR33 in cholesterol and lipid homeostasis RO:HOM0000017 wikipathways WP3137 SREBF and miR33 in cholesterol and lipid homeostasis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP210 Cytoplasmic ribosomal proteins RO:HOM0000017 wikipathways WP30 Cytoplasmic ribosomal proteins lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP210 Cytoplasmic ribosomal proteins RO:HOM0000017 wikipathways WP324 Cytoplasmic ribosomal proteins lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP210 Cytoplasmic ribosomal proteins RO:HOM0000017 wikipathways WP477 Cytoplasmic ribosomal proteins lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP210 Cytoplasmic ribosomal proteins RO:HOM0000017 wikipathways WP540 Cytoplasmic ribosomal proteins lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP2112 IL-17 signaling pathway RO:HOM0000017 wikipathways WP3176 IL-17 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP2113 Type III interferon signaling RO:HOM0000017 wikipathways WP3173 Type III interferon signaling lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP2118 Arrhythmogenic right ventricular cardiomyopathy RO:HOM0000017 wikipathways WP3195 Arrhythmogenic right ventricular cardiomyopathy lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP212 Triacylglyceride synthesis RO:HOM0000017 wikipathways WP325 Triacylglyceride synthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP212 Triacylglyceride synthesis RO:HOM0000017 wikipathways WP386 Triacylglyceride synthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP2132 Serotonin and anxiety RO:HOM0000017 wikipathways WP2141 Serotonin and anxiety lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP2132 Serotonin and anxiety RO:HOM0000017 wikipathways WP3947 Serotonin and anxiety lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP2140 Serotonin and anxiety-related events RO:HOM0000017 wikipathways WP3944 Serotonin and anxiety-related events lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP2141 Serotonin and anxiety RO:HOM0000017 wikipathways WP3947 Serotonin and anxiety lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP217 Nuclear receptors RO:HOM0000017 wikipathways WP509 Nuclear Receptors lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP217 Nuclear receptors RO:HOM0000017 wikipathways WP831 Nuclear receptors lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP217 Nuclear receptors RO:HOM0000017 wikipathways WP950 Nuclear receptors lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP2185 Purine metabolism RO:HOM0000017 wikipathways WP4792 Purine metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP2197 Endothelin pathways RO:HOM0000017 wikipathways WP3246 Endothelin pathways lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP22 IL-9 signaling pathway RO:HOM0000017 wikipathways WP8 IL-9 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP22 IL-9 signaling pathway RO:HOM0000017 wikipathways WP974 IL-9 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP222 Cytokines and inflammatory response RO:HOM0000017 wikipathways WP271 Cytokines and inflammatory response lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP222 Cytokines and inflammatory response RO:HOM0000017 wikipathways WP530 Cytokines and inflammatory response lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP222 Cytokines and inflammatory response RO:HOM0000017 wikipathways WP879 Cytokines and inflammatory response lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP222 Cytokines and inflammatory response RO:HOM0000017 wikipathways WP997 Cytokines and inflammatory response lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP2249 Metastatic brain tumor RO:HOM0000017 wikipathways WP3259 Metastatic brain tumor lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP2253 Pilocytic astrocytoma RO:HOM0000017 wikipathways WP3122 Pilocytic astrocytoma lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP2261 Glioblastoma signaling pathways RO:HOM0000017 wikipathways WP3266 Glioblastoma signaling pathways lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP2267 Synaptic vesicle pathway RO:HOM0000017 wikipathways WP3224 Synaptic vesicle pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP227 Osteoblast signaling RO:HOM0000017 wikipathways WP238 Osteoblast signaling lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP227 Osteoblast signaling RO:HOM0000017 wikipathways WP322 Osteoblast signaling lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP227 Osteoblast signaling RO:HOM0000017 wikipathways WP956 Osteoblast signaling lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP2271 Macrophage markers RO:HOM0000017 wikipathways WP4146 Macrophage markers lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP2272 Pathogenic Escherichia coli infection RO:HOM0000017 wikipathways WP3157 Pathogenic Escherichia coli infection lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP2276 Glial cell differentiation RO:HOM0000017 wikipathways WP3203 Glial cell differentiation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP2289 Drug induction of bile acid pathway RO:HOM0000017 wikipathways WP3253 Drug induction of bile acid pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP229 Irinotecan pathway RO:HOM0000017 wikipathways WP475 Irinotecan pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP229 Irinotecan pathway RO:HOM0000017 wikipathways WP961 Irinotecan pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP2290 RalA downstream regulated genes RO:HOM0000017 wikipathways WP3268 RalA downstream regulated genes lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP2291 Deregulation of Rab and Rab effector genes in bladder cancer RO:HOM0000017 wikipathways WP3171 Deregulation of Rab and Rab effector genes in bladder cancer lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP2292 Chemokine signaling pathway RO:HOM0000017 wikipathways WP3929 Chemokine signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP2316 PPAR signaling pathway RO:HOM0000017 wikipathways WP3942 PPAR signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP2316 PPAR signaling pathway RO:HOM0000017 wikipathways WP4020 PPAR signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP2318 Fatty acid oxidation RO:HOM0000017 wikipathways WP91 Fatty acid oxidation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP232 G protein signaling pathways RO:HOM0000017 wikipathways WP35 G protein signaling pathways lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP232 G protein signaling pathways RO:HOM0000017 wikipathways WP73 G protein signaling pathways lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP232 G protein signaling pathways RO:HOM0000017 wikipathways WP813 G protein signaling pathways lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP232 G protein signaling pathways RO:HOM0000017 wikipathways WP931 G protein signaling pathways lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP2324 AGE/RAGE pathway RO:HOM0000017 wikipathways WP3124 AGE/RAGE pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP2332 Interleukin-11 signaling pathway RO:HOM0000017 wikipathways WP3159 Interleukin-11 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP2333 Trans-sulfuration pathway RO:HOM0000017 wikipathways WP3145 Trans-sulfuration pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP2338 miRNA biogenesis RO:HOM0000017 wikipathways WP3140 miRNA biogenesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP235 Wnt signaling RO:HOM0000017 wikipathways WP428 Wnt signaling lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP2359 Parkin-ubiquitin proteasomal system pathway RO:HOM0000017 wikipathways WP3199 Parkin-ubiquitin proteasomal system pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP236 Adipogenesis RO:HOM0000017 wikipathways WP869 Adipogenesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP236 Adipogenesis RO:HOM0000017 wikipathways WP987 Adipogenesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP2361 Gastric cancer network 1 RO:HOM0000017 wikipathways WP3166 Gastric cancer network 1 lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP2363 Gastric cancer network 2 RO:HOM0000017 wikipathways WP3139 Gastric cancer network 2 lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP2366 Butyrate-induced histone acetylation RO:HOM0000017 wikipathways WP3249 Butyrate-induced histone acetylation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP2369 Histone modifications RO:HOM0000017 wikipathways WP300 Histone modifications lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP2369 Histone modifications RO:HOM0000017 wikipathways WP3123 Histone modifications lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP2374 Oncostatin M signaling pathway RO:HOM0000017 wikipathways WP3277 Oncostatin M signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP238 Osteoblast signaling RO:HOM0000017 wikipathways WP322 Osteoblast signaling lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP238 Osteoblast signaling RO:HOM0000017 wikipathways WP956 Osteoblast signaling lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP240 Alanine and aspartate metabolism RO:HOM0000017 wikipathways WP3262 Alanine and aspartate metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP2406 Cardiac progenitor differentiation RO:HOM0000017 wikipathways WP3127 Cardiac progenitor differentiation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP241 One-carbon metabolism RO:HOM0000017 wikipathways WP435 One-carbon metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP241 One-carbon metabolism RO:HOM0000017 wikipathways WP796 One-carbon metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP241 One-carbon metabolism RO:HOM0000017 wikipathways WP909 One-carbon metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP2431 Spinal cord injury RO:HOM0000017 wikipathways WP2432 Spinal cord injury lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP2431 Spinal cord injury RO:HOM0000017 wikipathways WP2433 Spinal cord injury lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP2431 Spinal cord injury RO:HOM0000017 wikipathways WP3186 Spinal cord injury lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP2432 Spinal cord injury RO:HOM0000017 wikipathways WP2433 Spinal cord injury lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP2432 Spinal cord injury RO:HOM0000017 wikipathways WP3186 Spinal cord injury lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP2433 Spinal cord injury RO:HOM0000017 wikipathways WP3186 Spinal cord injury lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP2436 Dopamine metabolism RO:HOM0000017 wikipathways WP3155 Dopamine metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP244 Alpha 6 beta 4 signaling pathway RO:HOM0000017 wikipathways WP985 Alpha 6 beta 4 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP2446 Retinoblastoma gene in cancer RO:HOM0000017 wikipathways WP3206 Retinoblastoma gene in cancer lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP2447 Amyotrophic lateral sclerosis (ALS) RO:HOM0000017 wikipathways WP3243 Amyotrophic lateral sclerosis (ALS) lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP2453 TCA cycle and deficiency of pyruvate dehydrogenase complex (PDHc) RO:HOM0000017 wikipathways WP3149 TCA cycle and deficiency of pyruvate dehydrogenase complex (PDHc) lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP246 TNF-alpha NF-kB signaling pathway RO:HOM0000017 wikipathways WP457 TNF-alpha NF-kB signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP247 Small ligand GPCRs RO:HOM0000017 wikipathways WP971 Small ligand GPCRs lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP2491 Diclofenac metabolic pathway RO:HOM0000017 wikipathways WP3152 Diclofenac metabolic pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP25 Fatty acid beta-oxidation 3 RO:HOM0000017 wikipathways WP499 Fatty acid beta-oxidation 3 lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP251 Mapk cascade RO:HOM0000017 wikipathways WP422 MAPK cascade lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP251 Mapk cascade RO:HOM0000017 wikipathways WP446 Mapk cascade lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP2516 ATM signaling pathway RO:HOM0000017 wikipathways WP3221 ATM signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP2516 ATM signaling pathway RO:HOM0000017 wikipathways WP654 ATM signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP2525 Trans-sulfuration and one-carbon metabolism RO:HOM0000017 wikipathways WP3135 Trans-sulfuration and one-carbon metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP2526 PDGF pathway RO:HOM0000017 wikipathways WP3200 PDGF pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP253 Glycolysis RO:HOM0000017 wikipathways WP2621 Glycolysis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP253 Glycolysis RO:HOM0000017 wikipathways WP2862 Glycolysis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP2533 Glycerophospholipid biosynthetic pathway RO:HOM0000017 wikipathways WP3198 Glycerophospholipid biosynthetic pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP2536 Colchicine metabolic pathway RO:HOM0000017 wikipathways WP3187 Colchicine metabolic pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP254 Apoptosis RO:HOM0000017 wikipathways WP787 Apoptosis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP2541 Sulindac metabolic pathway RO:HOM0000017 wikipathways WP2542 Sulindac metabolic pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP2541 Sulindac metabolic pathway RO:HOM0000017 wikipathways WP3150 Sulindac metabolic pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP2542 Sulindac metabolic pathway RO:HOM0000017 wikipathways WP3150 Sulindac metabolic pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP255 Blood clotting cascade RO:HOM0000017 wikipathways WP272 Blood clotting cascade lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP255 Blood clotting cascade RO:HOM0000017 wikipathways WP3251 Blood clotting cascade lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP255 Blood clotting cascade RO:HOM0000017 wikipathways WP460 Blood clotting cascade lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP255 Blood clotting cascade RO:HOM0000017 wikipathways WP775 Blood clotting cascade lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP255 Blood clotting cascade RO:HOM0000017 wikipathways WP887 Blood clotting cascade lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP2572 Primary focal segmental glomerulosclerosis (FSGS) RO:HOM0000017 wikipathways WP2573 Primary focal segmental glomerulosclerosis (FSGS) lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP2572 Primary focal segmental glomerulosclerosis (FSGS) RO:HOM0000017 wikipathways WP3233 Primary focal segmental glomerulosclerosis (FSGS) lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP2573 Primary focal segmental glomerulosclerosis (FSGS) RO:HOM0000017 wikipathways WP3233 Primary focal segmental glomerulosclerosis (FSGS) lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP2583 T cell receptor and co-stimulatory signaling RO:HOM0000017 wikipathways WP3282 T cell receptor and co-stimulatory signaling lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP2596 Gastric acid production RO:HOM0000017 wikipathways WP3172 Gastric acid production lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP2621 Glycolysis RO:HOM0000017 wikipathways WP2862 Glycolysis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP263 Ovarian infertility RO:HOM0000017 wikipathways WP273 Ovarian infertility lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP263 Ovarian infertility RO:HOM0000017 wikipathways WP3116 Ovarian infertility lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP263 Ovarian infertility RO:HOM0000017 wikipathways WP34 Ovarian infertility lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP263 Ovarian infertility RO:HOM0000017 wikipathways WP885 Ovarian infertility lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP2637 Interleukin-1 (IL-1) structural pathway RO:HOM0000017 wikipathways WP3178 Interleukin-1 (IL-1) structural pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP264 Acetylcholine synthesis RO:HOM0000017 wikipathways WP360 Acetylcholine synthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP264 Acetylcholine synthesis RO:HOM0000017 wikipathways WP476 Acetylcholine synthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP264 Acetylcholine synthesis RO:HOM0000017 wikipathways WP528 Acetylcholine synthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP2643 Nanoparticle-mediated activation of receptor signaling RO:HOM0000017 wikipathways WP3181 Nanoparticle-mediated activation of receptor signaling lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP2646 Lidocaine metabolism RO:HOM0000017 wikipathways WP3254 Lidocaine metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP265 Delta-Notch signaling pathway RO:HOM0000017 wikipathways WP827 Delta-Notch signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP265 Delta-Notch signaling pathway RO:HOM0000017 wikipathways WP946 Delta-Notch signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP269 Heme biosynthesis RO:HOM0000017 wikipathways WP561 Heme biosynthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP269 Heme biosynthesis RO:HOM0000017 wikipathways WP848 Heme biosynthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP269 Heme biosynthesis RO:HOM0000017 wikipathways WP86 Heme biosynthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP269 Heme biosynthesis RO:HOM0000017 wikipathways WP967 Heme biosynthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP270 Tryptophan metabolism RO:HOM0000017 wikipathways WP3248 Tryptophan metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP270 Tryptophan metabolism RO:HOM0000017 wikipathways WP465 Tryptophan metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP270 Tryptophan metabolism RO:HOM0000017 wikipathways WP79 Tryptophan metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP271 Cytokines and inflammatory response RO:HOM0000017 wikipathways WP530 Cytokines and inflammatory response lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP271 Cytokines and inflammatory response RO:HOM0000017 wikipathways WP879 Cytokines and inflammatory response lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP271 Cytokines and inflammatory response RO:HOM0000017 wikipathways WP997 Cytokines and inflammatory response lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP272 Blood clotting cascade RO:HOM0000017 wikipathways WP3251 Blood clotting cascade lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP272 Blood clotting cascade RO:HOM0000017 wikipathways WP460 Blood clotting cascade lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP272 Blood clotting cascade RO:HOM0000017 wikipathways WP775 Blood clotting cascade lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP272 Blood clotting cascade RO:HOM0000017 wikipathways WP887 Blood clotting cascade lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP273 Ovarian infertility RO:HOM0000017 wikipathways WP3116 Ovarian infertility lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP273 Ovarian infertility RO:HOM0000017 wikipathways WP34 Ovarian infertility lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP273 Ovarian infertility RO:HOM0000017 wikipathways WP885 Ovarian infertility lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP276 Monoamine GPCRs RO:HOM0000017 wikipathways WP570 Monoamine GPCRs lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP276 Monoamine GPCRs RO:HOM0000017 wikipathways WP58 Monoamine GPCRs lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP276 Monoamine GPCRs RO:HOM0000017 wikipathways WP839 Monoamine GPCRs lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP276 Monoamine GPCRs RO:HOM0000017 wikipathways WP957 Monoamine GPCRs lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP278 Matrix metalloproteinases RO:HOM0000017 wikipathways WP441 Matrix metalloproteinases lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP278 Matrix metalloproteinases RO:HOM0000017 wikipathways WP823 Matrix metalloproteinases lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP278 Matrix metalloproteinases RO:HOM0000017 wikipathways WP942 Matrix metalloproteinases lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP2795 Cardiac hypertrophic response RO:HOM0000017 wikipathways WP3250 Cardiac hypertrophic response lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP281 Proteasome degradation RO:HOM0000017 wikipathways WP302 Proteasome degradation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP281 Proteasome degradation RO:HOM0000017 wikipathways WP470 Proteasome degradation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP281 Proteasome degradation RO:HOM0000017 wikipathways WP519 Proteasome degradation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP2816 Felbamate metabolism RO:HOM0000017 wikipathways WP3189 Felbamate metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP282 Pentose phosphate pathway RO:HOM0000017 wikipathways WP312 Pentose phosphate pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP282 Pentose phosphate pathway RO:HOM0000017 wikipathways WP369 Pentose phosphate pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP282 Pentose phosphate pathway RO:HOM0000017 wikipathways WP63 Pentose phosphate pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP2828 Bladder cancer RO:HOM0000017 wikipathways WP3129 Bladder cancer lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP2849 Hematopoietic stem cell differentiation RO:HOM0000017 wikipathways WP3174 Hematopoietic stem cell differentiation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP2852 Gene regulatory network modelling somitogenesis RO:HOM0000017 wikipathways WP2854 Gene regulatory network modelling somitogenesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP2852 Gene regulatory network modelling somitogenesis RO:HOM0000017 wikipathways WP3216 Gene regulatory network modelling somitogenesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP2853 Endoderm differentiation RO:HOM0000017 wikipathways WP3240 Endoderm differentiation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP2854 Gene regulatory network modelling somitogenesis RO:HOM0000017 wikipathways WP3216 Gene regulatory network modelling somitogenesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP2855 Dopaminergic neurogenesis RO:HOM0000017 wikipathways WP3196 Dopaminergic neurogenesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP2857 Mesodermal commitment pathway RO:HOM0000017 wikipathways WP3183 Mesodermal commitment pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP2858 Ectoderm differentiation RO:HOM0000017 wikipathways WP3208 Ectoderm differentiation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP286 IL-3 signaling pathway RO:HOM0000017 wikipathways WP319 IL-3 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP286 IL-3 signaling pathway RO:HOM0000017 wikipathways WP373 IL-3 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP2864 Apoptosis-related network due to altered Notch3 in ovarian cancer RO:HOM0000017 wikipathways WP3126 Apoptosis-related network due to altered Notch3 in ovarian cancer lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP2868 TCA cycle nutrient use and invasiveness of ovarian cancer RO:HOM0000017 wikipathways WP3252 TCA cycle nutrient use and invasiveness of ovarian cancer lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP2870 Extracellular vesicle-mediated signaling in recipient cells RO:HOM0000017 wikipathways WP3161 Extracellular vesicle-mediated signaling in recipient cells lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP2872 White fat cell differentiation RO:HOM0000017 wikipathways WP4149 White fat cell differentiation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP2873 Aryl hydrocarbon receptor pathway RO:HOM0000017 wikipathways WP3205 Aryl hydrocarbon receptor pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP2874 Liver X receptor pathway RO:HOM0000017 wikipathways WP3188 Liver X receptor pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP2875 Constitutive androstane receptor pathway RO:HOM0000017 wikipathways WP3131 Constitutive androstane receptor pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP2878 PPAR-alpha pathway RO:HOM0000017 wikipathways WP3258 PPAR-alpha pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP2879 Farnesoid X receptor pathway RO:HOM0000017 wikipathways WP3269 Farnesoid X receptor pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP288 Nod-like receptor (NLR) signaling pathway RO:HOM0000017 wikipathways WP799 Nod-like receptor (NLR) signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP288 Nod-like receptor (NLR) signaling pathway RO:HOM0000017 wikipathways WP914 Nod-like receptor (NLR) signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP2881 Estrogen receptor pathway RO:HOM0000017 wikipathways WP3163 Estrogen receptor pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP2884 NRF2 pathway RO:HOM0000017 wikipathways WP3190 NRF2 pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP2889 Oxytocin signaling RO:HOM0000017 wikipathways WP3222 Oxytocin signaling lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP289 Myometrial relaxation and contraction pathways RO:HOM0000017 wikipathways WP3276 Myometrial relaxation and contraction pathways lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP289 Myometrial relaxation and contraction pathways RO:HOM0000017 wikipathways WP385 Myometrial relaxation and contraction pathways lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP2895 Differentiation of white and brown adipocyte RO:HOM0000017 wikipathways WP3225 Differentiation of white and brown adipocyte lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP29 Notch signaling pathway RO:HOM0000017 wikipathways WP517 Notch signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP29 Notch signaling pathway RO:HOM0000017 wikipathways WP798 Notch signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP29 Notch signaling pathway RO:HOM0000017 wikipathways WP912 Notch signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP2910 Mecp2 and associated Rett syndrome RO:HOM0000017 wikipathways WP3584 MECP2 and associated Rett syndrome lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP2916 Interactome of polycomb repressive complex 2 (PRC2) RO:HOM0000017 wikipathways WP3136 Interactome of polycomb repressive complex 2 (PRC2) lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP2928 miR-222 in exercise-induced cardiac growth RO:HOM0000017 wikipathways WP3938 miR-222 in exercise-induced cardiac growth lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP293 Eicosanoid synthesis RO:HOM0000017 wikipathways WP318 Eicosanoid synthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP293 Eicosanoid synthesis RO:HOM0000017 wikipathways WP854 Eicosanoid synthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP293 Eicosanoid synthesis RO:HOM0000017 wikipathways WP972 Eicosanoid synthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP294 p38 Mapk signaling pathway RO:HOM0000017 wikipathways WP350 p38 Mapk signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP294 p38 Mapk signaling pathway RO:HOM0000017 wikipathways WP400 p38 MAPK signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP294 p38 Mapk signaling pathway RO:HOM0000017 wikipathways WP803 p38 MAPK signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP294 p38 Mapk signaling pathway RO:HOM0000017 wikipathways WP918 p38 MAPK signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP2940 Polar auxin transport RO:HOM0000017 wikipathways WP2941 Polar auxin transport lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP2942 DDX1 as a regulatory component of the Drosha microprocessor RO:HOM0000017 wikipathways WP3241 DDX1 as a regulatory component of the Drosha microprocessor lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP295 Electron transport chain RO:HOM0000017 wikipathways WP542 Electron transport chain lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP295 Electron transport chain RO:HOM0000017 wikipathways WP59 Electron transport chain lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP298 G13 signaling pathway RO:HOM0000017 wikipathways WP520 G13 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP298 G13 signaling pathway RO:HOM0000017 wikipathways WP524 G13 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP298 G13 signaling pathway RO:HOM0000017 wikipathways WP826 G13 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP298 G13 signaling pathway RO:HOM0000017 wikipathways WP945 G13 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP299 Nuclear receptors in lipid metabolism and toxicity RO:HOM0000017 wikipathways WP431 Nuclear receptors in lipid metabolism and toxicity lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP299 Nuclear receptors in lipid metabolism and toxicity RO:HOM0000017 wikipathways WP755 Nuclear receptors in lipid metabolism and toxicity lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP299 Nuclear receptors in lipid metabolism and toxicity RO:HOM0000017 wikipathways WP863 Nuclear receptors in lipid metabolism and toxicity lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP299 Nuclear receptors in lipid metabolism and toxicity RO:HOM0000017 wikipathways WP981 Nuclear receptors in lipid metabolism and toxicity lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP30 Cytoplasmic ribosomal proteins RO:HOM0000017 wikipathways WP324 Cytoplasmic ribosomal proteins lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP30 Cytoplasmic ribosomal proteins RO:HOM0000017 wikipathways WP477 Cytoplasmic ribosomal proteins lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP30 Cytoplasmic ribosomal proteins RO:HOM0000017 wikipathways WP540 Cytoplasmic ribosomal proteins lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP300 Histone modifications RO:HOM0000017 wikipathways WP3123 Histone modifications lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP302 Proteasome degradation RO:HOM0000017 wikipathways WP470 Proteasome degradation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP302 Proteasome degradation RO:HOM0000017 wikipathways WP519 Proteasome degradation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP303 Prostaglandin synthesis and regulation RO:HOM0000017 wikipathways WP374 Prostaglandin synthesis and regulation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP303 Prostaglandin synthesis and regulation RO:HOM0000017 wikipathways WP98 Prostaglandin synthesis and regulation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP303 Prostaglandin synthesis and regulation RO:HOM0000017 wikipathways WP995 Prostaglandin synthesis and regulation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP304 Kit receptor signaling pathway RO:HOM0000017 wikipathways WP407 Kit receptor signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP304 Kit receptor signaling pathway RO:HOM0000017 wikipathways WP774 Kit receptor signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP304 Kit receptor signaling pathway RO:HOM0000017 wikipathways WP886 Kit receptor signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP306 Focal adhesion RO:HOM0000017 wikipathways WP3197 Focal adhesion lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP306 Focal adhesion RO:HOM0000017 wikipathways WP85 Focal adhesion lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP307 Translation factors RO:HOM0000017 wikipathways WP32 Translation factors lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP307 Translation factors RO:HOM0000017 wikipathways WP537 Translation factors lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP307 Translation factors RO:HOM0000017 wikipathways WP965 Translation factors lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP310 mRNA processing RO:HOM0000017 wikipathways WP411 mRNA processing lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP310 mRNA processing RO:HOM0000017 wikipathways WP467 mRNA processing lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP310 mRNA processing RO:HOM0000017 wikipathways WP529 mRNA processing lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP310 mRNA processing RO:HOM0000017 wikipathways WP793 mRNA processing lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP310 mRNA processing RO:HOM0000017 wikipathways WP906 mRNA Processing lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP311 Ketone bodies synthesis and degradation RO:HOM0000017 wikipathways WP427 Ketone bodies synthesis and degradation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP311 Ketone bodies synthesis and degradation RO:HOM0000017 wikipathways WP784 Ketone bodies synthesis and degradation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP311 Ketone bodies synthesis and degradation RO:HOM0000017 wikipathways WP898 Ketone bodies synthesis and degradation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP3115 Serotonin receptor 2 and STAT3 signaling RO:HOM0000017 wikipathways WP733 Serotonin receptor 2 and STAT3 signaling lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP3116 Ovarian infertility RO:HOM0000017 wikipathways WP34 Ovarian infertility lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP3116 Ovarian infertility RO:HOM0000017 wikipathways WP885 Ovarian infertility lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP3118 Monoamine transport RO:HOM0000017 wikipathways WP727 Monoamine transport lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP3119 DNA damage response RO:HOM0000017 wikipathways WP707 DNA damage response lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP312 Pentose phosphate pathway RO:HOM0000017 wikipathways WP369 Pentose phosphate pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP312 Pentose phosphate pathway RO:HOM0000017 wikipathways WP63 Pentose phosphate pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP313 Hepatocyte growth factor receptor signaling RO:HOM0000017 wikipathways WP444 Hepatocyte growth factor receptor signaling lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP313 Hepatocyte growth factor receptor signaling RO:HOM0000017 wikipathways WP810 Hepatocyte growth factor receptor signaling lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP313 Hepatocyte growth factor receptor signaling RO:HOM0000017 wikipathways WP927 Hepatocyte growth factor receptor signaling lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP313 Hepatocyte growth factor receptor signaling RO:HOM0000017 wikipathways WP94 Hepatocyte growth factor receptor signaling lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP3134 Mitochondrial gene expression RO:HOM0000017 wikipathways WP391 Mitochondrial gene expression lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP3143 DNA damage response (only ATM dependent) RO:HOM0000017 wikipathways WP710 DNA damage response (only ATM dependent) lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP316 Striated muscle contraction RO:HOM0000017 wikipathways WP969 Striated muscle contraction lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP3168 Biogenic amine synthesis RO:HOM0000017 wikipathways WP323 Biogenic amine synthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP3168 Biogenic amine synthesis RO:HOM0000017 wikipathways WP522 Biogenic amine synthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP3168 Biogenic amine synthesis RO:HOM0000017 wikipathways WP550 Biogenic amine synthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP317 Glycogen metabolism RO:HOM0000017 wikipathways WP436 Glycogen metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP317 Glycogen metabolism RO:HOM0000017 wikipathways WP835 Glycogen metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP317 Glycogen metabolism RO:HOM0000017 wikipathways WP955 Glycogen metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP318 Eicosanoid synthesis RO:HOM0000017 wikipathways WP854 Eicosanoid synthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP318 Eicosanoid synthesis RO:HOM0000017 wikipathways WP972 Eicosanoid synthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP319 IL-3 signaling pathway RO:HOM0000017 wikipathways WP373 IL-3 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP3197 Focal adhesion RO:HOM0000017 wikipathways WP85 Focal adhesion lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP32 Translation factors RO:HOM0000017 wikipathways WP537 Translation factors lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP32 Translation factors RO:HOM0000017 wikipathways WP965 Translation factors lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP3207 Glutathione metabolism RO:HOM0000017 wikipathways WP469 Glutathione metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP321 Nucleotide metabolism RO:HOM0000017 wikipathways WP3211 Nucleotide metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP321 Nucleotide metabolism RO:HOM0000017 wikipathways WP404 Nucleotide metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP321 Nucleotide metabolism RO:HOM0000017 wikipathways WP87 Nucleotide metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP3210 Glucuronidation RO:HOM0000017 wikipathways WP698 Glucuronidation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP3211 Nucleotide metabolism RO:HOM0000017 wikipathways WP404 Nucleotide metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP3211 Nucleotide metabolism RO:HOM0000017 wikipathways WP87 Nucleotide metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP3213 Interferon type I signaling pathways RO:HOM0000017 wikipathways WP585 Interferon type I signaling pathways lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP322 Osteoblast signaling RO:HOM0000017 wikipathways WP956 Osteoblast signaling lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP3221 ATM signaling pathway RO:HOM0000017 wikipathways WP654 ATM signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP323 Biogenic amine synthesis RO:HOM0000017 wikipathways WP522 Biogenic amine synthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP323 Biogenic amine synthesis RO:HOM0000017 wikipathways WP550 Biogenic amine synthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP3230 Exercise-induced circadian regulation RO:HOM0000017 wikipathways WP410 Exercise-induced circadian regulation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP3230 Exercise-induced circadian regulation RO:HOM0000017 wikipathways WP544 Exercise-induced circadian regulation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP3230 Exercise-induced circadian regulation RO:HOM0000017 wikipathways WP562 Exercise-induced circadian regulation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP3231 Senescence and autophagy in cancer RO:HOM0000017 wikipathways WP615 Senescence and autophagy in cancer lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP3232 Sphingolipid metabolism RO:HOM0000017 wikipathways WP370 Sphingolipid metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP3234 Sulfation biotransformation reaction RO:HOM0000017 wikipathways WP692 Sulfation biotransformation reaction lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP324 Cytoplasmic ribosomal proteins RO:HOM0000017 wikipathways WP477 Cytoplasmic ribosomal proteins lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP324 Cytoplasmic ribosomal proteins RO:HOM0000017 wikipathways WP540 Cytoplasmic ribosomal proteins lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP3245 Urea cycle and metabolism of amino groups RO:HOM0000017 wikipathways WP497 Urea cycle and metabolism of amino groups lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP3247 Aflatoxin B1 metabolism RO:HOM0000017 wikipathways WP699 Aflatoxin B1 metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP3247 Aflatoxin B1 metabolism RO:HOM0000017 wikipathways WP925 Aflatoxin B1 metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP3248 Tryptophan metabolism RO:HOM0000017 wikipathways WP465 Tryptophan metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP3248 Tryptophan metabolism RO:HOM0000017 wikipathways WP79 Tryptophan metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP325 Triacylglyceride synthesis RO:HOM0000017 wikipathways WP386 Triacylglyceride synthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP3251 Blood clotting cascade RO:HOM0000017 wikipathways WP460 Blood clotting cascade lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP3251 Blood clotting cascade RO:HOM0000017 wikipathways WP775 Blood clotting cascade lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP3251 Blood clotting cascade RO:HOM0000017 wikipathways WP887 Blood clotting cascade lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP326 Calcium regulation in cardiac cells RO:HOM0000017 wikipathways WP536 Calcium regulation in cardiac cells lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP326 Calcium regulation in cardiac cells RO:HOM0000017 wikipathways WP553 Calcium regulation in cardiac cells lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP326 Calcium regulation in cardiac cells RO:HOM0000017 wikipathways WP808 Calcium regulation in cardiac cells lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP326 Calcium regulation in cardiac cells RO:HOM0000017 wikipathways WP923 Calcium regulation in cardiac cells lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP3263 Benzo(a)pyrene metabolism RO:HOM0000017 wikipathways WP696 Benzo(a)pyrene metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP3264 Tamoxifen metabolism RO:HOM0000017 wikipathways WP691 Tamoxifen metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP327 GPCRs, class C metabotropic glutamate, pheromone RO:HOM0000017 wikipathways WP42 GPCRs, class C metabotropic glutamate, pheromone lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP327 GPCRs, class C metabotropic glutamate, pheromone RO:HOM0000017 wikipathways WP501 GPCRs, class C metabotropic glutamate, pheromone lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP3271 IL-1 signaling pathway RO:HOM0000017 wikipathways WP355 IL-1 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP3271 IL-1 signaling pathway RO:HOM0000017 wikipathways WP37 IL-1 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP3272 Serotonin receptor 4/6/7 and NR3C signaling RO:HOM0000017 wikipathways WP734 Serotonin receptor 4/6/7 and NR3C signaling lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP3276 Myometrial relaxation and contraction pathways RO:HOM0000017 wikipathways WP385 Myometrial relaxation and contraction pathways lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP3286 Copper homeostasis RO:HOM0000017 wikipathways WP3962 Copper homeostasis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP33 Fatty acid omega-oxidation RO:HOM0000017 wikipathways WP852 Fatty acid omega-oxidation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP33 Fatty acid omega-oxidation RO:HOM0000017 wikipathways WP970 Fatty acid omega-oxidation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP334 GPCRs, class B secretin-like RO:HOM0000017 wikipathways WP378 GPCRs, class B secretin-like lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP334 GPCRs, class B secretin-like RO:HOM0000017 wikipathways WP456 GPCRs, class B secretin-like lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP336 Fatty acid biosynthesis RO:HOM0000017 wikipathways WP357 Fatty acid biosynthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP336 Fatty acid biosynthesis RO:HOM0000017 wikipathways WP38 Fatty acid biosynthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP336 Fatty acid biosynthesis RO:HOM0000017 wikipathways WP504 Fatty acid biosynthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP336 Fatty acid biosynthesis RO:HOM0000017 wikipathways WP568 Fatty acid biosynthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP34 Ovarian infertility RO:HOM0000017 wikipathways WP885 Ovarian infertility lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP347 TCA cycle RO:HOM0000017 wikipathways WP434 TCA cycle lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP347 TCA cycle RO:HOM0000017 wikipathways WP490 TCA cycle lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP347 TCA cycle RO:HOM0000017 wikipathways WP76 TCA cycle lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP347 TCA cycle RO:HOM0000017 wikipathways WP999 TCA cycle lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP348 G1 to S cell cycle control RO:HOM0000017 wikipathways WP413 G1 to S cell cycle control lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP348 G1 to S cell cycle control RO:HOM0000017 wikipathways WP445 G1 to S cell cycle control lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP348 G1 to S cell cycle control RO:HOM0000017 wikipathways WP45 G1 to S cell cycle control lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP348 G1 to S cell cycle control RO:HOM0000017 wikipathways WP840 G1 to S cell cycle control lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP348 G1 to S cell cycle control RO:HOM0000017 wikipathways WP959 G1 to S cell cycle control lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP349 Synthesis and degradation of ketone bodies RO:HOM0000017 wikipathways WP543 Synthesis and degradation of ketone bodies lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP35 G protein signaling pathways RO:HOM0000017 wikipathways WP73 G protein signaling pathways lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP35 G protein signaling pathways RO:HOM0000017 wikipathways WP813 G protein signaling pathways lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP35 G protein signaling pathways RO:HOM0000017 wikipathways WP931 G protein signaling pathways lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP350 p38 Mapk signaling pathway RO:HOM0000017 wikipathways WP400 p38 MAPK signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP350 p38 Mapk signaling pathway RO:HOM0000017 wikipathways WP803 p38 MAPK signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP350 p38 Mapk signaling pathway RO:HOM0000017 wikipathways WP918 p38 MAPK signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP351 Regulation of actin cytoskeleton RO:HOM0000017 wikipathways WP51 Regulation of actin cytoskeleton lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP351 Regulation of actin cytoskeleton RO:HOM0000017 wikipathways WP523 Regulation of actin cytoskeleton lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP351 Regulation of actin cytoskeleton RO:HOM0000017 wikipathways WP824 Regulation of actin cytoskeleton lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP355 IL-1 signaling pathway RO:HOM0000017 wikipathways WP37 IL-1 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP357 Fatty acid biosynthesis RO:HOM0000017 wikipathways WP38 Fatty acid biosynthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP357 Fatty acid biosynthesis RO:HOM0000017 wikipathways WP504 Fatty acid biosynthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP357 Fatty acid biosynthesis RO:HOM0000017 wikipathways WP568 Fatty acid biosynthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP358 MAPK signaling pathway RO:HOM0000017 wikipathways WP382 MAPK signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP358 MAPK signaling pathway RO:HOM0000017 wikipathways WP493 Mapk signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP358 MAPK signaling pathway RO:HOM0000017 wikipathways WP510 MAPK signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP358 MAPK signaling pathway RO:HOM0000017 wikipathways WP769 MAPK signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP358 MAPK signaling pathway RO:HOM0000017 wikipathways WP880 MAPK signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP358 MAPK signaling pathway RO:HOM0000017 wikipathways WP998 MAPK signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP3592 ApoE and miR-146 in inflammation and atherosclerosis RO:HOM0000017 wikipathways WP3926 ApoE and miR-146 in inflammation and atherosclerosis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP360 Acetylcholine synthesis RO:HOM0000017 wikipathways WP476 Acetylcholine synthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP360 Acetylcholine synthesis RO:HOM0000017 wikipathways WP528 Acetylcholine synthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP3624 Lung fibrosis RO:HOM0000017 wikipathways WP3632 Lung fibrosis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP3625 Tyrobp causal network in microglia RO:HOM0000017 wikipathways WP3945 TYROBP causal network in microglia lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP3626 Microglia pathogen phagocytosis pathway RO:HOM0000017 wikipathways WP3937 Microglia pathogen phagocytosis pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP363 Wnt signaling pathway RO:HOM0000017 wikipathways WP403 Wnt signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP363 Wnt signaling pathway RO:HOM0000017 wikipathways WP785 Wnt signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP363 Wnt signaling pathway RO:HOM0000017 wikipathways WP899 Wnt signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP363 Wnt signaling pathway RO:HOM0000017 wikipathways WP97 Wnt signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP364 IL-6 signaling pathway RO:HOM0000017 wikipathways WP387 IL-6 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP364 IL-6 signaling pathway RO:HOM0000017 wikipathways WP976 IL-6 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP3652 EDA signaling in hair follicle development RO:HOM0000017 wikipathways WP3930 EDA signaling in hair follicle development lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP3673 Hfe effect on hepcidin production RO:HOM0000017 wikipathways WP3924 Hfe effect on hepcidin production lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP3675 Factors and pathways affecting insulin-like growth factor (IGF1)-Akt signaling RO:HOM0000017 wikipathways WP3850 Factors and pathways affecting insulin-like growth factor (IGF1)-Akt signaling lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP368 Mitochondrial long chain fatty acid beta-oxidation RO:HOM0000017 wikipathways WP401 Mitochondrial long chain fatty acid beta-oxidation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP368 Mitochondrial long chain fatty acid beta-oxidation RO:HOM0000017 wikipathways WP406 Mitochondrial long chain fatty acid beta-oxidation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP368 Mitochondrial long chain fatty acid beta-oxidation RO:HOM0000017 wikipathways WP448 Mitochondrial long chain fatty acid beta-oxidation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP368 Mitochondrial long chain fatty acid beta-oxidation RO:HOM0000017 wikipathways WP498 Mitochondrial long chain fatty acid beta-oxidation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP368 Mitochondrial long chain fatty acid beta-oxidation RO:HOM0000017 wikipathways WP763 Mitochondrial long chain fatty acid beta-oxidation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP368 Mitochondrial long chain fatty acid beta-oxidation RO:HOM0000017 wikipathways WP989 Mitochondrial long chain fatty acid beta-oxidation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP369 Pentose phosphate pathway RO:HOM0000017 wikipathways WP63 Pentose phosphate pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP372 Beta-oxidation meta-pathway RO:HOM0000017 wikipathways WP443 Beta-oxidation meta-pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP374 Prostaglandin synthesis and regulation RO:HOM0000017 wikipathways WP98 Prostaglandin synthesis and regulation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP374 Prostaglandin synthesis and regulation RO:HOM0000017 wikipathways WP995 Prostaglandin synthesis and regulation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP375 Wnt signaling pathway (NetPath) RO:HOM0000017 wikipathways WP539 Wnt signaling pathway (NetPath) lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP375 Wnt signaling pathway (NetPath) RO:HOM0000017 wikipathways WP980 Wnt signaling pathway (Netpath) lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP378 GPCRs, class B secretin-like RO:HOM0000017 wikipathways WP456 GPCRs, class B secretin-like lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP38 Fatty acid biosynthesis RO:HOM0000017 wikipathways WP504 Fatty acid biosynthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP38 Fatty acid biosynthesis RO:HOM0000017 wikipathways WP568 Fatty acid biosynthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP382 MAPK signaling pathway RO:HOM0000017 wikipathways WP493 Mapk signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP382 MAPK signaling pathway RO:HOM0000017 wikipathways WP510 MAPK signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP382 MAPK signaling pathway RO:HOM0000017 wikipathways WP769 MAPK signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP382 MAPK signaling pathway RO:HOM0000017 wikipathways WP880 MAPK signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP382 MAPK signaling pathway RO:HOM0000017 wikipathways WP998 MAPK signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP3830 Toll, IMD, JAK/STAT pathways for immune response to pathogens RO:HOM0000017 wikipathways WP3856 Toll, IMD, JAK/STAT pathways for immune response to pathogens lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP384 Apoptosis modulation by HSP70 RO:HOM0000017 wikipathways WP487 Apoptosis modulation by HSP70 lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP384 Apoptosis modulation by HSP70 RO:HOM0000017 wikipathways WP963 Apoptosis modulation by HSP70 lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP3843 Vitamin A and carotenoid metabolism RO:HOM0000017 wikipathways WP716 Vitamin A and carotenoid metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP3857 Wnt signaling in kidney disease RO:HOM0000017 wikipathways WP4150 Wnt signaling in kidney disease lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP3864 Robo4 and VEGF signaling pathways crosstalk RO:HOM0000017 wikipathways WP3943 Robo4 and VEGF signaling pathways crosstalk lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP387 IL-6 signaling pathway RO:HOM0000017 wikipathways WP976 IL-6 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP3925 Amino acid metabolism RO:HOM0000017 wikipathways WP662 Amino acid metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP3934 Leptin and adiponectin RO:HOM0000017 wikipathways WP683 Leptin and adiponectin lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP3935 Leptin-insulin signaling overlap RO:HOM0000017 wikipathways WP578 Leptin-insulin signaling overlap lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP3942 PPAR signaling pathway RO:HOM0000017 wikipathways WP4020 PPAR signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP396 ACE inhibitor pathway RO:HOM0000017 wikipathways WP468 ACE inhibitor pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP396 ACE inhibitor pathway RO:HOM0000017 wikipathways WP554 ACE inhibitor pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP396 ACE inhibitor pathway RO:HOM0000017 wikipathways WP557 ACE inhibitor pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP396 ACE inhibitor pathway RO:HOM0000017 wikipathways WP801 ACE inhibitor pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP396 ACE inhibitor pathway RO:HOM0000017 wikipathways WP915 ACE inhibitor pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP397 Id signaling pathway RO:HOM0000017 wikipathways WP512 Id signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP397 Id signaling pathway RO:HOM0000017 wikipathways WP53 ID signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP397 Id signaling pathway RO:HOM0000017 wikipathways WP934 Id signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP399 Wnt signaling pathway and pluripotency RO:HOM0000017 wikipathways WP723 Wnt signaling pathway and pluripotency lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP399 Wnt signaling pathway and pluripotency RO:HOM0000017 wikipathways WP779 Wnt signaling pathway and pluripotency lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP40 Inflammatory response pathway RO:HOM0000017 wikipathways WP453 Inflammatory response pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP40 Inflammatory response pathway RO:HOM0000017 wikipathways WP458 Inflammatory response pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP400 p38 MAPK signaling pathway RO:HOM0000017 wikipathways WP803 p38 MAPK signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP400 p38 MAPK signaling pathway RO:HOM0000017 wikipathways WP918 p38 MAPK signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP401 Mitochondrial long chain fatty acid beta-oxidation RO:HOM0000017 wikipathways WP406 Mitochondrial long chain fatty acid beta-oxidation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP401 Mitochondrial long chain fatty acid beta-oxidation RO:HOM0000017 wikipathways WP448 Mitochondrial long chain fatty acid beta-oxidation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP401 Mitochondrial long chain fatty acid beta-oxidation RO:HOM0000017 wikipathways WP498 Mitochondrial long chain fatty acid beta-oxidation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP401 Mitochondrial long chain fatty acid beta-oxidation RO:HOM0000017 wikipathways WP763 Mitochondrial long chain fatty acid beta-oxidation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP401 Mitochondrial long chain fatty acid beta-oxidation RO:HOM0000017 wikipathways WP989 Mitochondrial long chain fatty acid beta-oxidation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP403 Wnt signaling pathway RO:HOM0000017 wikipathways WP785 Wnt signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP403 Wnt signaling pathway RO:HOM0000017 wikipathways WP899 Wnt signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP403 Wnt signaling pathway RO:HOM0000017 wikipathways WP97 Wnt signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP404 Nucleotide metabolism RO:HOM0000017 wikipathways WP87 Nucleotide metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP405 Eukaryotic transcription initiation RO:HOM0000017 wikipathways WP425 Eukaryotic transcription initiation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP405 Eukaryotic transcription initiation RO:HOM0000017 wikipathways WP491 Eukaryotic transcription initiation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP405 Eukaryotic transcription initiation RO:HOM0000017 wikipathways WP518 Eukaryotic transcription initiation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP405 Eukaryotic transcription initiation RO:HOM0000017 wikipathways WP567 Eukaryotic transcription initiation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP405 Eukaryotic transcription initiation RO:HOM0000017 wikipathways WP830 Eukaryotic transcription initiation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP405 Eukaryotic transcription initiation RO:HOM0000017 wikipathways WP948 Eukaryotic transcription initiation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP406 Mitochondrial long chain fatty acid beta-oxidation RO:HOM0000017 wikipathways WP448 Mitochondrial long chain fatty acid beta-oxidation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP406 Mitochondrial long chain fatty acid beta-oxidation RO:HOM0000017 wikipathways WP498 Mitochondrial long chain fatty acid beta-oxidation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP406 Mitochondrial long chain fatty acid beta-oxidation RO:HOM0000017 wikipathways WP763 Mitochondrial long chain fatty acid beta-oxidation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP406 Mitochondrial long chain fatty acid beta-oxidation RO:HOM0000017 wikipathways WP989 Mitochondrial long chain fatty acid beta-oxidation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP407 Kit receptor signaling pathway RO:HOM0000017 wikipathways WP774 Kit receptor signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP407 Kit receptor signaling pathway RO:HOM0000017 wikipathways WP886 Kit receptor signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP408 Oxidative stress response RO:HOM0000017 wikipathways WP412 Oxidative stress response lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP409 GPCRs, other RO:HOM0000017 wikipathways WP41 GPCRs, other lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP409 GPCRs, other RO:HOM0000017 wikipathways WP990 GPCRs, other lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP41 GPCRs, other RO:HOM0000017 wikipathways WP990 GPCRs, other lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP410 Exercise-induced circadian regulation RO:HOM0000017 wikipathways WP544 Exercise-induced circadian regulation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP410 Exercise-induced circadian regulation RO:HOM0000017 wikipathways WP562 Exercise-induced circadian regulation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP411 mRNA processing RO:HOM0000017 wikipathways WP467 mRNA processing lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP411 mRNA processing RO:HOM0000017 wikipathways WP529 mRNA processing lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP411 mRNA processing RO:HOM0000017 wikipathways WP793 mRNA processing lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP411 mRNA processing RO:HOM0000017 wikipathways WP906 mRNA Processing lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP413 G1 to S cell cycle control RO:HOM0000017 wikipathways WP445 G1 to S cell cycle control lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP413 G1 to S cell cycle control RO:HOM0000017 wikipathways WP45 G1 to S cell cycle control lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP413 G1 to S cell cycle control RO:HOM0000017 wikipathways WP840 G1 to S cell cycle control lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP413 G1 to S cell cycle control RO:HOM0000017 wikipathways WP959 G1 to S cell cycle control lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP4136 Fibrin complement receptor 3 signaling pathway RO:HOM0000017 wikipathways WP5128 Fibrin complement receptor 3 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP418 Beta-oxidation of unsaturated fatty acids RO:HOM0000017 wikipathways WP471 Beta-oxidation of unsaturated fatty acids lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP42 GPCRs, class C metabotropic glutamate, pheromone RO:HOM0000017 wikipathways WP501 GPCRs, class C metabotropic glutamate, pheromone lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP422 MAPK cascade RO:HOM0000017 wikipathways WP446 Mapk cascade lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP4249 Hedgehog signaling pathway RO:HOM0000017 wikipathways WP492 Hedgehog signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP4249 Hedgehog signaling pathway RO:HOM0000017 wikipathways WP574 Hedgehog signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP4249 Hedgehog signaling pathway RO:HOM0000017 wikipathways WP790 Hedgehog signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP4249 Hedgehog signaling pathway RO:HOM0000017 wikipathways WP905 Hedgehog signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP425 Eukaryotic transcription initiation RO:HOM0000017 wikipathways WP491 Eukaryotic transcription initiation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP425 Eukaryotic transcription initiation RO:HOM0000017 wikipathways WP518 Eukaryotic transcription initiation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP425 Eukaryotic transcription initiation RO:HOM0000017 wikipathways WP567 Eukaryotic transcription initiation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP425 Eukaryotic transcription initiation RO:HOM0000017 wikipathways WP830 Eukaryotic transcription initiation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP425 Eukaryotic transcription initiation RO:HOM0000017 wikipathways WP948 Eukaryotic transcription initiation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP4265 Ethanol metabolism resulting in production of ROS by CYP2E1 RO:HOM0000017 wikipathways WP4268 Ethanol metabolism resulting in production of ROS by CYP2E1 lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP427 Ketone bodies synthesis and degradation RO:HOM0000017 wikipathways WP784 Ketone bodies synthesis and degradation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP427 Ketone bodies synthesis and degradation RO:HOM0000017 wikipathways WP898 Ketone bodies synthesis and degradation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP431 Nuclear receptors in lipid metabolism and toxicity RO:HOM0000017 wikipathways WP755 Nuclear receptors in lipid metabolism and toxicity lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP431 Nuclear receptors in lipid metabolism and toxicity RO:HOM0000017 wikipathways WP863 Nuclear receptors in lipid metabolism and toxicity lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP431 Nuclear receptors in lipid metabolism and toxicity RO:HOM0000017 wikipathways WP981 Nuclear receptors in lipid metabolism and toxicity lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP434 TCA cycle RO:HOM0000017 wikipathways WP490 TCA cycle lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP434 TCA cycle RO:HOM0000017 wikipathways WP76 TCA cycle lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP434 TCA cycle RO:HOM0000017 wikipathways WP999 TCA cycle lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP4344 Sphingolipid metabolism overview RO:HOM0000017 wikipathways WP4725 Sphingolipid metabolism overview lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP4345 Glycerolipids and glycerophospholipids RO:HOM0000017 wikipathways WP4722 Glycerolipids and glycerophospholipids lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP4346 Cholesterol metabolism with Bloch and Kandutsch-Russell pathways RO:HOM0000017 wikipathways WP4718 Cholesterol metabolism with Bloch and Kandutsch-Russell pathways lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP4347 Eicosanoid metabolism via cyclooxygenases (COX) RO:HOM0000017 wikipathways WP4719 Eicosanoid metabolism via cyclooxygenases (COX) lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP435 One-carbon metabolism RO:HOM0000017 wikipathways WP796 One-carbon metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP435 One-carbon metabolism RO:HOM0000017 wikipathways WP909 One-carbon metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP4350 Omega-3 / omega-6 fatty acid synthesis RO:HOM0000017 wikipathways WP4723 Omega-3 / omega-6 fatty acid synthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP4351 Omega-9 fatty acid synthesis RO:HOM0000017 wikipathways WP4724 Omega-9 fatty acid synthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP436 Glycogen metabolism RO:HOM0000017 wikipathways WP835 Glycogen metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP436 Glycogen metabolism RO:HOM0000017 wikipathways WP955 Glycogen metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP437 EGF/EGFR signaling pathway RO:HOM0000017 wikipathways WP978 EGF/EGFR signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP438 Non-homologous end joining RO:HOM0000017 wikipathways WP979 Non-homologous end joining lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP439 Insulin signaling RO:HOM0000017 wikipathways WP481 Insulin signaling lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP439 Insulin signaling RO:HOM0000017 wikipathways WP65 Insulin signaling lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP439 Insulin signaling RO:HOM0000017 wikipathways WP743 Insulin signaling lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP439 Insulin signaling RO:HOM0000017 wikipathways WP966 Insulin signaling lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP44 IL-5 signaling pathway RO:HOM0000017 wikipathways WP968 IL-5 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP441 Matrix metalloproteinases RO:HOM0000017 wikipathways WP823 Matrix metalloproteinases lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP441 Matrix metalloproteinases RO:HOM0000017 wikipathways WP942 Matrix metalloproteinases lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP442 Hypertrophy model RO:HOM0000017 wikipathways WP516 Hypertrophy model lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP442 Hypertrophy model RO:HOM0000017 wikipathways WP982 Hypertrophy model lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP444 Hepatocyte growth factor receptor signaling RO:HOM0000017 wikipathways WP810 Hepatocyte growth factor receptor signaling lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP444 Hepatocyte growth factor receptor signaling RO:HOM0000017 wikipathways WP927 Hepatocyte growth factor receptor signaling lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP444 Hepatocyte growth factor receptor signaling RO:HOM0000017 wikipathways WP94 Hepatocyte growth factor receptor signaling lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP445 G1 to S cell cycle control RO:HOM0000017 wikipathways WP45 G1 to S cell cycle control lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP445 G1 to S cell cycle control RO:HOM0000017 wikipathways WP840 G1 to S cell cycle control lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP445 G1 to S cell cycle control RO:HOM0000017 wikipathways WP959 G1 to S cell cycle control lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP448 Mitochondrial long chain fatty acid beta-oxidation RO:HOM0000017 wikipathways WP498 Mitochondrial long chain fatty acid beta-oxidation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP448 Mitochondrial long chain fatty acid beta-oxidation RO:HOM0000017 wikipathways WP763 Mitochondrial long chain fatty acid beta-oxidation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP448 Mitochondrial long chain fatty acid beta-oxidation RO:HOM0000017 wikipathways WP989 Mitochondrial long chain fatty acid beta-oxidation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP45 G1 to S cell cycle control RO:HOM0000017 wikipathways WP840 G1 to S cell cycle control lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP45 G1 to S cell cycle control RO:HOM0000017 wikipathways WP959 G1 to S cell cycle control lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP450 IL-2 signaling pathway RO:HOM0000017 wikipathways WP49 IL-2 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP450 IL-2 signaling pathway RO:HOM0000017 wikipathways WP569 IL-2 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP450 IL-2 signaling pathway RO:HOM0000017 wikipathways WP973 IL-2 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP451 DNA replication RO:HOM0000017 wikipathways WP466 DNA replication lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP451 DNA replication RO:HOM0000017 wikipathways WP484 DNA replication lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP451 DNA replication RO:HOM0000017 wikipathways WP565 DNA replication lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP451 DNA replication RO:HOM0000017 wikipathways WP757 DNA replication lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP451 DNA replication RO:HOM0000017 wikipathways WP865 DNA replication lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP451 DNA replication RO:HOM0000017 wikipathways WP983 DNA replication lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP453 Inflammatory response pathway RO:HOM0000017 wikipathways WP458 Inflammatory response pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP454 Osteoclast signaling RO:HOM0000017 wikipathways WP890 Osteoclast signaling lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP455 GPCRs, class A rhodopsin-like RO:HOM0000017 wikipathways WP473 GPCRs, class A rhodopsin-like lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP460 Blood clotting cascade RO:HOM0000017 wikipathways WP775 Blood clotting cascade lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP460 Blood clotting cascade RO:HOM0000017 wikipathways WP887 Blood clotting cascade lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP461 Cholesterol biosynthesis RO:HOM0000017 wikipathways WP833 Cholesterol biosynthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP461 Cholesterol biosynthesis RO:HOM0000017 wikipathways WP952 Cholesterol biosynthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP465 Tryptophan metabolism RO:HOM0000017 wikipathways WP79 Tryptophan metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP466 DNA replication RO:HOM0000017 wikipathways WP484 DNA replication lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP466 DNA replication RO:HOM0000017 wikipathways WP565 DNA replication lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP466 DNA replication RO:HOM0000017 wikipathways WP757 DNA replication lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP466 DNA replication RO:HOM0000017 wikipathways WP865 DNA replication lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP466 DNA replication RO:HOM0000017 wikipathways WP983 DNA replication lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP467 mRNA processing RO:HOM0000017 wikipathways WP529 mRNA processing lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP467 mRNA processing RO:HOM0000017 wikipathways WP793 mRNA processing lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP467 mRNA processing RO:HOM0000017 wikipathways WP906 mRNA Processing lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP468 ACE inhibitor pathway RO:HOM0000017 wikipathways WP554 ACE inhibitor pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP468 ACE inhibitor pathway RO:HOM0000017 wikipathways WP557 ACE inhibitor pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP468 ACE inhibitor pathway RO:HOM0000017 wikipathways WP801 ACE inhibitor pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP468 ACE inhibitor pathway RO:HOM0000017 wikipathways WP915 ACE inhibitor pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP470 Proteasome degradation RO:HOM0000017 wikipathways WP519 Proteasome degradation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP475 Irinotecan pathway RO:HOM0000017 wikipathways WP961 Irinotecan pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP476 Acetylcholine synthesis RO:HOM0000017 wikipathways WP528 Acetylcholine synthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP477 Cytoplasmic ribosomal proteins RO:HOM0000017 wikipathways WP540 Cytoplasmic ribosomal proteins lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP481 Insulin signaling RO:HOM0000017 wikipathways WP65 Insulin signaling lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP481 Insulin signaling RO:HOM0000017 wikipathways WP743 Insulin signaling lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP481 Insulin signaling RO:HOM0000017 wikipathways WP966 Insulin signaling lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP4820 GDNF/RET signaling axis RO:HOM0000017 wikipathways WP4830 GDNF/RET signaling axis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP4835 Peroxiredoxin 2 induced ovarian failure RO:HOM0000017 wikipathways WP4873 Peroxiredoxin 2 induced ovarian failure lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP484 DNA replication RO:HOM0000017 wikipathways WP565 DNA replication lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP484 DNA replication RO:HOM0000017 wikipathways WP757 DNA replication lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP484 DNA replication RO:HOM0000017 wikipathways WP865 DNA replication lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP484 DNA replication RO:HOM0000017 wikipathways WP983 DNA replication lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP485 Alpha 6 beta 4 integrin signaling pathway RO:HOM0000017 wikipathways WP488 Alpha 6 beta 4 integrin signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP487 Apoptosis modulation by HSP70 RO:HOM0000017 wikipathways WP963 Apoptosis modulation by HSP70 lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP49 IL-2 signaling pathway RO:HOM0000017 wikipathways WP569 IL-2 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP49 IL-2 signaling pathway RO:HOM0000017 wikipathways WP973 IL-2 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP490 TCA cycle RO:HOM0000017 wikipathways WP76 TCA cycle lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP490 TCA cycle RO:HOM0000017 wikipathways WP999 TCA cycle lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP491 Eukaryotic transcription initiation RO:HOM0000017 wikipathways WP518 Eukaryotic transcription initiation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP491 Eukaryotic transcription initiation RO:HOM0000017 wikipathways WP567 Eukaryotic transcription initiation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP491 Eukaryotic transcription initiation RO:HOM0000017 wikipathways WP830 Eukaryotic transcription initiation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP491 Eukaryotic transcription initiation RO:HOM0000017 wikipathways WP948 Eukaryotic transcription initiation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP492 Hedgehog signaling pathway RO:HOM0000017 wikipathways WP574 Hedgehog signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP492 Hedgehog signaling pathway RO:HOM0000017 wikipathways WP790 Hedgehog signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP492 Hedgehog signaling pathway RO:HOM0000017 wikipathways WP905 Hedgehog signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP493 Mapk signaling pathway RO:HOM0000017 wikipathways WP510 MAPK signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP493 Mapk signaling pathway RO:HOM0000017 wikipathways WP769 MAPK signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP493 Mapk signaling pathway RO:HOM0000017 wikipathways WP880 MAPK signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP493 Mapk signaling pathway RO:HOM0000017 wikipathways WP998 MAPK signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP496 Steroid biosynthesis RO:HOM0000017 wikipathways WP55 Steroid biosynthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP496 Steroid biosynthesis RO:HOM0000017 wikipathways WP66 Steroid biosynthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP498 Mitochondrial long chain fatty acid beta-oxidation RO:HOM0000017 wikipathways WP763 Mitochondrial long chain fatty acid beta-oxidation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP498 Mitochondrial long chain fatty acid beta-oxidation RO:HOM0000017 wikipathways WP989 Mitochondrial long chain fatty acid beta-oxidation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP5 EGFR1 signaling pathway RO:HOM0000017 wikipathways WP572 EGFR1 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP5 EGFR1 signaling pathway RO:HOM0000017 wikipathways WP752 EGFR1 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP5 EGFR1 signaling pathway RO:HOM0000017 wikipathways WP860 EGFR1 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP502 Nucleotide GPCRs RO:HOM0000017 wikipathways WP80 Nucleotide GPCRs lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP504 Fatty acid biosynthesis RO:HOM0000017 wikipathways WP568 Fatty acid biosynthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP5055 Burn wound healing RO:HOM0000017 wikipathways WP5056 Burn Wound Healing lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP5055 Burn wound healing RO:HOM0000017 wikipathways WP5057 Burn wound healing lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP5055 Burn wound healing RO:HOM0000017 wikipathways WP5058 Burn Wound Healing lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP5056 Burn Wound Healing RO:HOM0000017 wikipathways WP5057 Burn wound healing lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP5056 Burn Wound Healing RO:HOM0000017 wikipathways WP5058 Burn Wound Healing lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP5057 Burn wound healing RO:HOM0000017 wikipathways WP5058 Burn Wound Healing lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP509 Nuclear Receptors RO:HOM0000017 wikipathways WP831 Nuclear receptors lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP509 Nuclear Receptors RO:HOM0000017 wikipathways WP950 Nuclear receptors lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP51 Regulation of actin cytoskeleton RO:HOM0000017 wikipathways WP523 Regulation of actin cytoskeleton lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP51 Regulation of actin cytoskeleton RO:HOM0000017 wikipathways WP824 Regulation of actin cytoskeleton lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP510 MAPK signaling pathway RO:HOM0000017 wikipathways WP769 MAPK signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP510 MAPK signaling pathway RO:HOM0000017 wikipathways WP880 MAPK signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP510 MAPK signaling pathway RO:HOM0000017 wikipathways WP998 MAPK signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP511 FAS pathway and stress induction of HSP regulation RO:HOM0000017 wikipathways WP571 FAS pathway and stress induction of HSP regulation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP511 FAS pathway and stress induction of HSP regulation RO:HOM0000017 wikipathways WP788 FAS pathway and stress induction of HSP regulation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP511 FAS pathway and stress induction of HSP regulation RO:HOM0000017 wikipathways WP89 FAS pathway and stress induction of HSP regulation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP511 FAS pathway and stress induction of HSP regulation RO:HOM0000017 wikipathways WP902 FAS pathway and stress induction of HSP regulation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP512 Id signaling pathway RO:HOM0000017 wikipathways WP53 ID signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP512 Id signaling pathway RO:HOM0000017 wikipathways WP934 Id signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP515 Glycolysis and gluconeogenesis RO:HOM0000017 wikipathways WP534 Glycolysis and gluconeogenesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP515 Glycolysis and gluconeogenesis RO:HOM0000017 wikipathways WP96 Glycolysis and Gluconeogenesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP516 Hypertrophy model RO:HOM0000017 wikipathways WP982 Hypertrophy model lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP517 Notch signaling pathway RO:HOM0000017 wikipathways WP798 Notch signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP517 Notch signaling pathway RO:HOM0000017 wikipathways WP912 Notch signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP518 Eukaryotic transcription initiation RO:HOM0000017 wikipathways WP567 Eukaryotic transcription initiation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP518 Eukaryotic transcription initiation RO:HOM0000017 wikipathways WP830 Eukaryotic transcription initiation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP518 Eukaryotic transcription initiation RO:HOM0000017 wikipathways WP948 Eukaryotic transcription initiation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP520 G13 signaling pathway RO:HOM0000017 wikipathways WP524 G13 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP520 G13 signaling pathway RO:HOM0000017 wikipathways WP826 G13 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP520 G13 signaling pathway RO:HOM0000017 wikipathways WP945 G13 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP522 Biogenic amine synthesis RO:HOM0000017 wikipathways WP550 Biogenic amine synthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP523 Regulation of actin cytoskeleton RO:HOM0000017 wikipathways WP824 Regulation of actin cytoskeleton lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP524 G13 signaling pathway RO:HOM0000017 wikipathways WP826 G13 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP524 G13 signaling pathway RO:HOM0000017 wikipathways WP945 G13 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP529 mRNA processing RO:HOM0000017 wikipathways WP793 mRNA processing lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP529 mRNA processing RO:HOM0000017 wikipathways WP906 mRNA Processing lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP53 ID signaling pathway RO:HOM0000017 wikipathways WP934 Id signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP530 Cytokines and inflammatory response RO:HOM0000017 wikipathways WP879 Cytokines and inflammatory response lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP530 Cytokines and inflammatory response RO:HOM0000017 wikipathways WP997 Cytokines and inflammatory response lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP534 Glycolysis and gluconeogenesis RO:HOM0000017 wikipathways WP96 Glycolysis and Gluconeogenesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP536 Calcium regulation in cardiac cells RO:HOM0000017 wikipathways WP553 Calcium regulation in cardiac cells lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP536 Calcium regulation in cardiac cells RO:HOM0000017 wikipathways WP808 Calcium regulation in cardiac cells lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP536 Calcium regulation in cardiac cells RO:HOM0000017 wikipathways WP923 Calcium regulation in cardiac cells lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP537 Translation factors RO:HOM0000017 wikipathways WP965 Translation factors lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP539 Wnt signaling pathway (NetPath) RO:HOM0000017 wikipathways WP980 Wnt signaling pathway (Netpath) lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP542 Electron transport chain RO:HOM0000017 wikipathways WP59 Electron transport chain lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP544 Exercise-induced circadian regulation RO:HOM0000017 wikipathways WP562 Exercise-induced circadian regulation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP547 Complement and coagulation cascades RO:HOM0000017 wikipathways WP558 Complement and coagulation cascades lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP55 Steroid biosynthesis RO:HOM0000017 wikipathways WP66 Steroid biosynthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP553 Calcium regulation in cardiac cells RO:HOM0000017 wikipathways WP808 Calcium regulation in cardiac cells lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP553 Calcium regulation in cardiac cells RO:HOM0000017 wikipathways WP923 Calcium regulation in cardiac cells lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP554 ACE inhibitor pathway RO:HOM0000017 wikipathways WP557 ACE inhibitor pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP554 ACE inhibitor pathway RO:HOM0000017 wikipathways WP801 ACE inhibitor pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP554 ACE inhibitor pathway RO:HOM0000017 wikipathways WP915 ACE inhibitor pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP557 ACE inhibitor pathway RO:HOM0000017 wikipathways WP801 ACE inhibitor pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP557 ACE inhibitor pathway RO:HOM0000017 wikipathways WP915 ACE inhibitor pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP561 Heme biosynthesis RO:HOM0000017 wikipathways WP848 Heme biosynthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP561 Heme biosynthesis RO:HOM0000017 wikipathways WP86 Heme biosynthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP561 Heme biosynthesis RO:HOM0000017 wikipathways WP967 Heme biosynthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP565 DNA replication RO:HOM0000017 wikipathways WP757 DNA replication lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP565 DNA replication RO:HOM0000017 wikipathways WP865 DNA replication lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP565 DNA replication RO:HOM0000017 wikipathways WP983 DNA replication lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP567 Eukaryotic transcription initiation RO:HOM0000017 wikipathways WP830 Eukaryotic transcription initiation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP567 Eukaryotic transcription initiation RO:HOM0000017 wikipathways WP948 Eukaryotic transcription initiation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP569 IL-2 signaling pathway RO:HOM0000017 wikipathways WP973 IL-2 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP570 Monoamine GPCRs RO:HOM0000017 wikipathways WP58 Monoamine GPCRs lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP570 Monoamine GPCRs RO:HOM0000017 wikipathways WP839 Monoamine GPCRs lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP570 Monoamine GPCRs RO:HOM0000017 wikipathways WP957 Monoamine GPCRs lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP571 FAS pathway and stress induction of HSP regulation RO:HOM0000017 wikipathways WP788 FAS pathway and stress induction of HSP regulation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP571 FAS pathway and stress induction of HSP regulation RO:HOM0000017 wikipathways WP89 FAS pathway and stress induction of HSP regulation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP571 FAS pathway and stress induction of HSP regulation RO:HOM0000017 wikipathways WP902 FAS pathway and stress induction of HSP regulation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP572 EGFR1 signaling pathway RO:HOM0000017 wikipathways WP752 EGFR1 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP572 EGFR1 signaling pathway RO:HOM0000017 wikipathways WP860 EGFR1 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP574 Hedgehog signaling pathway RO:HOM0000017 wikipathways WP790 Hedgehog signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP574 Hedgehog signaling pathway RO:HOM0000017 wikipathways WP905 Hedgehog signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP58 Monoamine GPCRs RO:HOM0000017 wikipathways WP839 Monoamine GPCRs lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP58 Monoamine GPCRs RO:HOM0000017 wikipathways WP957 Monoamine GPCRs lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP581 EPO receptor signaling RO:HOM0000017 wikipathways WP768 EPO receptor signaling lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP581 EPO receptor signaling RO:HOM0000017 wikipathways WP878 EPO receptor signaling lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP581 EPO receptor signaling RO:HOM0000017 wikipathways WP996 EPO receptor signaling lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP6 Integrin-mediated cell adhesion RO:HOM0000017 wikipathways WP74 Integrin-mediated cell adhesion lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP6 Integrin-mediated cell adhesion RO:HOM0000017 wikipathways WP832 Integrin-mediated cell adhesion lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP6 Integrin-mediated cell adhesion RO:HOM0000017 wikipathways WP951 Integrin-mediated cell adhesion lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP623 Oxidative phosphorylation RO:HOM0000017 wikipathways WP994 Oxidative phosphorylation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP65 Insulin signaling RO:HOM0000017 wikipathways WP743 Insulin signaling lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP65 Insulin signaling RO:HOM0000017 wikipathways WP966 Insulin signaling lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP690 Polyol pathway RO:HOM0000017 wikipathways WP936 Polyol pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP694 Arylamine metabolism RO:HOM0000017 wikipathways WP993 Arylamine metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP699 Aflatoxin B1 metabolism RO:HOM0000017 wikipathways WP925 Aflatoxin B1 metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP704 Methylation pathways RO:HOM0000017 wikipathways WP992 Methylation pathways lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP712 Estrogen signaling pathway RO:HOM0000017 wikipathways WP986 Estrogen signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP723 Wnt signaling pathway and pluripotency RO:HOM0000017 wikipathways WP779 Wnt signaling pathway and pluripotency lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP73 G protein signaling pathways RO:HOM0000017 wikipathways WP813 G protein signaling pathways lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP73 G protein signaling pathways RO:HOM0000017 wikipathways WP931 G protein signaling pathways lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP74 Integrin-mediated cell adhesion RO:HOM0000017 wikipathways WP832 Integrin-mediated cell adhesion lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP74 Integrin-mediated cell adhesion RO:HOM0000017 wikipathways WP951 Integrin-mediated cell adhesion lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP743 Insulin signaling RO:HOM0000017 wikipathways WP966 Insulin signaling lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP752 EGFR1 signaling pathway RO:HOM0000017 wikipathways WP860 EGFR1 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP755 Nuclear receptors in lipid metabolism and toxicity RO:HOM0000017 wikipathways WP863 Nuclear receptors in lipid metabolism and toxicity lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP755 Nuclear receptors in lipid metabolism and toxicity RO:HOM0000017 wikipathways WP981 Nuclear receptors in lipid metabolism and toxicity lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP757 DNA replication RO:HOM0000017 wikipathways WP865 DNA replication lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP757 DNA replication RO:HOM0000017 wikipathways WP983 DNA replication lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP76 TCA cycle RO:HOM0000017 wikipathways WP999 TCA cycle lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP763 Mitochondrial long chain fatty acid beta-oxidation RO:HOM0000017 wikipathways WP989 Mitochondrial long chain fatty acid beta-oxidation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP768 EPO receptor signaling RO:HOM0000017 wikipathways WP878 EPO receptor signaling lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP768 EPO receptor signaling RO:HOM0000017 wikipathways WP996 EPO receptor signaling lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP769 MAPK signaling pathway RO:HOM0000017 wikipathways WP880 MAPK signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP769 MAPK signaling pathway RO:HOM0000017 wikipathways WP998 MAPK signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP774 Kit receptor signaling pathway RO:HOM0000017 wikipathways WP886 Kit receptor signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP775 Blood clotting cascade RO:HOM0000017 wikipathways WP887 Blood clotting cascade lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP784 Ketone bodies synthesis and degradation RO:HOM0000017 wikipathways WP898 Ketone bodies synthesis and degradation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP785 Wnt signaling pathway RO:HOM0000017 wikipathways WP899 Wnt signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP785 Wnt signaling pathway RO:HOM0000017 wikipathways WP97 Wnt signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP788 FAS pathway and stress induction of HSP regulation RO:HOM0000017 wikipathways WP89 FAS pathway and stress induction of HSP regulation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP788 FAS pathway and stress induction of HSP regulation RO:HOM0000017 wikipathways WP902 FAS pathway and stress induction of HSP regulation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP790 Hedgehog signaling pathway RO:HOM0000017 wikipathways WP905 Hedgehog signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP793 mRNA processing RO:HOM0000017 wikipathways WP906 mRNA Processing lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP796 One-carbon metabolism RO:HOM0000017 wikipathways WP909 One-carbon metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP798 Notch signaling pathway RO:HOM0000017 wikipathways WP912 Notch signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP799 Nod-like receptor (NLR) signaling pathway RO:HOM0000017 wikipathways WP914 Nod-like receptor (NLR) signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP8 IL-9 signaling pathway RO:HOM0000017 wikipathways WP974 IL-9 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP801 ACE inhibitor pathway RO:HOM0000017 wikipathways WP915 ACE inhibitor pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP803 p38 MAPK signaling pathway RO:HOM0000017 wikipathways WP918 p38 MAPK signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP804 Homologous recombination RO:HOM0000017 wikipathways WP917 Homologous recombination lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP808 Calcium regulation in cardiac cells RO:HOM0000017 wikipathways WP923 Calcium regulation in cardiac cells lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP810 Hepatocyte growth factor receptor signaling RO:HOM0000017 wikipathways WP927 Hepatocyte growth factor receptor signaling lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP810 Hepatocyte growth factor receptor signaling RO:HOM0000017 wikipathways WP94 Hepatocyte growth factor receptor signaling lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP813 G protein signaling pathways RO:HOM0000017 wikipathways WP931 G protein signaling pathways lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP823 Matrix metalloproteinases RO:HOM0000017 wikipathways WP942 Matrix metalloproteinases lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP826 G13 signaling pathway RO:HOM0000017 wikipathways WP945 G13 signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP827 Delta-Notch signaling pathway RO:HOM0000017 wikipathways WP946 Delta-Notch signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP830 Eukaryotic transcription initiation RO:HOM0000017 wikipathways WP948 Eukaryotic transcription initiation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP831 Nuclear receptors RO:HOM0000017 wikipathways WP950 Nuclear receptors lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP832 Integrin-mediated cell adhesion RO:HOM0000017 wikipathways WP951 Integrin-mediated cell adhesion lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP833 Cholesterol biosynthesis RO:HOM0000017 wikipathways WP952 Cholesterol biosynthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP835 Glycogen metabolism RO:HOM0000017 wikipathways WP955 Glycogen metabolism lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP839 Monoamine GPCRs RO:HOM0000017 wikipathways WP957 Monoamine GPCRs lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP840 G1 to S cell cycle control RO:HOM0000017 wikipathways WP959 G1 to S cell cycle control lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP844 Cell cycle RO:HOM0000017 wikipathways WP964 Cell cycle lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP848 Heme biosynthesis RO:HOM0000017 wikipathways WP86 Heme biosynthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP848 Heme biosynthesis RO:HOM0000017 wikipathways WP967 Heme biosynthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP852 Fatty acid omega-oxidation RO:HOM0000017 wikipathways WP970 Fatty acid omega-oxidation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP854 Eicosanoid synthesis RO:HOM0000017 wikipathways WP972 Eicosanoid synthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP86 Heme biosynthesis RO:HOM0000017 wikipathways WP967 Heme biosynthesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP863 Nuclear receptors in lipid metabolism and toxicity RO:HOM0000017 wikipathways WP981 Nuclear receptors in lipid metabolism and toxicity lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP865 DNA replication RO:HOM0000017 wikipathways WP983 DNA replication lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP869 Adipogenesis RO:HOM0000017 wikipathways WP987 Adipogenesis lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP878 EPO receptor signaling RO:HOM0000017 wikipathways WP996 EPO receptor signaling lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP879 Cytokines and inflammatory response RO:HOM0000017 wikipathways WP997 Cytokines and inflammatory response lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP880 MAPK signaling pathway RO:HOM0000017 wikipathways WP998 MAPK signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP89 FAS pathway and stress induction of HSP regulation RO:HOM0000017 wikipathways WP902 FAS pathway and stress induction of HSP regulation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP899 Wnt signaling pathway RO:HOM0000017 wikipathways WP97 Wnt signaling pathway lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP927 Hepatocyte growth factor receptor signaling RO:HOM0000017 wikipathways WP94 Hepatocyte growth factor receptor signaling lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py -wikipathways WP98 Prostaglandin synthesis and regulation RO:HOM0000017 wikipathways WP995 Prostaglandin synthesis and regulation lexical 0.99 https://github.com/biomappings/biomappings/blob/c2f332/scripts/generate_wikipathways_orthologs.py +uberon UBERON:0000016 endocrine pancreas skos:exactMatch mesh D007515 Islets of Langerhans lexical 0.9 generate_uberon_mesh_mappings.py +uberon UBERON:0000044 dorsal root ganglion skos:exactMatch mesh D005727 Ganglia, Spinal lexical 0.9 generate_uberon_mesh_mappings.py +uberon UBERON:0000167 oral cavity skos:exactMatch mesh D009055 Mouth lexical 0.9 generate_uberon_mesh_mappings.py +uberon UBERON:0000341 throat skos:exactMatch mesh D010614 Pharynx lexical 0.9 generate_uberon_mesh_mappings.py +uberon UBERON:0000990 reproductive system skos:exactMatch mesh D005835 Genitalia lexical 0.9 generate_uberon_mesh_mappings.py +uberon UBERON:0001009 circulatory system skos:exactMatch mesh D002319 Cardiovascular System lexical 0.9 generate_uberon_mesh_mappings.py +uberon UBERON:0001173 biliary tree skos:exactMatch mesh D001659 Biliary Tract lexical 0.9 generate_uberon_mesh_mappings.py +uberon UBERON:0001268 peritoneal fluid skos:exactMatch mesh D001202 Ascitic Fluid lexical 0.9 generate_uberon_mesh_mappings.py +uberon UBERON:0001377 quadriceps femoris skos:exactMatch mesh D052097 Quadriceps Muscle lexical 0.9 generate_uberon_mesh_mappings.py +uberon UBERON:0001439 compact bone tissue skos:exactMatch mesh D000071538 Cortical Bone lexical 0.9 generate_uberon_mesh_mappings.py +uberon UBERON:0001555 digestive tract skos:exactMatch mesh D041981 Gastrointestinal Tract lexical 0.9 generate_uberon_mesh_mappings.py +uberon UBERON:0001601 extra-ocular muscle skos:exactMatch mesh D009801 Oculomotor Muscles lexical 0.9 generate_uberon_mesh_mappings.py +uberon UBERON:0001683 jugal bone skos:exactMatch mesh D015050 Zygoma lexical 0.9 generate_uberon_mesh_mappings.py +uberon UBERON:0001742 epiglottic cartilage skos:exactMatch mesh D004825 Epiglottis lexical 0.9 generate_uberon_mesh_mappings.py +uberon UBERON:0001797 vitreous humor skos:exactMatch mesh D014822 Vitreous Body lexical 0.9 generate_uberon_mesh_mappings.py +uberon UBERON:0001870 frontal cortex skos:exactMatch mesh D005625 Frontal Lobe lexical 0.9 generate_uberon_mesh_mappings.py +uberon UBERON:0001943 midbrain tegmentum skos:exactMatch mesh D013681 Tegmentum Mesencephali lexical 0.9 generate_uberon_mesh_mappings.py +uberon UBERON:0001965 substantia nigra pars compacta skos:exactMatch mesh D065842 Pars Compacta lexical 0.9 generate_uberon_mesh_mappings.py +uberon UBERON:0001966 substantia nigra pars reticulata skos:exactMatch mesh D065841 Pars Reticulata lexical 0.9 generate_uberon_mesh_mappings.py +uberon UBERON:0002072 hypodermis skos:exactMatch mesh D040521 Subcutaneous Tissue lexical 0.9 generate_uberon_mesh_mappings.py +uberon UBERON:0002090 postcranial axial skeleton skos:exactMatch mesh D013131 Spine lexical 0.9 generate_uberon_mesh_mappings.py +uberon UBERON:0002101 limb skos:exactMatch mesh D005121 Extremities lexical 0.9 generate_uberon_mesh_mappings.py +uberon UBERON:0002141 parvocellular oculomotor nucleus skos:exactMatch mesh D065839 Edinger-Westphal Nucleus lexical 0.9 generate_uberon_mesh_mappings.py +uberon UBERON:0002142 pedunculopontine tegmental nucleus skos:exactMatch mesh D045042 Pedunculopontine Tegmental Nucleus lexical 0.9 generate_uberon_mesh_mappings.py +uberon UBERON:0002190 subcutaneous adipose tissue skos:exactMatch mesh D015434 Panniculitis lexical 0.9 generate_uberon_mesh_mappings.py +uberon UBERON:0002207 xiphoid process skos:exactMatch mesh D014989 Xiphoid Bone lexical 0.9 generate_uberon_mesh_mappings.py +uberon UBERON:0002295 scala media skos:exactMatch mesh D003053 Cochlear Duct lexical 0.9 generate_uberon_mesh_mappings.py +uberon UBERON:0002393 pharyngotympanic tube skos:exactMatch mesh D005064 Eustachian Tube lexical 0.9 generate_uberon_mesh_mappings.py +uberon UBERON:0002590 prepyriform area skos:exactMatch mesh D066195 Piriform Cortex lexical 0.9 generate_uberon_mesh_mappings.py +uberon UBERON:0002633 motor nucleus of trigeminal nerve skos:exactMatch mesh D066266 Trigeminal Motor Nucleus lexical 0.9 generate_uberon_mesh_mappings.py +uberon UBERON:0002656 periamygdaloid area skos:exactMatch mesh D066277 Periamygdaloid Cortex lexical 0.9 generate_uberon_mesh_mappings.py +uberon UBERON:0002689 supraoptic crest skos:exactMatch mesh D066278 Organum Vasculosum lexical 0.9 generate_uberon_mesh_mappings.py +uberon UBERON:0002704 metathalamus skos:exactMatch mesh D005829 Geniculate Bodies lexical 0.9 generate_uberon_mesh_mappings.py +uberon UBERON:0002705 midline nuclear group skos:exactMatch mesh D020644 Midline Thalamic Nuclei lexical 0.9 generate_uberon_mesh_mappings.py +uberon UBERON:0002726 cervical spinal cord skos:exactMatch mesh D066193 Cervical Cord lexical 0.9 generate_uberon_mesh_mappings.py +uberon UBERON:0002754 predorsal bundle skos:exactMatch mesh D065844 Tectospinal Fibers lexical 0.9 generate_uberon_mesh_mappings.py +uberon UBERON:0002776 ventral nuclear group skos:exactMatch mesh D020651 Ventral Thalamic Nuclei lexical 0.9 generate_uberon_mesh_mappings.py +uberon UBERON:0002895 secondary olfactory cortex skos:exactMatch mesh D018728 Entorhinal Cortex lexical 0.9 generate_uberon_mesh_mappings.py +uberon UBERON:0002967 cingulate gyrus skos:exactMatch mesh D006179 Gyrus Cinguli lexical 0.9 generate_uberon_mesh_mappings.py +uberon UBERON:0003011 facial motor nucleus skos:exactMatch mesh D065828 Facial Nucleus lexical 0.9 generate_uberon_mesh_mappings.py +uberon UBERON:0003128 cranium skos:exactMatch mesh D012886 Skull lexical 0.9 generate_uberon_mesh_mappings.py +uberon UBERON:0004550 gastroesophageal sphincter skos:exactMatch mesh D049630 Esophageal Sphincter, Lower lexical 0.9 generate_uberon_mesh_mappings.py +uberon UBERON:0005343 cortical plate skos:exactMatch mesh D002540 Cerebral Cortex lexical 0.9 generate_uberon_mesh_mappings.py +uberon UBERON:0005366 olfactory lobe skos:exactMatch mesh D066194 Olfactory Cortex lexical 0.9 generate_uberon_mesh_mappings.py +uberon UBERON:0005902 occipital region skos:exactMatch mesh D009778 Occipital Lobe lexical 0.9 generate_uberon_mesh_mappings.py +uberon UBERON:0006098 basal nuclear complex skos:exactMatch mesh D001479 Basal Ganglia lexical 0.9 generate_uberon_mesh_mappings.py +uberon UBERON:0006514 pallidum skos:exactMatch mesh D005917 Globus Pallidus lexical 0.9 generate_uberon_mesh_mappings.py +uberon UBERON:0006657 glenoid fossa skos:exactMatch mesh D061165 Glenoid Cavity lexical 0.9 generate_uberon_mesh_mappings.py +uberon UBERON:0006692 vertebral canal skos:exactMatch mesh D013115 Spinal Canal lexical 0.9 generate_uberon_mesh_mappings.py +uberon UBERON:0006810 olecranon skos:exactMatch mesh D056740 Olecranon Process lexical 0.9 generate_uberon_mesh_mappings.py +uberon UBERON:0007251 preoptic nucleus skos:exactMatch mesh D011301 Preoptic Area lexical 0.9 generate_uberon_mesh_mappings.py +uberon UBERON:0007380 dermal scale skos:exactMatch mesh D000075342 Animal Scales lexical 0.9 generate_uberon_mesh_mappings.py +uberon UBERON:0007381 epidermal scale skos:exactMatch mesh D000075342 Animal Scales lexical 0.9 generate_uberon_mesh_mappings.py +uberon UBERON:0007641 trigeminal nuclear complex skos:exactMatch mesh D014278 Trigeminal Nuclei lexical 0.9 generate_uberon_mesh_mappings.py +uberon UBERON:0008275 carapace skos:exactMatch mesh D060105 Animal Shells lexical 0.9 generate_uberon_mesh_mappings.py +uberon UBERON:0008969 dental follicle skos:exactMatch mesh D003795 Dental Sac lexical 0.9 generate_uberon_mesh_mappings.py +uberon UBERON:0009040 deep circumflex iliac artery skos:exactMatch mesh D007083 Iliac Artery lexical 0.9 generate_uberon_mesh_mappings.py +uberon UBERON:0009951 main olfactory bulb skos:exactMatch mesh D009830 Olfactory Bulb lexical 0.9 generate_uberon_mesh_mappings.py +uberon UBERON:0011117 superior tibiofibular joint skos:exactMatch mesh D007719 Knee Joint lexical 0.9 generate_uberon_mesh_mappings.py +uberon UBERON:0011132 intercarpal joint skos:exactMatch mesh D050824 Carpal Joints lexical 0.9 generate_uberon_mesh_mappings.py +uberon UBERON:0014621 cervical spinal cord ventral horn skos:exactMatch mesh D066151 Spinal Cord Ventral Horn lexical 0.9 generate_uberon_mesh_mappings.py +uberon UBERON:0016435 chest wall skos:exactMatch mesh D035441 Thoracic Wall lexical 0.9 generate_uberon_mesh_mappings.py +uberon UBERON:0016530 parietal cortex skos:exactMatch mesh D010296 Parietal Lobe lexical 0.9 generate_uberon_mesh_mappings.py +uberon UBERON:0016538 temporal cortex skos:exactMatch mesh D013702 Temporal Lobe lexical 0.9 generate_uberon_mesh_mappings.py +uberon UBERON:0018141 anterior perforated substance skos:exactMatch mesh D066208 Olfactory Tubercle lexical 0.9 generate_uberon_mesh_mappings.py +uberon UBERON:2000006 ball skos:exactMatch mesh D015452 Precursor B-Cell Lymphoblastic Leukemia-Lymphoma lexical 0.9 generate_uberon_mesh_mappings.py +uberon UBERON:2000188 corpus cerebelli skos:exactMatch mesh D002531 Cerebellum lexical 0.9 generate_uberon_mesh_mappings.py +uberon UBERON:3011045 gasserian ganglion skos:exactMatch mesh D012668 Trigeminal Ganglion lexical 0.9 generate_uberon_mesh_mappings.py +uberon UBERON:3011048 genital system skos:exactMatch mesh D005835 Genitalia lexical 0.9 generate_uberon_mesh_mappings.py From 88ff498d9ffc3915e59f1552f64cc9974915e274 Mon Sep 17 00:00:00 2001 From: Charles Tapley Hoyt Date: Mon, 23 May 2022 10:57:21 +0200 Subject: [PATCH 4/5] Update ortholog predictions --- scripts/generate_wikipathways_orthologs.py | 26 +- src/biomappings/resources/predictions.tsv | 1686 ++++++++++++++++++++ 2 files changed, 1704 insertions(+), 8 deletions(-) diff --git a/scripts/generate_wikipathways_orthologs.py b/scripts/generate_wikipathways_orthologs.py index b209b45e..205c6842 100644 --- a/scripts/generate_wikipathways_orthologs.py +++ b/scripts/generate_wikipathways_orthologs.py @@ -6,8 +6,10 @@ from typing import Iterable import pyobo +import bioversions from gilda.process import normalize from tqdm import tqdm +import bioregistry from biomappings.resources import PredictionTuple, append_prediction_tuples from biomappings.utils import get_script_url @@ -19,15 +21,23 @@ def _lexical_exact_match(name1: str, name2: str) -> bool: def iterate_orthologous_lexical_matches(prefix: str = "wikipathways") -> Iterable[PredictionTuple]: """Generate orthologous relations between lexical matches from different species.""" - names = pyobo.get_id_name_mapping(prefix) - species = pyobo.get_id_species_mapping(prefix) + version = bioversions.get_version(prefix) + names = pyobo.get_id_name_mapping(prefix, version=version) + species = pyobo.get_id_species_mapping(prefix, version=version) provenance = get_script_url(__file__) count = 0 - it = itt.combinations(names.items(), 2) - it = tqdm(it, unit_scale=True, unit="pair", total=len(names) * (len(names) - 1) / 2) - for (source_id, source_name), (target_id, target_name) in it: - if species[source_id] == species[target_id]: + it = itt.combinations(sorted(names.items()), 2) + it = tqdm( + it, unit_scale=True, + unit="pair", + total=len(names) * (len(names) - 1) / 2, + desc=f"{bioregistry.get_name(prefix)} v{version}", + ) + for (source_id, source_name), (target_id, target_name) in sorted(it): + source_species = species[source_id] + target_species = species[target_id] + if source_species == target_species: continue if _lexical_exact_match(source_name, target_name): count += 1 @@ -40,10 +50,10 @@ def iterate_orthologous_lexical_matches(prefix: str = "wikipathways") -> Iterabl target_id, target_name, "lexical", - 0.99, + 0.95, provenance, ) - tqdm.write(f"Identified {count} orthologs") + tqdm.write(f"Identified {count:,} orthologs") if __name__ == "__main__": diff --git a/src/biomappings/resources/predictions.tsv b/src/biomappings/resources/predictions.tsv index cfcfaa06..e5f1b2b4 100644 --- a/src/biomappings/resources/predictions.tsv +++ b/src/biomappings/resources/predictions.tsv @@ -40514,3 +40514,1689 @@ uberon UBERON:2000006 ball skos:exactMatch mesh D015452 Precursor B-Cell Lymphob uberon UBERON:2000188 corpus cerebelli skos:exactMatch mesh D002531 Cerebellum lexical 0.9 generate_uberon_mesh_mappings.py uberon UBERON:3011045 gasserian ganglion skos:exactMatch mesh D012668 Trigeminal Ganglion lexical 0.9 generate_uberon_mesh_mappings.py uberon UBERON:3011048 genital system skos:exactMatch mesh D005835 Genitalia lexical 0.9 generate_uberon_mesh_mappings.py +wikipathways WP1 Statin pathway RO:HOM0000017 wikipathways WP1041 Statin pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1 Statin pathway RO:HOM0000017 wikipathways WP1157 Statin pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1 Statin pathway RO:HOM0000017 wikipathways WP145 Statin pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1 Statin pathway RO:HOM0000017 wikipathways WP921 Statin pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP10 IL-9 signaling pathway RO:HOM0000017 wikipathways WP22 IL-9 signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP10 IL-9 signaling pathway RO:HOM0000017 wikipathways WP8 IL-9 signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP10 IL-9 signaling pathway RO:HOM0000017 wikipathways WP974 IL-9 signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP100 Glutathione metabolism RO:HOM0000017 wikipathways WP164 Glutathione metabolism lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP100 Glutathione metabolism RO:HOM0000017 wikipathways WP3207 Glutathione metabolism lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP100 Glutathione metabolism RO:HOM0000017 wikipathways WP469 Glutathione metabolism lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1000 Arachidonate epoxygenase / epoxide hydrolase RO:HOM0000017 wikipathways WP1250 Arachidonate epoxygenase / epoxide hydrolase lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1000 Arachidonate epoxygenase / epoxide hydrolase RO:HOM0000017 wikipathways WP678 Arachidonate epoxygenase / epoxide hydrolase lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1001 Peptide GPCRs RO:HOM0000017 wikipathways WP131 Peptide GPCRs lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1001 Peptide GPCRs RO:HOM0000017 wikipathways WP1338 Peptide GPCRs lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1001 Peptide GPCRs RO:HOM0000017 wikipathways WP24 Peptide GPCRs lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1002 Electron transport chain RO:HOM0000017 wikipathways WP1119 Electron transport chain lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1002 Electron transport chain RO:HOM0000017 wikipathways WP1339 Electron transport chain lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1002 Electron transport chain RO:HOM0000017 wikipathways WP295 Electron transport chain lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1004 Kit receptor signaling pathway RO:HOM0000017 wikipathways WP1121 Kit receptor signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1004 Kit receptor signaling pathway RO:HOM0000017 wikipathways WP147 Kit receptor signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1004 Kit receptor signaling pathway RO:HOM0000017 wikipathways WP304 Kit receptor signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1004 Kit receptor signaling pathway RO:HOM0000017 wikipathways WP407 Kit receptor signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1004 Kit receptor signaling pathway RO:HOM0000017 wikipathways WP774 Kit receptor signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1004 Kit receptor signaling pathway RO:HOM0000017 wikipathways WP886 Kit receptor signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1005 GPCRs, class B secretin-like RO:HOM0000017 wikipathways WP334 GPCRs, class B secretin-like lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1005 GPCRs, class B secretin-like RO:HOM0000017 wikipathways WP378 GPCRs, class B secretin-like lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1005 GPCRs, class B secretin-like RO:HOM0000017 wikipathways WP456 GPCRs, class B secretin-like lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1006 Metapathway biotransformation RO:HOM0000017 wikipathways WP1212 Metapathway biotransformation lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1006 Metapathway biotransformation RO:HOM0000017 wikipathways WP1251 Metapathway biotransformation lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1006 Metapathway biotransformation RO:HOM0000017 wikipathways WP1286 Metapathway biotransformation lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1007 Osteoclast signaling RO:HOM0000017 wikipathways WP12 Osteoclast signaling lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1007 Osteoclast signaling RO:HOM0000017 wikipathways WP454 Osteoclast signaling lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1007 Osteoclast signaling RO:HOM0000017 wikipathways WP890 Osteoclast signaling lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1008 Amino acid conjugation of benzoic acid RO:HOM0000017 wikipathways WP1252 Amino acid conjugation of benzoic acid lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1008 Amino acid conjugation of benzoic acid RO:HOM0000017 wikipathways WP1287 Amino acid conjugation of benzoic acid lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1008 Amino acid conjugation of benzoic acid RO:HOM0000017 wikipathways WP1577 Amino acid conjugation of benzoic acid lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1008 Amino acid conjugation of benzoic acid RO:HOM0000017 wikipathways WP521 Amino acid conjugation of benzoic acid lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP101 Synthesis and degradation of ketone bodies RO:HOM0000017 wikipathways WP349 Synthesis and degradation of ketone bodies lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP101 Synthesis and degradation of ketone bodies RO:HOM0000017 wikipathways WP543 Synthesis and degradation of ketone bodies lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1010 Wnt signaling pathway and pluripotency RO:HOM0000017 wikipathways WP1129 Wnt signaling pathway and pluripotency lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1010 Wnt signaling pathway and pluripotency RO:HOM0000017 wikipathways WP1288 Wnt signaling pathway and pluripotency lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1010 Wnt signaling pathway and pluripotency RO:HOM0000017 wikipathways WP1344 Wnt signaling pathway and pluripotency lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1010 Wnt signaling pathway and pluripotency RO:HOM0000017 wikipathways WP399 Wnt signaling pathway and pluripotency lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1010 Wnt signaling pathway and pluripotency RO:HOM0000017 wikipathways WP723 Wnt signaling pathway and pluripotency lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1010 Wnt signaling pathway and pluripotency RO:HOM0000017 wikipathways WP779 Wnt signaling pathway and pluripotency lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1012 IL-7 signaling pathway RO:HOM0000017 wikipathways WP205 IL-7 signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1012 IL-7 signaling pathway RO:HOM0000017 wikipathways WP297 IL-7 signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1013 Triacylglyceride synthesis RO:HOM0000017 wikipathways WP212 Triacylglyceride synthesis lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1013 Triacylglyceride synthesis RO:HOM0000017 wikipathways WP325 Triacylglyceride synthesis lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1013 Triacylglyceride synthesis RO:HOM0000017 wikipathways WP386 Triacylglyceride synthesis lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1014 Androgen receptor signaling pathway RO:HOM0000017 wikipathways WP1133 Androgen receptor signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1014 Androgen receptor signaling pathway RO:HOM0000017 wikipathways WP138 Androgen receptor signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1014 Androgen receptor signaling pathway RO:HOM0000017 wikipathways WP897 Androgen receptor signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1015 Ketone bodies synthesis and degradation RO:HOM0000017 wikipathways WP1134 Ketone bodies synthesis and degradation lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1015 Ketone bodies synthesis and degradation RO:HOM0000017 wikipathways WP311 Ketone bodies synthesis and degradation lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1015 Ketone bodies synthesis and degradation RO:HOM0000017 wikipathways WP427 Ketone bodies synthesis and degradation lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1015 Ketone bodies synthesis and degradation RO:HOM0000017 wikipathways WP784 Ketone bodies synthesis and degradation lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1015 Ketone bodies synthesis and degradation RO:HOM0000017 wikipathways WP898 Ketone bodies synthesis and degradation lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1016 Wnt signaling pathway RO:HOM0000017 wikipathways WP1135 Wnt signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1016 Wnt signaling pathway RO:HOM0000017 wikipathways WP1349 Wnt Signaling Pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1016 Wnt signaling pathway RO:HOM0000017 wikipathways WP363 Wnt signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1016 Wnt signaling pathway RO:HOM0000017 wikipathways WP375 Wnt signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1016 Wnt signaling pathway RO:HOM0000017 wikipathways WP403 Wnt signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1016 Wnt signaling pathway RO:HOM0000017 wikipathways WP539 Wnt signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1016 Wnt signaling pathway RO:HOM0000017 wikipathways WP785 Wnt signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1016 Wnt signaling pathway RO:HOM0000017 wikipathways WP899 Wnt signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1016 Wnt signaling pathway RO:HOM0000017 wikipathways WP97 Wnt signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1017 Type II interferon signaling (IFNG) RO:HOM0000017 wikipathways WP1253 Type II interferon signaling (IFNG) lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1017 Type II interferon signaling (IFNG) RO:HOM0000017 wikipathways WP1289 Type II interferon signaling (IFNG) lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1018 Apoptosis RO:HOM0000017 wikipathways WP1254 Apoptosis lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1018 Apoptosis RO:HOM0000017 wikipathways WP1290 Apoptosis lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1018 Apoptosis RO:HOM0000017 wikipathways WP1351 Apoptosis lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1018 Apoptosis RO:HOM0000017 wikipathways WP254 Apoptosis lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1018 Apoptosis RO:HOM0000017 wikipathways WP787 Apoptosis lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1019 FAS pathway and stress induction of HSP regulation RO:HOM0000017 wikipathways WP1138 FAS pathway and stress induction of HSP regulation lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1019 FAS pathway and stress induction of HSP regulation RO:HOM0000017 wikipathways WP571 FAS pathway and stress induction of HSP regulation lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1019 FAS pathway and stress induction of HSP regulation RO:HOM0000017 wikipathways WP788 FAS pathway and stress induction of HSP regulation lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1019 FAS pathway and stress induction of HSP regulation RO:HOM0000017 wikipathways WP902 FAS pathway and stress induction of HSP regulation lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1020 Fatty acid biosynthesis RO:HOM0000017 wikipathways WP336 Fatty acid biosynthesis lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1020 Fatty acid biosynthesis RO:HOM0000017 wikipathways WP357 Fatty acid biosynthesis lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1020 Fatty acid biosynthesis RO:HOM0000017 wikipathways WP38 Fatty acid biosynthesis lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1020 Fatty acid biosynthesis RO:HOM0000017 wikipathways WP504 Fatty acid biosynthesis lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1020 Fatty acid biosynthesis RO:HOM0000017 wikipathways WP568 Fatty acid biosynthesis lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1021 Phase I biotransformations, non P450 RO:HOM0000017 wikipathways WP1213 Phase I biotransformations, non P450 lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1021 Phase I biotransformations, non P450 RO:HOM0000017 wikipathways WP1291 Phase I biotransformations, non P450 lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1021 Phase I biotransformations, non P450 RO:HOM0000017 wikipathways WP136 Phase I biotransformations, non P450 lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1022 Hedgehog signaling pathway RO:HOM0000017 wikipathways WP1141 Hedgehog signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1022 Hedgehog signaling pathway RO:HOM0000017 wikipathways WP116 Hedgehog signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1022 Hedgehog signaling pathway RO:HOM0000017 wikipathways WP4249 Hedgehog signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1022 Hedgehog signaling pathway RO:HOM0000017 wikipathways WP47 Hedgehog signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1022 Hedgehog signaling pathway RO:HOM0000017 wikipathways WP492 Hedgehog signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1022 Hedgehog signaling pathway RO:HOM0000017 wikipathways WP574 Hedgehog signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1022 Hedgehog signaling pathway RO:HOM0000017 wikipathways WP790 Hedgehog signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1022 Hedgehog signaling pathway RO:HOM0000017 wikipathways WP905 Hedgehog signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1023 mRNA Processing RO:HOM0000017 wikipathways WP1142 mRNA Processing lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1023 mRNA Processing RO:HOM0000017 wikipathways WP1229 mRNA processing lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1023 mRNA Processing RO:HOM0000017 wikipathways WP123 mRNA processing lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1023 mRNA Processing RO:HOM0000017 wikipathways WP142 mRNA processing lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1023 mRNA Processing RO:HOM0000017 wikipathways WP310 mRNA processing lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1023 mRNA Processing RO:HOM0000017 wikipathways WP411 mRNA processing lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1023 mRNA Processing RO:HOM0000017 wikipathways WP467 mRNA processing lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1023 mRNA Processing RO:HOM0000017 wikipathways WP529 mRNA processing lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1023 mRNA Processing RO:HOM0000017 wikipathways WP793 mRNA processing lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1023 mRNA Processing RO:HOM0000017 wikipathways WP906 mRNA Processing lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1024 Steroid biosynthesis RO:HOM0000017 wikipathways WP496 Steroid biosynthesis lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1024 Steroid biosynthesis RO:HOM0000017 wikipathways WP55 Steroid biosynthesis lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1024 Steroid biosynthesis RO:HOM0000017 wikipathways WP66 Steroid biosynthesis lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1025 B cell receptor signaling pathway RO:HOM0000017 wikipathways WP23 B cell receptor signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1027 Glycolysis and gluconeogenesis RO:HOM0000017 wikipathways WP1356 Glycolysis and gluconeogenesis lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1027 Glycolysis and gluconeogenesis RO:HOM0000017 wikipathways WP157 Glycolysis and gluconeogenesis lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1027 Glycolysis and gluconeogenesis RO:HOM0000017 wikipathways WP515 Glycolysis and gluconeogenesis lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1027 Glycolysis and gluconeogenesis RO:HOM0000017 wikipathways WP534 Glycolysis and gluconeogenesis lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1027 Glycolysis and gluconeogenesis RO:HOM0000017 wikipathways WP96 Glycolysis and Gluconeogenesis lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1028 Pentose phosphate pathway RO:HOM0000017 wikipathways WP1231 Pentose phosphate pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1028 Pentose phosphate pathway RO:HOM0000017 wikipathways WP282 Pentose phosphate pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1028 Pentose phosphate pathway RO:HOM0000017 wikipathways WP312 Pentose phosphate pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1028 Pentose phosphate pathway RO:HOM0000017 wikipathways WP369 Pentose phosphate pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1028 Pentose phosphate pathway RO:HOM0000017 wikipathways WP63 Pentose phosphate pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1029 Notch signaling pathway RO:HOM0000017 wikipathways WP1148 Notch signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1029 Notch signaling pathway RO:HOM0000017 wikipathways WP1232 Notch signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1029 Notch signaling pathway RO:HOM0000017 wikipathways WP208 Notch signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1029 Notch signaling pathway RO:HOM0000017 wikipathways WP29 Notch signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1029 Notch signaling pathway RO:HOM0000017 wikipathways WP517 Notch signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1029 Notch signaling pathway RO:HOM0000017 wikipathways WP61 Notch signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1029 Notch signaling pathway RO:HOM0000017 wikipathways WP798 Notch signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1029 Notch signaling pathway RO:HOM0000017 wikipathways WP912 Notch signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP103 Cholesterol biosynthesis RO:HOM0000017 wikipathways WP1070 Cholesterol biosynthesis lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP103 Cholesterol biosynthesis RO:HOM0000017 wikipathways WP1186 Cholesterol biosynthesis lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP103 Cholesterol biosynthesis RO:HOM0000017 wikipathways WP132 Cholesterol biosynthesis lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP103 Cholesterol biosynthesis RO:HOM0000017 wikipathways WP1387 Cholesterol biosynthesis lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP103 Cholesterol biosynthesis RO:HOM0000017 wikipathways WP833 Cholesterol biosynthesis lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP103 Cholesterol biosynthesis RO:HOM0000017 wikipathways WP952 Cholesterol biosynthesis lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1031 IL-3 signaling pathway RO:HOM0000017 wikipathways WP286 IL-3 signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1031 IL-3 signaling pathway RO:HOM0000017 wikipathways WP319 IL-3 signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1031 IL-3 signaling pathway RO:HOM0000017 wikipathways WP373 IL-3 signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1032 Nod-like receptor (NLR) signaling pathway RO:HOM0000017 wikipathways WP1256 Nod-like receptor (NLR) signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1032 Nod-like receptor (NLR) signaling pathway RO:HOM0000017 wikipathways WP1294 Nod-like receptor (NLR) signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1032 Nod-like receptor (NLR) signaling pathway RO:HOM0000017 wikipathways WP288 Nod-like receptor (NLR) signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1032 Nod-like receptor (NLR) signaling pathway RO:HOM0000017 wikipathways WP799 Nod-like receptor (NLR) signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1032 Nod-like receptor (NLR) signaling pathway RO:HOM0000017 wikipathways WP914 Nod-like receptor (NLR) signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1033 ACE inhibitor pathway RO:HOM0000017 wikipathways WP1151 ACE inhibitor pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1033 ACE inhibitor pathway RO:HOM0000017 wikipathways WP396 ACE inhibitor pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1033 ACE inhibitor pathway RO:HOM0000017 wikipathways WP468 ACE inhibitor pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1033 ACE inhibitor pathway RO:HOM0000017 wikipathways WP554 ACE inhibitor pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1033 ACE inhibitor pathway RO:HOM0000017 wikipathways WP557 ACE inhibitor pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1033 ACE inhibitor pathway RO:HOM0000017 wikipathways WP801 ACE inhibitor pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1033 ACE inhibitor pathway RO:HOM0000017 wikipathways WP915 ACE inhibitor pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1034 Acetylcholine synthesis RO:HOM0000017 wikipathways WP175 Acetylcholine synthesis lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1034 Acetylcholine synthesis RO:HOM0000017 wikipathways WP264 Acetylcholine synthesis lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1034 Acetylcholine synthesis RO:HOM0000017 wikipathways WP360 Acetylcholine synthesis lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1034 Acetylcholine synthesis RO:HOM0000017 wikipathways WP476 Acetylcholine synthesis lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1034 Acetylcholine synthesis RO:HOM0000017 wikipathways WP528 Acetylcholine synthesis lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1035 Mismatch repair RO:HOM0000017 wikipathways WP1152 Mismatch repair lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1035 Mismatch repair RO:HOM0000017 wikipathways WP1233 Mismatch repair lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1035 Mismatch repair RO:HOM0000017 wikipathways WP1257 Mismatch repair lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1035 Mismatch repair RO:HOM0000017 wikipathways WP1295 Mismatch repair lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1035 Mismatch repair RO:HOM0000017 wikipathways WP802 Mismatch repair lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1036 Homologous recombination RO:HOM0000017 wikipathways WP1153 Homologous recombination lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1036 Homologous recombination RO:HOM0000017 wikipathways WP1205 Homologous recombination lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1036 Homologous recombination RO:HOM0000017 wikipathways WP1258 Homologous recombination lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1036 Homologous recombination RO:HOM0000017 wikipathways WP1296 Homologous recombination lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1036 Homologous recombination RO:HOM0000017 wikipathways WP186 Homologous recombination lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1036 Homologous recombination RO:HOM0000017 wikipathways WP804 Homologous recombination lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1036 Homologous recombination RO:HOM0000017 wikipathways WP917 Homologous recombination lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1040 Inflammatory response pathway RO:HOM0000017 wikipathways WP40 Inflammatory response pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1040 Inflammatory response pathway RO:HOM0000017 wikipathways WP453 Inflammatory response pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1040 Inflammatory response pathway RO:HOM0000017 wikipathways WP458 Inflammatory response pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1041 Statin pathway RO:HOM0000017 wikipathways WP1157 Statin pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1041 Statin pathway RO:HOM0000017 wikipathways WP145 Statin pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1041 Statin pathway RO:HOM0000017 wikipathways WP921 Statin pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1042 Nucleotide GPCRs RO:HOM0000017 wikipathways WP207 Nucleotide GPCRs lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1042 Nucleotide GPCRs RO:HOM0000017 wikipathways WP502 Nucleotide GPCRs lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1042 Nucleotide GPCRs RO:HOM0000017 wikipathways WP80 Nucleotide GPCRs lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1045 TGF-beta signaling pathway RO:HOM0000017 wikipathways WP113 TGF-beta signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1045 TGF-beta signaling pathway RO:HOM0000017 wikipathways WP366 TGF-beta signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1046 Hepatocyte growth factor receptor signaling RO:HOM0000017 wikipathways WP313 Hepatocyte growth factor receptor signaling lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1046 Hepatocyte growth factor receptor signaling RO:HOM0000017 wikipathways WP927 Hepatocyte growth factor receptor signaling lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1046 Hepatocyte growth factor receptor signaling RO:HOM0000017 wikipathways WP94 Hepatocyte growth factor receptor signaling lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1047 TNF-alpha signaling pathway RO:HOM0000017 wikipathways WP231 TNF-alpha signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1048 TGF-beta receptor signaling RO:HOM0000017 wikipathways WP560 TGF-beta receptor signaling lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1049 G protein signaling pathways RO:HOM0000017 wikipathways WP1165 G protein signaling pathways lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1049 G protein signaling pathways RO:HOM0000017 wikipathways WP232 G protein signaling pathways lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1049 G protein signaling pathways RO:HOM0000017 wikipathways WP35 G protein signaling pathways lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1049 G protein signaling pathways RO:HOM0000017 wikipathways WP73 G protein signaling pathways lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1049 G protein signaling pathways RO:HOM0000017 wikipathways WP813 G protein signaling pathways lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1049 G protein signaling pathways RO:HOM0000017 wikipathways WP931 G protein signaling pathways lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1050 Oxidative stress response RO:HOM0000017 wikipathways WP1372 Oxidative stress response lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1050 Oxidative stress response RO:HOM0000017 wikipathways WP173 Oxidative stress response lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1050 Oxidative stress response RO:HOM0000017 wikipathways WP408 Oxidative stress response lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1050 Oxidative stress response RO:HOM0000017 wikipathways WP412 Oxidative stress response lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1051 GPCRs, class C metabotropic glutamate, pheromone RO:HOM0000017 wikipathways WP327 GPCRs, class C metabotropic glutamate, pheromone lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1051 GPCRs, class C metabotropic glutamate, pheromone RO:HOM0000017 wikipathways WP42 GPCRs, class C metabotropic glutamate, pheromone lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1051 GPCRs, class C metabotropic glutamate, pheromone RO:HOM0000017 wikipathways WP501 GPCRs, class C metabotropic glutamate, pheromone lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1052 ID signaling pathway RO:HOM0000017 wikipathways WP1168 ID signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1052 ID signaling pathway RO:HOM0000017 wikipathways WP397 ID signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1052 ID signaling pathway RO:HOM0000017 wikipathways WP512 ID signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1052 ID signaling pathway RO:HOM0000017 wikipathways WP53 ID signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1052 ID signaling pathway RO:HOM0000017 wikipathways WP934 ID signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1053 Estrogen metabolism RO:HOM0000017 wikipathways WP1264 Estrogen metabolism lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1053 Estrogen metabolism RO:HOM0000017 wikipathways WP1302 Estrogen metabolism lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1053 Estrogen metabolism RO:HOM0000017 wikipathways WP697 Estrogen metabolism lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1055 IL-4 signaling pathway RO:HOM0000017 wikipathways WP1376 IL-4 signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1055 IL-4 signaling pathway RO:HOM0000017 wikipathways WP395 IL-4 signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1056 Complement and coagulation cascades RO:HOM0000017 wikipathways WP547 Complement and coagulation cascades lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1056 Complement and coagulation cascades RO:HOM0000017 wikipathways WP558 Complement and coagulation cascades lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP106 Alanine and aspartate metabolism RO:HOM0000017 wikipathways WP240 Alanine and aspartate metabolism lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP106 Alanine and aspartate metabolism RO:HOM0000017 wikipathways WP3262 Alanine and aspartate metabolism lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1060 Matrix metalloproteinases RO:HOM0000017 wikipathways WP1176 Matrix metalloproteinases lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1060 Matrix metalloproteinases RO:HOM0000017 wikipathways WP129 Matrix metalloproteinases lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1060 Matrix metalloproteinases RO:HOM0000017 wikipathways WP278 Matrix metalloproteinases lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1060 Matrix metalloproteinases RO:HOM0000017 wikipathways WP441 Matrix metalloproteinases lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1060 Matrix metalloproteinases RO:HOM0000017 wikipathways WP823 Matrix metalloproteinases lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1060 Matrix metalloproteinases RO:HOM0000017 wikipathways WP942 Matrix metalloproteinases lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1063 G13 signaling pathway RO:HOM0000017 wikipathways WP1179 G13 signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1063 G13 signaling pathway RO:HOM0000017 wikipathways WP298 G13 signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1063 G13 signaling pathway RO:HOM0000017 wikipathways WP520 G13 signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1063 G13 signaling pathway RO:HOM0000017 wikipathways WP524 G13 signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1063 G13 signaling pathway RO:HOM0000017 wikipathways WP826 G13 signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1063 G13 signaling pathway RO:HOM0000017 wikipathways WP945 G13 signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1064 Notch signaling pathway RO:HOM0000017 wikipathways WP1148 Notch signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1064 Notch signaling pathway RO:HOM0000017 wikipathways WP1232 Notch signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1064 Notch signaling pathway RO:HOM0000017 wikipathways WP208 Notch signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1064 Notch signaling pathway RO:HOM0000017 wikipathways WP29 Notch signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1064 Notch signaling pathway RO:HOM0000017 wikipathways WP517 Notch signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1064 Notch signaling pathway RO:HOM0000017 wikipathways WP61 Notch signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1064 Notch signaling pathway RO:HOM0000017 wikipathways WP798 Notch signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1064 Notch signaling pathway RO:HOM0000017 wikipathways WP912 Notch signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1065 Endochondral ossification RO:HOM0000017 wikipathways WP1270 Endochondral ossification lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1065 Endochondral ossification RO:HOM0000017 wikipathways WP474 Endochondral ossification lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1066 Eukaryotic transcription initiation RO:HOM0000017 wikipathways WP1182 Eukaryotic transcription initiation lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1066 Eukaryotic transcription initiation RO:HOM0000017 wikipathways WP1238 Eukaryotic transcription initiation lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1066 Eukaryotic transcription initiation RO:HOM0000017 wikipathways WP177 Eukaryotic transcription initiation lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1066 Eukaryotic transcription initiation RO:HOM0000017 wikipathways WP405 Eukaryotic transcription initiation lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1066 Eukaryotic transcription initiation RO:HOM0000017 wikipathways WP425 Eukaryotic transcription initiation lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1066 Eukaryotic transcription initiation RO:HOM0000017 wikipathways WP518 Eukaryotic transcription initiation lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1066 Eukaryotic transcription initiation RO:HOM0000017 wikipathways WP567 Eukaryotic transcription initiation lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1066 Eukaryotic transcription initiation RO:HOM0000017 wikipathways WP830 Eukaryotic transcription initiation lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1066 Eukaryotic transcription initiation RO:HOM0000017 wikipathways WP948 Eukaryotic transcription initiation lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1067 Toll-like receptor signaling pathway RO:HOM0000017 wikipathways WP1309 Toll-like receptor signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1067 Toll-like receptor signaling pathway RO:HOM0000017 wikipathways WP1384 Toll-like receptor signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1067 Toll-like receptor signaling pathway RO:HOM0000017 wikipathways WP75 Toll-like receptor signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1068 Nuclear receptors RO:HOM0000017 wikipathways WP1184 Nuclear receptors lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1068 Nuclear receptors RO:HOM0000017 wikipathways WP170 Nuclear receptors lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1068 Nuclear receptors RO:HOM0000017 wikipathways WP217 Nuclear receptors lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1068 Nuclear receptors RO:HOM0000017 wikipathways WP509 Nuclear Receptors lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1068 Nuclear receptors RO:HOM0000017 wikipathways WP831 Nuclear receptors lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1068 Nuclear receptors RO:HOM0000017 wikipathways WP950 Nuclear receptors lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1069 Integrin-mediated cell adhesion RO:HOM0000017 wikipathways WP1185 Integrin-mediated cell adhesion lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1069 Integrin-mediated cell adhesion RO:HOM0000017 wikipathways WP1386 Integrin-mediated cell adhesion lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1069 Integrin-mediated cell adhesion RO:HOM0000017 wikipathways WP185 Integrin-mediated cell adhesion lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1069 Integrin-mediated cell adhesion RO:HOM0000017 wikipathways WP6 Integrin-mediated cell adhesion lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1069 Integrin-mediated cell adhesion RO:HOM0000017 wikipathways WP74 Integrin-mediated cell adhesion lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1069 Integrin-mediated cell adhesion RO:HOM0000017 wikipathways WP832 Integrin-mediated cell adhesion lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1069 Integrin-mediated cell adhesion RO:HOM0000017 wikipathways WP951 Integrin-mediated cell adhesion lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP107 Translation factors RO:HOM0000017 wikipathways WP110 Translation factors lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP107 Translation factors RO:HOM0000017 wikipathways WP149 Translation factors lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP107 Translation factors RO:HOM0000017 wikipathways WP307 Translation factors lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP107 Translation factors RO:HOM0000017 wikipathways WP32 Translation factors lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP107 Translation factors RO:HOM0000017 wikipathways WP537 Translation factors lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP107 Translation factors RO:HOM0000017 wikipathways WP965 Translation factors lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1070 Cholesterol biosynthesis RO:HOM0000017 wikipathways WP1186 Cholesterol biosynthesis lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1070 Cholesterol biosynthesis RO:HOM0000017 wikipathways WP132 Cholesterol biosynthesis lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1070 Cholesterol biosynthesis RO:HOM0000017 wikipathways WP1387 Cholesterol biosynthesis lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1070 Cholesterol biosynthesis RO:HOM0000017 wikipathways WP833 Cholesterol biosynthesis lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1070 Cholesterol biosynthesis RO:HOM0000017 wikipathways WP952 Cholesterol biosynthesis lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1071 Cytoplasmic ribosomal proteins RO:HOM0000017 wikipathways WP1239 Cytoplasmic ribosomal proteins lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1071 Cytoplasmic ribosomal proteins RO:HOM0000017 wikipathways WP163 Cytoplasmic ribosomal proteins lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1071 Cytoplasmic ribosomal proteins RO:HOM0000017 wikipathways WP210 Cytoplasmic ribosomal proteins lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1071 Cytoplasmic ribosomal proteins RO:HOM0000017 wikipathways WP324 Cytoplasmic ribosomal proteins lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1071 Cytoplasmic ribosomal proteins RO:HOM0000017 wikipathways WP477 Cytoplasmic ribosomal proteins lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1071 Cytoplasmic ribosomal proteins RO:HOM0000017 wikipathways WP540 Cytoplasmic ribosomal proteins lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1072 GPCRs, class A rhodopsin-like RO:HOM0000017 wikipathways WP189 GPCRs, class A rhodopsin-like lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1072 GPCRs, class A rhodopsin-like RO:HOM0000017 wikipathways WP455 GPCRs, class A rhodopsin-like lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1072 GPCRs, class A rhodopsin-like RO:HOM0000017 wikipathways WP473 GPCRs, class A rhodopsin-like lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1073 Glycogen metabolism RO:HOM0000017 wikipathways WP1189 Glycogen metabolism lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1073 Glycogen metabolism RO:HOM0000017 wikipathways WP1388 Glycogen metabolism lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1073 Glycogen metabolism RO:HOM0000017 wikipathways WP160 Glycogen metabolism lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1073 Glycogen metabolism RO:HOM0000017 wikipathways WP317 Glycogen metabolism lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1073 Glycogen metabolism RO:HOM0000017 wikipathways WP436 Glycogen metabolism lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1073 Glycogen metabolism RO:HOM0000017 wikipathways WP835 Glycogen metabolism lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1073 Glycogen metabolism RO:HOM0000017 wikipathways WP955 Glycogen metabolism lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1074 Osteoblast signaling RO:HOM0000017 wikipathways WP227 Osteoblast signaling lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1074 Osteoblast signaling RO:HOM0000017 wikipathways WP238 Osteoblast signaling lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1074 Osteoblast signaling RO:HOM0000017 wikipathways WP322 Osteoblast signaling lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1074 Osteoblast signaling RO:HOM0000017 wikipathways WP956 Osteoblast signaling lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1075 Folate metabolism RO:HOM0000017 wikipathways WP176 Folate metabolism lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1076 Monoamine GPCRs RO:HOM0000017 wikipathways WP1193 Monoamine GPCRs lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1076 Monoamine GPCRs RO:HOM0000017 wikipathways WP1389 Monoamine GPCRs lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1076 Monoamine GPCRs RO:HOM0000017 wikipathways WP276 Monoamine GPCRs lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1076 Monoamine GPCRs RO:HOM0000017 wikipathways WP570 Monoamine GPCRs lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1076 Monoamine GPCRs RO:HOM0000017 wikipathways WP58 Monoamine GPCRs lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1076 Monoamine GPCRs RO:HOM0000017 wikipathways WP839 Monoamine GPCRs lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1076 Monoamine GPCRs RO:HOM0000017 wikipathways WP957 Monoamine GPCRs lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1077 Oxidation by cytochrome P450 RO:HOM0000017 wikipathways WP1274 Oxidation by cytochrome P450 lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1077 Oxidation by cytochrome P450 RO:HOM0000017 wikipathways WP43 Oxidation by cytochrome P450 lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1078 G1 to S cell cycle control RO:HOM0000017 wikipathways WP1195 G1 to S cell cycle control lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1078 G1 to S cell cycle control RO:HOM0000017 wikipathways WP348 G1 to S cell cycle control lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1078 G1 to S cell cycle control RO:HOM0000017 wikipathways WP413 G1 to S cell cycle control lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1078 G1 to S cell cycle control RO:HOM0000017 wikipathways WP445 G1 to S cell cycle control lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1078 G1 to S cell cycle control RO:HOM0000017 wikipathways WP45 G1 to S cell cycle control lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1078 G1 to S cell cycle control RO:HOM0000017 wikipathways WP840 G1 to S cell cycle control lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1078 G1 to S cell cycle control RO:HOM0000017 wikipathways WP959 G1 to S cell cycle control lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1079 Proteasome degradation RO:HOM0000017 wikipathways WP1240 Proteasome Degradation lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1079 Proteasome degradation RO:HOM0000017 wikipathways WP158 Proteasome degradation lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1079 Proteasome degradation RO:HOM0000017 wikipathways WP183 Proteasome degradation lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1079 Proteasome degradation RO:HOM0000017 wikipathways WP281 Proteasome degradation lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1079 Proteasome degradation RO:HOM0000017 wikipathways WP302 Proteasome degradation lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1079 Proteasome degradation RO:HOM0000017 wikipathways WP470 Proteasome degradation lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1079 Proteasome degradation RO:HOM0000017 wikipathways WP519 Proteasome degradation lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1080 Irinotecan pathway RO:HOM0000017 wikipathways WP124 Irinotecan pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1080 Irinotecan pathway RO:HOM0000017 wikipathways WP229 Irinotecan pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1081 S1P receptor signal transduction RO:HOM0000017 wikipathways WP1312 S1P receptor signal transduction lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1081 S1P receptor signal transduction RO:HOM0000017 wikipathways WP26 S1P receptor signal transduction lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1082 Apoptosis modulation by HSP70 RO:HOM0000017 wikipathways WP166 Apoptosis modulation by HSP70 lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1082 Apoptosis modulation by HSP70 RO:HOM0000017 wikipathways WP384 Apoptosis modulation by HSP70 lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1082 Apoptosis modulation by HSP70 RO:HOM0000017 wikipathways WP487 Apoptosis modulation by HSP70 lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1082 Apoptosis modulation by HSP70 RO:HOM0000017 wikipathways WP963 Apoptosis modulation by HSP70 lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1083 Cell cycle RO:HOM0000017 wikipathways WP1200 Cell cycle lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1083 Cell cycle RO:HOM0000017 wikipathways WP1393 Cell cycle lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1083 Cell cycle RO:HOM0000017 wikipathways WP179 Cell cycle lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1083 Cell cycle RO:HOM0000017 wikipathways WP844 Cell cycle lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1083 Cell cycle RO:HOM0000017 wikipathways WP964 Cell cycle lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1086 Heme biosynthesis RO:HOM0000017 wikipathways WP1221 Heme biosynthesis lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1086 Heme biosynthesis RO:HOM0000017 wikipathways WP18 Heme biosynthesis lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1086 Heme biosynthesis RO:HOM0000017 wikipathways WP269 Heme biosynthesis lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1086 Heme biosynthesis RO:HOM0000017 wikipathways WP561 Heme biosynthesis lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1086 Heme biosynthesis RO:HOM0000017 wikipathways WP848 Heme biosynthesis lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1086 Heme biosynthesis RO:HOM0000017 wikipathways WP86 Heme biosynthesis lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1086 Heme biosynthesis RO:HOM0000017 wikipathways WP967 Heme biosynthesis lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1090 Eicosanoid synthesis RO:HOM0000017 wikipathways WP1318 Eicosanoid synthesis lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1090 Eicosanoid synthesis RO:HOM0000017 wikipathways WP167 Eicosanoid synthesis lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1090 Eicosanoid synthesis RO:HOM0000017 wikipathways WP318 Eicosanoid synthesis lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1090 Eicosanoid synthesis RO:HOM0000017 wikipathways WP854 Eicosanoid synthesis lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1090 Eicosanoid synthesis RO:HOM0000017 wikipathways WP972 Eicosanoid synthesis lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1091 IL-2 signaling pathway RO:HOM0000017 wikipathways WP450 IL-2 signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1091 IL-2 signaling pathway RO:HOM0000017 wikipathways WP49 IL-2 signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1091 IL-2 signaling pathway RO:HOM0000017 wikipathways WP569 IL-2 signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1091 IL-2 signaling pathway RO:HOM0000017 wikipathways WP973 IL-2 signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1096 EGFR1 signaling pathway RO:HOM0000017 wikipathways WP572 EGFR1 signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1096 EGFR1 signaling pathway RO:HOM0000017 wikipathways WP752 EGFR1 signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1096 EGFR1 signaling pathway RO:HOM0000017 wikipathways WP860 EGFR1 signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1099 Nuclear receptors in lipid metabolism and toxicity RO:HOM0000017 wikipathways WP1326 Nuclear receptors in lipid metabolism and toxicity lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1099 Nuclear receptors in lipid metabolism and toxicity RO:HOM0000017 wikipathways WP139 Nuclear receptors in lipid metabolism and toxicity lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1099 Nuclear receptors in lipid metabolism and toxicity RO:HOM0000017 wikipathways WP299 Nuclear receptors in lipid metabolism and toxicity lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1099 Nuclear receptors in lipid metabolism and toxicity RO:HOM0000017 wikipathways WP431 Nuclear receptors in lipid metabolism and toxicity lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1099 Nuclear receptors in lipid metabolism and toxicity RO:HOM0000017 wikipathways WP755 Nuclear receptors in lipid metabolism and toxicity lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1099 Nuclear receptors in lipid metabolism and toxicity RO:HOM0000017 wikipathways WP863 Nuclear receptors in lipid metabolism and toxicity lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1099 Nuclear receptors in lipid metabolism and toxicity RO:HOM0000017 wikipathways WP981 Nuclear receptors in lipid metabolism and toxicity lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP110 Translation factors RO:HOM0000017 wikipathways WP149 Translation factors lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP110 Translation factors RO:HOM0000017 wikipathways WP307 Translation factors lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP110 Translation factors RO:HOM0000017 wikipathways WP32 Translation factors lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP110 Translation factors RO:HOM0000017 wikipathways WP537 Translation factors lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP110 Translation factors RO:HOM0000017 wikipathways WP965 Translation factors lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1101 DNA replication RO:HOM0000017 wikipathways WP1223 DNA replication lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1101 DNA replication RO:HOM0000017 wikipathways WP13 DNA replication lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1101 DNA replication RO:HOM0000017 wikipathways WP192 DNA replication lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1101 DNA replication RO:HOM0000017 wikipathways WP451 DNA replication lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1101 DNA replication RO:HOM0000017 wikipathways WP466 DNA replication lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1101 DNA replication RO:HOM0000017 wikipathways WP565 DNA replication lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1101 DNA replication RO:HOM0000017 wikipathways WP757 DNA replication lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1101 DNA replication RO:HOM0000017 wikipathways WP865 DNA replication lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1101 DNA replication RO:HOM0000017 wikipathways WP983 DNA replication lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1105 Adipogenesis RO:HOM0000017 wikipathways WP1331 Adipogenesis lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1105 Adipogenesis RO:HOM0000017 wikipathways WP155 Adipogenesis lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1105 Adipogenesis RO:HOM0000017 wikipathways WP236 Adipogenesis lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1105 Adipogenesis RO:HOM0000017 wikipathways WP869 Adipogenesis lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1105 Adipogenesis RO:HOM0000017 wikipathways WP987 Adipogenesis lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1112 EPO receptor signaling RO:HOM0000017 wikipathways WP1249 EPO receptor signaling lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1112 EPO receptor signaling RO:HOM0000017 wikipathways WP1284 EPO receptor signaling lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1112 EPO receptor signaling RO:HOM0000017 wikipathways WP1336 EPO receptor signaling lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1112 EPO receptor signaling RO:HOM0000017 wikipathways WP581 EPO receptor signaling lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1112 EPO receptor signaling RO:HOM0000017 wikipathways WP768 EPO receptor signaling lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1112 EPO receptor signaling RO:HOM0000017 wikipathways WP878 EPO receptor signaling lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1112 EPO receptor signaling RO:HOM0000017 wikipathways WP996 EPO receptor signaling lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1113 Cytokines and inflammatory response RO:HOM0000017 wikipathways WP222 Cytokines and inflammatory response lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1113 Cytokines and inflammatory response RO:HOM0000017 wikipathways WP530 Cytokines and inflammatory response lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1113 Cytokines and inflammatory response RO:HOM0000017 wikipathways WP879 Cytokines and inflammatory response lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1113 Cytokines and inflammatory response RO:HOM0000017 wikipathways WP997 Cytokines and inflammatory response lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1114 MAPK signaling pathway RO:HOM0000017 wikipathways WP1337 MAPK signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1114 MAPK signaling pathway RO:HOM0000017 wikipathways WP358 MAPK signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1114 MAPK signaling pathway RO:HOM0000017 wikipathways WP382 MAPK signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1114 MAPK signaling pathway RO:HOM0000017 wikipathways WP493 Mapk signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1114 MAPK signaling pathway RO:HOM0000017 wikipathways WP510 MAPK signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1114 MAPK signaling pathway RO:HOM0000017 wikipathways WP769 MAPK signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1114 MAPK signaling pathway RO:HOM0000017 wikipathways WP880 MAPK signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1114 MAPK signaling pathway RO:HOM0000017 wikipathways WP998 MAPK signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1118 Biogenic amine synthesis RO:HOM0000017 wikipathways WP125 Biogenic amine synthesis lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1118 Biogenic amine synthesis RO:HOM0000017 wikipathways WP154 Biogenic amine synthesis lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1118 Biogenic amine synthesis RO:HOM0000017 wikipathways WP3168 Biogenic amine synthesis lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1118 Biogenic amine synthesis RO:HOM0000017 wikipathways WP522 Biogenic amine synthesis lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1118 Biogenic amine synthesis RO:HOM0000017 wikipathways WP550 Biogenic amine synthesis lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1119 Electron transport chain RO:HOM0000017 wikipathways WP1339 Electron transport chain lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1119 Electron transport chain RO:HOM0000017 wikipathways WP295 Electron transport chain lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1121 Kit receptor signaling pathway RO:HOM0000017 wikipathways WP147 Kit receptor signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1121 Kit receptor signaling pathway RO:HOM0000017 wikipathways WP304 Kit receptor signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1121 Kit receptor signaling pathway RO:HOM0000017 wikipathways WP407 Kit receptor signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1121 Kit receptor signaling pathway RO:HOM0000017 wikipathways WP774 Kit receptor signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1121 Kit receptor signaling pathway RO:HOM0000017 wikipathways WP886 Kit receptor signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1122 Blood clotting cascade RO:HOM0000017 wikipathways WP272 Blood clotting cascade lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1122 Blood clotting cascade RO:HOM0000017 wikipathways WP3251 Blood clotting cascade lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1122 Blood clotting cascade RO:HOM0000017 wikipathways WP460 Blood clotting cascade lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1122 Blood clotting cascade RO:HOM0000017 wikipathways WP775 Blood clotting cascade lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1122 Blood clotting cascade RO:HOM0000017 wikipathways WP887 Blood clotting cascade lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1126 Tryptophan metabolism RO:HOM0000017 wikipathways WP270 Tryptophan metabolism lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1126 Tryptophan metabolism RO:HOM0000017 wikipathways WP3248 Tryptophan metabolism lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1126 Tryptophan metabolism RO:HOM0000017 wikipathways WP465 Tryptophan metabolism lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1126 Tryptophan metabolism RO:HOM0000017 wikipathways WP79 Tryptophan metabolism lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1129 Wnt signaling pathway and pluripotency RO:HOM0000017 wikipathways WP1288 Wnt signaling pathway and pluripotency lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1129 Wnt signaling pathway and pluripotency RO:HOM0000017 wikipathways WP1344 Wnt signaling pathway and pluripotency lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1129 Wnt signaling pathway and pluripotency RO:HOM0000017 wikipathways WP399 Wnt signaling pathway and pluripotency lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1129 Wnt signaling pathway and pluripotency RO:HOM0000017 wikipathways WP723 Wnt signaling pathway and pluripotency lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1129 Wnt signaling pathway and pluripotency RO:HOM0000017 wikipathways WP779 Wnt signaling pathway and pluripotency lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP113 TGF-beta signaling pathway RO:HOM0000017 wikipathways WP366 TGF-beta signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1133 Androgen receptor signaling pathway RO:HOM0000017 wikipathways WP138 Androgen receptor signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1133 Androgen receptor signaling pathway RO:HOM0000017 wikipathways WP897 Androgen receptor signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1134 Ketone bodies synthesis and degradation RO:HOM0000017 wikipathways WP311 Ketone bodies synthesis and degradation lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1134 Ketone bodies synthesis and degradation RO:HOM0000017 wikipathways WP427 Ketone bodies synthesis and degradation lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1134 Ketone bodies synthesis and degradation RO:HOM0000017 wikipathways WP784 Ketone bodies synthesis and degradation lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1134 Ketone bodies synthesis and degradation RO:HOM0000017 wikipathways WP898 Ketone bodies synthesis and degradation lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1135 Wnt signaling pathway RO:HOM0000017 wikipathways WP1349 Wnt Signaling Pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1135 Wnt signaling pathway RO:HOM0000017 wikipathways WP363 Wnt signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1135 Wnt signaling pathway RO:HOM0000017 wikipathways WP375 Wnt signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1135 Wnt signaling pathway RO:HOM0000017 wikipathways WP403 Wnt signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1135 Wnt signaling pathway RO:HOM0000017 wikipathways WP539 Wnt signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1135 Wnt signaling pathway RO:HOM0000017 wikipathways WP785 Wnt signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1135 Wnt signaling pathway RO:HOM0000017 wikipathways WP899 Wnt signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1135 Wnt signaling pathway RO:HOM0000017 wikipathways WP97 Wnt signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1135 Wnt signaling pathway RO:HOM0000017 wikipathways WP980 Wnt signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1138 FAS pathway and stress induction of HSP regulation RO:HOM0000017 wikipathways WP571 FAS pathway and stress induction of HSP regulation lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1138 FAS pathway and stress induction of HSP regulation RO:HOM0000017 wikipathways WP788 FAS pathway and stress induction of HSP regulation lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1138 FAS pathway and stress induction of HSP regulation RO:HOM0000017 wikipathways WP902 FAS pathway and stress induction of HSP regulation lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1141 Hedgehog signaling pathway RO:HOM0000017 wikipathways WP116 Hedgehog signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1141 Hedgehog signaling pathway RO:HOM0000017 wikipathways WP4249 Hedgehog signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1141 Hedgehog signaling pathway RO:HOM0000017 wikipathways WP47 Hedgehog signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1141 Hedgehog signaling pathway RO:HOM0000017 wikipathways WP492 Hedgehog signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1141 Hedgehog signaling pathway RO:HOM0000017 wikipathways WP574 Hedgehog signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1141 Hedgehog signaling pathway RO:HOM0000017 wikipathways WP790 Hedgehog signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1141 Hedgehog signaling pathway RO:HOM0000017 wikipathways WP905 Hedgehog signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1142 mRNA Processing RO:HOM0000017 wikipathways WP1229 mRNA processing lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1142 mRNA Processing RO:HOM0000017 wikipathways WP123 mRNA processing lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1142 mRNA Processing RO:HOM0000017 wikipathways WP142 mRNA processing lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1142 mRNA Processing RO:HOM0000017 wikipathways WP310 mRNA processing lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1142 mRNA Processing RO:HOM0000017 wikipathways WP411 mRNA processing lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1142 mRNA Processing RO:HOM0000017 wikipathways WP467 mRNA processing lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1142 mRNA Processing RO:HOM0000017 wikipathways WP529 mRNA processing lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1142 mRNA Processing RO:HOM0000017 wikipathways WP793 mRNA processing lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1142 mRNA Processing RO:HOM0000017 wikipathways WP906 mRNA Processing lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1148 Notch signaling pathway RO:HOM0000017 wikipathways WP1232 Notch signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1148 Notch signaling pathway RO:HOM0000017 wikipathways WP208 Notch signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1148 Notch signaling pathway RO:HOM0000017 wikipathways WP29 Notch signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1148 Notch signaling pathway RO:HOM0000017 wikipathways WP517 Notch signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1148 Notch signaling pathway RO:HOM0000017 wikipathways WP61 Notch signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1148 Notch signaling pathway RO:HOM0000017 wikipathways WP798 Notch signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1148 Notch signaling pathway RO:HOM0000017 wikipathways WP912 Notch signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1151 ACE inhibitor pathway RO:HOM0000017 wikipathways WP396 ACE inhibitor pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1151 ACE inhibitor pathway RO:HOM0000017 wikipathways WP468 ACE inhibitor pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1151 ACE inhibitor pathway RO:HOM0000017 wikipathways WP554 ACE inhibitor pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1151 ACE inhibitor pathway RO:HOM0000017 wikipathways WP557 ACE inhibitor pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1151 ACE inhibitor pathway RO:HOM0000017 wikipathways WP801 ACE inhibitor pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1151 ACE inhibitor pathway RO:HOM0000017 wikipathways WP915 ACE inhibitor pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1152 Mismatch repair RO:HOM0000017 wikipathways WP1233 Mismatch repair lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1152 Mismatch repair RO:HOM0000017 wikipathways WP1257 Mismatch repair lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1152 Mismatch repair RO:HOM0000017 wikipathways WP1295 Mismatch repair lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1152 Mismatch repair RO:HOM0000017 wikipathways WP802 Mismatch repair lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1153 Homologous recombination RO:HOM0000017 wikipathways WP1205 Homologous recombination lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1153 Homologous recombination RO:HOM0000017 wikipathways WP1258 Homologous recombination lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1153 Homologous recombination RO:HOM0000017 wikipathways WP1296 Homologous recombination lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1153 Homologous recombination RO:HOM0000017 wikipathways WP186 Homologous recombination lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1153 Homologous recombination RO:HOM0000017 wikipathways WP804 Homologous recombination lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1153 Homologous recombination RO:HOM0000017 wikipathways WP917 Homologous recombination lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1154 p38 MAPK signaling pathway RO:HOM0000017 wikipathways WP294 p38 Mapk signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1154 p38 MAPK signaling pathway RO:HOM0000017 wikipathways WP350 p38 Mapk signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1154 p38 MAPK signaling pathway RO:HOM0000017 wikipathways WP400 p38 MAPK signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1154 p38 MAPK signaling pathway RO:HOM0000017 wikipathways WP803 p38 MAPK signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1154 p38 MAPK signaling pathway RO:HOM0000017 wikipathways WP918 p38 MAPK signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1157 Statin pathway RO:HOM0000017 wikipathways WP145 Statin pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1157 Statin pathway RO:HOM0000017 wikipathways WP921 Statin pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1159 Calcium regulation in cardiac cells RO:HOM0000017 wikipathways WP536 Calcium regulation in cardiac cells lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1159 Calcium regulation in cardiac cells RO:HOM0000017 wikipathways WP553 Calcium regulation in cardiac cells lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1159 Calcium regulation in cardiac cells RO:HOM0000017 wikipathways WP808 Calcium regulation in cardiac cells lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1159 Calcium regulation in cardiac cells RO:HOM0000017 wikipathways WP923 Calcium regulation in cardiac cells lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP116 Hedgehog signaling pathway RO:HOM0000017 wikipathways WP4249 Hedgehog signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP116 Hedgehog signaling pathway RO:HOM0000017 wikipathways WP47 Hedgehog signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP116 Hedgehog signaling pathway RO:HOM0000017 wikipathways WP492 Hedgehog signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP116 Hedgehog signaling pathway RO:HOM0000017 wikipathways WP574 Hedgehog signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP116 Hedgehog signaling pathway RO:HOM0000017 wikipathways WP790 Hedgehog signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP116 Hedgehog signaling pathway RO:HOM0000017 wikipathways WP905 Hedgehog signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1165 G protein signaling pathways RO:HOM0000017 wikipathways WP232 G protein signaling pathways lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1165 G protein signaling pathways RO:HOM0000017 wikipathways WP35 G protein signaling pathways lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1165 G protein signaling pathways RO:HOM0000017 wikipathways WP73 G protein signaling pathways lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1165 G protein signaling pathways RO:HOM0000017 wikipathways WP813 G protein signaling pathways lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1165 G protein signaling pathways RO:HOM0000017 wikipathways WP931 G protein signaling pathways lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1168 ID signaling pathway RO:HOM0000017 wikipathways WP397 ID signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1168 ID signaling pathway RO:HOM0000017 wikipathways WP512 ID signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1168 ID signaling pathway RO:HOM0000017 wikipathways WP53 ID signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1168 ID signaling pathway RO:HOM0000017 wikipathways WP934 ID signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP117 GPCRs, other RO:HOM0000017 wikipathways WP409 GPCRs, other lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP117 GPCRs, other RO:HOM0000017 wikipathways WP41 GPCRs, other lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP117 GPCRs, other RO:HOM0000017 wikipathways WP990 GPCRs, other lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1170 Polyol pathway RO:HOM0000017 wikipathways WP1218 Polyol pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1170 Polyol pathway RO:HOM0000017 wikipathways WP1236 Polyol pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1170 Polyol pathway RO:HOM0000017 wikipathways WP1265 Polyol pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1170 Polyol pathway RO:HOM0000017 wikipathways WP1303 Polyol pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1170 Polyol pathway RO:HOM0000017 wikipathways WP1375 Polyol pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1170 Polyol pathway RO:HOM0000017 wikipathways WP690 Polyol pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1170 Polyol pathway RO:HOM0000017 wikipathways WP936 Polyol pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1176 Matrix metalloproteinases RO:HOM0000017 wikipathways WP129 Matrix metalloproteinases lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1176 Matrix metalloproteinases RO:HOM0000017 wikipathways WP278 Matrix metalloproteinases lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1176 Matrix metalloproteinases RO:HOM0000017 wikipathways WP441 Matrix metalloproteinases lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1176 Matrix metalloproteinases RO:HOM0000017 wikipathways WP823 Matrix metalloproteinases lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1176 Matrix metalloproteinases RO:HOM0000017 wikipathways WP942 Matrix metalloproteinases lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1179 G13 signaling pathway RO:HOM0000017 wikipathways WP298 G13 signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1179 G13 signaling pathway RO:HOM0000017 wikipathways WP520 G13 signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1179 G13 signaling pathway RO:HOM0000017 wikipathways WP524 G13 signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1179 G13 signaling pathway RO:HOM0000017 wikipathways WP826 G13 signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1179 G13 signaling pathway RO:HOM0000017 wikipathways WP945 G13 signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1180 Delta-Notch signaling pathway RO:HOM0000017 wikipathways WP265 Delta-Notch signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1180 Delta-Notch signaling pathway RO:HOM0000017 wikipathways WP827 Delta-Notch signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1180 Delta-Notch signaling pathway RO:HOM0000017 wikipathways WP946 Delta-Notch signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1182 Eukaryotic transcription initiation RO:HOM0000017 wikipathways WP1238 Eukaryotic transcription initiation lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1182 Eukaryotic transcription initiation RO:HOM0000017 wikipathways WP177 Eukaryotic transcription initiation lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1182 Eukaryotic transcription initiation RO:HOM0000017 wikipathways WP405 Eukaryotic transcription initiation lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1182 Eukaryotic transcription initiation RO:HOM0000017 wikipathways WP425 Eukaryotic transcription initiation lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1182 Eukaryotic transcription initiation RO:HOM0000017 wikipathways WP518 Eukaryotic transcription initiation lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1182 Eukaryotic transcription initiation RO:HOM0000017 wikipathways WP567 Eukaryotic transcription initiation lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1182 Eukaryotic transcription initiation RO:HOM0000017 wikipathways WP830 Eukaryotic transcription initiation lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1182 Eukaryotic transcription initiation RO:HOM0000017 wikipathways WP948 Eukaryotic transcription initiation lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1184 Nuclear receptors RO:HOM0000017 wikipathways WP170 Nuclear receptors lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1184 Nuclear receptors RO:HOM0000017 wikipathways WP217 Nuclear receptors lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1184 Nuclear receptors RO:HOM0000017 wikipathways WP509 Nuclear Receptors lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1184 Nuclear receptors RO:HOM0000017 wikipathways WP831 Nuclear receptors lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1184 Nuclear receptors RO:HOM0000017 wikipathways WP950 Nuclear receptors lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1185 Integrin-mediated cell adhesion RO:HOM0000017 wikipathways WP1386 Integrin-mediated cell adhesion lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1185 Integrin-mediated cell adhesion RO:HOM0000017 wikipathways WP185 Integrin-mediated cell adhesion lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1185 Integrin-mediated cell adhesion RO:HOM0000017 wikipathways WP6 Integrin-mediated cell adhesion lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1185 Integrin-mediated cell adhesion RO:HOM0000017 wikipathways WP74 Integrin-mediated cell adhesion lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1185 Integrin-mediated cell adhesion RO:HOM0000017 wikipathways WP832 Integrin-mediated cell adhesion lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1185 Integrin-mediated cell adhesion RO:HOM0000017 wikipathways WP951 Integrin-mediated cell adhesion lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1186 Cholesterol biosynthesis RO:HOM0000017 wikipathways WP132 Cholesterol biosynthesis lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1186 Cholesterol biosynthesis RO:HOM0000017 wikipathways WP1387 Cholesterol biosynthesis lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1186 Cholesterol biosynthesis RO:HOM0000017 wikipathways WP833 Cholesterol biosynthesis lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1186 Cholesterol biosynthesis RO:HOM0000017 wikipathways WP952 Cholesterol biosynthesis lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1189 Glycogen metabolism RO:HOM0000017 wikipathways WP1388 Glycogen metabolism lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1189 Glycogen metabolism RO:HOM0000017 wikipathways WP160 Glycogen metabolism lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1189 Glycogen metabolism RO:HOM0000017 wikipathways WP317 Glycogen metabolism lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1189 Glycogen metabolism RO:HOM0000017 wikipathways WP436 Glycogen metabolism lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1189 Glycogen metabolism RO:HOM0000017 wikipathways WP835 Glycogen metabolism lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1189 Glycogen metabolism RO:HOM0000017 wikipathways WP955 Glycogen metabolism lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1193 Monoamine GPCRs RO:HOM0000017 wikipathways WP1389 Monoamine GPCRs lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1193 Monoamine GPCRs RO:HOM0000017 wikipathways WP276 Monoamine GPCRs lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1193 Monoamine GPCRs RO:HOM0000017 wikipathways WP570 Monoamine GPCRs lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1193 Monoamine GPCRs RO:HOM0000017 wikipathways WP58 Monoamine GPCRs lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1193 Monoamine GPCRs RO:HOM0000017 wikipathways WP839 Monoamine GPCRs lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1193 Monoamine GPCRs RO:HOM0000017 wikipathways WP957 Monoamine GPCRs lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1195 G1 to S cell cycle control RO:HOM0000017 wikipathways WP348 G1 to S cell cycle control lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1195 G1 to S cell cycle control RO:HOM0000017 wikipathways WP413 G1 to S cell cycle control lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1195 G1 to S cell cycle control RO:HOM0000017 wikipathways WP445 G1 to S cell cycle control lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1195 G1 to S cell cycle control RO:HOM0000017 wikipathways WP45 G1 to S cell cycle control lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1195 G1 to S cell cycle control RO:HOM0000017 wikipathways WP840 G1 to S cell cycle control lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1195 G1 to S cell cycle control RO:HOM0000017 wikipathways WP959 G1 to S cell cycle control lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP12 Osteoclast signaling RO:HOM0000017 wikipathways WP454 Osteoclast signaling lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP12 Osteoclast signaling RO:HOM0000017 wikipathways WP890 Osteoclast signaling lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1200 Cell cycle RO:HOM0000017 wikipathways WP1393 Cell cycle lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1200 Cell cycle RO:HOM0000017 wikipathways WP179 Cell cycle lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1200 Cell cycle RO:HOM0000017 wikipathways WP844 Cell cycle lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1200 Cell cycle RO:HOM0000017 wikipathways WP964 Cell cycle lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1205 Homologous recombination RO:HOM0000017 wikipathways WP1258 Homologous recombination lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1205 Homologous recombination RO:HOM0000017 wikipathways WP1296 Homologous recombination lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1205 Homologous recombination RO:HOM0000017 wikipathways WP186 Homologous recombination lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1205 Homologous recombination RO:HOM0000017 wikipathways WP804 Homologous recombination lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1205 Homologous recombination RO:HOM0000017 wikipathways WP917 Homologous recombination lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1211 Arylamine metabolism RO:HOM0000017 wikipathways WP694 Arylamine metabolism lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1211 Arylamine metabolism RO:HOM0000017 wikipathways WP993 Arylamine metabolism lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1212 Metapathway biotransformation RO:HOM0000017 wikipathways WP1251 Metapathway biotransformation lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1212 Metapathway biotransformation RO:HOM0000017 wikipathways WP1286 Metapathway biotransformation lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1213 Phase I biotransformations, non P450 RO:HOM0000017 wikipathways WP1291 Phase I biotransformations, non P450 lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1213 Phase I biotransformations, non P450 RO:HOM0000017 wikipathways WP136 Phase I biotransformations, non P450 lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1217 Aflatoxin B1 metabolism RO:HOM0000017 wikipathways WP1262 Aflatoxin B1 metabolism lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1217 Aflatoxin B1 metabolism RO:HOM0000017 wikipathways WP1300 Aflatoxin B1 metabolism lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1217 Aflatoxin B1 metabolism RO:HOM0000017 wikipathways WP3247 Aflatoxin B1 metabolism lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1217 Aflatoxin B1 metabolism RO:HOM0000017 wikipathways WP699 Aflatoxin B1 metabolism lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1217 Aflatoxin B1 metabolism RO:HOM0000017 wikipathways WP925 Aflatoxin B1 metabolism lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1218 Polyol pathway RO:HOM0000017 wikipathways WP1236 Polyol pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1218 Polyol pathway RO:HOM0000017 wikipathways WP1265 Polyol pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1218 Polyol pathway RO:HOM0000017 wikipathways WP1303 Polyol pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1218 Polyol pathway RO:HOM0000017 wikipathways WP1375 Polyol pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1218 Polyol pathway RO:HOM0000017 wikipathways WP690 Polyol pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1218 Polyol pathway RO:HOM0000017 wikipathways WP936 Polyol pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1221 Heme biosynthesis RO:HOM0000017 wikipathways WP18 Heme biosynthesis lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1221 Heme biosynthesis RO:HOM0000017 wikipathways WP269 Heme biosynthesis lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1221 Heme biosynthesis RO:HOM0000017 wikipathways WP561 Heme biosynthesis lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1221 Heme biosynthesis RO:HOM0000017 wikipathways WP848 Heme biosynthesis lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1221 Heme biosynthesis RO:HOM0000017 wikipathways WP86 Heme biosynthesis lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1221 Heme biosynthesis RO:HOM0000017 wikipathways WP967 Heme biosynthesis lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1223 DNA replication RO:HOM0000017 wikipathways WP13 DNA replication lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1223 DNA replication RO:HOM0000017 wikipathways WP192 DNA replication lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1223 DNA replication RO:HOM0000017 wikipathways WP451 DNA replication lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1223 DNA replication RO:HOM0000017 wikipathways WP466 DNA replication lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1223 DNA replication RO:HOM0000017 wikipathways WP565 DNA replication lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1223 DNA replication RO:HOM0000017 wikipathways WP757 DNA replication lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1223 DNA replication RO:HOM0000017 wikipathways WP865 DNA replication lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1223 DNA replication RO:HOM0000017 wikipathways WP983 DNA replication lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1224 EBV LMP1 signaling RO:HOM0000017 wikipathways WP1243 EBV LMP1 signaling lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1224 EBV LMP1 signaling RO:HOM0000017 wikipathways WP1278 EBV LMP1 signaling lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1224 EBV LMP1 signaling RO:HOM0000017 wikipathways WP984 EBV LMP1 signaling lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1227 TCA cycle RO:HOM0000017 wikipathways WP19 TCA cycle lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1227 TCA cycle RO:HOM0000017 wikipathways WP347 TCA cycle lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1227 TCA cycle RO:HOM0000017 wikipathways WP434 TCA cycle lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1227 TCA cycle RO:HOM0000017 wikipathways WP490 TCA cycle lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1227 TCA cycle RO:HOM0000017 wikipathways WP999 TCA cycle lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1229 mRNA processing RO:HOM0000017 wikipathways WP123 mRNA processing lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1229 mRNA processing RO:HOM0000017 wikipathways WP142 mRNA processing lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1229 mRNA processing RO:HOM0000017 wikipathways WP310 mRNA processing lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1229 mRNA processing RO:HOM0000017 wikipathways WP411 mRNA processing lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1229 mRNA processing RO:HOM0000017 wikipathways WP467 mRNA processing lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1229 mRNA processing RO:HOM0000017 wikipathways WP529 mRNA processing lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1229 mRNA processing RO:HOM0000017 wikipathways WP793 mRNA processing lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1229 mRNA processing RO:HOM0000017 wikipathways WP906 mRNA Processing lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP123 mRNA processing RO:HOM0000017 wikipathways WP142 mRNA processing lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP123 mRNA processing RO:HOM0000017 wikipathways WP310 mRNA processing lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP123 mRNA processing RO:HOM0000017 wikipathways WP411 mRNA processing lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP123 mRNA processing RO:HOM0000017 wikipathways WP467 mRNA processing lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP123 mRNA processing RO:HOM0000017 wikipathways WP529 mRNA processing lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP123 mRNA processing RO:HOM0000017 wikipathways WP793 mRNA processing lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP123 mRNA processing RO:HOM0000017 wikipathways WP906 mRNA Processing lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1231 Pentose phosphate pathway RO:HOM0000017 wikipathways WP282 Pentose phosphate pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1231 Pentose phosphate pathway RO:HOM0000017 wikipathways WP312 Pentose phosphate pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1231 Pentose phosphate pathway RO:HOM0000017 wikipathways WP369 Pentose phosphate pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1231 Pentose phosphate pathway RO:HOM0000017 wikipathways WP63 Pentose phosphate pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1232 Notch signaling pathway RO:HOM0000017 wikipathways WP208 Notch signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1232 Notch signaling pathway RO:HOM0000017 wikipathways WP29 Notch signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1232 Notch signaling pathway RO:HOM0000017 wikipathways WP517 Notch signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1232 Notch signaling pathway RO:HOM0000017 wikipathways WP61 Notch signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1232 Notch signaling pathway RO:HOM0000017 wikipathways WP798 Notch signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1232 Notch signaling pathway RO:HOM0000017 wikipathways WP912 Notch signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1233 Mismatch repair RO:HOM0000017 wikipathways WP1257 Mismatch repair lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1233 Mismatch repair RO:HOM0000017 wikipathways WP1295 Mismatch repair lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1233 Mismatch repair RO:HOM0000017 wikipathways WP802 Mismatch repair lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1236 Polyol pathway RO:HOM0000017 wikipathways WP1265 Polyol pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1236 Polyol pathway RO:HOM0000017 wikipathways WP1303 Polyol pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1236 Polyol pathway RO:HOM0000017 wikipathways WP1375 Polyol pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1236 Polyol pathway RO:HOM0000017 wikipathways WP690 Polyol pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1236 Polyol pathway RO:HOM0000017 wikipathways WP936 Polyol pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1238 Eukaryotic transcription initiation RO:HOM0000017 wikipathways WP177 Eukaryotic transcription initiation lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1238 Eukaryotic transcription initiation RO:HOM0000017 wikipathways WP405 Eukaryotic transcription initiation lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1238 Eukaryotic transcription initiation RO:HOM0000017 wikipathways WP425 Eukaryotic transcription initiation lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1238 Eukaryotic transcription initiation RO:HOM0000017 wikipathways WP518 Eukaryotic transcription initiation lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1238 Eukaryotic transcription initiation RO:HOM0000017 wikipathways WP567 Eukaryotic transcription initiation lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1238 Eukaryotic transcription initiation RO:HOM0000017 wikipathways WP830 Eukaryotic transcription initiation lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1238 Eukaryotic transcription initiation RO:HOM0000017 wikipathways WP948 Eukaryotic transcription initiation lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1239 Cytoplasmic ribosomal proteins RO:HOM0000017 wikipathways WP163 Cytoplasmic ribosomal proteins lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1239 Cytoplasmic ribosomal proteins RO:HOM0000017 wikipathways WP210 Cytoplasmic ribosomal proteins lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1239 Cytoplasmic ribosomal proteins RO:HOM0000017 wikipathways WP324 Cytoplasmic ribosomal proteins lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1239 Cytoplasmic ribosomal proteins RO:HOM0000017 wikipathways WP477 Cytoplasmic ribosomal proteins lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1239 Cytoplasmic ribosomal proteins RO:HOM0000017 wikipathways WP540 Cytoplasmic ribosomal proteins lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP124 Irinotecan pathway RO:HOM0000017 wikipathways WP229 Irinotecan pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1240 Proteasome Degradation RO:HOM0000017 wikipathways WP158 Proteasome degradation lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1240 Proteasome Degradation RO:HOM0000017 wikipathways WP183 Proteasome degradation lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1240 Proteasome Degradation RO:HOM0000017 wikipathways WP281 Proteasome degradation lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1240 Proteasome Degradation RO:HOM0000017 wikipathways WP302 Proteasome degradation lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1240 Proteasome Degradation RO:HOM0000017 wikipathways WP470 Proteasome degradation lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1240 Proteasome Degradation RO:HOM0000017 wikipathways WP519 Proteasome degradation lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1241 Glucuronidation RO:HOM0000017 wikipathways WP1276 Glucuronidation lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1241 Glucuronidation RO:HOM0000017 wikipathways WP3210 Glucuronidation lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1241 Glucuronidation RO:HOM0000017 wikipathways WP698 Glucuronidation lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1242 Non-homologous end joining RO:HOM0000017 wikipathways WP1277 Non-homologous end joining lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1242 Non-homologous end joining RO:HOM0000017 wikipathways WP438 Non-homologous end joining lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1242 Non-homologous end joining RO:HOM0000017 wikipathways WP979 Non-homologous end joining lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1243 EBV LMP1 signaling RO:HOM0000017 wikipathways WP1278 EBV LMP1 signaling lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1243 EBV LMP1 signaling RO:HOM0000017 wikipathways WP984 EBV LMP1 signaling lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1244 Estrogen signaling RO:HOM0000017 wikipathways WP1279 Estrogen signaling lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1244 Estrogen signaling RO:HOM0000017 wikipathways WP1330 Estrogen signaling lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1245 Transcriptional activation by Nfe2l2 in response to phytochemicals RO:HOM0000017 wikipathways WP1280 Transcriptional activation by Nfe2l2 in response to phytochemicals lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1247 Methylation RO:HOM0000017 wikipathways WP1282 Methylation lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1248 Oxidative phosphorylation RO:HOM0000017 wikipathways WP1283 Oxidative phosphorylation lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1248 Oxidative phosphorylation RO:HOM0000017 wikipathways WP1335 Oxidative phosphorylation lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1248 Oxidative phosphorylation RO:HOM0000017 wikipathways WP623 Oxidative phosphorylation lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1248 Oxidative phosphorylation RO:HOM0000017 wikipathways WP994 Oxidative phosphorylation lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1249 EPO receptor signaling RO:HOM0000017 wikipathways WP1284 EPO receptor signaling lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1249 EPO receptor signaling RO:HOM0000017 wikipathways WP1336 EPO receptor signaling lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1249 EPO receptor signaling RO:HOM0000017 wikipathways WP581 EPO receptor signaling lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1249 EPO receptor signaling RO:HOM0000017 wikipathways WP768 EPO receptor signaling lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1249 EPO receptor signaling RO:HOM0000017 wikipathways WP878 EPO receptor signaling lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1249 EPO receptor signaling RO:HOM0000017 wikipathways WP996 EPO receptor signaling lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP125 Biogenic amine synthesis RO:HOM0000017 wikipathways WP154 Biogenic amine synthesis lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP125 Biogenic amine synthesis RO:HOM0000017 wikipathways WP3168 Biogenic amine synthesis lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP125 Biogenic amine synthesis RO:HOM0000017 wikipathways WP522 Biogenic amine synthesis lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP125 Biogenic amine synthesis RO:HOM0000017 wikipathways WP550 Biogenic amine synthesis lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1250 Arachidonate epoxygenase / epoxide hydrolase RO:HOM0000017 wikipathways WP678 Arachidonate epoxygenase / epoxide hydrolase lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1251 Metapathway biotransformation RO:HOM0000017 wikipathways WP1286 Metapathway biotransformation lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1252 Amino acid conjugation of benzoic acid RO:HOM0000017 wikipathways WP1287 Amino acid conjugation of benzoic acid lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1252 Amino acid conjugation of benzoic acid RO:HOM0000017 wikipathways WP1577 Amino acid conjugation of benzoic acid lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1252 Amino acid conjugation of benzoic acid RO:HOM0000017 wikipathways WP521 Amino acid conjugation of benzoic acid lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1253 Type II interferon signaling (IFNG) RO:HOM0000017 wikipathways WP1289 Type II interferon signaling (IFNG) lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1254 Apoptosis RO:HOM0000017 wikipathways WP1290 Apoptosis lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1254 Apoptosis RO:HOM0000017 wikipathways WP1351 Apoptosis lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1254 Apoptosis RO:HOM0000017 wikipathways WP254 Apoptosis lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1254 Apoptosis RO:HOM0000017 wikipathways WP787 Apoptosis lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1256 Nod-like receptor (NLR) signaling pathway RO:HOM0000017 wikipathways WP1294 Nod-like receptor (NLR) signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1256 Nod-like receptor (NLR) signaling pathway RO:HOM0000017 wikipathways WP288 Nod-like receptor (NLR) signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1256 Nod-like receptor (NLR) signaling pathway RO:HOM0000017 wikipathways WP799 Nod-like receptor (NLR) signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1256 Nod-like receptor (NLR) signaling pathway RO:HOM0000017 wikipathways WP914 Nod-like receptor (NLR) signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1257 Mismatch repair RO:HOM0000017 wikipathways WP1295 Mismatch repair lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1257 Mismatch repair RO:HOM0000017 wikipathways WP802 Mismatch repair lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1258 Homologous recombination RO:HOM0000017 wikipathways WP1296 Homologous recombination lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1258 Homologous recombination RO:HOM0000017 wikipathways WP186 Homologous recombination lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1258 Homologous recombination RO:HOM0000017 wikipathways WP804 Homologous recombination lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1258 Homologous recombination RO:HOM0000017 wikipathways WP917 Homologous recombination lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1259 Retinol metabolism RO:HOM0000017 wikipathways WP1297 Retinol metabolism lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1259 Retinol metabolism RO:HOM0000017 wikipathways WP5188 Retinol metabolism lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1259 Retinol metabolism RO:HOM0000017 wikipathways WP805 Retinol metabolism lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP126 Fatty acid beta-oxidation 1 RO:HOM0000017 wikipathways WP39 Fatty acid beta-oxidation 1 lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1261 ErbB signaling pathway RO:HOM0000017 wikipathways WP1299 ErbB signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1261 ErbB signaling pathway RO:HOM0000017 wikipathways WP673 ErbB signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1262 Aflatoxin B1 metabolism RO:HOM0000017 wikipathways WP1300 Aflatoxin B1 metabolism lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1262 Aflatoxin B1 metabolism RO:HOM0000017 wikipathways WP3247 Aflatoxin B1 metabolism lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1262 Aflatoxin B1 metabolism RO:HOM0000017 wikipathways WP699 Aflatoxin B1 metabolism lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1262 Aflatoxin B1 metabolism RO:HOM0000017 wikipathways WP925 Aflatoxin B1 metabolism lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1263 Mitochondrial gene expression RO:HOM0000017 wikipathways WP1301 Mitochondrial gene expression lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1263 Mitochondrial gene expression RO:HOM0000017 wikipathways WP3134 Mitochondrial gene expression lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1263 Mitochondrial gene expression RO:HOM0000017 wikipathways WP391 Mitochondrial gene expression lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1264 Estrogen metabolism RO:HOM0000017 wikipathways WP1302 Estrogen metabolism lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1264 Estrogen metabolism RO:HOM0000017 wikipathways WP697 Estrogen metabolism lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1265 Polyol pathway RO:HOM0000017 wikipathways WP1303 Polyol pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1265 Polyol pathway RO:HOM0000017 wikipathways WP1375 Polyol pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1265 Polyol pathway RO:HOM0000017 wikipathways WP690 Polyol pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1265 Polyol pathway RO:HOM0000017 wikipathways WP936 Polyol pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1266 SIDS susceptibility pathways RO:HOM0000017 wikipathways WP3130 SIDS susceptibility pathways lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1269 Fatty acid beta-oxidation RO:HOM0000017 wikipathways WP143 Fatty acid beta-oxidation lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP127 IL-5 signaling pathway RO:HOM0000017 wikipathways WP151 IL-5 signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP127 IL-5 signaling pathway RO:HOM0000017 wikipathways WP44 IL-5 signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP127 IL-5 signaling pathway RO:HOM0000017 wikipathways WP968 IL-5 signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1270 Endochondral ossification RO:HOM0000017 wikipathways WP474 Endochondral ossification lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1272 Selenium micronutrient network RO:HOM0000017 wikipathways WP15 Selenium micronutrient network lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1272 Selenium micronutrient network RO:HOM0000017 wikipathways WP3257 Selenium micronutrient network lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1273 Folic acid network RO:HOM0000017 wikipathways WP1311 Folic acid network lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1274 Oxidation by cytochrome P450 RO:HOM0000017 wikipathways WP43 Oxidation by cytochrome P450 lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1276 Glucuronidation RO:HOM0000017 wikipathways WP3210 Glucuronidation lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1276 Glucuronidation RO:HOM0000017 wikipathways WP698 Glucuronidation lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1277 Non-homologous end joining RO:HOM0000017 wikipathways WP438 Non-homologous end joining lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1277 Non-homologous end joining RO:HOM0000017 wikipathways WP979 Non-homologous end joining lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1278 EBV LMP1 signaling RO:HOM0000017 wikipathways WP984 EBV LMP1 signaling lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1279 Estrogen signaling RO:HOM0000017 wikipathways WP1330 Estrogen signaling lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1283 Oxidative phosphorylation RO:HOM0000017 wikipathways WP1335 Oxidative phosphorylation lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1283 Oxidative phosphorylation RO:HOM0000017 wikipathways WP623 Oxidative phosphorylation lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1283 Oxidative phosphorylation RO:HOM0000017 wikipathways WP994 Oxidative phosphorylation lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1284 EPO receptor signaling RO:HOM0000017 wikipathways WP1336 EPO receptor signaling lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1284 EPO receptor signaling RO:HOM0000017 wikipathways WP581 EPO receptor signaling lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1284 EPO receptor signaling RO:HOM0000017 wikipathways WP768 EPO receptor signaling lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1284 EPO receptor signaling RO:HOM0000017 wikipathways WP878 EPO receptor signaling lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1284 EPO receptor signaling RO:HOM0000017 wikipathways WP996 EPO receptor signaling lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1287 Amino acid conjugation of benzoic acid RO:HOM0000017 wikipathways WP1577 Amino acid conjugation of benzoic acid lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1287 Amino acid conjugation of benzoic acid RO:HOM0000017 wikipathways WP521 Amino acid conjugation of benzoic acid lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1288 Wnt signaling pathway and pluripotency RO:HOM0000017 wikipathways WP1344 Wnt signaling pathway and pluripotency lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1288 Wnt signaling pathway and pluripotency RO:HOM0000017 wikipathways WP399 Wnt signaling pathway and pluripotency lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1288 Wnt signaling pathway and pluripotency RO:HOM0000017 wikipathways WP723 Wnt signaling pathway and pluripotency lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1288 Wnt signaling pathway and pluripotency RO:HOM0000017 wikipathways WP779 Wnt signaling pathway and pluripotency lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP129 Matrix metalloproteinases RO:HOM0000017 wikipathways WP278 Matrix metalloproteinases lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP129 Matrix metalloproteinases RO:HOM0000017 wikipathways WP441 Matrix metalloproteinases lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP129 Matrix metalloproteinases RO:HOM0000017 wikipathways WP823 Matrix metalloproteinases lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP129 Matrix metalloproteinases RO:HOM0000017 wikipathways WP942 Matrix metalloproteinases lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1290 Apoptosis RO:HOM0000017 wikipathways WP1351 Apoptosis lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1290 Apoptosis RO:HOM0000017 wikipathways WP254 Apoptosis lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1290 Apoptosis RO:HOM0000017 wikipathways WP787 Apoptosis lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1291 Phase I biotransformations, non P450 RO:HOM0000017 wikipathways WP136 Phase I biotransformations, non P450 lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1293 Selenium metabolism selenoproteins RO:HOM0000017 wikipathways WP1358 Selenium metabolism selenoproteins lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1294 Nod-like receptor (NLR) signaling pathway RO:HOM0000017 wikipathways WP288 Nod-like receptor (NLR) signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1294 Nod-like receptor (NLR) signaling pathway RO:HOM0000017 wikipathways WP799 Nod-like receptor (NLR) signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1294 Nod-like receptor (NLR) signaling pathway RO:HOM0000017 wikipathways WP914 Nod-like receptor (NLR) signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1295 Mismatch repair RO:HOM0000017 wikipathways WP802 Mismatch repair lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1296 Homologous recombination RO:HOM0000017 wikipathways WP186 Homologous recombination lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1296 Homologous recombination RO:HOM0000017 wikipathways WP804 Homologous recombination lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1296 Homologous recombination RO:HOM0000017 wikipathways WP917 Homologous recombination lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1297 Retinol metabolism RO:HOM0000017 wikipathways WP5188 Retinol metabolism lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1297 Retinol metabolism RO:HOM0000017 wikipathways WP805 Retinol metabolism lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1299 ErbB signaling pathway RO:HOM0000017 wikipathways WP673 ErbB signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP13 DNA replication RO:HOM0000017 wikipathways WP192 DNA replication lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP13 DNA replication RO:HOM0000017 wikipathways WP451 DNA replication lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP13 DNA replication RO:HOM0000017 wikipathways WP466 DNA replication lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP13 DNA replication RO:HOM0000017 wikipathways WP565 DNA replication lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP13 DNA replication RO:HOM0000017 wikipathways WP757 DNA replication lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP13 DNA replication RO:HOM0000017 wikipathways WP865 DNA replication lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP13 DNA replication RO:HOM0000017 wikipathways WP983 DNA replication lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1300 Aflatoxin B1 metabolism RO:HOM0000017 wikipathways WP3247 Aflatoxin B1 metabolism lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1300 Aflatoxin B1 metabolism RO:HOM0000017 wikipathways WP699 Aflatoxin B1 metabolism lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1300 Aflatoxin B1 metabolism RO:HOM0000017 wikipathways WP925 Aflatoxin B1 metabolism lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1301 Mitochondrial gene expression RO:HOM0000017 wikipathways WP3134 Mitochondrial gene expression lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1301 Mitochondrial gene expression RO:HOM0000017 wikipathways WP391 Mitochondrial gene expression lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1302 Estrogen metabolism RO:HOM0000017 wikipathways WP697 Estrogen metabolism lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1303 Polyol pathway RO:HOM0000017 wikipathways WP1375 Polyol pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1303 Polyol pathway RO:HOM0000017 wikipathways WP690 Polyol pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1303 Polyol pathway RO:HOM0000017 wikipathways WP936 Polyol pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1309 Toll-like receptor signaling pathway RO:HOM0000017 wikipathways WP1384 Toll-like receptor signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1309 Toll-like receptor signaling pathway RO:HOM0000017 wikipathways WP75 Toll-like receptor signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP131 Peptide GPCRs RO:HOM0000017 wikipathways WP1338 Peptide GPCRs lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP131 Peptide GPCRs RO:HOM0000017 wikipathways WP24 Peptide GPCRs lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1312 S1P receptor signal transduction RO:HOM0000017 wikipathways WP26 S1P receptor signal transduction lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1313 Insulin signaling RO:HOM0000017 wikipathways WP439 Insulin signaling lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1313 Insulin signaling RO:HOM0000017 wikipathways WP481 Insulin signaling lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1313 Insulin signaling RO:HOM0000017 wikipathways WP65 Insulin signaling lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1313 Insulin signaling RO:HOM0000017 wikipathways WP966 Insulin signaling lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1318 Eicosanoid synthesis RO:HOM0000017 wikipathways WP167 Eicosanoid synthesis lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1318 Eicosanoid synthesis RO:HOM0000017 wikipathways WP318 Eicosanoid synthesis lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1318 Eicosanoid synthesis RO:HOM0000017 wikipathways WP854 Eicosanoid synthesis lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1318 Eicosanoid synthesis RO:HOM0000017 wikipathways WP972 Eicosanoid synthesis lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP132 Cholesterol biosynthesis RO:HOM0000017 wikipathways WP1387 Cholesterol biosynthesis lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP132 Cholesterol biosynthesis RO:HOM0000017 wikipathways WP833 Cholesterol biosynthesis lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP132 Cholesterol biosynthesis RO:HOM0000017 wikipathways WP952 Cholesterol biosynthesis lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1326 Nuclear receptors in lipid metabolism and toxicity RO:HOM0000017 wikipathways WP139 Nuclear receptors in lipid metabolism and toxicity lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1326 Nuclear receptors in lipid metabolism and toxicity RO:HOM0000017 wikipathways WP299 Nuclear receptors in lipid metabolism and toxicity lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1326 Nuclear receptors in lipid metabolism and toxicity RO:HOM0000017 wikipathways WP431 Nuclear receptors in lipid metabolism and toxicity lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1326 Nuclear receptors in lipid metabolism and toxicity RO:HOM0000017 wikipathways WP755 Nuclear receptors in lipid metabolism and toxicity lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1326 Nuclear receptors in lipid metabolism and toxicity RO:HOM0000017 wikipathways WP863 Nuclear receptors in lipid metabolism and toxicity lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1326 Nuclear receptors in lipid metabolism and toxicity RO:HOM0000017 wikipathways WP981 Nuclear receptors in lipid metabolism and toxicity lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1327 Hypertrophy model RO:HOM0000017 wikipathways WP202 Hypertrophy model lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1327 Hypertrophy model RO:HOM0000017 wikipathways WP442 Hypertrophy model lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1327 Hypertrophy model RO:HOM0000017 wikipathways WP516 Hypertrophy model lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1327 Hypertrophy model RO:HOM0000017 wikipathways WP982 Hypertrophy model lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP133 Fatty acid omega-oxidation RO:HOM0000017 wikipathways WP206 Fatty acid omega-oxidation lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP133 Fatty acid omega-oxidation RO:HOM0000017 wikipathways WP33 Fatty acid omega-oxidation lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP133 Fatty acid omega-oxidation RO:HOM0000017 wikipathways WP852 Fatty acid omega-oxidation lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP133 Fatty acid omega-oxidation RO:HOM0000017 wikipathways WP970 Fatty acid omega-oxidation lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1331 Adipogenesis RO:HOM0000017 wikipathways WP155 Adipogenesis lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1331 Adipogenesis RO:HOM0000017 wikipathways WP236 Adipogenesis lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1331 Adipogenesis RO:HOM0000017 wikipathways WP869 Adipogenesis lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1331 Adipogenesis RO:HOM0000017 wikipathways WP987 Adipogenesis lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1335 Oxidative phosphorylation RO:HOM0000017 wikipathways WP623 Oxidative phosphorylation lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1335 Oxidative phosphorylation RO:HOM0000017 wikipathways WP994 Oxidative phosphorylation lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1336 EPO receptor signaling RO:HOM0000017 wikipathways WP581 EPO receptor signaling lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1336 EPO receptor signaling RO:HOM0000017 wikipathways WP768 EPO receptor signaling lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1336 EPO receptor signaling RO:HOM0000017 wikipathways WP878 EPO receptor signaling lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1336 EPO receptor signaling RO:HOM0000017 wikipathways WP996 EPO receptor signaling lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1337 MAPK signaling pathway RO:HOM0000017 wikipathways WP358 MAPK signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1337 MAPK signaling pathway RO:HOM0000017 wikipathways WP382 MAPK signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1337 MAPK signaling pathway RO:HOM0000017 wikipathways WP493 Mapk signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1337 MAPK signaling pathway RO:HOM0000017 wikipathways WP510 MAPK signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1337 MAPK signaling pathway RO:HOM0000017 wikipathways WP769 MAPK signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1337 MAPK signaling pathway RO:HOM0000017 wikipathways WP880 MAPK signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1337 MAPK signaling pathway RO:HOM0000017 wikipathways WP998 MAPK signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1338 Peptide GPCRs RO:HOM0000017 wikipathways WP24 Peptide GPCRs lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1339 Electron transport chain RO:HOM0000017 wikipathways WP295 Electron transport chain lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1344 Wnt signaling pathway and pluripotency RO:HOM0000017 wikipathways WP399 Wnt signaling pathway and pluripotency lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1344 Wnt signaling pathway and pluripotency RO:HOM0000017 wikipathways WP723 Wnt signaling pathway and pluripotency lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1344 Wnt signaling pathway and pluripotency RO:HOM0000017 wikipathways WP779 Wnt signaling pathway and pluripotency lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1349 Wnt Signaling Pathway RO:HOM0000017 wikipathways WP363 Wnt signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1349 Wnt Signaling Pathway RO:HOM0000017 wikipathways WP375 Wnt signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1349 Wnt Signaling Pathway RO:HOM0000017 wikipathways WP403 Wnt signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1349 Wnt Signaling Pathway RO:HOM0000017 wikipathways WP539 Wnt signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1349 Wnt Signaling Pathway RO:HOM0000017 wikipathways WP785 Wnt signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1349 Wnt Signaling Pathway RO:HOM0000017 wikipathways WP899 Wnt signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1349 Wnt Signaling Pathway RO:HOM0000017 wikipathways WP97 Wnt signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1349 Wnt Signaling Pathway RO:HOM0000017 wikipathways WP980 Wnt signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP135 IL-6 signaling pathway RO:HOM0000017 wikipathways WP364 IL6 signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP135 IL-6 signaling pathway RO:HOM0000017 wikipathways WP387 IL-6 signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP135 IL-6 signaling pathway RO:HOM0000017 wikipathways WP976 IL-6 signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1351 Apoptosis RO:HOM0000017 wikipathways WP254 Apoptosis lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1351 Apoptosis RO:HOM0000017 wikipathways WP787 Apoptosis lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1355 One-carbon metabolism RO:HOM0000017 wikipathways WP241 One-carbon metabolism lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1355 One-carbon metabolism RO:HOM0000017 wikipathways WP435 One-carbon metabolism lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1356 Glycolysis and gluconeogenesis RO:HOM0000017 wikipathways WP157 Glycolysis and gluconeogenesis lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1356 Glycolysis and gluconeogenesis RO:HOM0000017 wikipathways WP515 Glycolysis and gluconeogenesis lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1356 Glycolysis and gluconeogenesis RO:HOM0000017 wikipathways WP534 Glycolysis and gluconeogenesis lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1356 Glycolysis and gluconeogenesis RO:HOM0000017 wikipathways WP96 Glycolysis and Gluconeogenesis lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1372 Oxidative stress response RO:HOM0000017 wikipathways WP173 Oxidative stress response lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1372 Oxidative stress response RO:HOM0000017 wikipathways WP408 Oxidative stress response lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1372 Oxidative stress response RO:HOM0000017 wikipathways WP412 Oxidative stress response lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1375 Polyol pathway RO:HOM0000017 wikipathways WP690 Polyol pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1375 Polyol pathway RO:HOM0000017 wikipathways WP936 Polyol pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1376 IL-4 signaling pathway RO:HOM0000017 wikipathways WP395 IL-4 signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP138 Androgen receptor signaling pathway RO:HOM0000017 wikipathways WP897 Androgen receptor signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1384 Toll-like receptor signaling pathway RO:HOM0000017 wikipathways WP75 Toll-like receptor signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1386 Integrin-mediated cell adhesion RO:HOM0000017 wikipathways WP185 Integrin-mediated cell adhesion lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1386 Integrin-mediated cell adhesion RO:HOM0000017 wikipathways WP6 Integrin-mediated cell adhesion lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1386 Integrin-mediated cell adhesion RO:HOM0000017 wikipathways WP74 Integrin-mediated cell adhesion lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1386 Integrin-mediated cell adhesion RO:HOM0000017 wikipathways WP832 Integrin-mediated cell adhesion lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1386 Integrin-mediated cell adhesion RO:HOM0000017 wikipathways WP951 Integrin-mediated cell adhesion lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1387 Cholesterol biosynthesis RO:HOM0000017 wikipathways WP833 Cholesterol biosynthesis lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1387 Cholesterol biosynthesis RO:HOM0000017 wikipathways WP952 Cholesterol biosynthesis lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1388 Glycogen metabolism RO:HOM0000017 wikipathways WP160 Glycogen metabolism lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1388 Glycogen metabolism RO:HOM0000017 wikipathways WP317 Glycogen metabolism lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1388 Glycogen metabolism RO:HOM0000017 wikipathways WP436 Glycogen metabolism lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1388 Glycogen metabolism RO:HOM0000017 wikipathways WP835 Glycogen metabolism lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1388 Glycogen metabolism RO:HOM0000017 wikipathways WP955 Glycogen metabolism lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1389 Monoamine GPCRs RO:HOM0000017 wikipathways WP276 Monoamine GPCRs lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1389 Monoamine GPCRs RO:HOM0000017 wikipathways WP570 Monoamine GPCRs lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1389 Monoamine GPCRs RO:HOM0000017 wikipathways WP58 Monoamine GPCRs lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1389 Monoamine GPCRs RO:HOM0000017 wikipathways WP839 Monoamine GPCRs lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1389 Monoamine GPCRs RO:HOM0000017 wikipathways WP957 Monoamine GPCRs lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP139 Nuclear receptors in lipid metabolism and toxicity RO:HOM0000017 wikipathways WP299 Nuclear receptors in lipid metabolism and toxicity lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP139 Nuclear receptors in lipid metabolism and toxicity RO:HOM0000017 wikipathways WP431 Nuclear receptors in lipid metabolism and toxicity lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP139 Nuclear receptors in lipid metabolism and toxicity RO:HOM0000017 wikipathways WP755 Nuclear receptors in lipid metabolism and toxicity lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP139 Nuclear receptors in lipid metabolism and toxicity RO:HOM0000017 wikipathways WP863 Nuclear receptors in lipid metabolism and toxicity lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP139 Nuclear receptors in lipid metabolism and toxicity RO:HOM0000017 wikipathways WP981 Nuclear receptors in lipid metabolism and toxicity lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1393 Cell cycle RO:HOM0000017 wikipathways WP179 Cell cycle lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1393 Cell cycle RO:HOM0000017 wikipathways WP844 Cell cycle lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1393 Cell cycle RO:HOM0000017 wikipathways WP964 Cell cycle lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP140 Myometrial relaxation and contraction pathways RO:HOM0000017 wikipathways WP289 Myometrial relaxation and contraction pathways lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP140 Myometrial relaxation and contraction pathways RO:HOM0000017 wikipathways WP3276 Myometrial relaxation and contraction pathways lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP140 Myometrial relaxation and contraction pathways RO:HOM0000017 wikipathways WP385 Myometrial relaxation and contraction pathways lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP142 mRNA processing RO:HOM0000017 wikipathways WP310 mRNA processing lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP142 mRNA processing RO:HOM0000017 wikipathways WP411 mRNA processing lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP142 mRNA processing RO:HOM0000017 wikipathways WP467 mRNA processing lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP142 mRNA processing RO:HOM0000017 wikipathways WP529 mRNA processing lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP142 mRNA processing RO:HOM0000017 wikipathways WP793 mRNA processing lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP142 mRNA processing RO:HOM0000017 wikipathways WP906 mRNA Processing lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1423 Ganglio sphingolipid metabolism RO:HOM0000017 wikipathways WP3219 Ganglio sphingolipid metabolism lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1434 Osteopontin signaling RO:HOM0000017 wikipathways WP3156 Osteopontin signaling lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1438 Influenza A virus infection RO:HOM0000017 wikipathways WP3214 Influenza A virus infection lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP145 Statin pathway RO:HOM0000017 wikipathways WP921 Statin pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1455 Serotonin transporter activity RO:HOM0000017 wikipathways WP3138 Serotonin transporter activity lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP146 Nucleotide metabolism RO:HOM0000017 wikipathways WP321 Nucleotide metabolism lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP146 Nucleotide metabolism RO:HOM0000017 wikipathways WP3211 Nucleotide metabolism lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP147 Kit receptor signaling pathway RO:HOM0000017 wikipathways WP304 Kit receptor signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP147 Kit receptor signaling pathway RO:HOM0000017 wikipathways WP407 Kit receptor signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP147 Kit receptor signaling pathway RO:HOM0000017 wikipathways WP774 Kit receptor signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP147 Kit receptor signaling pathway RO:HOM0000017 wikipathways WP886 Kit receptor signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1471 Target of rapamycin (TOR) signaling RO:HOM0000017 wikipathways WP3256 Target of rapamycin (TOR) signaling lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP149 Translation factors RO:HOM0000017 wikipathways WP307 Translation factors lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP149 Translation factors RO:HOM0000017 wikipathways WP32 Translation factors lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP149 Translation factors RO:HOM0000017 wikipathways WP537 Translation factors lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP149 Translation factors RO:HOM0000017 wikipathways WP965 Translation factors lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1495 Glycine metabolism RO:HOM0000017 wikipathways WP3142 Glycine metabolism lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1496 Oxidative damage response RO:HOM0000017 wikipathways WP3941 Oxidative damage response lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1498 Dopaminergic neurogenesis RO:HOM0000017 wikipathways WP2855 Dopaminergic neurogenesis lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1498 Dopaminergic neurogenesis RO:HOM0000017 wikipathways WP3196 Dopaminergic neurogenesis lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP15 Selenium micronutrient network RO:HOM0000017 wikipathways WP3257 Selenium micronutrient network lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP151 IL-5 signaling pathway RO:HOM0000017 wikipathways WP44 IL-5 signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP151 IL-5 signaling pathway RO:HOM0000017 wikipathways WP968 IL-5 signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1531 Vitamin D metabolism RO:HOM0000017 wikipathways WP3162 Vitamin D metabolism lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1533 Vitamin B12 metabolism RO:HOM0000017 wikipathways WP3193 Vitamin B12 metabolism lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1539 Angiogenesis RO:HOM0000017 wikipathways WP3184 Angiogenesis lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP154 Biogenic amine synthesis RO:HOM0000017 wikipathways WP3168 Biogenic amine synthesis lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP154 Biogenic amine synthesis RO:HOM0000017 wikipathways WP522 Biogenic amine synthesis lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP154 Biogenic amine synthesis RO:HOM0000017 wikipathways WP550 Biogenic amine synthesis lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1544 MicroRNAs in cardiomyocyte hypertrophy RO:HOM0000017 wikipathways WP1560 MicroRNAs in cardiomyocyte hypertrophy lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP155 Adipogenesis RO:HOM0000017 wikipathways WP236 Adipogenesis lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP155 Adipogenesis RO:HOM0000017 wikipathways WP869 Adipogenesis lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP155 Adipogenesis RO:HOM0000017 wikipathways WP987 Adipogenesis lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP157 Glycolysis and gluconeogenesis RO:HOM0000017 wikipathways WP515 Glycolysis and gluconeogenesis lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP157 Glycolysis and gluconeogenesis RO:HOM0000017 wikipathways WP534 Glycolysis and gluconeogenesis lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP157 Glycolysis and gluconeogenesis RO:HOM0000017 wikipathways WP96 Glycolysis and Gluconeogenesis lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1577 Amino acid conjugation of benzoic acid RO:HOM0000017 wikipathways WP521 Amino acid conjugation of benzoic acid lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP158 Proteasome degradation RO:HOM0000017 wikipathways WP183 Proteasome degradation lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP158 Proteasome degradation RO:HOM0000017 wikipathways WP281 Proteasome degradation lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP158 Proteasome degradation RO:HOM0000017 wikipathways WP302 Proteasome degradation lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP158 Proteasome degradation RO:HOM0000017 wikipathways WP470 Proteasome degradation lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP158 Proteasome degradation RO:HOM0000017 wikipathways WP519 Proteasome degradation lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1584 Type II diabetes mellitus RO:HOM0000017 wikipathways WP3117 Type II diabetes mellitus lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1591 Heart development RO:HOM0000017 wikipathways WP2067 Heart development lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1591 Heart development RO:HOM0000017 wikipathways WP3280 Heart development lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP160 Glycogen metabolism RO:HOM0000017 wikipathways WP317 Glycogen metabolism lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP160 Glycogen metabolism RO:HOM0000017 wikipathways WP436 Glycogen metabolism lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP160 Glycogen metabolism RO:HOM0000017 wikipathways WP835 Glycogen metabolism lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP160 Glycogen metabolism RO:HOM0000017 wikipathways WP955 Glycogen metabolism lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1601 Fluoropyrimidine activity RO:HOM0000017 wikipathways WP3275 Fluoropyrimidine activity lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1604 Codeine and morphine metabolism RO:HOM0000017 wikipathways WP3270 Codeine and morphine metabolism lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP161 Small ligand GPCRs RO:HOM0000017 wikipathways WP247 Small ligand GPCRs lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP161 Small ligand GPCRs RO:HOM0000017 wikipathways WP971 Small ligand GPCRs lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP163 Cytoplasmic ribosomal proteins RO:HOM0000017 wikipathways WP210 Cytoplasmic ribosomal proteins lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP163 Cytoplasmic ribosomal proteins RO:HOM0000017 wikipathways WP324 Cytoplasmic ribosomal proteins lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP163 Cytoplasmic ribosomal proteins RO:HOM0000017 wikipathways WP477 Cytoplasmic ribosomal proteins lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP163 Cytoplasmic ribosomal proteins RO:HOM0000017 wikipathways WP540 Cytoplasmic ribosomal proteins lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP164 Glutathione metabolism RO:HOM0000017 wikipathways WP3207 Glutathione metabolism lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP164 Glutathione metabolism RO:HOM0000017 wikipathways WP469 Glutathione metabolism lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP166 Apoptosis modulation by HSP70 RO:HOM0000017 wikipathways WP384 Apoptosis modulation by HSP70 lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP166 Apoptosis modulation by HSP70 RO:HOM0000017 wikipathways WP487 Apoptosis modulation by HSP70 lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP166 Apoptosis modulation by HSP70 RO:HOM0000017 wikipathways WP963 Apoptosis modulation by HSP70 lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP167 Eicosanoid synthesis RO:HOM0000017 wikipathways WP318 Eicosanoid synthesis lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP167 Eicosanoid synthesis RO:HOM0000017 wikipathways WP854 Eicosanoid synthesis lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP167 Eicosanoid synthesis RO:HOM0000017 wikipathways WP972 Eicosanoid synthesis lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP170 Nuclear receptors RO:HOM0000017 wikipathways WP217 Nuclear receptors lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP170 Nuclear receptors RO:HOM0000017 wikipathways WP509 Nuclear Receptors lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP170 Nuclear receptors RO:HOM0000017 wikipathways WP831 Nuclear receptors lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP170 Nuclear receptors RO:HOM0000017 wikipathways WP950 Nuclear receptors lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP173 Oxidative stress response RO:HOM0000017 wikipathways WP408 Oxidative stress response lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP173 Oxidative stress response RO:HOM0000017 wikipathways WP412 Oxidative stress response lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP175 Acetylcholine synthesis RO:HOM0000017 wikipathways WP264 Acetylcholine synthesis lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP175 Acetylcholine synthesis RO:HOM0000017 wikipathways WP360 Acetylcholine synthesis lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP175 Acetylcholine synthesis RO:HOM0000017 wikipathways WP476 Acetylcholine synthesis lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP175 Acetylcholine synthesis RO:HOM0000017 wikipathways WP528 Acetylcholine synthesis lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP177 Eukaryotic transcription initiation RO:HOM0000017 wikipathways WP405 Eukaryotic transcription initiation lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP177 Eukaryotic transcription initiation RO:HOM0000017 wikipathways WP425 Eukaryotic transcription initiation lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP177 Eukaryotic transcription initiation RO:HOM0000017 wikipathways WP518 Eukaryotic transcription initiation lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP177 Eukaryotic transcription initiation RO:HOM0000017 wikipathways WP567 Eukaryotic transcription initiation lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP177 Eukaryotic transcription initiation RO:HOM0000017 wikipathways WP830 Eukaryotic transcription initiation lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP177 Eukaryotic transcription initiation RO:HOM0000017 wikipathways WP948 Eukaryotic transcription initiation lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1770 One-carbon metabolism and related pathways RO:HOM0000017 wikipathways WP3940 One-carbon metabolism and related pathways lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1772 Apoptosis modulation and signaling RO:HOM0000017 wikipathways WP3148 Apoptosis modulation and signaling lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP179 Cell cycle RO:HOM0000017 wikipathways WP844 Cell cycle lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP179 Cell cycle RO:HOM0000017 wikipathways WP964 Cell cycle lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP18 Heme biosynthesis RO:HOM0000017 wikipathways WP269 Heme biosynthesis lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP18 Heme biosynthesis RO:HOM0000017 wikipathways WP561 Heme biosynthesis lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP18 Heme biosynthesis RO:HOM0000017 wikipathways WP848 Heme biosynthesis lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP18 Heme biosynthesis RO:HOM0000017 wikipathways WP86 Heme biosynthesis lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP18 Heme biosynthesis RO:HOM0000017 wikipathways WP967 Heme biosynthesis lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP183 Proteasome degradation RO:HOM0000017 wikipathways WP281 Proteasome degradation lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP183 Proteasome degradation RO:HOM0000017 wikipathways WP302 Proteasome degradation lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP183 Proteasome degradation RO:HOM0000017 wikipathways WP470 Proteasome degradation lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP183 Proteasome degradation RO:HOM0000017 wikipathways WP519 Proteasome degradation lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP185 Integrin-mediated cell adhesion RO:HOM0000017 wikipathways WP6 Integrin-mediated cell adhesion lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP185 Integrin-mediated cell adhesion RO:HOM0000017 wikipathways WP74 Integrin-mediated cell adhesion lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP185 Integrin-mediated cell adhesion RO:HOM0000017 wikipathways WP832 Integrin-mediated cell adhesion lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP185 Integrin-mediated cell adhesion RO:HOM0000017 wikipathways WP951 Integrin-mediated cell adhesion lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP186 Homologous recombination RO:HOM0000017 wikipathways WP804 Homologous recombination lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP186 Homologous recombination RO:HOM0000017 wikipathways WP917 Homologous recombination lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP188 Focal adhesion RO:HOM0000017 wikipathways WP306 Focal adhesion lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP188 Focal adhesion RO:HOM0000017 wikipathways WP3197 Focal adhesion lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP188 Focal adhesion RO:HOM0000017 wikipathways WP85 Focal adhesion lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP189 GPCRs, class A rhodopsin-like RO:HOM0000017 wikipathways WP455 GPCRs, class A rhodopsin-like lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP189 GPCRs, class A rhodopsin-like RO:HOM0000017 wikipathways WP473 GPCRs, class A rhodopsin-like lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP19 TCA cycle RO:HOM0000017 wikipathways WP347 TCA cycle lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP19 TCA cycle RO:HOM0000017 wikipathways WP434 TCA cycle lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP19 TCA cycle RO:HOM0000017 wikipathways WP490 TCA cycle lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP19 TCA cycle RO:HOM0000017 wikipathways WP999 TCA cycle lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP192 DNA replication RO:HOM0000017 wikipathways WP451 DNA replication lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP192 DNA replication RO:HOM0000017 wikipathways WP466 DNA replication lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP192 DNA replication RO:HOM0000017 wikipathways WP565 DNA replication lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP192 DNA replication RO:HOM0000017 wikipathways WP757 DNA replication lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP192 DNA replication RO:HOM0000017 wikipathways WP865 DNA replication lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP192 DNA replication RO:HOM0000017 wikipathways WP983 DNA replication lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1941 Peroxisomal beta-oxidation of tetracosanoyl-CoA RO:HOM0000017 wikipathways WP3146 Peroxisomal beta-oxidation of tetracosanoyl-CoA lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1946 Cori cycle RO:HOM0000017 wikipathways WP3114 Cori cycle lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP195 IL-1 signaling pathway RO:HOM0000017 wikipathways WP3271 IL-1 signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP195 IL-1 signaling pathway RO:HOM0000017 wikipathways WP355 IL-1 signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP195 IL-1 signaling pathway RO:HOM0000017 wikipathways WP37 IL-1 signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1971 Integrated cancer pathway RO:HOM0000017 wikipathways WP3244 Integrated cancer pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1983 Splicing factor NOVA regulated synaptic proteins RO:HOM0000017 wikipathways WP4148 Splicing factor NOVA regulated synaptic proteins lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP1995 Effects of nitric oxide RO:HOM0000017 wikipathways WP3182 Effects of nitric oxide lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP200 Complement activation, classical pathway RO:HOM0000017 wikipathways WP977 Complement activation, classical pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP2007 Iron metabolism in placenta RO:HOM0000017 wikipathways WP2908 Iron metabolism in placenta lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP201 Ptf1a related regulatory pathway RO:HOM0000017 wikipathways WP4147 PTF1A related regulatory pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP2011 SREBF and miR33 in cholesterol and lipid homeostasis RO:HOM0000017 wikipathways WP2084 SREBF and miR33 in cholesterol and lipid homeostasis lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP2011 SREBF and miR33 in cholesterol and lipid homeostasis RO:HOM0000017 wikipathways WP3137 SREBF and miR33 in cholesterol and lipid homeostasis lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP202 Hypertrophy model RO:HOM0000017 wikipathways WP442 Hypertrophy model lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP202 Hypertrophy model RO:HOM0000017 wikipathways WP516 Hypertrophy model lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP202 Hypertrophy model RO:HOM0000017 wikipathways WP982 Hypertrophy model lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP2029 Cell differentiation - index RO:HOM0000017 wikipathways WP3202 Cell differentiation - index lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP2032 Thyroid stimulating hormone (TSH) signaling pathway RO:HOM0000017 wikipathways WP3227 Thyroid stimulating hormone (TSH) signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP2034 Leptin signaling pathway RO:HOM0000017 wikipathways WP3274 Leptin signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP2038 Microtubule cytoskeleton regulation RO:HOM0000017 wikipathways WP3177 Microtubule cytoskeleton regulation lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP205 IL-7 signaling pathway RO:HOM0000017 wikipathways WP297 IL-7 signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP206 Fatty acid omega-oxidation RO:HOM0000017 wikipathways WP33 Fatty acid omega-oxidation lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP206 Fatty acid omega-oxidation RO:HOM0000017 wikipathways WP852 Fatty acid omega-oxidation lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP206 Fatty acid omega-oxidation RO:HOM0000017 wikipathways WP970 Fatty acid omega-oxidation lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP2064 Neural crest differentiation RO:HOM0000017 wikipathways WP2074 Neural crest differentiation lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP2064 Neural crest differentiation RO:HOM0000017 wikipathways WP3273 Neural crest differentiation lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP2067 Heart development RO:HOM0000017 wikipathways WP3280 Heart development lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP207 Nucleotide GPCRs RO:HOM0000017 wikipathways WP502 Nucleotide GPCRs lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP207 Nucleotide GPCRs RO:HOM0000017 wikipathways WP80 Nucleotide GPCRs lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP2074 Neural crest differentiation RO:HOM0000017 wikipathways WP3273 Neural crest differentiation lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP2075 Alzheimer's disease RO:HOM0000017 wikipathways WP5124 Alzheimer's disease lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP2079 Serotonin receptor 2 and STAT3 signaling RO:HOM0000017 wikipathways WP3115 Serotonin receptor 2 and STAT3 signaling lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP2079 Serotonin receptor 2 and STAT3 signaling RO:HOM0000017 wikipathways WP733 Serotonin receptor 2 and STAT3 signaling lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP208 Notch signaling pathway RO:HOM0000017 wikipathways WP29 Notch signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP208 Notch signaling pathway RO:HOM0000017 wikipathways WP517 Notch signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP208 Notch signaling pathway RO:HOM0000017 wikipathways WP61 Notch signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP208 Notch signaling pathway RO:HOM0000017 wikipathways WP798 Notch signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP208 Notch signaling pathway RO:HOM0000017 wikipathways WP912 Notch signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP2084 SREBF and miR33 in cholesterol and lipid homeostasis RO:HOM0000017 wikipathways WP3137 SREBF and miR33 in cholesterol and lipid homeostasis lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP210 Cytoplasmic ribosomal proteins RO:HOM0000017 wikipathways WP324 Cytoplasmic ribosomal proteins lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP210 Cytoplasmic ribosomal proteins RO:HOM0000017 wikipathways WP477 Cytoplasmic ribosomal proteins lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP210 Cytoplasmic ribosomal proteins RO:HOM0000017 wikipathways WP540 Cytoplasmic ribosomal proteins lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP2112 IL-17 signaling pathway RO:HOM0000017 wikipathways WP3176 IL-17 signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP2113 Type III interferon signaling RO:HOM0000017 wikipathways WP3173 Type III interferon signaling lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP2118 Arrhythmogenic right ventricular cardiomyopathy RO:HOM0000017 wikipathways WP3195 Arrhythmogenic right ventricular cardiomyopathy lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP212 Triacylglyceride synthesis RO:HOM0000017 wikipathways WP325 Triacylglyceride synthesis lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP212 Triacylglyceride synthesis RO:HOM0000017 wikipathways WP386 Triacylglyceride synthesis lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP2132 Serotonin and anxiety RO:HOM0000017 wikipathways WP2141 Serotonin and anxiety lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP2132 Serotonin and anxiety RO:HOM0000017 wikipathways WP3947 Serotonin and anxiety lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP2140 Serotonin and anxiety-related events RO:HOM0000017 wikipathways WP3944 Serotonin and anxiety-related events lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP2141 Serotonin and anxiety RO:HOM0000017 wikipathways WP3947 Serotonin and anxiety lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP217 Nuclear receptors RO:HOM0000017 wikipathways WP509 Nuclear Receptors lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP217 Nuclear receptors RO:HOM0000017 wikipathways WP831 Nuclear receptors lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP217 Nuclear receptors RO:HOM0000017 wikipathways WP950 Nuclear receptors lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP2185 Purine metabolism RO:HOM0000017 wikipathways WP4792 Purine metabolism lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP2197 Endothelin pathways RO:HOM0000017 wikipathways WP3246 Endothelin pathways lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP22 IL-9 signaling pathway RO:HOM0000017 wikipathways WP8 IL-9 signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP22 IL-9 signaling pathway RO:HOM0000017 wikipathways WP974 IL-9 signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP222 Cytokines and inflammatory response RO:HOM0000017 wikipathways WP530 Cytokines and inflammatory response lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP222 Cytokines and inflammatory response RO:HOM0000017 wikipathways WP879 Cytokines and inflammatory response lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP222 Cytokines and inflammatory response RO:HOM0000017 wikipathways WP997 Cytokines and inflammatory response lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP2249 Metastatic brain tumor RO:HOM0000017 wikipathways WP3259 Metastatic brain tumor lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP2253 Pilocytic astrocytoma RO:HOM0000017 wikipathways WP3122 Pilocytic astrocytoma lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP2267 Synaptic vesicle pathway RO:HOM0000017 wikipathways WP3224 Synaptic vesicle pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP227 Osteoblast signaling RO:HOM0000017 wikipathways WP238 Osteoblast signaling lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP227 Osteoblast signaling RO:HOM0000017 wikipathways WP322 Osteoblast signaling lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP227 Osteoblast signaling RO:HOM0000017 wikipathways WP956 Osteoblast signaling lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP2271 Macrophage markers RO:HOM0000017 wikipathways WP4146 Macrophage markers lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP2272 Pathogenic Escherichia coli infection RO:HOM0000017 wikipathways WP3157 Pathogenic Escherichia coli infection lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP2276 Glial cell differentiation RO:HOM0000017 wikipathways WP3203 Glial cell differentiation lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP2289 Drug induction of bile acid pathway RO:HOM0000017 wikipathways WP3253 Drug induction of bile acid pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP2290 RalA downstream regulated genes RO:HOM0000017 wikipathways WP3268 RalA downstream regulated genes lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP2291 Deregulation of Rab and Rab effector genes in bladder cancer RO:HOM0000017 wikipathways WP3171 Deregulation of Rab and Rab effector genes in bladder cancer lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP2292 Chemokine signaling pathway RO:HOM0000017 wikipathways WP3929 Chemokine signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP2316 PPAR signaling pathway RO:HOM0000017 wikipathways WP3942 PPAR signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP2316 PPAR signaling pathway RO:HOM0000017 wikipathways WP4020 PPAR signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP2318 Fatty acid oxidation RO:HOM0000017 wikipathways WP91 Fatty acid oxidation lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP232 G protein signaling pathways RO:HOM0000017 wikipathways WP35 G protein signaling pathways lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP232 G protein signaling pathways RO:HOM0000017 wikipathways WP73 G protein signaling pathways lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP232 G protein signaling pathways RO:HOM0000017 wikipathways WP813 G protein signaling pathways lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP232 G protein signaling pathways RO:HOM0000017 wikipathways WP931 G protein signaling pathways lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP2324 AGE/RAGE pathway RO:HOM0000017 wikipathways WP3124 AGE/RAGE pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP2332 Interleukin-11 signaling pathway RO:HOM0000017 wikipathways WP3159 Interleukin-11 signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP2333 Trans-sulfuration pathway RO:HOM0000017 wikipathways WP3145 Trans-sulfuration pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP2338 miRNA biogenesis RO:HOM0000017 wikipathways WP3140 miRNA biogenesis lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP235 Wnt signaling RO:HOM0000017 wikipathways WP428 Wnt signaling lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP2359 Parkin-ubiquitin proteasomal system pathway RO:HOM0000017 wikipathways WP3199 Parkin-ubiquitin proteasomal system pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP236 Adipogenesis RO:HOM0000017 wikipathways WP869 Adipogenesis lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP236 Adipogenesis RO:HOM0000017 wikipathways WP987 Adipogenesis lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP2361 Gastric cancer network 1 RO:HOM0000017 wikipathways WP3166 Gastric cancer network 1 lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP2363 Gastric cancer network 2 RO:HOM0000017 wikipathways WP3139 Gastric cancer network 2 lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP2366 Butyrate-induced histone acetylation RO:HOM0000017 wikipathways WP3249 Butyrate-induced histone acetylation lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP2369 Histone modifications RO:HOM0000017 wikipathways WP300 Histone modifications lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP2369 Histone modifications RO:HOM0000017 wikipathways WP3123 Histone modifications lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP2374 Oncostatin M signaling pathway RO:HOM0000017 wikipathways WP3277 Oncostatin M signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP238 Osteoblast signaling RO:HOM0000017 wikipathways WP322 Osteoblast signaling lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP238 Osteoblast signaling RO:HOM0000017 wikipathways WP956 Osteoblast signaling lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP240 Alanine and aspartate metabolism RO:HOM0000017 wikipathways WP3262 Alanine and aspartate metabolism lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP2406 Cardiac progenitor differentiation RO:HOM0000017 wikipathways WP3127 Cardiac progenitor differentiation lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP241 One-carbon metabolism RO:HOM0000017 wikipathways WP435 One-carbon metabolism lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP2431 Spinal cord injury RO:HOM0000017 wikipathways WP2432 Spinal cord injury lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP2431 Spinal cord injury RO:HOM0000017 wikipathways WP2433 Spinal cord injury lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP2431 Spinal cord injury RO:HOM0000017 wikipathways WP3186 Spinal cord injury lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP2432 Spinal cord injury RO:HOM0000017 wikipathways WP2433 Spinal cord injury lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP2432 Spinal cord injury RO:HOM0000017 wikipathways WP3186 Spinal cord injury lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP2433 Spinal cord injury RO:HOM0000017 wikipathways WP3186 Spinal cord injury lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP2436 Dopamine metabolism RO:HOM0000017 wikipathways WP3155 Dopamine metabolism lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP244 Alpha 6 beta 4 signaling pathway RO:HOM0000017 wikipathways WP985 Alpha 6 beta 4 signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP2446 Retinoblastoma gene in cancer RO:HOM0000017 wikipathways WP3206 Retinoblastoma gene in cancer lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP2447 Amyotrophic lateral sclerosis (ALS) RO:HOM0000017 wikipathways WP3243 Amyotrophic lateral sclerosis (ALS) lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP2453 TCA cycle and deficiency of pyruvate dehydrogenase complex (PDHc) RO:HOM0000017 wikipathways WP3149 TCA cycle and deficiency of pyruvate dehydrogenase complex (PDHc) lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP247 Small ligand GPCRs RO:HOM0000017 wikipathways WP971 Small ligand GPCRs lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP2491 Diclofenac metabolic pathway RO:HOM0000017 wikipathways WP3152 Diclofenac metabolic pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP25 Fatty acid beta-oxidation 3 RO:HOM0000017 wikipathways WP499 Fatty acid beta-oxidation 3 lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP251 Mapk cascade RO:HOM0000017 wikipathways WP422 MAPK cascade lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP2516 ATM signaling pathway RO:HOM0000017 wikipathways WP3221 ATM signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP2516 ATM signaling pathway RO:HOM0000017 wikipathways WP654 ATM signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP2526 PDGF pathway RO:HOM0000017 wikipathways WP3200 PDGF pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP253 Glycolysis RO:HOM0000017 wikipathways WP2621 Glycolysis lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP253 Glycolysis RO:HOM0000017 wikipathways WP2862 Glycolysis lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP2533 Glycerophospholipid biosynthetic pathway RO:HOM0000017 wikipathways WP3198 Glycerophospholipid biosynthetic pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP2536 Colchicine metabolic pathway RO:HOM0000017 wikipathways WP3187 Colchicine metabolic pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP254 Apoptosis RO:HOM0000017 wikipathways WP787 Apoptosis lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP2541 Sulindac metabolic pathway RO:HOM0000017 wikipathways WP2542 Sulindac metabolic pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP2541 Sulindac metabolic pathway RO:HOM0000017 wikipathways WP3150 Sulindac metabolic pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP2542 Sulindac metabolic pathway RO:HOM0000017 wikipathways WP3150 Sulindac metabolic pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP2572 Primary focal segmental glomerulosclerosis (FSGS) RO:HOM0000017 wikipathways WP2573 Primary focal segmental glomerulosclerosis (FSGS) lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP2572 Primary focal segmental glomerulosclerosis (FSGS) RO:HOM0000017 wikipathways WP3233 Primary focal segmental glomerulosclerosis (FSGS) lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP2573 Primary focal segmental glomerulosclerosis (FSGS) RO:HOM0000017 wikipathways WP3233 Primary focal segmental glomerulosclerosis (FSGS) lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP2583 T cell receptor and co-stimulatory signaling RO:HOM0000017 wikipathways WP3282 T cell receptor and co-stimulatory signaling lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP2586 Aryl hydrocarbon receptor pathway RO:HOM0000017 wikipathways WP3205 Aryl hydrocarbon receptor pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP2596 Gastric acid production RO:HOM0000017 wikipathways WP3172 Gastric acid production lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP2621 Glycolysis RO:HOM0000017 wikipathways WP2862 Glycolysis lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP2637 Interleukin-1 (IL-1) structural pathway RO:HOM0000017 wikipathways WP3178 Interleukin-1 (IL-1) structural pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP264 Acetylcholine synthesis RO:HOM0000017 wikipathways WP360 Acetylcholine synthesis lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP264 Acetylcholine synthesis RO:HOM0000017 wikipathways WP476 Acetylcholine synthesis lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP264 Acetylcholine synthesis RO:HOM0000017 wikipathways WP528 Acetylcholine synthesis lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP2646 Lidocaine metabolism RO:HOM0000017 wikipathways WP3254 Lidocaine metabolism lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP265 Delta-Notch signaling pathway RO:HOM0000017 wikipathways WP827 Delta-Notch signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP265 Delta-Notch signaling pathway RO:HOM0000017 wikipathways WP946 Delta-Notch signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP269 Heme biosynthesis RO:HOM0000017 wikipathways WP561 Heme biosynthesis lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP269 Heme biosynthesis RO:HOM0000017 wikipathways WP848 Heme biosynthesis lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP269 Heme biosynthesis RO:HOM0000017 wikipathways WP86 Heme biosynthesis lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP269 Heme biosynthesis RO:HOM0000017 wikipathways WP967 Heme biosynthesis lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP270 Tryptophan metabolism RO:HOM0000017 wikipathways WP3248 Tryptophan metabolism lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP270 Tryptophan metabolism RO:HOM0000017 wikipathways WP465 Tryptophan metabolism lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP270 Tryptophan metabolism RO:HOM0000017 wikipathways WP79 Tryptophan metabolism lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP272 Blood clotting cascade RO:HOM0000017 wikipathways WP3251 Blood clotting cascade lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP272 Blood clotting cascade RO:HOM0000017 wikipathways WP460 Blood clotting cascade lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP272 Blood clotting cascade RO:HOM0000017 wikipathways WP775 Blood clotting cascade lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP272 Blood clotting cascade RO:HOM0000017 wikipathways WP887 Blood clotting cascade lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP273 Ovarian infertility RO:HOM0000017 wikipathways WP34 Ovarian infertility lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP276 Monoamine GPCRs RO:HOM0000017 wikipathways WP570 Monoamine GPCRs lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP276 Monoamine GPCRs RO:HOM0000017 wikipathways WP58 Monoamine GPCRs lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP276 Monoamine GPCRs RO:HOM0000017 wikipathways WP839 Monoamine GPCRs lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP276 Monoamine GPCRs RO:HOM0000017 wikipathways WP957 Monoamine GPCRs lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP278 Matrix metalloproteinases RO:HOM0000017 wikipathways WP441 Matrix metalloproteinases lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP278 Matrix metalloproteinases RO:HOM0000017 wikipathways WP823 Matrix metalloproteinases lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP278 Matrix metalloproteinases RO:HOM0000017 wikipathways WP942 Matrix metalloproteinases lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP2795 Cardiac hypertrophic response RO:HOM0000017 wikipathways WP3250 Cardiac hypertrophic response lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP281 Proteasome degradation RO:HOM0000017 wikipathways WP302 Proteasome degradation lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP281 Proteasome degradation RO:HOM0000017 wikipathways WP470 Proteasome degradation lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP281 Proteasome degradation RO:HOM0000017 wikipathways WP519 Proteasome degradation lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP2816 Felbamate metabolism RO:HOM0000017 wikipathways WP3189 Felbamate metabolism lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP282 Pentose phosphate pathway RO:HOM0000017 wikipathways WP312 Pentose phosphate pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP282 Pentose phosphate pathway RO:HOM0000017 wikipathways WP369 Pentose phosphate pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP282 Pentose phosphate pathway RO:HOM0000017 wikipathways WP63 Pentose phosphate pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP2849 Hematopoietic stem cell differentiation RO:HOM0000017 wikipathways WP3174 Hematopoietic stem cell differentiation lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP2852 Gene regulatory network modelling somitogenesis RO:HOM0000017 wikipathways WP2854 Gene regulatory network modelling somitogenesis lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP2852 Gene regulatory network modelling somitogenesis RO:HOM0000017 wikipathways WP3216 Gene regulatory network modelling somitogenesis lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP2853 Endoderm differentiation RO:HOM0000017 wikipathways WP3240 Endoderm differentiation lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP2854 Gene regulatory network modelling somitogenesis RO:HOM0000017 wikipathways WP3216 Gene regulatory network modelling somitogenesis lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP2855 Dopaminergic neurogenesis RO:HOM0000017 wikipathways WP3196 Dopaminergic neurogenesis lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP2857 Mesodermal commitment pathway RO:HOM0000017 wikipathways WP3183 Mesodermal commitment pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP2858 Ectoderm differentiation RO:HOM0000017 wikipathways WP3208 Ectoderm differentiation lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP286 IL-3 signaling pathway RO:HOM0000017 wikipathways WP319 IL-3 signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP286 IL-3 signaling pathway RO:HOM0000017 wikipathways WP373 IL-3 signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP2864 Apoptosis-related network due to altered Notch3 in ovarian cancer RO:HOM0000017 wikipathways WP3126 Apoptosis-related network due to altered Notch3 in ovarian cancer lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP2868 TCA cycle nutrient use and invasiveness of ovarian cancer RO:HOM0000017 wikipathways WP3252 TCA cycle nutrient use and invasiveness of ovarian cancer lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP2870 Extracellular vesicle-mediated signaling in recipient cells RO:HOM0000017 wikipathways WP3161 Extracellular vesicle-mediated signaling in recipient cells lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP2872 White fat cell differentiation RO:HOM0000017 wikipathways WP4149 White fat cell differentiation lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP2873 Aryl hydrocarbon receptor pathway RO:HOM0000017 wikipathways WP3205 Aryl hydrocarbon receptor pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP2875 Constitutive androstane receptor pathway RO:HOM0000017 wikipathways WP3131 Constitutive androstane receptor pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP288 Nod-like receptor (NLR) signaling pathway RO:HOM0000017 wikipathways WP799 Nod-like receptor (NLR) signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP288 Nod-like receptor (NLR) signaling pathway RO:HOM0000017 wikipathways WP914 Nod-like receptor (NLR) signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP2881 Estrogen receptor pathway RO:HOM0000017 wikipathways WP3163 Estrogen receptor pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP2884 NRF2 pathway RO:HOM0000017 wikipathways WP3190 NRF2 pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP2889 Oxytocin signaling RO:HOM0000017 wikipathways WP3222 Oxytocin signaling lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP289 Myometrial relaxation and contraction pathways RO:HOM0000017 wikipathways WP3276 Myometrial relaxation and contraction pathways lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP289 Myometrial relaxation and contraction pathways RO:HOM0000017 wikipathways WP385 Myometrial relaxation and contraction pathways lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP29 Notch signaling pathway RO:HOM0000017 wikipathways WP517 Notch signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP29 Notch signaling pathway RO:HOM0000017 wikipathways WP61 Notch signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP29 Notch signaling pathway RO:HOM0000017 wikipathways WP798 Notch signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP29 Notch signaling pathway RO:HOM0000017 wikipathways WP912 Notch signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP2910 Mecp2 and associated Rett syndrome RO:HOM0000017 wikipathways WP3584 MECP2 and associated Rett syndrome lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP2916 Interactome of polycomb repressive complex 2 (PRC2) RO:HOM0000017 wikipathways WP3136 Interactome of polycomb repressive complex 2 (PRC2) lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP2928 miR-222 in exercise-induced cardiac growth RO:HOM0000017 wikipathways WP3938 miR-222 in exercise-induced cardiac growth lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP294 p38 Mapk signaling pathway RO:HOM0000017 wikipathways WP350 p38 Mapk signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP294 p38 Mapk signaling pathway RO:HOM0000017 wikipathways WP400 p38 MAPK signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP294 p38 Mapk signaling pathway RO:HOM0000017 wikipathways WP803 p38 MAPK signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP294 p38 Mapk signaling pathway RO:HOM0000017 wikipathways WP918 p38 MAPK signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP2940 Polar auxin transport RO:HOM0000017 wikipathways WP2941 Polar auxin transport lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP2942 DDX1 as a regulatory component of the Drosha microprocessor RO:HOM0000017 wikipathways WP3241 DDX1 as a regulatory component of the Drosha microprocessor lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP298 G13 signaling pathway RO:HOM0000017 wikipathways WP520 G13 signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP298 G13 signaling pathway RO:HOM0000017 wikipathways WP524 G13 signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP298 G13 signaling pathway RO:HOM0000017 wikipathways WP826 G13 signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP298 G13 signaling pathway RO:HOM0000017 wikipathways WP945 G13 signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP299 Nuclear receptors in lipid metabolism and toxicity RO:HOM0000017 wikipathways WP431 Nuclear receptors in lipid metabolism and toxicity lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP299 Nuclear receptors in lipid metabolism and toxicity RO:HOM0000017 wikipathways WP755 Nuclear receptors in lipid metabolism and toxicity lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP299 Nuclear receptors in lipid metabolism and toxicity RO:HOM0000017 wikipathways WP863 Nuclear receptors in lipid metabolism and toxicity lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP299 Nuclear receptors in lipid metabolism and toxicity RO:HOM0000017 wikipathways WP981 Nuclear receptors in lipid metabolism and toxicity lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP300 Histone modifications RO:HOM0000017 wikipathways WP3123 Histone modifications lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP302 Proteasome degradation RO:HOM0000017 wikipathways WP470 Proteasome degradation lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP302 Proteasome degradation RO:HOM0000017 wikipathways WP519 Proteasome degradation lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP303 Prostaglandin synthesis and regulation RO:HOM0000017 wikipathways WP374 Prostaglandin synthesis and regulation lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP303 Prostaglandin synthesis and regulation RO:HOM0000017 wikipathways WP98 Prostaglandin synthesis and regulation lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP303 Prostaglandin synthesis and regulation RO:HOM0000017 wikipathways WP995 Prostaglandin synthesis and regulation lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP304 Kit receptor signaling pathway RO:HOM0000017 wikipathways WP407 Kit receptor signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP304 Kit receptor signaling pathway RO:HOM0000017 wikipathways WP774 Kit receptor signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP304 Kit receptor signaling pathway RO:HOM0000017 wikipathways WP886 Kit receptor signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP306 Focal adhesion RO:HOM0000017 wikipathways WP3197 Focal adhesion lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP306 Focal adhesion RO:HOM0000017 wikipathways WP85 Focal adhesion lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP307 Translation factors RO:HOM0000017 wikipathways WP32 Translation factors lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP307 Translation factors RO:HOM0000017 wikipathways WP537 Translation factors lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP307 Translation factors RO:HOM0000017 wikipathways WP965 Translation factors lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP310 mRNA processing RO:HOM0000017 wikipathways WP411 mRNA processing lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP310 mRNA processing RO:HOM0000017 wikipathways WP467 mRNA processing lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP310 mRNA processing RO:HOM0000017 wikipathways WP529 mRNA processing lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP310 mRNA processing RO:HOM0000017 wikipathways WP793 mRNA processing lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP310 mRNA processing RO:HOM0000017 wikipathways WP906 mRNA Processing lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP311 Ketone bodies synthesis and degradation RO:HOM0000017 wikipathways WP427 Ketone bodies synthesis and degradation lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP311 Ketone bodies synthesis and degradation RO:HOM0000017 wikipathways WP784 Ketone bodies synthesis and degradation lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP311 Ketone bodies synthesis and degradation RO:HOM0000017 wikipathways WP898 Ketone bodies synthesis and degradation lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP3115 Serotonin receptor 2 and STAT3 signaling RO:HOM0000017 wikipathways WP733 Serotonin receptor 2 and STAT3 signaling lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP3118 Monoamine transport RO:HOM0000017 wikipathways WP727 Monoamine transport lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP312 Pentose phosphate pathway RO:HOM0000017 wikipathways WP369 Pentose phosphate pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP312 Pentose phosphate pathway RO:HOM0000017 wikipathways WP63 Pentose phosphate pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP313 Hepatocyte growth factor receptor signaling RO:HOM0000017 wikipathways WP927 Hepatocyte growth factor receptor signaling lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP313 Hepatocyte growth factor receptor signaling RO:HOM0000017 wikipathways WP94 Hepatocyte growth factor receptor signaling lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP3134 Mitochondrial gene expression RO:HOM0000017 wikipathways WP391 Mitochondrial gene expression lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP316 Striated muscle contraction RO:HOM0000017 wikipathways WP969 Striated muscle contraction lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP3168 Biogenic amine synthesis RO:HOM0000017 wikipathways WP522 Biogenic amine synthesis lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP3168 Biogenic amine synthesis RO:HOM0000017 wikipathways WP550 Biogenic amine synthesis lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP317 Glycogen metabolism RO:HOM0000017 wikipathways WP436 Glycogen metabolism lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP317 Glycogen metabolism RO:HOM0000017 wikipathways WP835 Glycogen metabolism lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP317 Glycogen metabolism RO:HOM0000017 wikipathways WP955 Glycogen metabolism lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP318 Eicosanoid synthesis RO:HOM0000017 wikipathways WP854 Eicosanoid synthesis lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP318 Eicosanoid synthesis RO:HOM0000017 wikipathways WP972 Eicosanoid synthesis lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP319 IL-3 signaling pathway RO:HOM0000017 wikipathways WP373 IL-3 signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP3197 Focal adhesion RO:HOM0000017 wikipathways WP85 Focal adhesion lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP32 Translation factors RO:HOM0000017 wikipathways WP537 Translation factors lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP32 Translation factors RO:HOM0000017 wikipathways WP965 Translation factors lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP3207 Glutathione metabolism RO:HOM0000017 wikipathways WP469 Glutathione metabolism lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP321 Nucleotide metabolism RO:HOM0000017 wikipathways WP3211 Nucleotide metabolism lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP3210 Glucuronidation RO:HOM0000017 wikipathways WP698 Glucuronidation lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP3213 Interferon type I signaling pathways RO:HOM0000017 wikipathways WP585 Interferon type I signaling pathways lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP322 Osteoblast signaling RO:HOM0000017 wikipathways WP956 Osteoblast signaling lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP3221 ATM signaling pathway RO:HOM0000017 wikipathways WP654 ATM signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP3230 Exercise-induced circadian regulation RO:HOM0000017 wikipathways WP410 Exercise-induced circadian regulation lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP3230 Exercise-induced circadian regulation RO:HOM0000017 wikipathways WP544 Exercise-induced circadian regulation lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP3230 Exercise-induced circadian regulation RO:HOM0000017 wikipathways WP562 Exercise-induced circadian regulation lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP3232 Sphingolipid metabolism RO:HOM0000017 wikipathways WP370 Sphingolipid metabolism lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP3234 Sulfation biotransformation reaction RO:HOM0000017 wikipathways WP692 Sulfation biotransformation reaction lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP324 Cytoplasmic ribosomal proteins RO:HOM0000017 wikipathways WP477 Cytoplasmic ribosomal proteins lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP324 Cytoplasmic ribosomal proteins RO:HOM0000017 wikipathways WP540 Cytoplasmic ribosomal proteins lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP3245 Urea cycle and metabolism of amino groups RO:HOM0000017 wikipathways WP497 Urea cycle and metabolism of amino groups lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP3247 Aflatoxin B1 metabolism RO:HOM0000017 wikipathways WP699 Aflatoxin B1 metabolism lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP3247 Aflatoxin B1 metabolism RO:HOM0000017 wikipathways WP925 Aflatoxin B1 metabolism lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP3248 Tryptophan metabolism RO:HOM0000017 wikipathways WP465 Tryptophan metabolism lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP3248 Tryptophan metabolism RO:HOM0000017 wikipathways WP79 Tryptophan metabolism lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP325 Triacylglyceride synthesis RO:HOM0000017 wikipathways WP386 Triacylglyceride synthesis lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP3251 Blood clotting cascade RO:HOM0000017 wikipathways WP460 Blood clotting cascade lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP3251 Blood clotting cascade RO:HOM0000017 wikipathways WP775 Blood clotting cascade lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP3251 Blood clotting cascade RO:HOM0000017 wikipathways WP887 Blood clotting cascade lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP3263 Benzo(a)pyrene metabolism RO:HOM0000017 wikipathways WP696 Benzo(a)pyrene metabolism lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP3264 Tamoxifen metabolism RO:HOM0000017 wikipathways WP691 Tamoxifen metabolism lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP327 GPCRs, class C metabotropic glutamate, pheromone RO:HOM0000017 wikipathways WP42 GPCRs, class C metabotropic glutamate, pheromone lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP327 GPCRs, class C metabotropic glutamate, pheromone RO:HOM0000017 wikipathways WP501 GPCRs, class C metabotropic glutamate, pheromone lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP3271 IL-1 signaling pathway RO:HOM0000017 wikipathways WP355 IL-1 signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP3271 IL-1 signaling pathway RO:HOM0000017 wikipathways WP37 IL-1 signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP3272 Serotonin receptor 4/6/7 and NR3C signaling RO:HOM0000017 wikipathways WP734 Serotonin receptor 4/6/7 and NR3C signaling lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP3276 Myometrial relaxation and contraction pathways RO:HOM0000017 wikipathways WP385 Myometrial relaxation and contraction pathways lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP3286 Copper homeostasis RO:HOM0000017 wikipathways WP3962 Copper homeostasis lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP33 Fatty acid omega-oxidation RO:HOM0000017 wikipathways WP852 Fatty acid omega-oxidation lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP33 Fatty acid omega-oxidation RO:HOM0000017 wikipathways WP970 Fatty acid omega-oxidation lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP334 GPCRs, class B secretin-like RO:HOM0000017 wikipathways WP378 GPCRs, class B secretin-like lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP334 GPCRs, class B secretin-like RO:HOM0000017 wikipathways WP456 GPCRs, class B secretin-like lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP336 Fatty acid biosynthesis RO:HOM0000017 wikipathways WP357 Fatty acid biosynthesis lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP336 Fatty acid biosynthesis RO:HOM0000017 wikipathways WP38 Fatty acid biosynthesis lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP336 Fatty acid biosynthesis RO:HOM0000017 wikipathways WP504 Fatty acid biosynthesis lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP336 Fatty acid biosynthesis RO:HOM0000017 wikipathways WP568 Fatty acid biosynthesis lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP347 TCA cycle RO:HOM0000017 wikipathways WP434 TCA cycle lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP347 TCA cycle RO:HOM0000017 wikipathways WP490 TCA cycle lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP347 TCA cycle RO:HOM0000017 wikipathways WP999 TCA cycle lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP348 G1 to S cell cycle control RO:HOM0000017 wikipathways WP413 G1 to S cell cycle control lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP348 G1 to S cell cycle control RO:HOM0000017 wikipathways WP445 G1 to S cell cycle control lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP348 G1 to S cell cycle control RO:HOM0000017 wikipathways WP45 G1 to S cell cycle control lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP348 G1 to S cell cycle control RO:HOM0000017 wikipathways WP840 G1 to S cell cycle control lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP348 G1 to S cell cycle control RO:HOM0000017 wikipathways WP959 G1 to S cell cycle control lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP349 Synthesis and degradation of ketone bodies RO:HOM0000017 wikipathways WP543 Synthesis and degradation of ketone bodies lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP35 G protein signaling pathways RO:HOM0000017 wikipathways WP73 G protein signaling pathways lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP35 G protein signaling pathways RO:HOM0000017 wikipathways WP813 G protein signaling pathways lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP35 G protein signaling pathways RO:HOM0000017 wikipathways WP931 G protein signaling pathways lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP350 p38 Mapk signaling pathway RO:HOM0000017 wikipathways WP400 p38 MAPK signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP350 p38 Mapk signaling pathway RO:HOM0000017 wikipathways WP803 p38 MAPK signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP350 p38 Mapk signaling pathway RO:HOM0000017 wikipathways WP918 p38 MAPK signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP351 Regulation of actin cytoskeleton RO:HOM0000017 wikipathways WP51 Regulation of actin cytoskeleton lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP351 Regulation of actin cytoskeleton RO:HOM0000017 wikipathways WP523 Regulation of actin cytoskeleton lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP351 Regulation of actin cytoskeleton RO:HOM0000017 wikipathways WP824 Regulation of actin cytoskeleton lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP355 IL-1 signaling pathway RO:HOM0000017 wikipathways WP37 IL-1 signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP357 Fatty acid biosynthesis RO:HOM0000017 wikipathways WP38 Fatty acid biosynthesis lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP357 Fatty acid biosynthesis RO:HOM0000017 wikipathways WP504 Fatty acid biosynthesis lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP357 Fatty acid biosynthesis RO:HOM0000017 wikipathways WP568 Fatty acid biosynthesis lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP358 MAPK signaling pathway RO:HOM0000017 wikipathways WP382 MAPK signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP358 MAPK signaling pathway RO:HOM0000017 wikipathways WP493 Mapk signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP358 MAPK signaling pathway RO:HOM0000017 wikipathways WP510 MAPK signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP358 MAPK signaling pathway RO:HOM0000017 wikipathways WP769 MAPK signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP358 MAPK signaling pathway RO:HOM0000017 wikipathways WP880 MAPK signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP358 MAPK signaling pathway RO:HOM0000017 wikipathways WP998 MAPK signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP3592 ApoE and miR-146 in inflammation and atherosclerosis RO:HOM0000017 wikipathways WP3926 ApoE and miR-146 in inflammation and atherosclerosis lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP360 Acetylcholine synthesis RO:HOM0000017 wikipathways WP476 Acetylcholine synthesis lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP360 Acetylcholine synthesis RO:HOM0000017 wikipathways WP528 Acetylcholine synthesis lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP3624 Lung fibrosis RO:HOM0000017 wikipathways WP3632 Lung fibrosis lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP3625 Tyrobp causal network in microglia RO:HOM0000017 wikipathways WP3945 TYROBP causal network in microglia lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP3626 Microglia pathogen phagocytosis pathway RO:HOM0000017 wikipathways WP3937 Microglia pathogen phagocytosis pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP363 Wnt signaling pathway RO:HOM0000017 wikipathways WP375 Wnt signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP363 Wnt signaling pathway RO:HOM0000017 wikipathways WP403 Wnt signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP363 Wnt signaling pathway RO:HOM0000017 wikipathways WP539 Wnt signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP363 Wnt signaling pathway RO:HOM0000017 wikipathways WP785 Wnt signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP363 Wnt signaling pathway RO:HOM0000017 wikipathways WP899 Wnt signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP363 Wnt signaling pathway RO:HOM0000017 wikipathways WP97 Wnt signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP363 Wnt signaling pathway RO:HOM0000017 wikipathways WP980 Wnt signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP364 IL6 signaling pathway RO:HOM0000017 wikipathways WP387 IL-6 signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP364 IL6 signaling pathway RO:HOM0000017 wikipathways WP976 IL-6 signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP3652 EDA signaling in hair follicle development RO:HOM0000017 wikipathways WP3930 EDA signaling in hair follicle development lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP3673 Hfe effect on hepcidin production RO:HOM0000017 wikipathways WP3924 Hfe effect on hepcidin production lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP3675 Factors and pathways affecting insulin-like growth factor (IGF1)-Akt signaling RO:HOM0000017 wikipathways WP3850 Factors and pathways affecting insulin-like growth factor (IGF1)-Akt signaling lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP368 Mitochondrial long chain fatty acid beta-oxidation RO:HOM0000017 wikipathways WP401 Mitochondrial long chain fatty acid beta-oxidation lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP368 Mitochondrial long chain fatty acid beta-oxidation RO:HOM0000017 wikipathways WP406 Mitochondrial long chain fatty acid beta-oxidation lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP368 Mitochondrial long chain fatty acid beta-oxidation RO:HOM0000017 wikipathways WP448 Mitochondrial long chain fatty acid beta-oxidation lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP368 Mitochondrial long chain fatty acid beta-oxidation RO:HOM0000017 wikipathways WP498 Mitochondrial long chain fatty acid beta-oxidation lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP368 Mitochondrial long chain fatty acid beta-oxidation RO:HOM0000017 wikipathways WP763 Mitochondrial long chain fatty acid beta-oxidation lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP368 Mitochondrial long chain fatty acid beta-oxidation RO:HOM0000017 wikipathways WP989 Mitochondrial long chain fatty acid beta-oxidation lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP369 Pentose phosphate pathway RO:HOM0000017 wikipathways WP63 Pentose phosphate pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP374 Prostaglandin synthesis and regulation RO:HOM0000017 wikipathways WP98 Prostaglandin synthesis and regulation lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP374 Prostaglandin synthesis and regulation RO:HOM0000017 wikipathways WP995 Prostaglandin synthesis and regulation lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP375 Wnt signaling pathway RO:HOM0000017 wikipathways WP403 Wnt signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP375 Wnt signaling pathway RO:HOM0000017 wikipathways WP539 Wnt signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP375 Wnt signaling pathway RO:HOM0000017 wikipathways WP785 Wnt signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP375 Wnt signaling pathway RO:HOM0000017 wikipathways WP899 Wnt signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP375 Wnt signaling pathway RO:HOM0000017 wikipathways WP97 Wnt signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP375 Wnt signaling pathway RO:HOM0000017 wikipathways WP980 Wnt signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP378 GPCRs, class B secretin-like RO:HOM0000017 wikipathways WP456 GPCRs, class B secretin-like lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP38 Fatty acid biosynthesis RO:HOM0000017 wikipathways WP504 Fatty acid biosynthesis lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP38 Fatty acid biosynthesis RO:HOM0000017 wikipathways WP568 Fatty acid biosynthesis lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP382 MAPK signaling pathway RO:HOM0000017 wikipathways WP493 Mapk signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP382 MAPK signaling pathway RO:HOM0000017 wikipathways WP510 MAPK signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP382 MAPK signaling pathway RO:HOM0000017 wikipathways WP769 MAPK signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP382 MAPK signaling pathway RO:HOM0000017 wikipathways WP880 MAPK signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP382 MAPK signaling pathway RO:HOM0000017 wikipathways WP998 MAPK signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP3830 Toll, IMD, JAK/STAT pathways for immune response to pathogens RO:HOM0000017 wikipathways WP3856 Toll, IMD, JAK/STAT pathways for immune response to pathogens lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP384 Apoptosis modulation by HSP70 RO:HOM0000017 wikipathways WP487 Apoptosis modulation by HSP70 lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP384 Apoptosis modulation by HSP70 RO:HOM0000017 wikipathways WP963 Apoptosis modulation by HSP70 lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP3857 Wnt signaling in kidney disease RO:HOM0000017 wikipathways WP4150 Wnt signaling in kidney disease lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP3864 Robo4 and VEGF signaling pathways crosstalk RO:HOM0000017 wikipathways WP3943 Robo4 and VEGF signaling pathways crosstalk lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP387 IL-6 signaling pathway RO:HOM0000017 wikipathways WP976 IL-6 signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP3925 Amino acid metabolism RO:HOM0000017 wikipathways WP662 Amino acid metabolism lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP3934 Leptin and adiponectin RO:HOM0000017 wikipathways WP683 Leptin and adiponectin lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP3935 Leptin-insulin signaling overlap RO:HOM0000017 wikipathways WP578 Leptin-insulin signaling overlap lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP3942 PPAR signaling pathway RO:HOM0000017 wikipathways WP4020 PPAR signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP396 ACE inhibitor pathway RO:HOM0000017 wikipathways WP468 ACE inhibitor pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP396 ACE inhibitor pathway RO:HOM0000017 wikipathways WP554 ACE inhibitor pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP396 ACE inhibitor pathway RO:HOM0000017 wikipathways WP557 ACE inhibitor pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP396 ACE inhibitor pathway RO:HOM0000017 wikipathways WP801 ACE inhibitor pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP396 ACE inhibitor pathway RO:HOM0000017 wikipathways WP915 ACE inhibitor pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP397 ID signaling pathway RO:HOM0000017 wikipathways WP512 ID signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP397 ID signaling pathway RO:HOM0000017 wikipathways WP53 ID signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP397 ID signaling pathway RO:HOM0000017 wikipathways WP934 ID signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP399 Wnt signaling pathway and pluripotency RO:HOM0000017 wikipathways WP723 Wnt signaling pathway and pluripotency lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP399 Wnt signaling pathway and pluripotency RO:HOM0000017 wikipathways WP779 Wnt signaling pathway and pluripotency lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP40 Inflammatory response pathway RO:HOM0000017 wikipathways WP453 Inflammatory response pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP40 Inflammatory response pathway RO:HOM0000017 wikipathways WP458 Inflammatory response pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP400 p38 MAPK signaling pathway RO:HOM0000017 wikipathways WP803 p38 MAPK signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP400 p38 MAPK signaling pathway RO:HOM0000017 wikipathways WP918 p38 MAPK signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP401 Mitochondrial long chain fatty acid beta-oxidation RO:HOM0000017 wikipathways WP406 Mitochondrial long chain fatty acid beta-oxidation lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP401 Mitochondrial long chain fatty acid beta-oxidation RO:HOM0000017 wikipathways WP448 Mitochondrial long chain fatty acid beta-oxidation lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP401 Mitochondrial long chain fatty acid beta-oxidation RO:HOM0000017 wikipathways WP498 Mitochondrial long chain fatty acid beta-oxidation lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP401 Mitochondrial long chain fatty acid beta-oxidation RO:HOM0000017 wikipathways WP763 Mitochondrial long chain fatty acid beta-oxidation lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP401 Mitochondrial long chain fatty acid beta-oxidation RO:HOM0000017 wikipathways WP989 Mitochondrial long chain fatty acid beta-oxidation lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP403 Wnt signaling pathway RO:HOM0000017 wikipathways WP785 Wnt signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP403 Wnt signaling pathway RO:HOM0000017 wikipathways WP899 Wnt signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP403 Wnt signaling pathway RO:HOM0000017 wikipathways WP97 Wnt signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP403 Wnt signaling pathway RO:HOM0000017 wikipathways WP980 Wnt signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP405 Eukaryotic transcription initiation RO:HOM0000017 wikipathways WP425 Eukaryotic transcription initiation lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP405 Eukaryotic transcription initiation RO:HOM0000017 wikipathways WP518 Eukaryotic transcription initiation lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP405 Eukaryotic transcription initiation RO:HOM0000017 wikipathways WP567 Eukaryotic transcription initiation lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP405 Eukaryotic transcription initiation RO:HOM0000017 wikipathways WP830 Eukaryotic transcription initiation lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP405 Eukaryotic transcription initiation RO:HOM0000017 wikipathways WP948 Eukaryotic transcription initiation lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP406 Mitochondrial long chain fatty acid beta-oxidation RO:HOM0000017 wikipathways WP448 Mitochondrial long chain fatty acid beta-oxidation lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP406 Mitochondrial long chain fatty acid beta-oxidation RO:HOM0000017 wikipathways WP498 Mitochondrial long chain fatty acid beta-oxidation lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP406 Mitochondrial long chain fatty acid beta-oxidation RO:HOM0000017 wikipathways WP763 Mitochondrial long chain fatty acid beta-oxidation lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP406 Mitochondrial long chain fatty acid beta-oxidation RO:HOM0000017 wikipathways WP989 Mitochondrial long chain fatty acid beta-oxidation lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP407 Kit receptor signaling pathway RO:HOM0000017 wikipathways WP774 Kit receptor signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP407 Kit receptor signaling pathway RO:HOM0000017 wikipathways WP886 Kit receptor signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP408 Oxidative stress response RO:HOM0000017 wikipathways WP412 Oxidative stress response lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP409 GPCRs, other RO:HOM0000017 wikipathways WP41 GPCRs, other lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP409 GPCRs, other RO:HOM0000017 wikipathways WP990 GPCRs, other lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP41 GPCRs, other RO:HOM0000017 wikipathways WP990 GPCRs, other lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP410 Exercise-induced circadian regulation RO:HOM0000017 wikipathways WP544 Exercise-induced circadian regulation lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP410 Exercise-induced circadian regulation RO:HOM0000017 wikipathways WP562 Exercise-induced circadian regulation lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP411 mRNA processing RO:HOM0000017 wikipathways WP467 mRNA processing lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP411 mRNA processing RO:HOM0000017 wikipathways WP529 mRNA processing lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP411 mRNA processing RO:HOM0000017 wikipathways WP793 mRNA processing lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP411 mRNA processing RO:HOM0000017 wikipathways WP906 mRNA Processing lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP413 G1 to S cell cycle control RO:HOM0000017 wikipathways WP445 G1 to S cell cycle control lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP413 G1 to S cell cycle control RO:HOM0000017 wikipathways WP45 G1 to S cell cycle control lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP413 G1 to S cell cycle control RO:HOM0000017 wikipathways WP840 G1 to S cell cycle control lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP413 G1 to S cell cycle control RO:HOM0000017 wikipathways WP959 G1 to S cell cycle control lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP4136 Fibrin complement receptor 3 signaling pathway RO:HOM0000017 wikipathways WP5128 Fibrin complement receptor 3 signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP418 Beta-oxidation of unsaturated fatty acids RO:HOM0000017 wikipathways WP471 Beta-oxidation of unsaturated fatty acids lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP42 GPCRs, class C metabotropic glutamate, pheromone RO:HOM0000017 wikipathways WP501 GPCRs, class C metabotropic glutamate, pheromone lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP4249 Hedgehog signaling pathway RO:HOM0000017 wikipathways WP492 Hedgehog signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP4249 Hedgehog signaling pathway RO:HOM0000017 wikipathways WP574 Hedgehog signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP4249 Hedgehog signaling pathway RO:HOM0000017 wikipathways WP790 Hedgehog signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP4249 Hedgehog signaling pathway RO:HOM0000017 wikipathways WP905 Hedgehog signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP425 Eukaryotic transcription initiation RO:HOM0000017 wikipathways WP518 Eukaryotic transcription initiation lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP425 Eukaryotic transcription initiation RO:HOM0000017 wikipathways WP567 Eukaryotic transcription initiation lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP425 Eukaryotic transcription initiation RO:HOM0000017 wikipathways WP830 Eukaryotic transcription initiation lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP425 Eukaryotic transcription initiation RO:HOM0000017 wikipathways WP948 Eukaryotic transcription initiation lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP4265 Ethanol metabolism resulting in production of ROS by CYP2E1 RO:HOM0000017 wikipathways WP4268 Ethanol metabolism resulting in production of ROS by CYP2E1 lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP427 Ketone bodies synthesis and degradation RO:HOM0000017 wikipathways WP784 Ketone bodies synthesis and degradation lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP427 Ketone bodies synthesis and degradation RO:HOM0000017 wikipathways WP898 Ketone bodies synthesis and degradation lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP431 Nuclear receptors in lipid metabolism and toxicity RO:HOM0000017 wikipathways WP755 Nuclear receptors in lipid metabolism and toxicity lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP431 Nuclear receptors in lipid metabolism and toxicity RO:HOM0000017 wikipathways WP863 Nuclear receptors in lipid metabolism and toxicity lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP431 Nuclear receptors in lipid metabolism and toxicity RO:HOM0000017 wikipathways WP981 Nuclear receptors in lipid metabolism and toxicity lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP434 TCA cycle RO:HOM0000017 wikipathways WP490 TCA cycle lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP434 TCA cycle RO:HOM0000017 wikipathways WP999 TCA cycle lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP4344 Sphingolipid metabolism overview RO:HOM0000017 wikipathways WP4725 Sphingolipid metabolism overview lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP4345 Glycerolipids and glycerophospholipids RO:HOM0000017 wikipathways WP4722 Glycerolipids and glycerophospholipids lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP4346 Cholesterol metabolism with Bloch and Kandutsch-Russell pathways RO:HOM0000017 wikipathways WP4718 Cholesterol metabolism with Bloch and Kandutsch-Russell pathways lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP4347 Eicosanoid metabolism via cyclooxygenases (COX) RO:HOM0000017 wikipathways WP4719 Eicosanoid metabolism via cyclooxygenases (COX) lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP4350 Omega-3 / omega-6 fatty acid synthesis RO:HOM0000017 wikipathways WP4723 Omega-3 / omega-6 fatty acid synthesis lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP4351 Omega-9 fatty acid synthesis RO:HOM0000017 wikipathways WP4724 Omega-9 fatty acid synthesis lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP436 Glycogen metabolism RO:HOM0000017 wikipathways WP835 Glycogen metabolism lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP436 Glycogen metabolism RO:HOM0000017 wikipathways WP955 Glycogen metabolism lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP437 EGF/EGFR signaling pathway RO:HOM0000017 wikipathways WP978 EGF/EGFR signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP438 Non-homologous end joining RO:HOM0000017 wikipathways WP979 Non-homologous end joining lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP439 Insulin signaling RO:HOM0000017 wikipathways WP481 Insulin signaling lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP439 Insulin signaling RO:HOM0000017 wikipathways WP65 Insulin signaling lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP439 Insulin signaling RO:HOM0000017 wikipathways WP966 Insulin signaling lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP44 IL-5 signaling pathway RO:HOM0000017 wikipathways WP968 IL-5 signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP441 Matrix metalloproteinases RO:HOM0000017 wikipathways WP823 Matrix metalloproteinases lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP441 Matrix metalloproteinases RO:HOM0000017 wikipathways WP942 Matrix metalloproteinases lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP442 Hypertrophy model RO:HOM0000017 wikipathways WP516 Hypertrophy model lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP442 Hypertrophy model RO:HOM0000017 wikipathways WP982 Hypertrophy model lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP445 G1 to S cell cycle control RO:HOM0000017 wikipathways WP45 G1 to S cell cycle control lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP445 G1 to S cell cycle control RO:HOM0000017 wikipathways WP840 G1 to S cell cycle control lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP445 G1 to S cell cycle control RO:HOM0000017 wikipathways WP959 G1 to S cell cycle control lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP448 Mitochondrial long chain fatty acid beta-oxidation RO:HOM0000017 wikipathways WP498 Mitochondrial long chain fatty acid beta-oxidation lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP448 Mitochondrial long chain fatty acid beta-oxidation RO:HOM0000017 wikipathways WP763 Mitochondrial long chain fatty acid beta-oxidation lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP448 Mitochondrial long chain fatty acid beta-oxidation RO:HOM0000017 wikipathways WP989 Mitochondrial long chain fatty acid beta-oxidation lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP45 G1 to S cell cycle control RO:HOM0000017 wikipathways WP840 G1 to S cell cycle control lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP45 G1 to S cell cycle control RO:HOM0000017 wikipathways WP959 G1 to S cell cycle control lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP450 IL-2 signaling pathway RO:HOM0000017 wikipathways WP49 IL-2 signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP450 IL-2 signaling pathway RO:HOM0000017 wikipathways WP569 IL-2 signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP450 IL-2 signaling pathway RO:HOM0000017 wikipathways WP973 IL-2 signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP451 DNA replication RO:HOM0000017 wikipathways WP466 DNA replication lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP451 DNA replication RO:HOM0000017 wikipathways WP565 DNA replication lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP451 DNA replication RO:HOM0000017 wikipathways WP757 DNA replication lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP451 DNA replication RO:HOM0000017 wikipathways WP865 DNA replication lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP451 DNA replication RO:HOM0000017 wikipathways WP983 DNA replication lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP453 Inflammatory response pathway RO:HOM0000017 wikipathways WP458 Inflammatory response pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP454 Osteoclast signaling RO:HOM0000017 wikipathways WP890 Osteoclast signaling lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP455 GPCRs, class A rhodopsin-like RO:HOM0000017 wikipathways WP473 GPCRs, class A rhodopsin-like lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP460 Blood clotting cascade RO:HOM0000017 wikipathways WP775 Blood clotting cascade lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP460 Blood clotting cascade RO:HOM0000017 wikipathways WP887 Blood clotting cascade lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP465 Tryptophan metabolism RO:HOM0000017 wikipathways WP79 Tryptophan metabolism lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP466 DNA replication RO:HOM0000017 wikipathways WP565 DNA replication lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP466 DNA replication RO:HOM0000017 wikipathways WP757 DNA replication lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP466 DNA replication RO:HOM0000017 wikipathways WP865 DNA replication lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP466 DNA replication RO:HOM0000017 wikipathways WP983 DNA replication lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP467 mRNA processing RO:HOM0000017 wikipathways WP529 mRNA processing lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP467 mRNA processing RO:HOM0000017 wikipathways WP793 mRNA processing lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP467 mRNA processing RO:HOM0000017 wikipathways WP906 mRNA Processing lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP468 ACE inhibitor pathway RO:HOM0000017 wikipathways WP554 ACE inhibitor pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP468 ACE inhibitor pathway RO:HOM0000017 wikipathways WP557 ACE inhibitor pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP468 ACE inhibitor pathway RO:HOM0000017 wikipathways WP801 ACE inhibitor pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP468 ACE inhibitor pathway RO:HOM0000017 wikipathways WP915 ACE inhibitor pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP47 Hedgehog signaling pathway RO:HOM0000017 wikipathways WP492 Hedgehog signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP47 Hedgehog signaling pathway RO:HOM0000017 wikipathways WP574 Hedgehog signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP47 Hedgehog signaling pathway RO:HOM0000017 wikipathways WP790 Hedgehog signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP47 Hedgehog signaling pathway RO:HOM0000017 wikipathways WP905 Hedgehog signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP470 Proteasome degradation RO:HOM0000017 wikipathways WP519 Proteasome degradation lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP476 Acetylcholine synthesis RO:HOM0000017 wikipathways WP528 Acetylcholine synthesis lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP477 Cytoplasmic ribosomal proteins RO:HOM0000017 wikipathways WP540 Cytoplasmic ribosomal proteins lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP481 Insulin signaling RO:HOM0000017 wikipathways WP65 Insulin signaling lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP481 Insulin signaling RO:HOM0000017 wikipathways WP966 Insulin signaling lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP4820 GDNF/RET signaling axis RO:HOM0000017 wikipathways WP4830 GDNF/RET signaling axis lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP4835 Peroxiredoxin 2 induced ovarian failure RO:HOM0000017 wikipathways WP4873 Peroxiredoxin 2 induced ovarian failure lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP487 Apoptosis modulation by HSP70 RO:HOM0000017 wikipathways WP963 Apoptosis modulation by HSP70 lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP49 IL-2 signaling pathway RO:HOM0000017 wikipathways WP569 IL-2 signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP49 IL-2 signaling pathway RO:HOM0000017 wikipathways WP973 IL-2 signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP490 TCA cycle RO:HOM0000017 wikipathways WP999 TCA cycle lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP492 Hedgehog signaling pathway RO:HOM0000017 wikipathways WP574 Hedgehog signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP492 Hedgehog signaling pathway RO:HOM0000017 wikipathways WP790 Hedgehog signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP492 Hedgehog signaling pathway RO:HOM0000017 wikipathways WP905 Hedgehog signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP493 Mapk signaling pathway RO:HOM0000017 wikipathways WP510 MAPK signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP493 Mapk signaling pathway RO:HOM0000017 wikipathways WP769 MAPK signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP493 Mapk signaling pathway RO:HOM0000017 wikipathways WP880 MAPK signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP493 Mapk signaling pathway RO:HOM0000017 wikipathways WP998 MAPK signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP496 Steroid biosynthesis RO:HOM0000017 wikipathways WP55 Steroid biosynthesis lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP496 Steroid biosynthesis RO:HOM0000017 wikipathways WP66 Steroid biosynthesis lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP498 Mitochondrial long chain fatty acid beta-oxidation RO:HOM0000017 wikipathways WP763 Mitochondrial long chain fatty acid beta-oxidation lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP498 Mitochondrial long chain fatty acid beta-oxidation RO:HOM0000017 wikipathways WP989 Mitochondrial long chain fatty acid beta-oxidation lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP502 Nucleotide GPCRs RO:HOM0000017 wikipathways WP80 Nucleotide GPCRs lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP504 Fatty acid biosynthesis RO:HOM0000017 wikipathways WP568 Fatty acid biosynthesis lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP5055 Burn wound healing RO:HOM0000017 wikipathways WP5056 Burn wound healing lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP5055 Burn wound healing RO:HOM0000017 wikipathways WP5057 Burn wound healing lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP5055 Burn wound healing RO:HOM0000017 wikipathways WP5058 Burn Wound Healing lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP5056 Burn wound healing RO:HOM0000017 wikipathways WP5057 Burn wound healing lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP5056 Burn wound healing RO:HOM0000017 wikipathways WP5058 Burn Wound Healing lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP5057 Burn wound healing RO:HOM0000017 wikipathways WP5058 Burn Wound Healing lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP509 Nuclear Receptors RO:HOM0000017 wikipathways WP831 Nuclear receptors lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP509 Nuclear Receptors RO:HOM0000017 wikipathways WP950 Nuclear receptors lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP51 Regulation of actin cytoskeleton RO:HOM0000017 wikipathways WP523 Regulation of actin cytoskeleton lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP51 Regulation of actin cytoskeleton RO:HOM0000017 wikipathways WP824 Regulation of actin cytoskeleton lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP510 MAPK signaling pathway RO:HOM0000017 wikipathways WP769 MAPK signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP510 MAPK signaling pathway RO:HOM0000017 wikipathways WP880 MAPK signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP510 MAPK signaling pathway RO:HOM0000017 wikipathways WP998 MAPK signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP512 ID signaling pathway RO:HOM0000017 wikipathways WP53 ID signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP512 ID signaling pathway RO:HOM0000017 wikipathways WP934 ID signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP515 Glycolysis and gluconeogenesis RO:HOM0000017 wikipathways WP534 Glycolysis and gluconeogenesis lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP515 Glycolysis and gluconeogenesis RO:HOM0000017 wikipathways WP96 Glycolysis and Gluconeogenesis lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP516 Hypertrophy model RO:HOM0000017 wikipathways WP982 Hypertrophy model lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP517 Notch signaling pathway RO:HOM0000017 wikipathways WP61 Notch signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP517 Notch signaling pathway RO:HOM0000017 wikipathways WP798 Notch signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP517 Notch signaling pathway RO:HOM0000017 wikipathways WP912 Notch signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP518 Eukaryotic transcription initiation RO:HOM0000017 wikipathways WP567 Eukaryotic transcription initiation lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP518 Eukaryotic transcription initiation RO:HOM0000017 wikipathways WP830 Eukaryotic transcription initiation lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP518 Eukaryotic transcription initiation RO:HOM0000017 wikipathways WP948 Eukaryotic transcription initiation lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP5188 Retinol metabolism RO:HOM0000017 wikipathways WP805 Retinol metabolism lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP520 G13 signaling pathway RO:HOM0000017 wikipathways WP524 G13 signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP520 G13 signaling pathway RO:HOM0000017 wikipathways WP826 G13 signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP520 G13 signaling pathway RO:HOM0000017 wikipathways WP945 G13 signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP522 Biogenic amine synthesis RO:HOM0000017 wikipathways WP550 Biogenic amine synthesis lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP523 Regulation of actin cytoskeleton RO:HOM0000017 wikipathways WP824 Regulation of actin cytoskeleton lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP524 G13 signaling pathway RO:HOM0000017 wikipathways WP826 G13 signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP524 G13 signaling pathway RO:HOM0000017 wikipathways WP945 G13 signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP529 mRNA processing RO:HOM0000017 wikipathways WP793 mRNA processing lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP529 mRNA processing RO:HOM0000017 wikipathways WP906 mRNA Processing lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP53 ID signaling pathway RO:HOM0000017 wikipathways WP934 ID signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP530 Cytokines and inflammatory response RO:HOM0000017 wikipathways WP879 Cytokines and inflammatory response lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP530 Cytokines and inflammatory response RO:HOM0000017 wikipathways WP997 Cytokines and inflammatory response lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP534 Glycolysis and gluconeogenesis RO:HOM0000017 wikipathways WP96 Glycolysis and Gluconeogenesis lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP536 Calcium regulation in cardiac cells RO:HOM0000017 wikipathways WP553 Calcium regulation in cardiac cells lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP536 Calcium regulation in cardiac cells RO:HOM0000017 wikipathways WP808 Calcium regulation in cardiac cells lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP536 Calcium regulation in cardiac cells RO:HOM0000017 wikipathways WP923 Calcium regulation in cardiac cells lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP537 Translation factors RO:HOM0000017 wikipathways WP965 Translation factors lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP539 Wnt signaling pathway RO:HOM0000017 wikipathways WP785 Wnt signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP539 Wnt signaling pathway RO:HOM0000017 wikipathways WP899 Wnt signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP539 Wnt signaling pathway RO:HOM0000017 wikipathways WP97 Wnt signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP539 Wnt signaling pathway RO:HOM0000017 wikipathways WP980 Wnt signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP544 Exercise-induced circadian regulation RO:HOM0000017 wikipathways WP562 Exercise-induced circadian regulation lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP547 Complement and coagulation cascades RO:HOM0000017 wikipathways WP558 Complement and coagulation cascades lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP55 Steroid biosynthesis RO:HOM0000017 wikipathways WP66 Steroid biosynthesis lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP553 Calcium regulation in cardiac cells RO:HOM0000017 wikipathways WP808 Calcium regulation in cardiac cells lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP553 Calcium regulation in cardiac cells RO:HOM0000017 wikipathways WP923 Calcium regulation in cardiac cells lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP554 ACE inhibitor pathway RO:HOM0000017 wikipathways WP557 ACE inhibitor pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP554 ACE inhibitor pathway RO:HOM0000017 wikipathways WP801 ACE inhibitor pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP554 ACE inhibitor pathway RO:HOM0000017 wikipathways WP915 ACE inhibitor pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP557 ACE inhibitor pathway RO:HOM0000017 wikipathways WP801 ACE inhibitor pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP557 ACE inhibitor pathway RO:HOM0000017 wikipathways WP915 ACE inhibitor pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP561 Heme biosynthesis RO:HOM0000017 wikipathways WP848 Heme biosynthesis lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP561 Heme biosynthesis RO:HOM0000017 wikipathways WP86 Heme biosynthesis lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP561 Heme biosynthesis RO:HOM0000017 wikipathways WP967 Heme biosynthesis lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP565 DNA replication RO:HOM0000017 wikipathways WP757 DNA replication lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP565 DNA replication RO:HOM0000017 wikipathways WP865 DNA replication lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP565 DNA replication RO:HOM0000017 wikipathways WP983 DNA replication lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP567 Eukaryotic transcription initiation RO:HOM0000017 wikipathways WP830 Eukaryotic transcription initiation lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP567 Eukaryotic transcription initiation RO:HOM0000017 wikipathways WP948 Eukaryotic transcription initiation lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP569 IL-2 signaling pathway RO:HOM0000017 wikipathways WP973 IL-2 signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP570 Monoamine GPCRs RO:HOM0000017 wikipathways WP58 Monoamine GPCRs lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP570 Monoamine GPCRs RO:HOM0000017 wikipathways WP839 Monoamine GPCRs lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP570 Monoamine GPCRs RO:HOM0000017 wikipathways WP957 Monoamine GPCRs lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP571 FAS pathway and stress induction of HSP regulation RO:HOM0000017 wikipathways WP788 FAS pathway and stress induction of HSP regulation lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP571 FAS pathway and stress induction of HSP regulation RO:HOM0000017 wikipathways WP902 FAS pathway and stress induction of HSP regulation lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP572 EGFR1 signaling pathway RO:HOM0000017 wikipathways WP752 EGFR1 signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP572 EGFR1 signaling pathway RO:HOM0000017 wikipathways WP860 EGFR1 signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP574 Hedgehog signaling pathway RO:HOM0000017 wikipathways WP790 Hedgehog signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP574 Hedgehog signaling pathway RO:HOM0000017 wikipathways WP905 Hedgehog signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP58 Monoamine GPCRs RO:HOM0000017 wikipathways WP839 Monoamine GPCRs lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP58 Monoamine GPCRs RO:HOM0000017 wikipathways WP957 Monoamine GPCRs lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP581 EPO receptor signaling RO:HOM0000017 wikipathways WP768 EPO receptor signaling lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP581 EPO receptor signaling RO:HOM0000017 wikipathways WP878 EPO receptor signaling lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP581 EPO receptor signaling RO:HOM0000017 wikipathways WP996 EPO receptor signaling lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP6 Integrin-mediated cell adhesion RO:HOM0000017 wikipathways WP74 Integrin-mediated cell adhesion lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP6 Integrin-mediated cell adhesion RO:HOM0000017 wikipathways WP832 Integrin-mediated cell adhesion lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP6 Integrin-mediated cell adhesion RO:HOM0000017 wikipathways WP951 Integrin-mediated cell adhesion lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP61 Notch signaling pathway RO:HOM0000017 wikipathways WP798 Notch signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP61 Notch signaling pathway RO:HOM0000017 wikipathways WP912 Notch signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP623 Oxidative phosphorylation RO:HOM0000017 wikipathways WP994 Oxidative phosphorylation lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP65 Insulin signaling RO:HOM0000017 wikipathways WP966 Insulin signaling lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP690 Polyol pathway RO:HOM0000017 wikipathways WP936 Polyol pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP694 Arylamine metabolism RO:HOM0000017 wikipathways WP993 Arylamine metabolism lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP699 Aflatoxin B1 metabolism RO:HOM0000017 wikipathways WP925 Aflatoxin B1 metabolism lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP704 Methylation pathways RO:HOM0000017 wikipathways WP992 Methylation pathways lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP712 Estrogen signaling pathway RO:HOM0000017 wikipathways WP986 Estrogen signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP723 Wnt signaling pathway and pluripotency RO:HOM0000017 wikipathways WP779 Wnt signaling pathway and pluripotency lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP73 G protein signaling pathways RO:HOM0000017 wikipathways WP813 G protein signaling pathways lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP73 G protein signaling pathways RO:HOM0000017 wikipathways WP931 G protein signaling pathways lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP74 Integrin-mediated cell adhesion RO:HOM0000017 wikipathways WP832 Integrin-mediated cell adhesion lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP74 Integrin-mediated cell adhesion RO:HOM0000017 wikipathways WP951 Integrin-mediated cell adhesion lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP752 EGFR1 signaling pathway RO:HOM0000017 wikipathways WP860 EGFR1 signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP755 Nuclear receptors in lipid metabolism and toxicity RO:HOM0000017 wikipathways WP863 Nuclear receptors in lipid metabolism and toxicity lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP755 Nuclear receptors in lipid metabolism and toxicity RO:HOM0000017 wikipathways WP981 Nuclear receptors in lipid metabolism and toxicity lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP757 DNA replication RO:HOM0000017 wikipathways WP865 DNA replication lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP757 DNA replication RO:HOM0000017 wikipathways WP983 DNA replication lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP763 Mitochondrial long chain fatty acid beta-oxidation RO:HOM0000017 wikipathways WP989 Mitochondrial long chain fatty acid beta-oxidation lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP768 EPO receptor signaling RO:HOM0000017 wikipathways WP878 EPO receptor signaling lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP768 EPO receptor signaling RO:HOM0000017 wikipathways WP996 EPO receptor signaling lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP769 MAPK signaling pathway RO:HOM0000017 wikipathways WP880 MAPK signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP769 MAPK signaling pathway RO:HOM0000017 wikipathways WP998 MAPK signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP774 Kit receptor signaling pathway RO:HOM0000017 wikipathways WP886 Kit receptor signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP775 Blood clotting cascade RO:HOM0000017 wikipathways WP887 Blood clotting cascade lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP784 Ketone bodies synthesis and degradation RO:HOM0000017 wikipathways WP898 Ketone bodies synthesis and degradation lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP785 Wnt signaling pathway RO:HOM0000017 wikipathways WP899 Wnt signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP785 Wnt signaling pathway RO:HOM0000017 wikipathways WP97 Wnt signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP785 Wnt signaling pathway RO:HOM0000017 wikipathways WP980 Wnt signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP788 FAS pathway and stress induction of HSP regulation RO:HOM0000017 wikipathways WP902 FAS pathway and stress induction of HSP regulation lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP790 Hedgehog signaling pathway RO:HOM0000017 wikipathways WP905 Hedgehog signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP793 mRNA processing RO:HOM0000017 wikipathways WP906 mRNA Processing lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP798 Notch signaling pathway RO:HOM0000017 wikipathways WP912 Notch signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP799 Nod-like receptor (NLR) signaling pathway RO:HOM0000017 wikipathways WP914 Nod-like receptor (NLR) signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP8 IL-9 signaling pathway RO:HOM0000017 wikipathways WP974 IL-9 signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP801 ACE inhibitor pathway RO:HOM0000017 wikipathways WP915 ACE inhibitor pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP803 p38 MAPK signaling pathway RO:HOM0000017 wikipathways WP918 p38 MAPK signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP804 Homologous recombination RO:HOM0000017 wikipathways WP917 Homologous recombination lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP808 Calcium regulation in cardiac cells RO:HOM0000017 wikipathways WP923 Calcium regulation in cardiac cells lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP813 G protein signaling pathways RO:HOM0000017 wikipathways WP931 G protein signaling pathways lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP823 Matrix metalloproteinases RO:HOM0000017 wikipathways WP942 Matrix metalloproteinases lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP826 G13 signaling pathway RO:HOM0000017 wikipathways WP945 G13 signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP827 Delta-Notch signaling pathway RO:HOM0000017 wikipathways WP946 Delta-Notch signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP830 Eukaryotic transcription initiation RO:HOM0000017 wikipathways WP948 Eukaryotic transcription initiation lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP831 Nuclear receptors RO:HOM0000017 wikipathways WP950 Nuclear receptors lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP832 Integrin-mediated cell adhesion RO:HOM0000017 wikipathways WP951 Integrin-mediated cell adhesion lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP833 Cholesterol biosynthesis RO:HOM0000017 wikipathways WP952 Cholesterol biosynthesis lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP835 Glycogen metabolism RO:HOM0000017 wikipathways WP955 Glycogen metabolism lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP839 Monoamine GPCRs RO:HOM0000017 wikipathways WP957 Monoamine GPCRs lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP840 G1 to S cell cycle control RO:HOM0000017 wikipathways WP959 G1 to S cell cycle control lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP844 Cell cycle RO:HOM0000017 wikipathways WP964 Cell cycle lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP848 Heme biosynthesis RO:HOM0000017 wikipathways WP86 Heme biosynthesis lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP848 Heme biosynthesis RO:HOM0000017 wikipathways WP967 Heme biosynthesis lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP852 Fatty acid omega-oxidation RO:HOM0000017 wikipathways WP970 Fatty acid omega-oxidation lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP854 Eicosanoid synthesis RO:HOM0000017 wikipathways WP972 Eicosanoid synthesis lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP86 Heme biosynthesis RO:HOM0000017 wikipathways WP967 Heme biosynthesis lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP863 Nuclear receptors in lipid metabolism and toxicity RO:HOM0000017 wikipathways WP981 Nuclear receptors in lipid metabolism and toxicity lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP865 DNA replication RO:HOM0000017 wikipathways WP983 DNA replication lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP869 Adipogenesis RO:HOM0000017 wikipathways WP987 Adipogenesis lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP878 EPO receptor signaling RO:HOM0000017 wikipathways WP996 EPO receptor signaling lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP879 Cytokines and inflammatory response RO:HOM0000017 wikipathways WP997 Cytokines and inflammatory response lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP880 MAPK signaling pathway RO:HOM0000017 wikipathways WP998 MAPK signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP899 Wnt signaling pathway RO:HOM0000017 wikipathways WP97 Wnt signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP899 Wnt signaling pathway RO:HOM0000017 wikipathways WP980 Wnt signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP927 Hepatocyte growth factor receptor signaling RO:HOM0000017 wikipathways WP94 Hepatocyte growth factor receptor signaling lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP97 Wnt signaling pathway RO:HOM0000017 wikipathways WP980 Wnt signaling pathway lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py +wikipathways WP98 Prostaglandin synthesis and regulation RO:HOM0000017 wikipathways WP995 Prostaglandin synthesis and regulation lexical 0.95 https://github.com/biomappings/biomappings/blob/cf4bea/scripts/generate_wikipathways_orthologs.py From 2f91293c6379f2398894b61171e44623efebf12c Mon Sep 17 00:00:00 2001 From: Charles Tapley Hoyt Date: Mon, 23 May 2022 10:58:13 +0200 Subject: [PATCH 5/5] Update generate_wikipathways_orthologs.py --- scripts/generate_wikipathways_orthologs.py | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/scripts/generate_wikipathways_orthologs.py b/scripts/generate_wikipathways_orthologs.py index 205c6842..64e3144e 100644 --- a/scripts/generate_wikipathways_orthologs.py +++ b/scripts/generate_wikipathways_orthologs.py @@ -6,10 +6,8 @@ from typing import Iterable import pyobo -import bioversions from gilda.process import normalize from tqdm import tqdm -import bioregistry from biomappings.resources import PredictionTuple, append_prediction_tuples from biomappings.utils import get_script_url @@ -21,18 +19,17 @@ def _lexical_exact_match(name1: str, name2: str) -> bool: def iterate_orthologous_lexical_matches(prefix: str = "wikipathways") -> Iterable[PredictionTuple]: """Generate orthologous relations between lexical matches from different species.""" - version = bioversions.get_version(prefix) - names = pyobo.get_id_name_mapping(prefix, version=version) - species = pyobo.get_id_species_mapping(prefix, version=version) + names = pyobo.get_id_name_mapping(prefix) + species = pyobo.get_id_species_mapping(prefix) provenance = get_script_url(__file__) count = 0 it = itt.combinations(sorted(names.items()), 2) it = tqdm( - it, unit_scale=True, + it, + unit_scale=True, unit="pair", total=len(names) * (len(names) - 1) / 2, - desc=f"{bioregistry.get_name(prefix)} v{version}", ) for (source_id, source_name), (target_id, target_name) in sorted(it): source_species = species[source_id]