{% 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 %}
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.
{{ 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) }}% |
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.
{{ 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) }}% |