get_miriam_uri_format
- get_miriam_uri_format(prefix: str, **kwargs: Any) str | None [source]
Get the URI format for a MIRIAM entry.
- Parameters:
prefix – The prefix to lookup.
kwargs – Keyword arguments to pass to
Resource.get_miriam_uri_format()
- Returns:
The Identifiers.org/MIRIAM URI format string, if available.
>>> import bioregistry >>> bioregistry.get_miriam_uri_format("ncbitaxon") 'https://identifiers.org/taxonomy:$1' >>> bioregistry.get_miriam_uri_format("go") 'https://identifiers.org/GO:$1' >>> assert bioregistry.get_miriam_uri_format("sty") is None