{% extends "layout.html" %}
{% block caption %}{% endblock %}
{% block title %}Motif{% endblock %}
{% block body %}
-
Parameters
Name | Value |
Case |
{% for sample in query.case %}
{{ sample }}{% if not loop.last %}, {% endif %}
{% endfor %}
|
Case Groups |
{% for group in query.case_groups %}
{{ group }}{% if not loop.last %}, {% endif %}
{% endfor %}
|
Control |
{% for sample in query.control %}
{{ sample }}{% if not loop.last %}, {% endif %}
{% endfor %}
|
Control Groups |
{% for group in query.control_groups %}
{{ group }}{% if not loop.last %}, {% endif %}
{% endfor %}
|
{% endblock %}