{% if not motif_groups %}
No core peptides found.
{% else %}
(Thi)azol(in)e containing peptide(s)
{% for motifs in motif_groups %}
{% set core = motifs[0].core %}
{% for motif in motifs %}
{% set motif_name = motif.get_name().rsplit("_", 1)[0] %}
{{ motif_name }}
Leader:
{{ motif.leader }}
{% endfor %}
{% if motifs | length > 1%}Shared core:{% else %}Core:{% endif %}
{{ coloured_ripp_sequence(core) }}
Core with dehydrations:
{{ coloured_ripp_sequence(core, dehydrate=True) }}
{% for motif in motifs %}
{% if motif.tail %}
{% set motif_name = motif.get_name().rsplit("_", 1)[0] %}
{{ motif_name }}
Cleaved off residues:
{{ motif.tail }}
{% endif %}
{% endfor %}
{{ comparippson_results.get_html_for_query(motifs[0].get_name().rsplit("_", 1)[0]) }}
{% endfor %}
Legend:
Dha: Didehydroalanine
Dhb: Didehydrobutyrine
Types:
Type I: Featuring genes encoding indolic acid side ring (series e)
Type II: Featuring the gene coding for quinaldic acid moiety formation (series a, b, and c)
Type III: No genes for synthesizing L-Trp derivatives (series d)
{% endif %}