{% extends "base_site.html" %} {% load adminmedia humanize i18n %} {% block extrahead %} {% block additional_javascript %} {% endblock %} {% endblock %} {% block content %} {% include "sample_header.html" %}

Raw Result Files

{% for result in eland_results %} {% endfor %}
Run Start Date Cycle Flowcell Lane Summary Eland Bed Archived
{{ result.run_date|date}} {{ result.cycle }} {{ result.flowcell_id }}{% if user.is_staff %}Edit{% endif%} {{ result.lane.lane_number }} Summary {{ result.result_label }} {% if result.bed_url %} Bed {% endif %} {% if result.storage_ids %} {{ result.storage_ids|safe }} {% endif %}

Lane Summary Statistics

{% block summary_stats %} {# ls short for lane summary #} {% for ls in lane_summary_list %} {% endfor %}
No Match QC Failed Unique Repeat
Cycles Flowcell Lane End Cluster / Tile pM Raw Reads total % total % 0 mismatch 1 mismatch 2 mismatch Total 0 mismatch 1 mismatch 2 mismatch Total
{{ ls.cycle_width }} {{ ls.flowcell_id }} {{ ls.lane_id }} {% if ls.end %}{{ ls.end }}{% endif %} {{ ls.clusters.0|intcomma }} {{ ls.successful_pm }} {{ ls.reads|intcomma }} {{ ls.no_match|intcomma }} {{ ls.no_match_percent|stringformat:".2f" }} {{ ls.qc_failed|intcomma }} {{ ls.qc_failed_percent|stringformat:".2f" }} {{ ls.match_codes.U0|intcomma }} {{ ls.match_codes.U1|intcomma }} {{ ls.match_codes.U2|intcomma }} {{ ls.unique_reads|intcomma }} {{ ls.match_codes.R0|intcomma }} {{ ls.match_codes.R1|intcomma }} {{ ls.match_codes.R2|intcomma }} {{ ls.repeat_reads|intcomma }}

Flowcell Notes

{% for lane in lib.lane_set.all %} {% endfor %}
Flowcell ID Lane Comment
{{lane.flowcell.flowcell_id}} {% if user.is_staff %} Edit {% endif%} {{ lane.lane_number }} {{ lane.comment }}


Count of multi-reads

{% for eland_lane in lane_summary_list %} {% if eland_lane.summarized_reads %}

{{eland_lane.cycle_width}} {{ eland_lane.flowcell_id }} lane {{ eland_lane.lane_id }} {% if eland_lane.end %} end {{ eland_lane.end }}{% endif %}

{% endif %} {% endfor %} {% endblock %}
{% endblock %}