{% extends "layout.html" %}
{% from "macros.html" import list_out, list_out_bytes, igv_link, ucsc_link, genemania_single_link, omim_link, thousandgenomes_link, ensemble_link, dbsnp_link %}
{% block caption %}{% endblock %}
{% block title %}Variant Search{% endblock %}
{% block body %}
Location |
Sample |
Alt |
Genotype |
Quality |
{% for r in results %}
{{r.chrom}}:{{r.position}} |
{{r.sample}} |
{{r.ref}}>{{r.alt}} |
{{r.genotype}} |
{{r.quality}} |
{% endfor%}
Location |
Database |
Alt |
Id |
{% for r in results_db %}
{{r.chrom}}:{{r.position}} |
{{r.database}} |
{{r.alt}} |
{{dbsnp_link(r.id.decode())}} |
{% endfor%}
{% endblock %}