aboutsummaryrefslogtreecommitdiff
path: root/qc_app/templates/rqtl2/rqtl2-qc-job-results.html
blob: 59bc8cddb7cb0da35c4b843956b092fa6608f5b2 (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="row">
  <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>

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

      <span class="form-label">Name</span>
      <span class="form-text">{{species.Name | capitalize}}</span>

      <span class="form-label">Scientific</span>
      <span class="form-text">{{species.FullName | capitalize}}</span>
    </div>

    <div class="form-group">
      <legend>population</legend>
      <input type="hidden" name="population_id" value="{{population.Id}}" />

      <span class="form-label">Name</span>
      <span class="form-text">{{population.InbredSetName}}</span>

      <span class="form-label">Full Name</span>
      <span class="form-text">{{population.FullName}}</span>

      <span class="form-label">Genetic Type</span>
      <span class="form-text">{{population.GeneticType}}</span>

      <span class="form-label">Description</span>
      <span class="form-text">{{population.Description or "-"}}</span>
    </div>

    <div class="form-group">
      <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-label">Original Name</span>
      <span class="form-text">{{rqtl2bundleorig}}</span>

      <span class="form-label">Internal Name</span>
      <span class="form-text">{{rqtl2bundle[0:25]}}&hellip;</span>
    </div>

    <button type="submit" class="btn btn-primary">continue</button>
  </form>
</div>

{%endblock%}