{% extends "base_QC.html" %} {% import 'pcaReport.html' as pca %} {% import 'sampleReportChunk.html' as sampleReport %} {% block title %}Assay Summary Report For: {{ item.Name }}{% endblock %} {% block content %}

Final Dataset

{{ item['Nsamples'] }} samples

Sample Summary

{% if 'SampleSummaryTable' in item %}

Sample Summary Table

{{ item['SampleSummaryTable']['Acquired'].to_html() }} {% endif %}

Sample Acquisition Structure

Samples acquired between {{ item['toA_from'] }} and {{ item['toA_to'] }}.

Samples referenced to: {{ attributes['calibrateTo'] }} ppm, and aligned and interpolated onto a common scale of {{ attributes['variableSize'] }} points

Data Structure Summary

Data processed with the following parameters:

{% if 'baselineCheckRegion' in attributes %} {% endif %} {% if 'waterPeakCheckRegion' in attributes %} {% endif %} {% if 'PWFailThreshold' in attributes %} {% endif %}
Applied
Baseline checked Yes
Baseline check regions {{ attributes['baselineCheckRegion'] }}
Water resonance checked Yes
Water Resonance check regions {{ attributes['waterPeakCheckRegion'] }}
Samples with excesive line width removed Yes
Line width threshold {{ attributes['PWFailThreshold'] }}
Peak used for line width calculation {{ attributes['LWpeakRange'] }}
Multiplicity of line width peak {{ attributes['LWpeakMultiplicity'] }}
Spectral regions automatically removed {{ attributes['exclusionRegions'] }}

Figure 1. Peak Width

Peak Width plot.

Figure 2. Baseline low and high

Baseline plot.

Figure 3. Water peak low and high

Water peak plot.
{% if pcaPlots %} {{ pca.basicPCAReport(pcaPlots) }} {% endif %} {% if sampleSummary %} {{ sampleReport.sampleReport(sampleSummary) }} {% endif %} {% endblock %}