{% extends 'sharedTemplates/base.html' %} {% block title %}Contig composition{% endblock %} {% block body %}
Contigs or scaffolds

The table displays the number of contigs or scaffolds found for each annotated region.

- Value of 0 means no flanking genes were detected in that region.

- Value of 1 indicates the region was found on a single contig.

- Value of 2+ indicates that flanking genes are located on separate contigs, or that the scaffold consists of multiple contigs containing both flanking genes.

Contig composition per annotated region

{% if pivot_data|length > 0 %} {% set columns = pivot_data[0].keys()|list %} {% for col in columns %} {% endfor %} {% endif %} {% for row in pivot_data %} {% for col in columns %} {% endfor %} {% endfor %}
{{ col }}
{{ row[col] }}
{% endblock %}