about summary refs log tree commit diff
diff options
context:
space:
mode:
authorFrederick Muriuki Muriithi2026-09-16 11:24:03 -0500
committerFrederick Muriuki Muriithi2026-09-16 11:24:03 -0500
commitacc10cdaf26383b13a43eb773472d6f8eaf2b27e (patch)
tree8b4ba88276e143732fee9f80a695a3f70bf1b36a
parent634eeabdc96356373d32fb3b96d4972278f4568e (diff)
downloadgn-uploader-acc10cdaf26383b13a43eb773472d6f8eaf2b27e.tar.gz
Handle genotype encoding elsewhere in the ingestion pipeline.
-rw-r--r--uploader/templates/genotypes/add-genotypes-records-csv.html74
1 files changed, 0 insertions, 74 deletions
diff --git a/uploader/templates/genotypes/add-genotypes-records-csv.html b/uploader/templates/genotypes/add-genotypes-records-csv.html
index eb0bfd0..10a5427 100644
--- a/uploader/templates/genotypes/add-genotypes-records-csv.html
+++ b/uploader/templates/genotypes/add-genotypes-records-csv.html
@@ -46,80 +46,6 @@
     {{display_preview_table("tbl-preview-geno-records", "genotypes records")}}
   </div>
 </div>
-
-<div class="">
-  <h4 class="subheading">Genotype Encoding</h4>
-  <div class="form-text help-block">
-    <p>The symbols in your genotype file need to be mapped to known values to
-      enable mapping.</p>
-  </div>
-
-  <div class="form-group">
-    <div class="row mb-3">
-      <label for="txt-geno-encoding-mat"
-             class="col-form-label col-sm-2">Maternal</label>
-      <div class="col-sm-10">
-        <div class="input-group">
-        <input type="text"
-               maxlength="3"
-               id="txt-geno-encoding-mat"
-               name="geno_encoding_mat"
-               class="form-control" />
-        <div class="input-group-append">
-          <span class="input-group-text">Value = -1</span>
-        </div>
-        </div>
-      </div>
-      <span class="form-text text-muted col-sm-12">
-        Enter the symbol in your file that represents the allele inherited from
-        the mother. This allele will be mapped to the value -1.</span>
-    </div>
-  </div>
-
-  <div class="form-group">
-    <div class="row mb-3">
-      <label for="txt-geno-encoding-pat"
-             class="col-form-label col-sm-2">Paternal</label>
-      <div class="col-sm-10">
-        <div class="input-group">
-          <input type="text"
-                 maxlength="3"
-                 id="txt-geno-encoding-pat"
-                 name="geno_encoding_pat"
-                 class="form-control" />
-          <div class="input-group-append">
-            <span class="input-group-text">Value = 1</span>
-          </div>
-        </div>
-      </div>
-      <span class="form-text text-muted">
-        Enter the symbol in your file that represents the allele inherited from
-        the father. This allele will be mapped to the value 1.</span>
-    </div>
-  </div>
-
-  <div class="form-group">
-    <div class="row mb-3">
-      <label for="txt-geno-encoding-het"
-             class="col-form-label col-sm-2">Heterozygous (value = 0)</label>
-      <div class="col-sm-10">
-        <div class="input-group">
-          <input type="text"
-                 maxlength="3"
-                 id="txt-geno-encoding-het"
-                 name="geno_encoding_het"
-                 class="form-control" />
-          <div class="input-group-append">
-            <span class="input-group-text">Value = 0</span>
-          </div>
-        </div>
-      </div>
-      <span class="form-text text-muted">
-        Enter the symbol in your file that represents the allele inherited from
-        both parents. This allele will be mapped to the value 0.</span>
-    </div>
-  </div>
-</div>
 {%endblock%}
 
 {%block page_documentation%}