aboutsummaryrefslogtreecommitdiff
path: root/uploader/templates/index.html
blob: 028cbfc64e5a4ec052932c9ed4fed1162f5844d0 (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
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{%extends "base.html"%}
{%from "flash_messages.html" import flash_all_messages%}

{%block title%}Home{%endblock%}

{%block pagetitle%}Home{%endblock%}

{%block contents%}

<div class="row">
  {{flash_all_messages()}}
  <div class="explainer">
    <p>Welcome to the <strong>GeneNetwork Data Upload and Quality Control
        System</strong>.</p>
    <p>This tool helps you prepare and upload research data to GeneNetwork for
      analysis.</p>

    <h2 class="heading">Getting Started</h2>
    <p>The sections below explain the features of the system. Review this guide
      to learn how to use the system.</p>

    {%block extrapageinfo%}{%endblock%}

    <h3 class="subheading">Species</h2>

    <p>GeneNetwork supports genetic studies across multiple species (e.g. mice
      [Mus musculus], human [homo sapiens], rats [Rattus norvegicus], etc.) .
      Here you can:</p>
    <ul>
      <li>View all species that are currently supported</li>
      <li>Add new species not yet in the system</li>
    </ul>

    <h3 class="subheading">Populations</h3>

    <p>A "population" refers to a specific subgroup within a species that you’re
      studying (e.g., BXD mice). Here you can:</p>
    <ul>
      <li>View the populations that exist for a selected species</li>
      <li>Add new populations of study for a selected species</li>
    </ul>

    <h3 class="subheading">Samples</h3>

    <p>Manage individual specimens or cases used in your experiments. These
      include:</p>

    <ul>
      <li>Experimental subjects</li>
      <li>Data sources (e.g., tissue samples, clinical cases)</li>
      <li>Strain means (instead of entering multiple BXD1 individuals, for
        example, the mean would be entered for a single BXD1 strain)</li>
    </ul>


    <h3 class="subheading">Genotype Data</h3>

    <p>Upload and review genetic markers and allele encodings for your
      population. Key details:</p>

    <ul>
      <li>Markers are species-level (e.g., mouse SNP databases).</li>
      <li>Allele data is population-specific (tied to your experimental
        samples).</li>
    </ul>

    <p><strong>Requirement</strong>: Samples must already have been registered
      in the system before uploading genotype data.</p>

    <!--

    <h3 class="subheading">Expression Data</h3>

    <p class="text-danger">
      <span class="glyphicon glyphicon-exclamation-sign"></span>
      <strong>TODO</strong>: Document this &hellip;</p>

    <h3 class="subheading">Phenotype Data</h3>

    <p class="text-danger">
      <span class="glyphicon glyphicon-exclamation-sign"></span>
      <strong>TODO</strong>: Document this &hellip;</p>

    <h3 class="subheading">Individual Data</h3>

    <p class="text-danger">
      <span class="glyphicon glyphicon-exclamation-sign"></span>
      <strong>TODO</strong>: Document this &hellip;</p>

    <h3 class="subheading">RNA-Seq Data</h3>

    <p class="text-danger">
      <span class="glyphicon glyphicon-exclamation-sign"></span>
      <strong>TODO</strong>: Document this &hellip;</p>
  </div>
  -->
</div>

{%endblock%}