X-Git-Url: http://woldlab.caltech.edu/gitweb/?a=blobdiff_plain;f=htsworkflow%2Ffrontend%2Ftemplates%2Fsamples%2Flibrary_detail.html;h=8838944de26b1dac5d1a3c9aeedc324f452805ef;hb=153235dcbff342f942dd5de2af4006aa8dd69236;hp=9843e94d5f5183b1f6b853d011d0fe096500cf17;hpb=2cbb613cd4eba33ac3c3d2a9ace7c55799748d1a;p=htsworkflow.git diff --git a/htsworkflow/frontend/templates/samples/library_detail.html b/htsworkflow/frontend/templates/samples/library_detail.html index 9843e94..8838944 100644 --- a/htsworkflow/frontend/templates/samples/library_detail.html +++ b/htsworkflow/frontend/templates/samples/library_detail.html @@ -1,146 +1,154 @@ +{% extends "flowcell_libraries_app.html" %} {% load humanize %} + +{% block additional_css %} +{% endblock %} -

About this library

-Library ID: {{ lib.library_id }}
-Name: {{ lib.library_name }}
-Species: {{ lib.library_species.scientific_name }}
-Affiliations: - - -

Raw Result Files

- - - - - - - - - - - -{% for result in eland_results %} - - - - - - - - - -{% endfor %} -
CycleFlowcellLaneSummaryElandBedArchived
{{ result.cycle }}{{ result.flowcell_id }}{{ result.lane }}Summary{{ result.result_label }} - {% if result.bed_url %} - Bed - {% endif %} - - {% if result.storage_ids %} - {{ result.storage_ids }} - {% endif %} -
- -

Lane Summary Statistics

-{% block summary_stats %} - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - {% for lane in lane_summary_list %} - - - - - - - - - - - - - - - - - - - - - - {% endfor %} - -
No MatchQC FailedUniqueRepeat
CyclesFlowcellLaneEndCluster / TilepMRaw Readstotal%total%0 mismatch1 mismatch2 mismatchTotal0 mismatch1 mismatch2 mismatchTotal
{{ lane.cycle_width }}{{ lane.flowcell_id }}{{ lane.lane_id }}{% if lane.end %}{{ lane.end }}{% endif %}{{ lane.clusters.0|intcomma }}{{ lane.successful_pm }}{{ lane.reads|intcomma }}{{ lane.no_match|intcomma }}{{ lane.no_match_percent|stringformat:".2f" }}{{ lane.qc_failed|intcomma }}{{ lane.qc_failed_percent|stringformat:".2f" }}{{ lane.match_codes.U0|intcomma }}{{ lane.match_codes.U1|intcomma }}{{ lane.match_codes.U2|intcomma }}{{ lane.unique_reads|intcomma }}{{ lane.match_codes.R0|intcomma }}{{ lane.match_codes.R1|intcomma }}{{ lane.match_codes.R2|intcomma }}{{ lane.repeat_reads|intcomma }}
-
-
-

Count of multi-reads

-{% for lane in lane_summary_list %} - {% if lane.summarized_reads %} -

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

+{% block content %} +
+

About this library

+ Library ID: {{ lib.library_id }}
+ Name: {{ lib.library_name }}
+ Species: {{ lib.library_species.scientific_name }}
+ Affiliations: - {% endif %} -{% endfor %} + +

Raw Result Files

+ + + + + + + + + + + + {% for result in eland_results %} + + + + + + + + + + {% endfor %} +
CycleFlowcellLaneSummaryElandBedArchived
{{ result.cycle }}{{ result.flowcell_id }}{{ result.lane }}Summary{{ result.result_label }} + {% if result.bed_url %} + Bed + {% endif %} + + {% if result.storage_ids %} + {{ result.storage_ids }} + {% endif %} +
+ +

Lane Summary Statistics

+ {% block summary_stats %} + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + {% for lane in lane_summary_list %} + + + + + + + + + + + + + + + + + + + + + + {% endfor %} + +
No MatchQC FailedUniqueRepeat
CyclesFlowcellLaneEndCluster / TilepMRaw Readstotal%total%0 mismatch1 mismatch2 mismatchTotal0 mismatch1 mismatch2 mismatchTotal
{{ lane.cycle_width }}{{ lane.flowcell_id }}{{ lane.lane_id }}{% if lane.end %}{{ lane.end }}{% endif %}{{ lane.clusters.0|intcomma }}{{ lane.successful_pm }}{{ lane.reads|intcomma }}{{ lane.no_match|intcomma }}{{ lane.no_match_percent|stringformat:".2f" }}{{ lane.qc_failed|intcomma }}{{ lane.qc_failed_percent|stringformat:".2f" }}{{ lane.match_codes.U0|intcomma }}{{ lane.match_codes.U1|intcomma }}{{ lane.match_codes.U2|intcomma }}{{ lane.unique_reads|intcomma }}{{ lane.match_codes.R0|intcomma }}{{ lane.match_codes.R1|intcomma }}{{ lane.match_codes.R2|intcomma }}{{ lane.repeat_reads|intcomma }}
+
+
+

Count of multi-reads

+ {% for lane in lane_summary_list %} + {% if lane.summarized_reads %} +

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

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