aboutsummaryrefslogtreecommitdiff
path: root/qc_app/templates/rqtl2/rqtl2-qc-job-results.html
blob: cfa2a9c4cd53f409e09323edb38d49a943e94090 (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
{%extends "base.html"%}
{%from "cli-output.html" import cli_output%}

{%block title%}R/qtl2 bundle: QC job results{%endblock%}

{%block contents%}
<h1 class="heading">R/qtl2 bundle: QC job results</h1>

<div class="explainer">
  <p>The R/qtl2 bundle you uploaded has passed all automated quality-control
    checks successfully.</p>
  <p>You may now continue to load the data into GeneNetwork for the bundle, with
    the following details:</p>
</div>

<form id="form-qc-job-results"
      action="{{url_for('upload.rqtl2.select_dataset_info',
	      species_id=species.SpeciesId,
	      population_id=population.Id)}}"
      method="POST">
  <fieldset>
    <legend>Species</legend>
    <input type="hidden" name="species_id" value="{{species.SpeciesId}}" />

    <span class="form-col-1">Name</span>
    <span class="form-col-2">{{species.Name | capitalize}}</span>

    <span class="form-col-1">Scientific</span>
    <span class="form-col-2">{{species.FullName | capitalize}}</span>
  </fieldset>

  <fieldset>
    <legend>population</legend>
    <input type="hidden" name="population_id" value="{{population.Id}}" />

    <span class="form-col-1">Name</span>
    <span class="form-col-2">{{population.InbredSetName}}</span>

    <span class="form-col-1">Full Name</span>
    <span class="form-col-2">{{population.FullName}}</span>

    <span class="form-col-1">Genetic Type</span>
    <span class="form-col-2">{{population.GeneticType}}</span>

    <span class="form-col-1">Description</span>
    <span class="form-col-2">{{population.Description or "-"}}</span>
  </fieldset>

  <fieldset>
    <legend>R/qtl2 Bundle File</legend>
    <input type="hidden" name="rqtl2_bundle_file" value="{{rqtl2bundle}}" />
    <input type="hidden" name="original-filename" value="{{rqtl2bundleorig}}" />

    <span class="form-col-1">Original Name</span>
    <span class="form-col-2">{{rqtl2bundleorig}}</span>

    <span class="form-col-1">Internal Name</span>
    <span class="form-col-2">{{rqtl2bundle.name[0:25]}}&hellip;</span>
  </fieldset>

  <fieldset>
    <input type="submit" value="continue" class="btn btn-main form-col-2" />
  </fieldset>
</form>

{%endblock%}