blob: ee98734b37085a52b5708e5c0f59b3777112a06f (
about) (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
{%extends "samples/base.html"%}
{%from "flash_messages.html" import flash_all_messages%}
{%from "species/macro-select-species.html" import select_species_form%}
{%block title%}Populations{%endblock%}
{%block pagetitle%}Populations{%endblock%}
{%block contents%}
{{flash_all_messages()}}
<div class="row">
<p>GeneNetwork has a selection of different species of organisms to choose from. Within those species, there are the populations of interest for a variety of experiments, from which you, the researcher, picked your samples (or individuals or cases) from. Here you can provide some basic details about your samples.</p>
<p>To start off, we will need to know what species and population your samples belong to. Please provide that information in the next sections.</p>
{{select_species_form(url_for("species.populations.samples.index"), species)}}
</div>
{%endblock%}
{%block javascript%}
<script type="text/javascript" src="/static/js/species.js"></script>
{%endblock%}
|