{% extends 'base.html' %} {% 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.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 data.orthologs %}

{% for group_id, group in data.orthologs.items %}
  • Orthologous group: {{ group_id }}
  • {% for ortholog in group %}
  • {{ ortholog.type.name }}: {{ ortholog.uniquename }} {{ ortholog.get_display|default_if_none:'' }} ({{ ortholog.organism.genus }} {{ ortholog.organism.species }})
  • {% endfor %}
{% endfor %}
{% endif %} {% if feature.residues %}

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

    {% for pub in data.pubs %}
  • {{ pub.get_authors }} {{ pub.title }}. {{ pub.series_name }}. {{ pub.pyear }}; {{ pub.volume}} {{ pub.pages }} {% if pub.get_doi %} DOI:{{ pub.get_doi }} {% endif %}
  • {% endfor %}
{% endif %}
{% else %} {{ feature.error }} {% endif %} {% endblock %}