about summary refs log tree commit diff
path: root/qc_app/templates/samples
diff options
context:
space:
mode:
Diffstat (limited to 'qc_app/templates/samples')
-rw-r--r--qc_app/templates/samples/select-population.html105
-rw-r--r--qc_app/templates/samples/upload-samples.html107
2 files changed, 212 insertions, 0 deletions
diff --git a/qc_app/templates/samples/select-population.html b/qc_app/templates/samples/select-population.html
new file mode 100644
index 0000000..24decb4
--- /dev/null
+++ b/qc_app/templates/samples/select-population.html
@@ -0,0 +1,105 @@
+{%extends "base.html"%}
+{%from "flash_messages.html" import flash_messages%}
+
+{%block title%}Select Grouping/Population{%endblock%}
+
+{%block contents%}
+<h1 class="heading">Select grouping/population</h1>
+
+<div>
+  <p>We organise the samples/cases/strains in a hierarchichal form, starting
+    with <strong>species</strong> at the very top. Under species, we have a
+    grouping in terms of the relevant population
+    (e.g. Inbred populations, cell tissue, etc.)</p>
+</div>
+
+<hr />
+
+<form method="POST" action="{{url_for('samples.select_population')}}">
+  <legend class="heading">select grouping/population</legend>
+  {{flash_messages("error-select-population")}}
+
+  <input type="hidden" name="species_id" value="{{species.SpeciesId}}" />
+  <fieldset>
+    <label for="select:inbredset" class="form-col-1">grouping/population</label>
+    <select id="select:inbredset"
+	    name="inbredset_id"
+	    required="required"
+	    class="form-col-2">
+      <option value="">Select a grouping/population</option>
+      {%for pop in populations%}
+      <option value="{{pop.InbredSetId}}">
+	{{pop.InbredSetName}} ({{pop.FullName}})</option>
+      {%endfor%}
+    </select>
+  </fieldset>
+
+  <fieldset>
+    <input type="submit"
+	   value="select population"
+	   class="btn btn-main form-col-2" />
+  </fieldset>
+</form>
+
+<p style="color:#FE3535; padding-left:20em; font-weight:bolder;">OR</p>
+
+<form method="POST" action="{{url_for('samples.create_population')}}">
+  <legend class="heading">create new grouping/population</legend>
+  {{flash_messages("error-create-population")}}
+
+  <input type="hidden" name="species_id" value="{{species.SpeciesId}}" />
+  <fieldset>
+    <legend>mandatory</legend>
+    <label for="txt:inbredset-name" class="form-col-1">name</label>
+    <input id="txt:inbredset-name"
+	   name="inbredset_name"
+	   type="text"
+	   required="required"
+	   placeholder="Enter grouping/population name"
+	   class="form-col-2" />
+
+    <label for="txt:" class="form-col-1">full name</label>
+    <input id="txt:inbredset-fullname"
+	   name="inbredset_fullname"
+	   type="text"
+	   required = "required"
+	   placeholder="Enter the grouping/population's full name"
+	   class="form-col-2" />
+  </fieldset>
+  <fieldset>
+    <legend>Optional</legend>
+
+    <label for="num:public" class="form-col-1">public?</label>
+    <input id="num:public"
+	   name="public"
+	   type="number"
+	   min="0" max="2" value="2"
+	   class="form-col-2" />
+
+    <label for="txt:inbredset-family" class="form-col-1">family</label>
+    <input id="txt:inbredset-family"
+	   name="inbredset_family"
+	   type="text"
+	   placeholder="I am not sure what this is about."
+	   class="form-col-2" />
+
+    <label for="txtarea:" class="form-col-1">Description</label>
+    <textarea id="txtarea:description"
+	      name="description"
+	      rows="5"
+	      placeholder="Enter a description of this grouping/population"
+	      class="form-col-2"></textarea>
+  </fieldset>
+
+  <fieldset>
+    <input type="submit"
+	   value="create grouping/population"
+	   class="btn btn-main form-col-2" />
+  </fieldset>
+</form>
+
+{%endblock%}
+
+
+{%block javascript%}
+{%endblock%}
diff --git a/qc_app/templates/samples/upload-samples.html b/qc_app/templates/samples/upload-samples.html
new file mode 100644
index 0000000..b19e38c
--- /dev/null
+++ b/qc_app/templates/samples/upload-samples.html
@@ -0,0 +1,107 @@
+{%extends "base.html"%}
+{%from "flash_messages.html" import flash_messages%}
+
+{%block title%}Upload Samples{%endblock%}
+
+{%block css%}
+<style type="text/css">
+  #form-samples {
+      background-color: #D1D1D1;
+  }
+  #form-samples fieldset:nth-child(odd){
+      background-color: white;
+  }
+</style>
+{%endblock%}
+
+{%block contents%}
+<h1 class="heading">upload samples</h1>
+
+{{flash_messages("alert-success")}}
+
+<p>You can now upload a character-separated value (CSV) file that contains
+    details about your samples. The CSV file should have the following fields:
+    <dl>
+      <dt>Name</dt>
+      <dd>The primary name for the sample</dd>
+
+      <dt>Name2</dt>
+      <dd>A secondary name for the sample. This can simply be the same as
+	<strong>Name</strong> above. This field <strong>MUST</strong> contain a
+	value.</dd>
+
+      <dt>Symbol</dt>
+      <dd>A symbol for the sample. Can be an empty field.</dd>
+
+      <dt>Alias</dt>
+      <dd>An alias for the sample. Can be an empty field.</dd>
+    </dl>
+  </p>
+
+<form id="form-samples"
+      method="POST"
+      action="#"
+      enctype="multipart/form-data">
+  <legend class="heading">upload samples</legend>
+  <fieldset>
+    <input type="hidden" name="species_id" value="{{species.SpeciesId}}" />
+    <label class="form-col-1">species:</label>
+    <label class="form-col-2">{{species.SpeciesName}} [{{species.MenuName}}]</label>
+  </fieldset>
+
+  <fieldset>
+    <input type="hidden" name="inbredset_id" value="{{population.InbredSetId}}" />
+    <label class="form-col-1">grouping/population:</label>
+    <label class="form-col-2">{{population.Name}} [{{population.FullName}}]</label>
+  </fieldset>
+
+  <fieldset>
+    <label for="select:separator" class="form-col-1">field separator</label>
+    <select id="select:separator"
+	    name="separator"
+	    required="required"
+	    class="form-col-2">
+      <option value="">Select separator for your file</option>
+      <option value="&#x0009;">TAB</option>
+      <option value="&#x0020;">Space</option>
+      <option value=",">Comma</option>
+      <option value=";">Semicolon</option>
+      <option value="other">Other</option>
+    </select>
+    <input type="text" name="other_separator" class="form-col-2" />
+    <label class="form-col-2">
+      This is the character that separates the fields in your CSV file. If you
+      select "<strong>Other</strong>", then you must provide the separator in
+      the text field provided.
+    </label>
+  </fieldset>
+
+  <fieldset>
+    <label for="txt:delimiter" class="form-col-1">field delimiter</label>
+    <input type="text" name="field_delimiter" class="form-col-2" />
+    <label class="form-col-2">
+      If there is a character delimiting the string texts within particular
+      fields in your CSV, provide the character here. This can be left blank if
+      no such delimiters exist in your file.
+    </label>
+  </fieldset>
+
+  <fieldset>
+    <label for="file_upload" class="form-col-1">select file</label>
+    <input type="file" name="samples_file" id="file_upload"
+	   accept="text/csv, text/tab-separated-values"
+	   class="form-col-2" />
+  </fieldset>
+
+  <fieldset>
+    <input type="submit"
+	   value="upload samples file"
+	   class="btn btn-main form-col-2" />
+  </fieldset>
+</form>
+
+{%endblock%}
+
+
+{%block javascript%}
+{%endblock%}