aboutsummaryrefslogtreecommitdiff
path: root/wqflask
diff options
context:
space:
mode:
authorFrederick Muriuki Muriithi2022-01-31 05:28:05 +0300
committerzsloan2022-02-07 22:57:50 -0600
commitb5bf6432dbf3a75e2306c03aced4180b020304c9 (patch)
treea3c8ce0ffb62bef9e4d5ce88de9ff527c1e602cd /wqflask
parent6683c13d838de422e2bbc7693907085dee45827d (diff)
downloadgenenetwork2-b5bf6432dbf3a75e2306c03aced4180b020304c9.tar.gz
Add 'api' to root of partial correlations URL
Add api to the root of the partial correlations URL, making it: /api/correlations/partial rather than: /correlations/partial
Diffstat (limited to 'wqflask')
-rw-r--r--wqflask/wqflask/partial_correlations_views.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/wqflask/wqflask/partial_correlations_views.py b/wqflask/wqflask/partial_correlations_views.py
index f3ec0f78..6bc5efee 100644
--- a/wqflask/wqflask/partial_correlations_views.py
+++ b/wqflask/wqflask/partial_correlations_views.py
@@ -263,4 +263,4 @@ def partial_correlations():
return render_template(
"partial_correlations.html", **args_dict, target_dbs=target_dbs,
- corr_results=corr_results, part_corr_url=f"{GN_SERVER_URL}correlation/partial")
+ corr_results=corr_results, part_corr_url=f"{GN_SERVER_URL}api/correlation/partial")