blob: ee4a63ef485111b7009d140432f2e24c68a2d9cc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
{%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%}
|