Genotype Distribution
{% if sample_genotypes %}
{% for sample_name, genotypes in sample_genotypes.items() %}
{{ sample_name }} Genotypes
{% for genotype, (count, percentage) in genotypes.items() %}
{{ genotype }}
{{ count }}
{{ "%.2f"|format(percentage) }}%
{% endfor %}
{% endfor %}
{% if population_genotypes %}
Overall Population
{% for genotype, (count, percentage) in population_genotypes.items() %}
{{ genotype }}
{{ count }}
{{ "%.2f"|format(percentage) }}%
{% endfor %}
{% endif %}
{% elif genotype_dist %}
{% for genotype, (count, percentage) in genotype_dist.items() %}
{{ genotype }}
{{ count }}
{{ "%.2f"|format(percentage) }}%
{% endfor %}
{% else %}
No genotype data available
{% endif %}