From 808ae5022fe2de5802f284ea48e32f05656c8246 Mon Sep 17 00:00:00 2001 From: zsloan Date: Sun, 7 Mar 2021 22:33:00 +0000 Subject: Limited Mean for phenotype global search to 3 decimal places --- wqflask/wqflask/gsearch.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wqflask/wqflask/gsearch.py b/wqflask/wqflask/gsearch.py index 46500df8..907f1180 100644 --- a/wqflask/wqflask/gsearch.py +++ b/wqflask/wqflask/gsearch.py @@ -206,7 +206,7 @@ class GSearch(object): else: this_trait['description'] = "N/A" if line[13] != None and line[13] != "": - this_trait['mean'] = line[13] + this_trait['mean'] = f"{line[13]:.3f}" else: this_trait['mean'] = "N/A" this_trait['authors'] = line[7] -- cgit v1.2.3