X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fjalview%2Fschemes%2FConsensus.java;fp=src%2Fjalview%2Fschemes%2FConsensus.java;h=f0d1990ee6622dd0636f26db05dcdf9111141ad8;hb=a83adb45bdf9554e270921b4baad94defd314b36;hp=9d2c7384500332292ee632e5e26a16baab381975;hpb=d4ec118f86b5c9dee801e743c46aaacc7bb521d1;p=jalview.git diff --git a/src/jalview/schemes/Consensus.java b/src/jalview/schemes/Consensus.java index 9d2c738..f0d1990 100755 --- a/src/jalview/schemes/Consensus.java +++ b/src/jalview/schemes/Consensus.java @@ -53,10 +53,8 @@ public class Consensus /** * @deprecated Use {@link #isConserved(int[][],int,int,boolean)} instead */ - @Deprecated public boolean isConserved(int[][] cons2, int col, int size) { - System.out.println("DEPRECATED!!!!"); return isConserved(cons2, col, size, true); } @@ -73,7 +71,7 @@ public class Consensus tot += cons2[col][mask[i]]; } - if (tot > ((threshold * size) / 100)) + if ((double) tot > ((threshold * size) / 100)) { // System.out.println("True conserved "+tot+" from "+threshold+" out of // "+size+" : "+maskstr);