diff options
author | Alexander Kabui | 2021-05-30 13:26:15 +0300 |
---|---|---|
committer | GitHub | 2021-05-30 13:26:15 +0300 |
commit | 0500d974565320bcb6cf92139ed25c3196800032 (patch) | |
tree | 9c2b802b78b4540a341bd090502d8a7711adb8a1 /gn3/computations | |
parent | cd08b40a4c646ec4acc242f9ea93037e7df9966b (diff) | |
download | genenetwork3-0500d974565320bcb6cf92139ed25c3196800032.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) |