From 44911c7c05cf7a2386ce9929664be64699d5d438 Mon Sep 17 00:00:00 2001 From: James Procter Date: Thu, 6 Jul 2023 16:01:54 +0100 Subject: [PATCH] JAL-4220 default threshold for including symbol in consensus is (of course) zero --- src/jalview/analysis/AAFrequency.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/jalview/analysis/AAFrequency.java b/src/jalview/analysis/AAFrequency.java index aa0deed..1d4c85f 100755 --- a/src/jalview/analysis/AAFrequency.java +++ b/src/jalview/analysis/AAFrequency.java @@ -252,7 +252,7 @@ public class AAFrequency return; } - float threshhold = 100; + float threshhold = 0; if (consensus.getThreshold()!=null) { threshhold = consensus.getThreshold().value; -- 1.7.10.2