{% extends 'portal.html'%} {% block title %}Graph comparison results{% endblock %} {% block content %}

The structures compared were: {% for name in original_structure_list %}{% if loop.index > 1 %},{% endif %} {{ name }}{% endfor %} using the {{ comparison_type.name }} comparison type.

Heatmap
Jaccard Index Matrix
{% for original_name in original_structure_list %} {% endfor %} {% for j in range(comparison_structure_list|length) %} {% for i in range(original_structure_list|length) %} {% endfor %} {% endfor %}
{{ original_name }}
{{ comparison_structure_list[j] }}{{ "{:.3f}".format(jaccard_index_matrix[i][j]) }}
Nodes in MCS Matrix
{% for original_name in original_structure_list %} {% endfor %} {% for j in range(comparison_structure_list|length) %} {% for i in range(original_structure_list|length) %} {% endfor %} {% endfor %}
{{ original_name }}
{{ comparison_structure_list[j] }}{{ nodes_in_mcs_matrix[i][j] }}
{% endblock %}