From a85db849660a63b09e5c40f7753d861f47eaaaeb Mon Sep 17 00:00:00 2001
From: Frederick Muriuki Muriithi
Date: Fri, 29 Oct 2021 06:37:24 +0300
Subject: Add missing comma

Issue: https://github.com/genenetwork/gn-gemtext-threads/blob/main/topics/gn1-migration-to-gn2/partial-correlations.gmi
---
 gn3/db/species.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gn3/db/species.py b/gn3/db/species.py
index abcbf64..702a9a8 100644
--- a/gn3/db/species.py
+++ b/gn3/db/species.py
@@ -48,7 +48,7 @@ def translate_to_mouse_gene_id(species: str, geneid: int, conn: Any) -> int:
 
     with conn.cursor as cursor:
         query = {
-            "rat": "SELECT mouse FROM GeneIDXRef WHERE rat = %s"
+            "rat": "SELECT mouse FROM GeneIDXRef WHERE rat = %s",
             "human": "SELECT mouse FROM GeneIDXRef WHERE human = %s"
         }
         cursor.execute(query[species], geneid)
-- 
cgit v1.2.3