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

{{ feature.type.name }}: {{ feature.name }}

ID: {{ feature.uniquename }}

{% if feature.get_dbxrefs %}

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

{% endif %} {% if feature.get_display %}

Display: {{ feature.get_display }}

{% endif %} {% if feature.get_product %}

Product: {{ feature.get_product }}

{% endif %} {% if feature.get_description %}

Description: {{ feature.get_description }}

{% endif %} {% if feature.get_note %}

Note: {{ feature.get_note }}

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

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

{% endif %}
{% 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 %}

{% if feature.get_coexpression_group %} {% endif %} {% for value in feature.get_expression_samples %} {% endfor %}
Assay source Assay name Assay description Biomaterial name Biomaterial description Treatment Score normalized (TPM)
{{ value.analysis__sourcename|safe }} {{ value.assay_name|safe }} {{ value.assay_description|safe }} {{ value.biomaterial_name|safe }} {{ value.biomaterial_description|safe }} {{ value.treatment_name|safe }} {{ value.normscore|safe|floatformat:2 }}
{% 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 %}