{% extends 'base.html' %} {% block content %} {% if non_numeric_cols %}
The following metadata columns have been omitted because the metadata column was not numeric: {{ non_numeric_cols }}
{% endif %} {% if zero_variance_cols %}
The following metadata columns have been omitted because the metadata column had no variance, or consisted only of missing values: {{ zero_variance_cols }}
{% endif %} {% if initial_dm_length != filtered_dm_length %}

Warning: Some samples were filtered from the input distance matrix because they were missing metadata values.
The input distance matrix contained {{ initial_dm_length }} samples but bioenv was computed on only {{ filtered_dm_length }} samples.

{% endif %}
{{ result }}
{% endblock %}