BEN_REFERENCE

BEN_REFERENCE = NormalizedNamableReference(prefix='orcid', identifier='0000-0001-9439-5346', name='Benjamin M. Gyori')

Extends curies.NamableReference to normalize the prefix against the Bioregistry.

>>> NormalizedNamedReference(prefix="go", identifier="0032571")
NormalizedNamedReference(prefix='go', identifier='0032571', name=None)

With a name:

>>> NormalizedNamedReference(prefix="go", identifier="0032571", name="response to vitamin K")
NormalizedNamedReference(prefix='go', identifier='0032571', name='response to vitamin K')

Standardizes capitalization to lowercase:

>>> NormalizedNamedReference(prefix="GO", identifier="0032571", name="response to vitamin K")
NormalizedNamedReference(prefix='go', identifier='0032571', name='response to vitamin K')

Standardizes prefix synonyms to lowercase:

>>> NormalizedNamedReference(prefix="GOBP", identifier="0032571", name="response to vitamin K")
NormalizedNamedReference(prefix='go', identifier='0032571', name='response to vitamin K')