{% extends "base.html" %} {% block head %} {% endblock %} {% block content %}
{% set ns = namespace(counter=0) %} {% for name, table in tables %} {% if ns.counter == 0 %} {% else %} {% endif %} {% set ns.counter = ns.counter + 1 %}
{% if name == "lfc" %}

Log-Fold Change (LFC)

Positive numbers indicate enrichment relative to the intercept, negative numbers indicate depletion relative to the intercept.


{% elif name == "p_val" %}

p-Values

{% elif name == "q_val" %}

q-Values: FDR Corrected p-Values

{% elif name == "se" %}

Standard Error

{% elif name == "w" %}

W-Scores: Log-Fold Change divided by the Standard Error

{% else %}

{{ name }}

{% endif %} {% if intercept_single %}

Groups used to define the intercept:

{{ intercept_single }} (and any numerical metadata columns)

{% else %}

Groups used to define the intercept:

{{ ", ".join(intercept_multi) }} (and any numerical metadata columns)

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