{% extends "base_template.html" %} {% block title %}Summary - PyCodon Analyzer Report{% endblock %} {% block content %}

Analysis Summary

Run Parameters

{% for key, value in report_data.params.items() %} {% endfor %}
{{ key | replace('_', ' ') | title }} {{ value }}

Overall Metrics

Metric Value
Number of Gene Files Processed {{ report_data.summary_stats.num_genes_processed }}
Total Valid Sequences Analyzed (across all genes) {{ report_data.summary_stats.total_valid_sequences }}

Report Sections

Use the navigation menu on the left to explore detailed results for each section.

{% if report_data.plot_paths.combined_plots.ca_biplot_combined %}

Combined CA Biplot (All Genes)

Combined CA Biplot
{% else %}

Combined CA Biplot is not available.

{% endif %} {% endblock %}