{% extends 'base.html' %} {% load static l10n %} {% 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: {% for dbxref in feature.get_dbxrefs %} {{ dbxref|safe }} {% endfor %}

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

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.has_cvterm or data.has_protein_matches %}

Functional annotation

{% if 'functional' in load_list %} {% if data.cvterm_data %}
Gene Ontology
{% for term in data.cvterm_data %} {% endfor %}
Ontology ID Term
{{ term.cv }} {{ term.db }}:{{ term.dbxref }} {{ term.name }}
{% endif %} {% if data.protein_matches_data %}
Interpro databases
{% for match in data.protein_matches_data %} {% endfor %}
Protein database Protein domain
{{ match.db }} {{ match.subject_uniquename }} {{ match.subject_name }}
{% endif %} {% else %}

Click header to load functional annotation...

{% endif %}
{% endif %} {% if data.has_similarity %}

Similarity

{% if 'similarity' in load_list %} {% for sim in data.similarity_data %} {% endfor %}
Program Hit Query start Query end Score Evalue
{{ sim.program }} {{ sim.programversion }} {{ sim.db_name }} {{ sim.uniquename|default:"" }} {% if sim.db_name == 'BLAST_SOURCE' and sim.sotype == 'polypeptide' %} {{ sim.name }} {% else %} {{ sim.name }} {% endif %} {{ sim.query_start }} {{ sim.query_end }} {{ sim.score }} {{ sim.evalue }}
{% else %}

Click header to load similarity data...

{% endif %}
{% endif %} {% if data.has_expression %}

Expression data

{% if 'expression' in load_list %} {% for exp in data.expression_data %} {% endfor %}
Source Assay name Assay description Biomaterial name Biomaterial description Phenotype condition Normalized score (TPM)
{{ exp.analysis__sourcename }} {{ exp.assay_name }} {{ exp.assay_description }} {{ exp.biomaterial_name }} {{ exp.biomaterial_description }} {{ exp.treatment_name }} {{ exp.normscore }}
{% else %}

Click header to load expression data...

{% endif %}
{% endif %} {% if data.has_orthologs %}

Orthologs

{% if 'orthologs' in load_list %} {% else %}

Click header to load orthologs...

{% endif %}
{% endif %} {% if data.has_sequence %}

Sequence

{% if 'sequence' in load_list %} {{ data.sequence_data }} {% else %}

Click header to load sequence...

{% endif %}
{% endif %} {% if data.has_pubs %}

Publications

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

Click header to load publications...

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