diff options
-rw-r--r-- | wqflask/wqflask/correlation/rust_correlation.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/wqflask/wqflask/correlation/rust_correlation.py b/wqflask/wqflask/correlation/rust_correlation.py index f5ee9403..8decbd6c 100644 --- a/wqflask/wqflask/correlation/rust_correlation.py +++ b/wqflask/wqflask/correlation/rust_correlation.py @@ -70,11 +70,11 @@ def get_metadata(dataset, traits): "mean": mean, "description": description, "additive": additive, - "lrs_score": f"{lrs:3.1f}", + "lrs_score": f"{lrs:3.1f}" if lrs else "", "location": __location__(probe_chr, probe_mb), "chr": probe_chr, "mb": probe_mb, - "lrs_location": f"Chr{chr_score}: {mb:.6f}", + "lrs_location":f'Chr{chr_score}: {mb:{".6f" if mb else ""}}' "lrs_chr": chr_score, "lrs_mb": mb |