diff options
-rw-r--r-- | gn3/db/correlations.py | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/gn3/db/correlations.py b/gn3/db/correlations.py index 3d12019..254af10 100644 --- a/gn3/db/correlations.py +++ b/gn3/db/correlations.py @@ -235,8 +235,10 @@ def fetch_tissue_probeset_xref_info( "INNER JOIN TissueProbeSetXRef AS t ON t.Symbol = x.Symbol " "AND t.Mean = x.maxmean") cursor.execute( - query, probeset_freeze_id=probeset_freeze_id, - symbols=tuple(gene_name_list)) + query, { + "probeset_freeze_id": probeset_freeze_id, + "symbols": tuple(gene_name_list) + }) results = cursor.fetchall() |