{% extends "report_base.html" %} {% block title %}SBML Test Suite {{ suite_version }} — sbmlsim{% endblock %} {% block items %}cases{% endblock %} {% block heading %}SBML Test Suite{% endblock %} {% block subtitle %}semantic cases, release {{ suite_version }}{% endblock %} {% block placeholder %}Search cases, components, tests …{% endblock %} {% block head %} {% endblock %} {% block badges %}{% for badge in badges %}{{ badge.label }} {{ badge.value }}{% endfor %}{% endblock %} {% block nav %} Overview Components Tests Cases {% endblock %} {% block chips %} {% for status in statuses %} {% endfor %} {% endblock %} {% block footer %}{% for file in files %}{{ file.label }}{% if not loop.last %} · {% endif %}{% endfor %}{% endblock %} {% block content %}

Overview

Every semantic case of the SBML Test Suite which is a timecourse simulation, run with sbmlsim and compared with the expected results within the tolerances of the case, |c - u| <= abs_tol + rel_tol · |c|. A case is run once, in the newest SBML encoding it provides.

Outcomes

{% for row in outcomes %} {% endfor %}
outcomecases sharewhat it means
{{ row.status }} {{ row.n }} {{ row.share }} {{ row.description }}

Environment

{% for key, value in environment.items() %}
{{ key }}
{{ value }}
{% endfor %}

Components

The SBML components a case uses, from its componentTags. A component with failing cases is a part of SBML the simulation does not fully support; a case carries several components, so the counts overlap.

{% for row in components %} {% endfor %}
componentcases passedfailed pass rate
{{ row.tag }} {{ row.n }}{{ row.passed }} {{ row.failed }} {{ row.rate }}

Tests

What a case tests, from its testTags.

{% for row in tests %} {% endfor %}
testcases passedfailed pass rate
{{ row.tag }} {{ row.n }}{{ row.passed }} {{ row.failed }} {{ row.rate }}

Cases ({{ cases | length }})

The chips filter by outcome, the search box by case, component or test.

{% for case in cases %} {% endfor %}
caseoutcome encodingcomponents testsmessage
{{ case.cid }} {{ case.status }} {{ case.encoding }} {{ case.components }} {{ case.tests }} {{ case.message }}
{% endblock %}