From 7b011e540871d49a5719dc25d9941472cacc8fc5 Mon Sep 17 00:00:00 2001 From: lltommy Date: Wed, 13 May 2020 18:22:49 +0200 Subject: Adding some more labels and adjusting some queries --- bh20simplewebuploader/main.py | 17 ++++++++++------- 1 file changed, 10 insertions(+), 7 deletions(-) (limited to 'bh20simplewebuploader') diff --git a/bh20simplewebuploader/main.py b/bh20simplewebuploader/main.py index 1a441f0..2aebe80 100644 --- a/bh20simplewebuploader/main.py +++ b/bh20simplewebuploader/main.py @@ -451,8 +451,9 @@ def getDetailsForSeq(): @app.route('/api/getSEQCountbytech', methods=['GET']) def getSEQCountbytech(): query="""SELECT ?tech ?tech_label (count(?fasta) as ?fastaCount) WHERE - {?fasta ?x [ ?tech] - BIND (concat(?tech,"_label") as ?tech_label)} + {?fasta ?x [ ?tech] . + OPTIONAL {?tech ?tech_tmp_label } . + BIND(IF(BOUND(?tech_tmp_label), ?tech_tmp_label,?tech) as ?tech_label)} GROUP BY ?tech ?tech_label ORDER BY DESC (?fastaCount) """ payload = {'query': query, 'format': 'json'} @@ -505,8 +506,9 @@ def getSEQbyLocation(): @app.route('/api/getSEQCountbyLocation', methods=['GET']) def getSEQCountbyLocation(): query="""SELECT ?geoLocation ?geoLocation_label (count(?fasta) as ?fastaCount) WHERE - {?fasta ?x [ ?geoLocation] - BIND (concat(?geoLocation,"_label") as ?geoLocation_label)} + {?fasta ?x [ ?geoLocation] . + Optional {?geoLocation ?geoLocation_tmp_label} + BIND(IF(BOUND(?geoLocation_tmp_label), ?geoLocation_tmp_label, ?geoLocation) as ?geoLocation_label)} GROUP BY ?geoLocation ?geoLocation_label ORDER BY DESC (?fastaCount) """ payload = {'query': query, 'format': 'json'} @@ -521,9 +523,10 @@ def getSEQCountbyLocation(): def getSEQCountbySpecimenSource(): query="""SELECT ?specimen_source ?specimen_source_label (count(?fasta) as ?fastaCount) WHERE {?fasta ?x [ ?specimen_source] - BIND (concat(?specimen_source,"_label") as ?specimen_source_label)} - GROUP BY ?specimen_source ?specimen_source_label - ORDER BY DESC (?fastaCount) + Optional { ?specimen_source ?specimen_source_tmp_label} + BIND(IF(BOUND(?specimen_source_tmp_label), ?specimen_source_tmp_label ,?specimen_source) as ?specimen_source_label)} + GROUP BY ?specimen_source ?specimen_source_label + ORDER BY DESC (?fastaCount) """ payload = {'query': query, 'format': 'json'} r = requests.get(baseURL, params=payload) -- cgit v1.2.3