{% 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_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 data.location %}

Location

{% for location in data.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 %}
{% for cvterm in data.cvterm %} {% endfor %}
Ontology ID Term
{{ cvterm.cv|safe }} {{ cvterm.db }}:{{ cvterm.dbxref }} {{ cvterm.cvterm|safe }}
{% endif %} {% if data.protein_matches %}
{% for domain in data.protein_matches %} {% endfor %}
Protein database Protein domain
{{ domain.db|safe }} {{ domain.subject_id|safe }} {{ domain.subject_desc|default_if_none:'' }}
{% endif %}
{% endif %} {% if data.similarity %}

{% for hit in data.similarity %} {% endfor %}
Program Hit Query start Query end Score Evalue
{{ hit.program|safe }} {{ hit.programversion|safe }} {{ hit.db_name|default_if_none:'' }} {{ hit.uniquename|safe }} {{ hit.name|safe }} {{ hit.display|default_if_none:'' }} {{ hit.query_start|default_if_none:''|safe }} {{ hit.query_end|default_if_none:''|safe }} {{ hit.score|default_if_none:''|safe }} {{ hit.evalue|default_if_none:''|safe }}
{% 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 data.orthologs %}

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

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

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