{% extends "layout.html" %} {% block title %}Condition expérimentale : {{ proc_id }} — BEx{% endblock %} {% block page_css %} {% endblock %} {% block content %}
{# ── Breadcrumb ── #} {# ── Hero ── #}
Condition expérimentale

{{ proc_id }}

{% if error %}
{{ error.message }}
{% else %} {# ── Métadonnées ── #} {% if wet_process.metadata is defined and wet_process.metadata %}
Métadonnées
{% for key, value in wet_process.metadata.items() %}
{{ key.replace('_', ' ') }}
{{ value if value is not none and value != '' else '—' }}
{% endfor %}
{% endif %} {# ── Informations générales ── #}
Informations générales
{% for key, value in wet_process.items() %} {% if key != 'metadata' and key != 'steps' %} {% endif %} {% endfor %}
{{ key.replace('_', ' ') }} {{ value if value is not none and value != '' else '—' }}
{# ── Comparaison ── #}
Comparer avec une condition bio-informatique
{% if bi_process_data %} {% if bi_process_data.error %}
{{ bi_process_data.error }}
{% else %}

Bi Process : {{ selected_bi }}

{% for key, value in bi_process_data.items() %} {% if key == 'metadata' and value is mapping %} {% for mk, mv in value.items() %}
{{ mk.replace('_', ' ') }}
{{ mv if mv is not none and mv != '' else '—' }}
{% endfor %} {% elif key != 'steps' %}
{{ key.replace('_', ' ') }}
{{ value if value is not none and value != '' else '—' }}
{% endif %} {% endfor %}
{# Steps du bi process #} {% if bi_process_data.steps is defined %}
{% for step in bi_process_data.steps %} {% endfor %}
NomCommandeVersionSortie
{{ step.name }} {{ step.cmd }} {{ step.version }} {{ step.output if 'output' in step else '—' }}
{% endif %}
{% endif %} {% endif %}
{% endif %}
{% endblock %}