aboutsummaryrefslogtreecommitdiff
path: root/etc/default_settings.py
diff options
context:
space:
mode:
authorpjotrp2016-02-24 09:25:43 +0000
committerPjotr Prins2016-04-20 09:01:42 +0000
commit92fda7557645199276bf4f8a65c40252c4d83c21 (patch)
tree824940fb4a5a768128a8ba4d4a804558628f31d6 /etc/default_settings.py
parente5951ad5f3bb244e4dc53cd04c291dcbdef544a0 (diff)
downloadgenenetwork2-92fda7557645199276bf4f8a65c40252c4d83c21.tar.gz
Settled on the _COMMAND syntax over _RUN
Diffstat (limited to 'etc/default_settings.py')
-rw-r--r--etc/default_settings.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/etc/default_settings.py b/etc/default_settings.py
index 48d3f66b..6a218f26 100644
--- a/etc/default_settings.py
+++ b/etc/default_settings.py
@@ -24,6 +24,6 @@ SECRET_HMAC_CODE = '\x08\xdf\xfa\x93N\x80\xd9\\H@\\\x9f`\x98d^\xb4a;\xc6OM\x946a
# Path overrides for Genenetwork
GENENETWORK_FILES = "../../gn2_data"
-PYLMM_RUN = os.popen("which pylmm_redis").read()
-PLINK_RUN = os.popen("which plink2").read()
-GEMMA_RUN = os.popen("which gemma").read()
+PYLMM_COMMAND = os.popen("which pylmm_redis").read()
+PLINK_COMMAND = os.popen("which plink2").read()
+GEMMA_COMMAND = os.popen("which gemma").read()