blob: b73a2c31c9eab5ed3e75f832449e9713c9a51bc2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
{% extends "base.html" %}
{% block title %}Error{% endblock %}
{% block content %}
<!-- Start of body -->
{{ header("An error occurred during mapping") }}
<div class="container">
<p>There is likely an issue with the genotype file associated with this group/RISet. Please contact Zach Sloan (zachary.a.sloan@gmail.com) or Arthur Centeno (acenteno@gmail.com) about the data set in question.</p>
</div>
<!-- End of body -->
{% endblock %}
|