about summary refs log tree commit diff
path: root/wqflask
diff options
context:
space:
mode:
Diffstat (limited to 'wqflask')
-rwxr-xr-xwqflask/wqflask/templates/index_page.html77
-rw-r--r--wqflask/wqflask/views.py7
2 files changed, 1 insertions, 83 deletions
diff --git a/wqflask/wqflask/templates/index_page.html b/wqflask/wqflask/templates/index_page.html
index 87cf1b45..942776e7 100755
--- a/wqflask/wqflask/templates/index_page.html
+++ b/wqflask/wqflask/templates/index_page.html
@@ -65,12 +65,6 @@
                                         </div>
                                     </div>
                                 </div>
-
-                                <!--  USER HELP   -->
-                                <!--<p >Databases marked with <b>**</b>-->
-                                <!--      suffix are not public yet.<br>-->
-                                <!--     Access requires <a href="/account.html" target=-->
-                                <!--      "_blank" class="fs14">user login</a>.</p>-->
                                 <!--  GET ANY  SEARCH -->
 
                                 <div class="form-group">
@@ -116,12 +110,10 @@
                                 </div>
 
                                 <!--  SEARCH, MAKE DEFAULT -->
-
                                 <div class="form-group">
                                 </div>
 
                                 <input type="hidden" name="FormID" value="searchResult" class="form-control">
-                                <!--!<input type="hidden" name="RISet" value="BXD">-->
                             </div>
                         </fieldset>
                     </form>
@@ -207,40 +199,10 @@
                         <ul>
                           <li><a href="https://github.com/genenetwork/genenetwork2">GN2 Source Code</a></li>
                           <li><a href="https://github.com/genenetwork/genenetwork">GN1 Source Code</a></li>
-                          <!--<li><a href="https://github.com/genenetwork/gn-docs/wiki">GN2 Document Wiki</a></li>-->
                           <li><a href="https://github.com/genenetwork/sysmaintenance">System Maintenance Code</a></li>
                         </ul>
                     </div>
                </section>
-              <!--
-                <section id="tour-info">
-                    <div class="page-header">
-                        <h1>Tour and more info</h1>
-                    </div>
-
-                    <h3>Thirty minute tour</h3>
-                    <p>
-                      Take the 30 minute
-                      GeneNetwork <a href="http://www.genenetwork.org/tutorial/WebQTLTour/" class="fs14">tour</a> that includes screen shots and
-                      typical steps in the analysis.
-                    </p>
-
-                    <h3>Even more info</h3>
-                    <p>
-                      For information about
-                      resources and methods, select the Info buttons next to the Group
-                      and Database fields above.
-                    </p>
-
-                      <p>The <a href="/conditionsofUse.html">conditions</a>
-                      and <a href="/statusandContact.html">contact
-                      </a> pages have information on the status of data sets
-                      and advice on their use and citation.</p>
-
-                </section>
-
-                </section>
-                -->
                 <section id="websites">
                     <div class="page-header">
                         <h1>Links</h1>
@@ -248,7 +210,6 @@
                     <h3>GeneNetwork v2:</h3>
                       <ul>
                         <li><a href="http://genenetwork.org/">Main website</a> at UTHSC</li>
-                        <!--<li><a href="http://test-genenetwork.org/">Testing website</a> at UTHSC</li>-->
                       </ul>
                     <h3>GeneNetwork v1:</h3>
                     <ul>
@@ -258,44 +219,6 @@
                     </ul>
                     <script type="text/javascript" src="//rf.revolvermaps.com/0/0/8.js?i=526mdlpknyd&amp;m=0&amp;c=ff0000&amp;cr1=ffffff&amp;f=arial&amp;l=33" async="async"></script>
                </section>
-
-                <!--<section id="getting-started">
-                    <div class="page-header">
-                        <h1>Getting started</h1>
-                    </div>
-
-                <ol style="font-size:12px;font-family:verdana;color:black">
-                  <li>Select <b>Species</b> (or All)</li>
-
-                  <li>Select <b>Group</b> (a specific sample)</li>
-
-                  <li>Select <b>Type</b> of data:
-
-                    <ul>
-                      <li>Phenotype (traits)</li>
-
-                      <li>Genotype (markers)</li>
-
-                      <li>Expression (mRNAs)</li>
-                    </ul>
-                  </li>
-
-                  <li>Select a <b>Dataset</b></li>
-
-                  <li>Enter terms in the search field: words,
-                  genes, probes, advanced search commands</li>
-
-                  <li>Click the <b>Search</b> button</li>
-
-                  <li>Optional: Use the <b>Make Default</b> button to save your preferences</li>
-                </ol>
-
-                <h3>User Guide</h3>
-                <h5>Read the
-                <a href="http://gn1.genenetwork.org/index4.html">
-                    user guide</a>.</h5>
-
-                </section>-->
             </div>
         </div>
     </div>
diff --git a/wqflask/wqflask/views.py b/wqflask/wqflask/views.py
index 36033d80..baaece2f 100644
--- a/wqflask/wqflask/views.py
+++ b/wqflask/wqflask/views.py
@@ -496,17 +496,12 @@ def show_temp_trait_page():
 def show_trait_page():
     logger.info(request.url)
     template_vars = show_trait.ShowTrait(request.args)
-    #logger.info("js_data before dump:", template_vars.js_data)
     template_vars.js_data = json.dumps(template_vars.js_data,
                                        default=json_default_handler,
                                        indent="   ")
-    # Sorting the keys messes up the ordered dictionary, so don't do that
-                                       #sort_keys=True)
-
-    #logger.info("js_data after dump:", template_vars.js_data)
-    #logger.info("show_trait template_vars:", pf(template_vars.__dict__))
     return render_template("show_trait.html", **template_vars.__dict__)
 
+
 @app.route("/heatmap", methods=('POST',))
 def heatmap_page():
     logger.info("In heatmap, request.form is:", pf(request.form))