diff options
author | Alexander Kabui | 2021-05-30 13:26:15 +0300 |
---|---|---|
committer | zsloan | 2021-06-18 22:08:04 +0000 |
commit | 07464f44f48895cc31ba2b088d6125e7777e1073 (patch) | |
tree | 59b23a3aae7c955e558c160d1de07d79b8a86196 /gn3/computations | |
parent | 93ab68fe650eed0bb53d77225f47f72e527e48c4 (diff) | |
download | genenetwork3-07464f44f48895cc31ba2b088d6125e7777e1073.tar.gz |
fix index error (#16)
Diffstat (limited to 'gn3/computations')
-rw-r--r-- | gn3/computations/correlations.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gn3/computations/correlations.py b/gn3/computations/correlations.py index 25dd26d..f0ce502 100644 --- a/gn3/computations/correlations.py +++ b/gn3/computations/correlations.py @@ -247,7 +247,7 @@ def fetch_lit_correlation_data( cursor.execute(query_formatter(query, *tuple(reversed(query_values)))) lit_corr_results = cursor.fetchone() - lit_results = (gene_id, lit_corr_results[1])\ + lit_results = (gene_id, lit_corr_results[0])\ if lit_corr_results else (gene_id, 0) return lit_results return (gene_id, 0) |