{% import 'region_table_macros.html' as region_table %} {{page_title}} - {{regions_written}} region(s) - antiSMASH results {% set multi_record = records | length + records_without_regions | length + skipped_record_count > 1 %}
Dashboard | Detailed Results
Select genomic region:
{% if records %}
{% set intro = "Identified secondary metabolite regions using strictness '{}'".format(options.hmmdetection_strictness) %} {% if options.triggered_limit %}

{{intro}} (truncated to the first {{options.limit}} record(s))

{% else %}

{{intro}}

{% endif %}
{% set ns = namespace(svg_idx=0) %} {% for batch in records | batch(50) %}
{% for record in batch -%} {% set ns.svg_idx = ns.svg_idx + 1 %}
{{record.get_from_record()}}
{{ region_table.single_record_table(record, multi_record, options, get_region_css) }}
{%- endfor %}
{% endfor %}
{% if records | length > 50 %}
{% endif %} {% if multi_record %} {% endif %} {% set regionless_count = records_without_regions | length + skipped_record_count %} {% if regionless_count > 0 %}

No secondary metabolite regions were found in {{ regionless_count }} record{{ "s" if regionless_count != 1 }}.

{% endif %}
{% if multi_record %}
{{switch("Compact view", "overview-switch-compact", starts_on=options.html_start_compact)}}
{% endif %}
{% else %}
No results found on input.
{% endif %} {% if lazy_loading %}
{% else %} {% include 'regions.html' %} {% endif %} {% include 'footer.html' %} {% if lazy_loading %} {% endif %} {% include 'svg_references.html' %}