about summary refs log tree commit diff
path: root/bin
diff options
context:
space:
mode:
authorFrederick Muriuki Muriithi2021-12-06 17:58:28 +0300
committerzsloan2022-01-29 00:42:44 -0600
commita01033438a85e3097e4ade30e9a208fd5109d4e1 (patch)
tree256aeec8bb4cdaa9101581709568b5506838f791 /bin
parentb9f16a3b28c4d996ac91befa5a919a9e0a7ac981 (diff)
downloadgenenetwork2-a01033438a85e3097e4ade30e9a208fd5109d4e1.tar.gz
Add "Partial Correlations" UI elements on collections page
Issue:
https://github.com/genenetwork/gn-gemtext-threads/blob/main/topics/gn1-migration-to-gn2/partial-correlations.gmi

* Add UI elements to trigger the partial correlations feature
* Connect partial correlation view to the application
* Point to correct application element for gunicorn
Diffstat (limited to 'bin')
-rwxr-xr-xbin/genenetwork22
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/genenetwork2 b/bin/genenetwork2
index 1d645c23..0a2c18cf 100755
--- a/bin/genenetwork2
+++ b/bin/genenetwork2
@@ -192,7 +192,7 @@ if [ "$1" = '-gunicorn-dev' ] ; then
     cd $GN2_BASE_DIR/wqflask
     echo PYTHONPATH=$PYTHONPATH
     if [ -z $SERVER_PORT ]; then echo "ERROR: Provide a SERVER_PORT" ; exit 1 ; fi
-    cmd="--bind 0.0.0.0:$SERVER_PORT --workers=1 --timeout 180 --reload wsgi"
+    cmd="--bind 0.0.0.0:$SERVER_PORT --workers=1 --timeout 180 --reload run_gunicorn:app"
     echo RUNNING gunicorn $cmd
     gunicorn $cmd
     exit $?