{% extends "base_generic.html" %} {% block title %}MS Feature ID Request: {{ item.FeatureID }}{% endblock %} {% block content %}

Feature: {{ item.FeatureID }}{% if item.Matrix is defined %}
Observed in: {{ item.Matrix }}{% endif %}{% if item.Chromatography is defined %}
Chromatography: {{ item.Chromatography }}{% endif %}

Primary ion: {{ item.PrimaryIon }} m/z
Retention time: {{ item.RetentionTime|round(4, 'common') }} minutes
Isotope distribution: {{ item.IsotopeDistribution }}{% if item.Adducts is defined %}
Detected adducts: {{ item.Adducts }} {% endif %}

Table 1. List of the top-{{ item.AbundanceSamples|length }} samples with the greatest abundance of {{ item.FeatureID }}.

{% for row in item.AbundanceSamples %} {% endfor %}
RankSample IDAbundance
{{ row.rank }}{{ row.id }}{{ row.value | round(2, 'common') }}
Abundance for feature: {{ item.FeatureID }} across dataset.

Figure 1. Violin plot of intensity distribution of {{ item.FeatureID }} in Study Samples, the Study Reference, and Long-Term Reference.
Study-derived samples are in blue, Long-Term Reference is green. The top-{{ item.AbundanceSamples|length }} samples with greatest abundance listed in Table 1 are marked with red dashes.

Feature intensity for feature: {{ item.FeatureID }}.

Figure 2. Feature intensity for {{ item.FeatureID }} across all samples, with the top {{ item.AbundanceSamples|length }} samples yielding highest intensity highlighted.

{{ item.Coelutants }} with {{ item.FeatureID }} in {{ item.AbundanceSamples[0].id }}.

Figure 3. {{ item.Coelutants }} with {{ item.FeatureID }} in {{ item.AbundanceSamples[0].id }}, the m/z of any features that show an intensity correlation with {{ item.FeatureID }} above 0.7 across the dataset are indicated on the plot.

Table 2. Features with an intensity observed to correlate most strongly with {{ item.FeatureID }} across the entire dataset, ranked by correlation.

{% for row in item.CorrelatedFeature %} {% endfor %}
Feature Namem/zRetention Time (min)Correlation to
{{ item.FeatureID }}
{{ row.id }}{{ row.mz | round(4, 'common') }}{{ row.rt | round(3, 'common') }}{{ row.corr | round(2, 'common') }}

Table 3. Features with an intensity observed to anti-correlate with {{ item.FeatureID }} across the entire dataset, ranked by correlation.

{% if item.AntiCorrelatedFlag is defined %} {% for row in item.AntiCorrelatedFeature %} {% endfor %} {% else %} {% endif %}
Feature Namem/zRetention Time (min)Correlation to
{{ item.FeatureID }}
{{ row.id }}{{ row.mz | round(4, 'common') }}{{ row.rt | round(3, 'common') }}{{ row.corr | round(2, 'common') }}
None found
Features observed to correlate with {{ item.FeatureID }} across the dataset.

Figure 4. Features observed to correlate with {{ item.FeatureID }} across the dataset.

Table 4. Database matches for {{ item.FeatureID }}.

{% if item.dbMatches is defined %} {% for row in item.dbMatches %} {% endfor %} {% else %} {% endif %}
Compound NameCanonical m/zCanonical Retention Time (min)
{{ row.name }}{{ row.mz | round(4, 'common') }}{{ row.rt | round(3, 'common') }}
None found
{% endblock %}