{% extends "base.html" %}
{% block title %}Pair Scan{% endblock %}
{% block css %}
{% endblock %}
{% block content %}
{{ header("Mapping",
'{}: {}'.format(this_trait.name, this_trait.description_fmt)) }}
Pair Scan
Results
Interval 1 |
LOD |
Interval 2 |
Position |
Flanking Markers |
Position |
Flanking Markers |
Proximal |
Distal |
Proximal |
Distal |
{% for row in table_data %}
{{ row.pos1 }} |
{{ row.proximal1 }} |
{{ row.distal1 }} |
{{ row.lod }} |
{{ row.pos2 }} |
{{ row.proximal2 }} |
{{ row.distal2 }} |
{% endfor %}
{% endblock %}
{% block js %}
{% endblock %}