{% extends "base.html" %} {% import "bootstrap/wtf.html" as wtf %} {% import "bootstrap/fixes.html" as fixes %} {% import "bootstrap/utils.html" as util %} {% block scripts %} {{ super() }} {% endblock %} {% block title %}{{ network }} Summary: Stratified{% endblock %} {% block content %}
{{ util.flashed_messages(dismissible=True, container=False) }}

Summary of {{ network }}

{% for k, v in full_summary.items() %}
{{ k }}
{{ v }}
{% endfor %}

Full Summary Stratified by {{ annotation }}

This is a summary of the sub-graphs. It includes information that fits the schema of BEL, but is less useful for reasoning. See below for a "target" summary with pre-processing done to each sub-graph.

{% for name, data in summaries.items() %} {% endfor %}
{{ annotation }} Nodes Edges Components Citations Density Errors Error Density Node Percentage Edge Percentage Citation Percentage
{{ name }} {{ data['Nodes'] }} {{ data['Edges'] }} {{ data['Components'] }} {{ data['Citations'] }} {{ (data['Network density'] * 100) | round(precision=3) }}% {{ data['errors'] }} {{ (data['error_density'] * 100) | round(precision=3) }}% {{ (data['node_overlap']* 100) | round(precision=3) }}% {{ (data['edge_overlap']* 100) | round(precision=3) }}% {{ (data['citation_overlap']* 100) | round(precision=3) }}%

Targeted Summary Stratified by {{ annotation }}

Graphs have been sliced to be more useful. The pathologies and associative relationships are removed, proteins and RNAs are collapsed to genes, and isolated nodes are removed.

{% for name, data in useful_summaries.items() %} {% endfor %}
{{ annotation }} Nodes Edges Components Citations Density Node Percentage Edge Percentage Citation Percentage
{{ name }} {{ data['Nodes'] }} {{ data['Edges'] }} {{ data['Components'] }} {{ data['Citations'] }} {{ (data['Network density'] * 100) | round(precision=3) }}% {{ (data['node_overlap']* 100) | round(precision=3) }}% {{ (data['edge_overlap']* 100) | round(precision=3) }}% {{ (data['citation_overlap']* 100) | round(precision=3) }}%
{% endblock %}