get_identifiers_org_prefix
- get_identifiers_org_prefix(prefix: str) str | None[source]
Get the identifiers.org prefix if available.
- Parameters:
prefix – The prefix to lookup.
- Returns:
The Identifiers.org/MIRIAM prefix corresponding to the prefix, if mappable.
>>> import bioregistry >>> bioregistry.get_identifiers_org_prefix("chebi") 'chebi' >>> bioregistry.get_identifiers_org_prefix("ncbitaxon") 'taxonomy' >>> assert bioregistry.get_identifiers_org_prefix("MONDO") is None