aboutsummaryrefslogtreecommitdiff
path: root/wqflask
diff options
context:
space:
mode:
authorBonfaceKilz2021-08-16 11:38:05 +0300
committerBonfaceKilz2021-08-16 11:38:05 +0300
commit2071107566d89a12fe27fdcc94dd16b7b8680f83 (patch)
treeaba3140cfd374b79d87b0c331568bbe7f40a1baf /wqflask
parent7f2a1f9d1b91b9d0d24da56afcfe26197a434af3 (diff)
downloadgenenetwork2-2071107566d89a12fe27fdcc94dd16b7b8680f83.tar.gz
wqflask: views: Remove commented out code blocks
Diffstat (limited to 'wqflask')
-rw-r--r--wqflask/wqflask/views.py28
1 files changed, 0 insertions, 28 deletions
diff --git a/wqflask/wqflask/views.py b/wqflask/wqflask/views.py
index 44560427..08e895cb 100644
--- a/wqflask/wqflask/views.py
+++ b/wqflask/wqflask/views.py
@@ -365,20 +365,6 @@ def wcgna_setup():
return render_template("wgcna_setup.html", **request.form)
-# @app.route("/wgcna_results", methods=('POST',))
-# def wcgna_results():
-# logger.info("In wgcna, request.form is:", request.form)
-# logger.info(request.url)
-# # Start R, load the package and pointers and create the analysis
-# wgcna = wgcna_analysis.WGCNA()
-# # Start the analysis, a wgcnaA object should be a separate long running thread
-# wgcnaA = wgcna.run_analysis(request.form)
-# # After the analysis is finished store the result
-# result = wgcna.process_results(wgcnaA)
-# # Display them using the template
-# return render_template("wgcna_results.html", **result)
-
-
@app.route("/ctl_setup", methods=('POST',))
def ctl_setup():
# We are going to get additional user input for the analysis
@@ -388,20 +374,6 @@ def ctl_setup():
return render_template("ctl_setup.html", **request.form)
-# @app.route("/ctl_results", methods=('POST',))
-# def ctl_results():
-# logger.info("In ctl, request.form is:", request.form)
-# logger.info(request.url)
-# # Start R, load the package and pointers and create the analysis
-# ctl = ctl_analysis.CTL()
-# # Start the analysis, a ctlA object should be a separate long running thread
-# ctlA = ctl.run_analysis(request.form)
-# # After the analysis is finished store the result
-# result = ctl.process_results(ctlA)
-# # Display them using the template
-# return render_template("ctl_results.html", **result)
-
-
@app.route("/intro")
def intro():
doc = Docs("intro", request.args)