{% extends "layout.html" %} {% block head %} {% endblock %} {% block content %}
{% if run_names|length > 0 %}
{{report_name}}
{% for run_name in run_names %} {{run_name}} {% endfor %}
{% endif %} {{render_partial('shared/partials/failed_runs.html', failed_runs=failed_runs, failed_runs_desc=failed_runs_desc)}} {% if window_nuc_pct_quilts|length > 0 %}
Nucleotide percentages around guides
{% for plot_name in window_nuc_pct_quilts %}
{{report_data['titles'][plot_name]}}
{{ render_partial('shared/partials/fig_summaries.html', report_data=report_data, plot_name=plot_name) }} {% endfor %}
{% endif %} {% if nuc_pct_quilts|length > 0 %}
Nucleotide percentages in the entire amplicon
{% for plot_name in nuc_pct_quilts %}
{{report_data['titles'][plot_name]}}
{{ render_partial('shared/partials/fig_summaries.html', report_data=report_data, plot_name=plot_name) }} {% endfor %}
{% endif %} {% if window_nuc_conv_plots|length > 0 %}
Conversion of target bases around guides
{% for plot_name in window_nuc_conv_plots %}
{{report_data['titles'][plot_name]}}
{{ render_partial('shared/partials/fig_summaries.html', report_data=report_data, plot_name=plot_name) }} {% endfor %}
{% endif %} {% if nuc_conv_plots|length > 0 %}
Conversion of target bases in the entire amplicon
{% for plot_name in nuc_conv_plots %}
{{report_data['titles'][plot_name]}}
{{ render_partial('shared/partials/fig_summaries.html', report_data=report_data, plot_name=plot_name) }} {% endfor %}
{% endif %} {% if report_data['names']|length > 0 %} {% for plot_name in report_data['names'] %}
{{report_data['titles'][plot_name]}}
{{ render_partial('shared/partials/fig_summaries.html', report_data=report_data, plot_name=plot_name) }}
{% endfor %} {% endif %} {% if allele_modification_heatmap_plot_names|length > 0 %} {% for heatmap_plot_name in allele_modification_heatmap_plot_names %} {% set line_plot_name = allele_modification_line_plot_names[loop.index - 1] %} {% set modification_type = heatmap_plot_name.split('_')[3] %}
{{allele_modification_heatmap_plot_titles[heatmap_plot_name]}}
{{allele_modification_heatmap_plot_htmls[heatmap_plot_name]}} {% for (data_label, data_path) in allele_modification_heatmap_plot_datas[heatmap_plot_name] %}

Data: {{data_label}}

{% endfor %}
{{allele_modification_line_plot_htmls[line_plot_name]}} {% for (data_label, data_path) in allele_modification_line_plot_datas[line_plot_name] %}

Data: {{data_label}}

{% endfor %}
{% endfor %} {# #} {% endif %}
{{render_partial('shared/partials/report_footer_buttons.html', report_zip_filename=report_zip_filename, report_path=report_path)}} {# data bit for web version: #} {#

Data: {{data_label}}

#}
{% endblock %} {% block foot %} {% if C2PRO_INSTALLED %} {{ render_partial('partials/batch_d3.html', nucleotide_quilt_slugs=(window_nuc_pct_quilts + nuc_pct_quilts))}} {% endif %} {% endblock %}