-
Notifications
You must be signed in to change notification settings - Fork 25
Add Node Normalizer CURIE synonyms to Node attributes #725
Copy link
Copy link
Open
Description
Problem
There was an expectation by the UI team that the CURIE synonyms for a given node would be provided by the reasoners. This doesn't appear to be happening in all cases. Since the ARS already calls the Node Normalizer for a result, it has this information at hand and should be able to easily tack on the CURIE synonyms to the result.
Proposed Solution
Add the CURIE synonyms in a biolink:xref attribute. There is no requirement from the UI for biolink:xref attributes to be unique meaning either of the following would be fine:
- The ARS merges it with an existing
biolink:xrefattribute - The ARS blindly creates its own
biolink:xrefattribute
Example provided below for reference:
"MONDO:0001302": {
...
"attributes": [
...
{
"attribute_type_id": "biolink:xref",
"value": [
"MONDO:0001302",
"DOID:11516",
"UMLS:C0152105",
"UMLS:C0694541",
"MEDDRA:10020801",
"MEDDRA:10020823",
"MEDDRA:10020824",
"MEDDRA:10020827",
"MEDDRA:10045916",
"NCIT:C157879",
"NCIT:C4907",
"SNOMEDCT:275516004",
"SNOMEDCT:64715009",
"medgen:508889",
"ICD10:I11",
"ICD9:402"
]
},
...
],
...
}
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels