aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.DS_Storebin6148 -> 0 bytes
-rw-r--r--.gitignore1
-rw-r--r--README.md11
-rwxr-xr-xbin/genenetwork22
-rw-r--r--etc/default_settings.py4
-rw-r--r--wqflask/runserver.py1
-rw-r--r--wqflask/utility/tools.py1
-rw-r--r--wqflask/wqflask/static/new/javascript/dataset_menu_structure.json19
-rwxr-xr-x[-rw-r--r--]wqflask/wqflask/templates/show_trait_mapping_tools.html0
9 files changed, 30 insertions, 9 deletions
diff --git a/.DS_Store b/.DS_Store
deleted file mode 100644
index d992942f..00000000
--- a/.DS_Store
+++ /dev/null
Binary files differ
diff --git a/.gitignore b/.gitignore
index 70d0273d..701623e7 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,4 +1,3 @@
-# gitignore
*.pyc
*.orig
*.bak
diff --git a/README.md b/README.md
index 523eeb76..47519118 100644
--- a/README.md
+++ b/README.md
@@ -25,16 +25,15 @@ Once installed GN2 can be run online through a browser interface
genenetwork2
```
-(default is http://localhost:5003/). For full examples (you'll need to
-set a number of environment variables), including running scripts and
-a Python REPL, for example
+(default is http://localhost:5003/). A quick example is
```sh
-env GN2_PROFILE=~/opt/gn-latest GENENETWORK_FILES=~/data/gn2_data ./bin/genenetwork2
+env GN2_PROFILE=~/opt/gn-latest SERVER_PORT=5300 GENENETWORK_FILES=~/data/gn2_data/ ./bin/genenetwork2 ./etc/default_settings.py -gunicorn-dev
```
-see the startup script
-[./bin/genenetwork2](https://github.com/genenetwork/genenetwork2/blob/testing/bin/genenetwork2).
+For full examples (you may need to set a number of environment
+variables), including running scripts and a Python REPL, also see the
+startup script [./bin/genenetwork2](https://github.com/genenetwork/genenetwork2/blob/testing/bin/genenetwork2).
Also Mysql and Elasticsearch need to be running, see
[INSTALL](./doc/README.org).
diff --git a/bin/genenetwork2 b/bin/genenetwork2
index 1c538e86..759c71dc 100755
--- a/bin/genenetwork2
+++ b/bin/genenetwork2
@@ -209,7 +209,7 @@ if [ "$1" = '-gunicorn-prod' ] ; then
echo PYTHONPATH=$PYTHONPATH
if [ -z $SERVER_PORT ]; then echo "ERROR: Provide a SERVER_PORT" ; exit 1 ; fi
PID=$TMPDIR/gunicorn.$USER.pid
- cmd="--bind 0.0.0.0:$SERVER_PORT --pid $PID -k eventlet --workers 20 --keep-alive 1200 --max-requests 1000 --timeout 1200 wsgi"
+ cmd="--bind 0.0.0.0:$SERVER_PORT --pid $PID -k eventlet --workers 20 --keep-alive 6000 --max-requests 1000 --timeout 1200 wsgi"
echo RUNNING gunicorn $cmd
gunicorn $cmd
exit $?
diff --git a/etc/default_settings.py b/etc/default_settings.py
index 55f06a68..64a78686 100644
--- a/etc/default_settings.py
+++ b/etc/default_settings.py
@@ -25,6 +25,10 @@ import os
import sys
GN_VERSION = open("../etc/VERSION","r").read()
+GN_SERVER_URL = "http://localhost:8880/" # REST API server
+
+# ---- MySQL
+
SQL_URI = "mysql://gn2:mysql_password@localhost/db_webqtl_s"
SQL_ALCHEMY_POOL_RECYCLE = 3600
GN_SERVER_URL = "http://localhost:8880/" # REST API server
diff --git a/wqflask/runserver.py b/wqflask/runserver.py
index 7c06356b..15572d97 100644
--- a/wqflask/runserver.py
+++ b/wqflask/runserver.py
@@ -9,6 +9,7 @@
from wqflask import app
+
import logging
import utility.logger
logger = utility.logger.getLogger(__name__ )
diff --git a/wqflask/utility/tools.py b/wqflask/utility/tools.py
index 9354ece6..2914d354 100644
--- a/wqflask/utility/tools.py
+++ b/wqflask/utility/tools.py
@@ -233,6 +233,7 @@ def show_settings():
# Cached values
GN_VERSION = get_setting('GN_VERSION')
HOME = get_setting('HOME')
+SERVER_PORT = get_setting('SERVER_PORT')
WEBSERVER_MODE = get_setting('WEBSERVER_MODE')
GN2_BASE_URL = get_setting('GN2_BASE_URL')
GN2_BRANCH_URL = get_setting('GN2_BRANCH_URL')
diff --git a/wqflask/wqflask/static/new/javascript/dataset_menu_structure.json b/wqflask/wqflask/static/new/javascript/dataset_menu_structure.json
index f9bce083..0f7acc70 100644
--- a/wqflask/wqflask/static/new/javascript/dataset_menu_structure.json
+++ b/wqflask/wqflask/static/new/javascript/dataset_menu_structure.json
@@ -3867,6 +3867,23 @@
"HSNIH-Rat-PL-RSeq-0818",
"HSNIH-Palmer Prelimbic Cortex RNA-Seq (Aug18) rlog"
]
+ ],
+ "Prefrontal Cortex mRNA": [
+ [
+ "864",
+ "HSNIH-Rat-VoLo-RSeq-0818",
+ "HSNIH-Palmer Orbitofrontal Cortex RNA-Seq (Aug18) rlog"
+ ],
+ [
+ "863",
+ "HSNIH-Rat-PL-RSeq-0818",
+ "HSNIH-Palmer Prelimbic Cortex RNA-Seq (Aug18) rlog"
+ ],
+ [
+ "861",
+ "HSNIH-Rat-IL-RSeq-0818",
+ "HSNIH-Palmer Infralimbic Cortex RNA-Seq (Aug18) rlog"
+ ]
]
},
"HSNIH-RGSMC": {
@@ -5779,4 +5796,4 @@
]
}
}
-} \ No newline at end of file
+}
diff --git a/wqflask/wqflask/templates/show_trait_mapping_tools.html b/wqflask/wqflask/templates/show_trait_mapping_tools.html
index 777d4a2d..777d4a2d 100644..100755
--- a/wqflask/wqflask/templates/show_trait_mapping_tools.html
+++ b/wqflask/wqflask/templates/show_trait_mapping_tools.html