{% extends 'base.html' %} {% load static %} {% block content %} {% if feature.error == None %} {% if data %}
{{ feature.organism.genus }} {{ feature.organism.species }} {{ feature.organism.infraspecific_name|default_if_none:'' }}

{{ feature.type.name }}: {{ feature.name|default_if_none:feature.uniquename }}

ID: {{ feature.uniquename }}
{% if feature.get_synonyms %}Symbols: {{ feature.get_synonyms|join:', ' }}
{% endif %} {% if feature.get_properties %} {% for prop in feature.get_properties %} {{ prop.0|title }}: {{ prop.1 }}
{% endfor %} {% endif %}

{% if feature.get_dbxrefs %}

DBxRefs: {{ feature.get_dbxrefs|join:', ' }}

{% endif %} {% if feature.get_relationship %}

{% for relative in feature.get_relationship %} {{ relative.type.name|title }}: {{ relative.uniquename }} {{ relative.get_display|default_if_none:'' }}
{% endfor %}

{% endif %}
{% endif %} {% if feature.get_annotation %}

    {% for prop in feature.get_annotation %}
  • {{ prop }}
  • {% endfor %}
{% endif %} {% if feature.get_location %}

Location

{% for location in feature.get_location %}

{{ location.ref|safe }}:{{ location.start|safe }}..{{ location.end|safe }} {{ location.strand|safe }}

{% if location.jbrowse_url %} {% endif %} {% endfor %}
{% endif %} {% if data.cvterm or data.protein_matches %}

{% if data.cvterm %}
{% endif %} {% if data.protein_matches %}
{% endif %}
{% endif %} {% if data.similarity %}

{% endif %} {% if feature.type.name == 'mRNA' and feature.get_expression_samples %}

{% endif %} {% if feature.type.name == 'polypeptide' and feature.get_orthologous_group %}

{% endif %} {% if feature.residues %}

{% endif %} {% if data.pubs %}

{% endif %}
{% else %} {{ feature.error }} {% endif %} {% endblock %}