2 * Jalview - A Sequence Alignment Editor and Viewer (Version 2.7)
3 * Copyright (C) 2011 J Procter, AM Waterhouse, J Engelhardt, LM Lui, G Barton, M Clamp, S Searle
5 * This file is part of Jalview.
7 * Jalview is free software: you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
11 * Jalview is distributed in the hope that it will be useful, but
12 * WITHOUT ANY WARRANTY; without even the implied warranty
13 * of MERCHANTABILITY or FITNESS FOR A PARTICULAR
14 * PURPOSE. See the GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License along with Jalview. If not, see <http://www.gnu.org/licenses/>.
18 package jalview.schemes;
20 // //////////////////////////////////////////
21 // This does nothing at all at the moment!!!!!!!!!!
23 // ///////////////////////////////////////
24 public class Consensus
32 public Consensus(String mask, double threshold)
38 this.threshold = threshold;
41 public void setMask(String s)
43 this.mask = setNums(s);
45 // for (int i=0; i < mask.length; i++) {
46 // System.out.println(mask[i] + " " + ResidueProperties.aa[mask[i]]);
51 * @deprecated Use {@link #isConserved(int[][],int,int,boolean)} instead
53 public boolean isConserved(int[][] cons2, int col, int size)
55 return isConserved(cons2, col, size, true);
58 public boolean isConserved(int[][] cons2, int col, int size,
64 size -= cons2[col][cons2[col].length - 1];
66 for (int i = 0; i < mask.length; i++)
68 tot += cons2[col][mask[i]];
71 if ((double) tot > ((threshold * size) / 100))
73 // System.out.println("True conserved "+tot+" from "+threshold+" out of
74 // "+size+" : "+maskstr);
81 int[] setNums(String s)
83 int[] out = new int[s.length()];
86 while (i < s.length())
88 out[i] = ResidueProperties.aaIndex[s.charAt(i)];