-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Lexmatch revamp #397
Lexmatch revamp #397
Changes from 5 commits
282a0a0
2fe4c93
6b04c71
9643d83
b20f301
0345282
f5203b7
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,32 +6,31 @@ license: https://creativecommons.org/licenses/by/4.0/ | |
creator_id: https://orcid.org/0000-0002-2906-7319 | ||
curie_map: | ||
ICD10: http://apps.who.int/classifications/icd10/browse/2010/en#/ | ||
MedDRA: https://identifiers.org/meddra/ | ||
# MedDRA: https://identifiers.org/meddra/ | ||
MESH: https://meshb.nlm.nih.gov/record/ui?ui= | ||
OMIM: https://omim.org/entry/ | ||
OMIMPS: https://www.omim.org/phenotypicSeries/PS | ||
Orphanet: http://www.orpha.net/ORDO/Orphanet_ | ||
# Orphanet: http://www.orpha.net/ORDO/Orphanet_ | ||
UMLS: http://linkedlifedata.com/resource/umls/id/ | ||
DOID: http://purl.obolibrary.org/obo/DOID_ | ||
EFO: http://www.ebi.ac.uk/efo/EFO_ | ||
ENVO: http://purl.obolibrary.org/obo/ENVO_ | ||
GARD: "https://bioregistry.io/reference/gard:" | ||
GARD: "https://bioregistry.io/gard:" | ||
ICD10CM: https://icd.codes/icd10cm/ | ||
ICD9CM: https://icd.codes/icd9cm/ | ||
ICD9CM_2005: https://icd.codes/icd9cm/ | ||
ICDO: "https://bioregistry.io/reference/gard:" | ||
# ICD9CM_2005: https://icd.codes/icd9cm/ | ||
ICDO: "https://bioregistry.io/icdo:" | ||
KEGG: http://www.kegg.jp/entry/ | ||
MEDDRA: https://identifiers.org/meddra/ | ||
NCI: http://purl.obolibrary.org/obo/NCIT_ | ||
OMIT: http://purl.obolibrary.org/obo/ENVO_ | ||
OMIT: http://purl.obolibrary.org/obo/OMIT_ | ||
ORDO: http://www.orpha.net/ORDO/Orphanet_ | ||
SNOMEDCT_US_2020_03_01: http://identifiers.org/snomedct/ | ||
SNOMEDCT_US_2020_09_01: http://identifiers.org/snomedct/ | ||
SNOMEDCT_US_2021_07_31: http://identifiers.org/snomedct/ | ||
SNOMEDCT_US_2021_09_01: http://identifiers.org/snomedct/ | ||
SNOMEDCT_US_2022_07_31: http://identifiers.org/snomedct/ | ||
SNOMEDCT_US_2022_10_31: http://identifiers.org/snomedct/ | ||
SNOMEDCT_US_2023_02_28: http://identifiers.org/snomedct/ | ||
# SNOMEDCT_US_2020_09_01: http://identifiers.org/snomedct/ | ||
# SNOMEDCT_US_2021_07_31: http://identifiers.org/snomedct/ | ||
# SNOMEDCT_US_2021_09_01: http://identifiers.org/snomedct/ | ||
# SNOMEDCT_US_2022_07_31: http://identifiers.org/snomedct/ | ||
# SNOMEDCT_US_2022_10_31: http://identifiers.org/snomedct/ | ||
# SNOMEDCT_US_2023_02_28: http://identifiers.org/snomedct/ | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @matentzn why are these commented out vs. removed or what are these comments a reminder of in the future? |
||
SYMP: http://purl.obolibrary.org/obo/SYMP_ | ||
UMLS_CUI: http://linkedlifedata.com/resource/umls/id/ | ||
|
||
# UMLS_CUI: http://linkedlifedata.com/resource/umls/id/ |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -85,7 +85,8 @@ def main(verbose: int, quiet: bool): | |
def run(input: str, config: str, rules: str, rejects: str, output: str): | ||
# Implemented `meta` param in `lexical_index_to_sssom` | ||
|
||
meta = get_metadata_and_prefix_map(config) | ||
#meta = get_metadata_and_prefix_map(config) | ||
meta = None | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
|
||
with open(config, "r") as f: | ||
yml = yaml.safe_load(f) | ||
|
||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
prefixes.csv
updatesThat will be supplanted eventually by dynamic creation of
prefixes.csv
but these changes seem necessary for now.Harshad and I should have thought to check the status of this sooner.