From 180ffd44916a3701162dcef0268b90e39e2190dd Mon Sep 17 00:00:00 2001 From: Sean Kelly Date: Thu, 5 Oct 2023 15:03:10 -0500 Subject: [PATCH] Fix space --- src/edrn/bmdb/rdf.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/edrn/bmdb/rdf.py b/src/edrn/bmdb/rdf.py index f633d3c..d4c121a 100644 --- a/src/edrn/bmdb/rdf.py +++ b/src/edrn/bmdb/rdf.py @@ -246,7 +246,7 @@ def organs(connection, graph, public): for i in c.fetchall(): pubURI = rdflib.URIRef('{}publications/view/{}'.format(_biomarkerBase, i[0])) graph.add((bosdURI, _bmdb.referencedInPublication, pubURI)) - c .execute( + c.execute( 'SELECT URL FROM biomarker_study_data_resources WHERE biomarker_study_data_id = %s', ((studyID,)) ) for i in c.fetchall(): @@ -320,4 +320,3 @@ def main(): if __name__ == '__main__': main() -