{% extends "genotype/base.html" %} {% block content %}
Sample | Sex | Actions | Result | ||
---|---|---|---|---|---|
Expected | Sequencing | Genotyping | |||
{% if sample.is_ready() %} {{ sample.sample_id }} {% else %} {{ sample.sample_id }} {% endif %} | {{ sample.expected_sex or '' }} | {{ sample.sexes().sequencing or '' }} | {{ sample.sexes().genotyping or '' }} | {% if sample.is_ready() %} Compare {% endif %} |
{% if is_success %}
Matches: {{ sample.matches()|join(', ') }}
{% elif sample.results %}
{% for result in sample.results[:2] %}
{{ result.analysis.sample.sample_id }}
[{{ result.matches }}/{{ result.mismatches }}/{{ result.unknowns }}/51] {% endfor %} {% endif %} |