{% set superdups_fracmatches = [] %}
{% for gene in variant.genes %}
{% for transcript in gene.transcripts %}
{% if transcript.superdups_fracmatch %}
{% for superdup in transcript.superdups_fracmatch %}
{% do superdups_fracmatches.append(superdup) %}
{% endfor %}
{% endif %}
{% endfor %}
{% endfor %}
{% set superdups_fracmatches = superdups_fracmatches|sort %}
{% if superdups_fracmatches %}
mapping to {{superdups_fracmatches|length}} segm. dups. (min matching:{{ superdups_fracmatches|first|float|round(3) }}, max matching:{{ superdups_fracmatches|last|float|round(3) }})
{% else %}
-
{% endif %}