aboutsummaryrefslogtreecommitdiff
path: root/gn2/wqflask/metadata_edits.py
diff options
context:
space:
mode:
authorArun Isaac2024-01-02 13:22:23 +0000
committerArun Isaac2024-01-02 13:40:56 +0000
commitee27a5b0e0abcb08ce54fd41a5098522a812f8bd (patch)
tree5c220a41adfd37ea06893a6c518c971c98eccb96 /gn2/wqflask/metadata_edits.py
parent70c4201b332e0e2c0d958428086512f291469b87 (diff)
downloadgenenetwork2-ee27a5b0e0abcb08ce54fd41a5098522a812f8bd.tar.gz
Consistently use GN_VERSION from app config.
GN_VERSION is set in the configuration file and read into the app config dictionary. Use that instead of re-reading from the etc/VERSION file. * gn2/utility/tools.py (gn_version): Delete function. (GN_VERSION): Delete variable. * gn2/wqflask/metadata_edits.py (display_phenotype_metadata, display_probeset_metadata, show_history): Use GN_VERSION in app config. * gn2/wqflask/views.py: Do not import GN_VERSION from gn2.utility.tools. (handle_generic_exceptions, index_page.__render__, submit_trait_form): Use GN_VERSION in app config.
Diffstat (limited to 'gn2/wqflask/metadata_edits.py')
-rw-r--r--gn2/wqflask/metadata_edits.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/gn2/wqflask/metadata_edits.py b/gn2/wqflask/metadata_edits.py
index b9514b35..6bcbd648 100644
--- a/gn2/wqflask/metadata_edits.py
+++ b/gn2/wqflask/metadata_edits.py
@@ -134,7 +134,7 @@ def display_phenotype_metadata(dataset_id: str, name: str):
dataset_id=dataset_id,
name=name,
resource_id=request.args.get("resource-id"),
- version=get_setting("GN_VERSION"),
+ version=current_app.config.get("GN_VERSION"),
dataset_name=request.args["dataset_name"])
@@ -158,7 +158,7 @@ def display_probeset_metadata(name: str):
probeset_id=_d["probeset"]["id_"],
name=name,
resource_id=request.args.get("resource-id"),
- version=get_setting("GN_VERSION"),
+ version=current_app.config.get("GN_VERSION"),
dataset_name=request.args["dataset_name"],
sample_list=sample_list,
sample_data=sample_data
@@ -758,7 +758,7 @@ def show_history(dataset_id: str = "", name: str = ""):
return render_template(
"edit_history.html",
diff={key: set(val) for key,val in diff_data_},
- version=get_setting("GN_VERSION"),
+ version=current_app.config.get("GN_VERSION"),
)
def __authorised_p__(dataset_name, trait_name):