diff options
author | Munyoki Kilyungi | 2023-09-05 16:40:08 +0300 |
---|---|---|
committer | Munyoki Kilyungi | 2023-09-05 16:40:08 +0300 |
commit | c78d50fa95b6b92b0d025a4fbb590f4eb1bf0774 (patch) | |
tree | 629ed3e9958fea48f8d5a3c6da8d3cda3fb2c534 | |
parent | 15351c2e5f0e5691b9468d1637efad363d4a825f (diff) | |
download | genenetwork2-c78d50fa95b6b92b0d025a4fbb590f4eb1bf0774.tar.gz |
Remove PYTHONPATH check
Signed-off-by: Munyoki Kilyungi <me@bonfacemunyoki.com>
-rwxr-xr-x | bin/genenetwork2 | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/bin/genenetwork2 b/bin/genenetwork2 index 15fe53ae..6c42c21f 100755 --- a/bin/genenetwork2 +++ b/bin/genenetwork2 @@ -133,10 +133,10 @@ else done <<< "$PYTHONPATH" if [ ! -d "${R_LIBS_SITE}" ] ; then echo "R_LIBS_SITE not valid ${R_LIBS_SITE}" ; exit 1 ; fi fi -if [ -z "${PYTHONPATH}" ] ; then - echo "ERROR PYTHONPATH has not been set - use GN2_PROFILE!" - exit 1 -fi +# if [ -z "${PYTHONPATH}" ] ; then +# echo "ERROR PYTHONPATH has not been set - use GN2_PROFILE!" +# exit 1 +# fi if [ ! -d "${R_LIBS_SITE}" ] ; then echo "ERROR R_LIBS_SITE has not been set correctly (we only allow one path) - use GN2_PROFILE!" echo "Paste into your shell the output of (for example)" |