diff options
author | Alexander Kabui | 2022-03-25 15:49:50 +0300 |
---|---|---|
committer | Alexander Kabui | 2022-03-25 15:49:50 +0300 |
commit | 63e3ce06406b90f148384a5f75bb14ba46ccc8b1 (patch) | |
tree | be479c0fb233fc405c7a8c59513178c94b744168 | |
parent | fde38c4a55a4b0a0d13db366a2434815fa378a1e (diff) | |
download | genenetwork3-63e3ce06406b90f148384a5f75bb14ba46ccc8b1.tar.gz |
add rscript variable
-rw-r--r-- | gn3/settings.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/gn3/settings.py b/gn3/settings.py index 6eec2a1..80cc7b4 100644 --- a/gn3/settings.py +++ b/gn3/settings.py @@ -2,6 +2,7 @@ import tempfile import os +import pathlib BCRYPT_SALT = "$2b$12$mxLvu9XRLlIaaSeDxt8Sle" # Change this! DATA_DIR = "" @@ -24,7 +25,9 @@ SECRET_KEY = "password" GN2_BASE_URL = "http://www.genenetwork.org/" -# wgcna script +# R script +R_SCRIPTS = pathlib.Path("./scripts/").absolute() + WGCNA_RSCRIPT = "wgcna_analysis.R" # qtlreaper command REAPER_COMMAND = f"{os.environ.get('GUIX_ENVIRONMENT')}/bin/qtlreaper" |