Input Information
Input File |
{{ input_file }} |
Output File |
{{ output_file }} |
SV Type Distribution
{% for type, (count, percentage) in sv_types.items() %}
{{ type }}
{{ count }}
{{ percentage }}%
{% endfor %}
Size Statistics
Total SVs
{{ total_svs }}
Size Range
{{ min_size }} - {{ max_size }} bp
Mean Size
{{ mean_size|round(2) }} bp
Size Distribution
{% for range, count in size_distribution.items() %}
{% endfor %}
Quality Metrics
Average QUAL
{{ avg_qual|round(2) }}
Average Read Support
{{ avg_read_support|round(2) }}
Filter Status
{% for status, (count, percentage) in filter_status.items() %}
{{ status }}
{{ count }}
{{ percentage }}%
{% endfor %}
Genotype Distribution
{% for genotype, (count, percentage) in genotype_dist.items() %}
{{ genotype }}
{{ count }}
{{ percentage }}%
{% endfor %}
{% if sv_distribution_plot_base64 %}
Structural Variant Distribution
{% endif %} {% if chromosome_coverage_plot_base64 %}
{% endif %} {% if size_distribution_plot_base64 %}
{% endif %} {% if additional_plots %}
Additional Analysis
{% for plot in additional_plots %}
{% endfor %}
{% endif %}