2 * Jalview - A Sequence Alignment Editor and Viewer (Version 2.4)
3 * Copyright (C) 2008 AM Waterhouse, J Procter, G Barton, M Clamp, S Searle
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License
7 * as published by the Free Software Foundation; either version 2
8 * of the License, or (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
19 package jalview.schemes;
21 // //////////////////////////////////////////
22 // This does nothing at all at the moment!!!!!!!!!!
24 // ///////////////////////////////////////
25 public class Consensus
33 public Consensus(String mask, double threshold)
39 this.threshold = threshold;
42 public void setMask(String s)
44 this.mask = setNums(s);
46 // for (int i=0; i < mask.length; i++) {
47 // System.out.println(mask[i] + " " + ResidueProperties.aa[mask[i]]);
52 * @deprecated Use {@link #isConserved(int[][],int,int,boolean)} instead
54 public boolean isConserved(int[][] cons2, int col, int size)
56 return isConserved(cons2, col, size, true);
59 public boolean isConserved(int[][] cons2, int col, int size,
65 size -= cons2[col][cons2[col].length - 1];
67 for (int i = 0; i < mask.length; i++)
69 tot += cons2[col][mask[i]];
72 if ((double) tot > ((threshold * size) / 100))
74 // System.out.println("True conserved "+tot+" from "+threshold+" out of
75 // "+size+" : "+maskstr);
82 int[] setNums(String s)
84 int[] out = new int[s.length()];
87 while (i < s.length())
89 out[i] = ResidueProperties.aaIndex[s.charAt(i)];