diff options
author | BonfaceKilz | 2021-04-28 21:25:01 +0300 |
---|---|---|
committer | BonfaceKilz | 2021-04-28 21:25:01 +0300 |
commit | a68795a639a731e2bdae0a977bccb01f291fc9f7 (patch) | |
tree | c2e7fe278c49f21d83f9fca18bdcad0b58409794 | |
parent | f23a198951e3aa3040b6ae8c28aba0fd34514ebd (diff) | |
download | genenetwork2-a68795a639a731e2bdae0a977bccb01f291fc9f7.tar.gz |
wqflask: views: Delete stale comments
-rw-r--r-- | wqflask/wqflask/views.py | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/wqflask/wqflask/views.py b/wqflask/wqflask/views.py index 319f1270..28ab630f 100644 --- a/wqflask/wqflask/views.py +++ b/wqflask/wqflask/views.py @@ -285,11 +285,7 @@ def gsearch_updating(): logger.info(request.url) result = UpdateGSearch(request.args).__dict__ return result['results'] - # type = request.args['type'] - # if type == "gene": - # return render_template("gsearch_gene_updating.html", **result) - # elif type == "phenotype": - # return render_template("gsearch_pheno.html", **result) + @app.route("/docedit") def docedit(): @@ -864,8 +860,6 @@ def mapping_results_page(): result).__dict__ with Bench("Rendering template"): - #if (gn1_template_vars['mapping_method'] == "gemma") or (gn1_template_vars['mapping_method'] == "plink"): - #gn1_template_vars.pop('qtlresults', None) rendered_template = render_template( "mapping_results.html", **gn1_template_vars) |