JAL-4220 default threshold for including symbol in consensus is (of course) zero
authorJames Procter <j.procter@dundee.ac.uk>
Thu, 6 Jul 2023 15:01:54 +0000 (16:01 +0100)
committerJames Procter <j.procter@dundee.ac.uk>
Thu, 6 Jul 2023 15:01:54 +0000 (16:01 +0100)
src/jalview/analysis/AAFrequency.java

index aa0deed..1d4c85f 100755 (executable)
@@ -252,7 +252,7 @@ public class AAFrequency
       return;
     }
 
-    float threshhold = 100;
+    float threshhold = 0;
     if (consensus.getThreshold()!=null)
     {
       threshhold =  consensus.getThreshold().value;