aboutsummaryrefslogtreecommitdiff
path: root/wqflask/base
diff options
context:
space:
mode:
authorFrederick Muriuki Muriithi2023-06-16 12:57:16 +0300
committerFrederick Muriuki Muriithi2023-06-20 13:36:50 +0300
commit286027a1c07c0bf6ca113715f87ee7f1380d09e0 (patch)
tree927664a009db3ff11a912b906bb745e16ca8fb97 /wqflask/base
parent883a7cba581f34eba48978746e2ff8bbb93020d8 (diff)
downloadgenenetwork2-286027a1c07c0bf6ca113715f87ee7f1380d09e0.tar.gz
configs: Fix issues caught by mechanical-rob tests
Diffstat (limited to 'wqflask/base')
-rw-r--r--wqflask/base/data_set/utils.py2
-rw-r--r--wqflask/base/trait.py6
-rw-r--r--wqflask/base/webqtlConfig.py1
3 files changed, 5 insertions, 4 deletions
diff --git a/wqflask/base/data_set/utils.py b/wqflask/base/data_set/utils.py
index 465538af..11391d69 100644
--- a/wqflask/base/data_set/utils.py
+++ b/wqflask/base/data_set/utils.py
@@ -27,7 +27,7 @@ def query_table_timestamp(dataset_type: str):
# computation data and actions
with database_connection() as conn, conn.cursor() as cursor:
- fetch_db_name = parse_db_url(get_setting("SQL_URI"))
+ fetch_db_name = parse_db_url(get_setting(app, "SQL_URI"))
cursor.execute(
"SELECT UPDATE_TIME FROM "
"information_schema.tables "
diff --git a/wqflask/base/trait.py b/wqflask/base/trait.py
index 70afa2cc..3a52e889 100644
--- a/wqflask/base/trait.py
+++ b/wqflask/base/trait.py
@@ -172,13 +172,13 @@ class GeneralTrait:
alias = 'Not available'
if self.symbol:
human_response = requests.get(
- get_setting("GN2_BASE_URL") + "gn3/gene/aliases/" +
+ get_setting(app, "GN2_BASE_URL") + "gn3/gene/aliases/" +
self.symbol.upper())
mouse_response = requests.get(
- get_setting("GN2_BASE_URL") + "gn3/gene/aliases/" +
+ get_setting(app, "GN2_BASE_URL") + "gn3/gene/aliases/" +
self.symbol.capitalize())
other_response = requests.get(
- get_setting("GN2_BASE_URL") + "gn3/gene/aliases/" +
+ get_setting(app, "GN2_BASE_URL") + "gn3/gene/aliases/" +
self.symbol.lower())
if human_response and mouse_response and other_response:
diff --git a/wqflask/base/webqtlConfig.py b/wqflask/base/webqtlConfig.py
index 296bd314..600c6800 100644
--- a/wqflask/base/webqtlConfig.py
+++ b/wqflask/base/webqtlConfig.py
@@ -93,6 +93,7 @@ def init_app(app):
TEMPDIR, child)
WEBQTL_TMPDIR = mkdir_with_temp_dir("/gn2/")
app.config["WEBQTL_TMPDIR"] = WEBQTL_TMPDIR
+ app.config["TMPDIR"] = WEBQTL_TMPDIR
app.config["WEBQTL_CACHEDIR"] = mkdir_with_temp_dir(
f"{WEBQTL_TMPDIR}cache/")