diff options
author | Frederick Muriuki Muriithi | 2022-11-23 07:13:01 +0300 |
---|---|---|
committer | Frederick Muriuki Muriithi | 2022-11-23 07:13:01 +0300 |
commit | 79dc777ccb0811aee6f804c1188f3a0dbd6b9388 (patch) | |
tree | f38fdd9354160e19ad131d0a7f49e5620ceb5f8b | |
parent | 2c39d2e6b939f7c22d794f10ae432798865cb537 (diff) | |
download | genenetwork2-79dc777ccb0811aee6f804c1188f3a0dbd6b9388.tar.gz |
bug: Fix syntax error: missing comma
-rw-r--r-- | wqflask/wqflask/correlation/rust_correlation.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/wqflask/wqflask/correlation/rust_correlation.py b/wqflask/wqflask/correlation/rust_correlation.py index 046acb17..06a8d944 100644 --- a/wqflask/wqflask/correlation/rust_correlation.py +++ b/wqflask/wqflask/correlation/rust_correlation.py @@ -74,7 +74,7 @@ def get_metadata(dataset, traits): "location": __location__(probe_chr, probe_mb), "chr": probe_chr, "mb": probe_mb, - "lrs_location":f'Chr{chr_score}: {mb:{".6f" if mb else ""}}' + "lrs_location":f'Chr{chr_score}: {mb:{".6f" if mb else ""}}', "lrs_chr": chr_score, "lrs_mb": mb |