diff options
Diffstat (limited to 'wqflask/wqflask/templates/submit_trait.html')
-rw-r--r-- | wqflask/wqflask/templates/submit_trait.html | 101 |
1 files changed, 101 insertions, 0 deletions
diff --git a/wqflask/wqflask/templates/submit_trait.html b/wqflask/wqflask/templates/submit_trait.html new file mode 100644 index 00000000..df6b0bb7 --- /dev/null +++ b/wqflask/wqflask/templates/submit_trait.html @@ -0,0 +1,101 @@ +{% extends "base.html" %} +{% block title %}Trait Submission{% endblock %} +{% block content %} +<!-- Start of body --> + + <div class="container-fluid"> + + {{ flash_me() }} + + <div class="row" style="width: 1400px !important;"> + + <div class="col-xs-5"> + <section id="description"> + <div> + <h2 style="color: #5a5a5a;">Introduction</h2> + <hr> + <p>The trait values that you enter are statistically compared with verified genotypes collected at a set of microsatellite markers in each RI set. The markers are drawn from a set of over 750, but for each set redundant markers have been removed, preferentially retaining those that are most informative.</p> + <p>These error-checked RI mapping data match theoretical expectations for RI strain sets. The cumulative adjusted length of the RI maps are approximately 1400 cM, a value that matches those of both MIT maps and Chromosome Committee Report maps. See our full description of the genetic data collected as part of the WebQTL project.</p> + </div> + </section> + <br> + <section id="description"> + <div> + <h2 style="color: #5a5a5a;">About Your Data</h2> + <hr> + <p>You can open a separate window giving the number of strains for each data set and sample data.</p> + <p>None of your submitted data is copied or stored by this system except during the actual processing of your submission. By the time the reply page displays in your browser, your submission has been cleared from this system.</p> + </div> + </section> + </div> + <div style="padding-left:20px" class="col-xs-6" style="width: 600px !important;"> + <section id="submission_form"> + <div class="form-group"> + <h2 style="color: #5a5a5a;">Trait Submission Form</h2> + <hr> + <div style="padding-bottom: 50px;" class="form-horizontal"> + <h3>1. Choose cross or RI set:</h3> + <br> + <div class="col-xs-2"> + <img src="/static/new/images/step1.gif"> + </div> + <div class="col-xs-10"> + <div class="form-group"> + <label for="species" class="col-xs-2 control-label">Species: </label> + <div class="col-xs-4 controls"> + <select name="species" id="species" class="form-control span3" style="width: 280px !important;"></select> + </div> + </div> + <div class="form-group"> + <label for="group" class="col-xs-2 control-label">Group: </label> + <div class="col-xs-4 controls"> + <select name="group" id="group" class="form-control span3" style="width: 280px !important;"></select> + </div> + </div> + <!-- + <select name="corr_dataset"> + {% for species in species_and_groups %} + <optgroup label="{{ species.species }} ------"> + {% for group in species.groups %} + <option value="{{ group }}"> + {{ group }} + </option> + {% endfor %} + </optgroup> + {% endfor %} + </select> + --> + </div> + </div> + <div style="padding-bottom: 50px;" class="form-horizontal"> + <h3>2. Enter Trait Data:</h3> + <br> + <div class="col-xs-2" style="vertical-align:middle;"> + <img src="/static/new/images/step2.gif"> + </div> + <div class="col-xs-10"> + <div class="form-group"> + <p> + <b>From a File:</b> You can enter data by entering a file name here. The file should contain a series of numbers representing trait values. + The values can be on one line separated by spaces or tabs, or they can be on separate lines. Include one value for each progeny individual + or recombinant inbred line. Represent missing values with a non-numeric character such as "x". If you have chosen a recombinant inbred set, + when you submit your data will be displayed in a form where you can confirm and/or edit them. If you enter a file name here, any data that + you paste into the next section will be ignored. + </p> + <input type="file" name="trait_file" style="border-width: 1px; border-style: solid; border-color: #999999;"> + </div> + </div> + </div> + </section> + </div> + </div> + </div> + +{%endblock%} + +{% block js %} + <script src="/static/new/javascript/dataset_select_menu_orig.js"></script> + <script> + gn_server_url = "{{ gn_server_url }}"; + </script> +{% endblock %} |