Record Identifier: {{ sample_name }}
Pipeline name: {{ pipeline_name }}
{% if amendments is not none %}
Amendments: {{ amendments|join(', ') }}
{% endif %}
-
Get files produced by the pipeline run
{% for hr_id, hr in highlighted_results.items() %}
{{ hr["title"]
}}
{% endfor %}
Reported statistics
{% for row_name, row_value in sample_stats.items() %}
{{ row_name }} |
{% if row_value|length > 60 %}
{{ row_value|truncate(60,True) }} |
{% else %}
{{ row_value }} |
{% endif %}
{% endfor %}
{% if links[0] is defined or figures[0] is defined %}
Reported objects
{% endif %}
{% if links[0] is defined %}
Links
- Get a reported object for record
{% for link in links %}
{{ link[0] }}
{% endfor %}
{% endif %}
{% if figures[0] is defined %}
Figures
{% for figure in figures %}
Fig.{{ loop.index }} {{ figure[1] }}
{% endfor %}
{% endif %}