{% extends "base_site.html" %} {% load staticfiles %} {% load humanize i18n %} {% block extrahead %} {% block additional_javascript %} {% endblock %} {% endblock %} {% block content %}
{% include "experiments/flowcell_header.html" %}

Lanes

{% for lane in lanes %} {% endfor %}
Lane Library ID Library Name Species Comment
{{lane.lane_number}} {{lane.library.id}} {% if user.is_staff %} {% endif %} {{lane.library.library_name}} {{ lane.library.library_species.scientific_name }} {{lane.comment}}
{% for run in flowcell.datarun_set.all %}

Run {{ run.runfolder_name }}

{% if run.lane_files %} {% for lane_id, lane_file_set in run.lane_files.items %} {% if lane_file_set.ivc_all %} {% endif %} {% endfor %}
Lane IVC All IVC Call IVC Percent Base IVC Percent Base All IVC Percent Base Called
{{ lane_id }} Lane {{lane_id }} IVC All Lane {{lane_id }} IVC Call Lane {{lane_id }} IVC % Base Lane {{lane_id }} IVC % Base All Lane {{lane_id }} IVC % Base Called
{% endif %} {% endfor %}
{% endblock %}