{% set vars = {'is_first': True} %} {% for item in range(all_stats_dicts["TIDK"]|length) %} {% set active_text = 'display: block' if vars.is_first else 'display: none' %}
{{ all_stats_dicts['TIDK'][item]['hap_display'] }}
{% if all_stats_dicts['TIDK'][item]['has_sequence'] %}

Searched sequence: {{ all_stats_dicts['TIDK'][item]['sequence'] }}

{% endif %} {% if all_stats_dicts['TIDK'][item]['is_a_priori'] %}

Searched sequence: {{ all_stats_dicts['TIDK'][item]['a_priori_sequence'] }}

{% endif %} {% if all_stats_dicts['TIDK'][item]['tidk_plot_empty'] %}

TIDK explore could not find a repeat sequence 😔

{% else %}
{% endif %}
{% if vars.update({'is_first': False}) %} {% endif %} {% endfor %}