{% extends "base.html" %}
{% block head_title %}Protein Isoform Detail - {{ record_id }}{% endblock %}
{% block title %}Protein Isoform Detail{% endblock %}
{% block content %}
Details
| GI | {{ record_id }} |
| Name | {{name}} |
| Description | {{description}} |
| Species | {{species}} |
{% if xref %}| Cross-References | {{xref}} |
{% endif %}
{% if features %}
Features
| Feature |
Location |
{% for feature in features %}
| {{ feature.type }} |
{{ feature.location }} |
{% for qualifier in feature.qualifiers.all %}{{ qualifier.items }} {% endfor %} |
{% endfor %}
{% endif %}
Sequence
{{sequence}}
References
{% for paper in papers %}
- {{ paper.title }}. {{ paper.authors }}. {{ paper.journal}}. {{ paper.pubmed_id }}
{% endfor %}
{% endblock %}