diff options
author | Alexander Kabui | 2021-06-20 09:04:55 +0300 |
---|---|---|
committer | Alexander Kabui | 2021-06-20 09:04:55 +0300 |
commit | 864f231bbdbe2c3b3c96b0158a15811ac7790c3f (patch) | |
tree | d0d0eee217c984bd72ecfacc0b131848fcb5b89d /gn3/settings.py | |
parent | b566a8950864a373f95ae2914b862e9846297b2d (diff) | |
download | genenetwork3-864f231bbdbe2c3b3c96b0158a15811ac7790c3f.tar.gz |
make requested changes to biweight
Diffstat (limited to 'gn3/settings.py')
-rw-r--r-- | gn3/settings.py | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/gn3/settings.py b/gn3/settings.py index 2057ce1..bde856d 100644 --- a/gn3/settings.py +++ b/gn3/settings.py @@ -13,9 +13,13 @@ 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") +SQL_URI = os.environ.get( + "SQL_URI", "mysql://webqtlout:webqtlout@localhost/db_webqtl") SECRET_KEY = "password" SQLALCHEMY_TRACK_MODIFICATIONS = False # gn2 results only used in fetching dataset info GN2_BASE_URL = "http://www.genenetwork.org/" + +# biweight script +BIWEIGHT_RSCRIPT = "~/genenetwork3/script/calculate_biweight.R" |