| Accession ID | {{ data.accession }} |
| Entry Status | Status: {{ data.status }} |
| Enzyme Name | {{ data.enzyme.get("name") }} |
| Enzyme Description | {{ data.enzyme.get("description") }} |
| Database References |
|
{% if data.enzyme.cofactors is defined %}
| Cofactors |
{% if data.enzyme.cofactors.organic is defined %}
- Organic
-
{% for row in data.enzyme.cofactors.organic %}
- {{ row }}
{% endfor %}
{% endif %}
{% if data.enzyme.cofactors.inorganic is defined %}
- Inorganic
-
{% for row in data.enzyme.cofactors.inorganic %}
- {{ row }}
{% endfor %}
{% endif %}
|
{% endif %}
| References |
{% if data.enzyme.references is defined %}
{% for row in data.enzyme.references %}
- {{ row }}
{% endfor %}
{% else %}
- No references available
{% endif %}
|
{% if data.comment is defined %}
| Comment | {{ data.comment }} |
{% endif %}
| Enzyme Visualization (AlphaFold-predicted) |
{% if data.enzyme.databaseIds.uniprot is defined %}
|
{% else %}
UniProt ID not available - could not render visualization |
{% endif %}
{% for entry in data.changelog %}
Version {{ entry.version }} ({{ entry.date }})
| Contributor(s) |
{% for curator in entry.contributors %}
{% if curator == "AAAAAAAAAAAAAAAAAAAAAAAA" %}
- Anonymous MITE contributor
{% else %}
- {{ curator }}
{% endif %}
{% endfor %}
|
| Reviewer(s) |
{% for reviewer in entry.reviewers %}
{% if reviewer == "BBBBBBBBBBBBBBBBBBBBBBBB" %}
- Entry not reviewed (but all automated validation checks passed)
{% else %}
- {{ reviewer }}
{% endif %}
{% endfor %}
|
| Comment |
"{{ entry.comment }}" |
|
{% endfor %}
{% if data.enzyme.auxiliaryEnzymes is defined %}
{% for auxenzyme in data.enzyme.auxiliaryEnzymes %}
Auxiliary Enzyme #{{ loop.index }}
| Enzyme Name |
{{ auxenzyme.name }} |
{% if auxenzyme.description is defined %}
| Description |
{{ auxenzyme.description }} |
{% endif %}
| Database References |
|
{% endfor %}
{% endif %}