From: James Procter Date: Thu, 6 Jul 2023 15:01:54 +0000 (+0100) Subject: JAL-4220 default threshold for including symbol in consensus is (of course) zero X-Git-Url: http://source.jalview.org/gitweb/?a=commitdiff_plain;h=44911c7c05cf7a2386ce9929664be64699d5d438;p=jalview.git JAL-4220 default threshold for including symbol in consensus is (of course) zero --- 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;