diff options
author | BonfaceKilz | 2021-05-13 10:58:19 +0300 |
---|---|---|
committer | BonfaceKilz | 2021-05-13 11:18:57 +0300 |
commit | 7ab86429219a2ed5ad7b94f0ce9667dd4c38c56d (patch) | |
tree | 609854b13e95958ee56bf55b91582afe4f234e88 /gn3/settings.py | |
parent | 378d0fc7f4ff5df5e8e77617c37bcef2b26ddf02 (diff) | |
download | genenetwork3-7ab86429219a2ed5ad7b94f0ce9667dd4c38c56d.tar.gz |
Add end-point for running an rQTL program
* gn3/api/general.py (run_r_qtl): New function.
* gn3/settings.py: New variable.
Diffstat (limited to 'gn3/settings.py')
-rw-r--r-- | gn3/settings.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gn3/settings.py b/gn3/settings.py index 7b3ffb7..2057ce1 100644 --- a/gn3/settings.py +++ b/gn3/settings.py @@ -10,6 +10,7 @@ CACHEDIR = "" REDIS_URI = "redis://localhost:6379/0" REDIS_JOB_QUEUE = "GN3::job-queue" TMPDIR = os.environ.get("TMPDIR", tempfile.gettempdir()) +RQTL_WRAPPER = "rqtl_wrapper.R" # SQL confs SQL_URI = os.environ.get("SQL_URI", "mysql://webqtlout:webqtlout@localhost/db_webqtl") |