diff options
author | pjotrp | 2016-03-01 09:29:24 +0000 |
---|---|---|
committer | Pjotr Prins | 2016-04-20 09:59:48 +0000 |
commit | c52bf79ba92d2a632637536a9ea607c22ef2d9bf (patch) | |
tree | 46d4da1bacc3ad39f98d31fa026066a12de34b6a /bin | |
parent | 8b2598efcf276ef6a1edd06921a9cc28dbfcad14 (diff) | |
download | genenetwork2-c52bf79ba92d2a632637536a9ea607c22ef2d9bf.tar.gz |
GN2_BASE_PATH
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/genenetwork2 | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/bin/genenetwork2 b/bin/genenetwork2 index 682d8b3d..a0a013fc 100755 --- a/bin/genenetwork2 +++ b/bin/genenetwork2 @@ -15,7 +15,8 @@ echo $GN2_BASE_PATH settings=$1 if [ -z $settings ]; then settings=$GN2_BASE_PATH/etc/default_settings.py ; fi if [ ! -e $settings ]; then - settings=$GN2_BASE_PATH/lib/python2.7/site-packages/genenetwork2-2.0-py2.7.egg/etc/default_settings.py + GN2_BASE_PATH=$GN2_BASE_PATH/lib/python2.7/site-packages/genenetwork2-2.0-py2.7.egg + settings=$GN2_BASE_PATH/etc/default_settings.py if [ ! -e $settings ]; then echo "ERROR: can not locate settings file - pass it in the command line" exit 1 |