From d09a9485aebe0fa40c9fed2064a975a7cdd06e87 Mon Sep 17 00:00:00 2001 From: Munyoki Kilyungi Date: Sun, 9 Oct 2022 19:38:13 +0300 Subject: Remove string check for 'None' in HTML template In Jinja, you can use dot notation to check for values. If a value does not exist, you get None by default. * wqflask/base/data_set/dataset.py (Dataset.get_accession_id): Remove returning a string version of None. * wqflask/wqflask/templates/correlation_page.html: Delete `!= 'None'`. --- wqflask/base/data_set/dataset.py | 2 +- wqflask/wqflask/templates/correlation_page.html | 4 ++-- wqflask/wqflask/templates/search_result_page.html | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/wqflask/base/data_set/dataset.py b/wqflask/base/data_set/dataset.py index 69c842ad..b6899278 100644 --- a/wqflask/base/data_set/dataset.py +++ b/wqflask/base/data_set/dataset.py @@ -88,9 +88,9 @@ class DataSet: ) results = cursor.fetchone() + # Returns None by default if this is not executed if results: return str(results[0]) - return "None" def retrieve_other_names(self): """This method fetches the the dataset names in search_result. diff --git a/wqflask/wqflask/templates/correlation_page.html b/wqflask/wqflask/templates/correlation_page.html index 8d83d1a6..29fdc5f1 100644 --- a/wqflask/wqflask/templates/correlation_page.html +++ b/wqflask/wqflask/templates/correlation_page.html @@ -17,8 +17,8 @@
-

Values of record {{ this_trait.name }} in the {{ this_dataset.fullname }} - dataset were compared to all records in the {{ target_dataset.fullname }} +

Values of record {{ this_trait.name }} in the {{ this_dataset.fullname }} + dataset were compared to all records in the {{ target_dataset.fullname }} dataset. The top {{ return_results }} correlations ranked by the {{ formatted_corr_type }} are displayed. You can resort this list by clicking the headers. Select the Record ID to open the trait data and analysis page. diff --git a/wqflask/wqflask/templates/search_result_page.html b/wqflask/wqflask/templates/search_result_page.html index 5bcd17b8..2bcfe92b 100644 --- a/wqflask/wqflask/templates/search_result_page.html +++ b/wqflask/wqflask/templates/search_result_page.html @@ -17,7 +17,7 @@

-

We searched {{ dataset.fullname }} +

We searched {{ dataset.fullname }}
to find all records {% if go_term is not none %} -- cgit v1.2.3