diff options
author | BonfaceKilz | 2021-09-27 13:59:17 +0300 |
---|---|---|
committer | GitHub | 2021-09-27 13:59:17 +0300 |
commit | 0cbb6ecde0315b7d6f021cb17406f5e5197e8a05 (patch) | |
tree | 0647dddf8b1aa4530476807bfa3a5dfd54a8119f /gn3/settings.py | |
parent | 2cf220a11936125f059dc9b6a494d0f70eac068d (diff) | |
parent | a9fc9814760d205674904f8feb700eadae480fb1 (diff) | |
download | genenetwork3-0cbb6ecde0315b7d6f021cb17406f5e5197e8a05.tar.gz |
Merge pull request #37 from genenetwork/heatmap_generation
Heatmap generation
Diffstat (limited to 'gn3/settings.py')
-rw-r--r-- | gn3/settings.py | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/gn3/settings.py b/gn3/settings.py index f4866d5..9d7bba3 100644 --- a/gn3/settings.py +++ b/gn3/settings.py @@ -24,3 +24,22 @@ GN2_BASE_URL = "http://www.genenetwork.org/" # biweight script BIWEIGHT_RSCRIPT = "~/genenetwork3/scripts/calculate_biweight.R" + +# qtlreaper command +REAPER_COMMAND = "{}/bin/qtlreaper".format(os.environ.get("GUIX_ENVIRONMENT")) + +# genotype files +GENOTYPE_FILES = os.environ.get( + "GENOTYPE_FILES", "{}/genotype_files/genotype".format(os.environ.get("HOME"))) + +# CROSS-ORIGIN SETUP +CORS_ORIGINS = [ + "http://localhost:*", + "http://127.0.0.1:*" +] + +CORS_HEADERS = [ + "Content-Type", + "Authorization", + "Access-Control-Allow-Credentials" +] |