Accession ID |
{{ accession }} |
Entry Status |
|
Enzyme Name |
{{ enzyme.get("name") }} |
Enzyme Description |
{{ enzyme.get("description") }} |
Database References |
{% if enzyme.databaseIds is not none %}
{% for key, value in enzyme.databaseIds.items() %}
- {{ key }}: {{ value[0] }}
{% endfor %}
{% else %}
No database crosslinks available
{% endif %}
|
References |
{% if enzyme.references is not none %}
{% for row in enzyme.references %}
- {{ row[0] }}
{% endfor %}
{% else %}
No references available
{% endif %}
|
{% if comment %}
Comment |
{{ comment }} |
{% endif %}
{% if enzyme.auxiliaryEnzymes is defined %}
{% for auxenzyme in enzyme.auxiliaryEnzymes %}
Auxiliary Enzyme #{{ loop.index }}
Enzyme Name |
{{ auxenzyme.name }} |
{% if auxenzyme.description is not none %}
Description |
{{ auxenzyme.description }} |
{% endif %}
Database References |
{% if auxenzyme.databaseIds is not none %}
{% for key, value in auxenzyme.databaseIds.items() %}
- {{ key }}: {{ value[0] }}
{% endfor %}
{% else %}
No database crosslinks available
{% endif %}
|
{% endfor %}
{% endif %}
{% for entry in changelog %}
Version {{ entry.version }} ({{ entry.date }})
{% for row in entry.entries %}
Change {{ loop.index }} ({{ row.date }}) |
Contributor(s) |
{% for curator in row.contributors %}
- {{ curator }}
{% endfor %}
|
Reviewer(s) |
{% for reviewer in row.reviewers %}
- {{ reviewer }}
{% endfor %}
|
Comment |
"{{ row.comment }}" |
|
{% endfor %}
{% endfor %}