{% extends "layout.html" %} {% from "macros.html" import list_out, list_out_bytes, igv_link, ucsc_link, genemania_single_link, ensemble_link, all_link, igv_open_file %} {% block caption %}{% endblock %} {% block title %}Recessive{% endblock %} {% block body %}
{% for r in results %} {{ all_link(r.chrom, r.position, None, r.symbols) }} {% endfor%}
# Symbol C Samples M F Effect Het Alt Qual Location Links
+ {{ loop.index }} {% for symbol in r.symbols %} {% set s = symbol.decode() %} {{ ensemble_link(s) }}{% if not loop.last %}, {% endif %} {% endfor %} {{ r.common | length }} {{ igv_open_file(url_for('bam', accession=query.index + '.bam'), query.index) }} {% if r.inp1 %}{{ igv_open_file(url_for('bam', accession=query.parent1 + '.bam'), "x") }}{% endif %} {% if r.inp2 %}{{ igv_open_file(url_for('bam', accession=query.parent2 + '.bam'), "x") }}{% endif %} {{ r.effect|effects }} {{ r.heterozygot|heterozygosity}} {{ r.ref }}>{{ "ACGTMIDE"[r.typ] }} {{ r.maxqual }} {{ r.chrom }}:{{ r.position }}
{% endblock %}