You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In many cases, it would be nice to be able to refer to a term by its synonym rather than just by it's canonical name.
Consider, for example, https://www.ebi.ac.uk/sbo/main/SBO:0000251
Currently, we have tyto.SBO.deoxyribonucleic_acid, but not tyto.SBO.DNA
Likewise, tyto.SBO.get_uri_by_term('deoxyribonucleic acid') works but tyto.SBO.get_uri_by_term('DNA') raises an exception.
The text was updated successfully, but these errors were encountered:
A problem with this particular example is that the synonym, DNA is stored in a free text comment field whose value is Synonym: DNA. So SBO doesn't conform to the best practices for supporting alternative labels in ontologies, e.g., skos:altLabel
Ugh, that's horrible. It looks like they made up their own conventions here. Want to file a ticket against SBO to ask them to add the proper practices?
In many cases, it would be nice to be able to refer to a term by its synonym rather than just by it's canonical name.
Consider, for example, https://www.ebi.ac.uk/sbo/main/SBO:0000251
Currently, we have
tyto.SBO.deoxyribonucleic_acid
, but nottyto.SBO.DNA
Likewise,
tyto.SBO.get_uri_by_term('deoxyribonucleic acid')
works buttyto.SBO.get_uri_by_term('DNA')
raises an exception.The text was updated successfully, but these errors were encountered: