{% extends "base.html" %} {% block title %}{{ res.name }}{% endblock %} {% macro code_curie(prefix, identifier) -%} {{ bioregistry.curie_to_str(prefix, identifier) }} {% endmacro %} {% block container %}
Entity    {{ res.name }}
Prefix
{{ res.prefix }}
Identifier
{{ res.identifier }}
Name
{{ res.name }}
{% if res.definition %}
Definition
{{ res.definition }}
{% endif %} {% if res.species %}
Species
{{ res.species }}
{% endif %} {% if res.synonyms %}
Synonyms
    {% for synonym in res.synonyms %}
  • {{ synonym }}
  • {% endfor %}
{% endif %} {% if res.xrefs %}
Cross-References
    {% for xref in res.xrefs %}
  • {{ code_curie(xref["xref_prefix"], xref["xref_identifier"]) }} (from {{ xref["provenance"] }})
  • {% endfor %}
{% endif %} {% if res.relations %}
Relations
    {% for relation in res.relations %}
  • {{ code_curie(relation["relation_prefix"], relation["relation_identifier"]) }} {{ code_curie(relation["target_prefix"], relation["target_identifier"]) }}
  • {% endfor %}
{% endif %}
{% endblock %}