2 * Jalview - A Sequence Alignment Editor and Viewer
\r
3 * Copyright (C) 2005 AM Waterhouse, J Procter, G Barton, M Clamp, S Searle
\r
5 * This program is free software; you can redistribute it and/or
\r
6 * modify it under the terms of the GNU General Public License
\r
7 * as published by the Free Software Foundation; either version 2
\r
8 * of the License, or (at your option) any later version.
\r
10 * This program is distributed in the hope that it will be useful,
\r
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
\r
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
\r
13 * GNU General Public License for more details.
\r
15 * You should have received a copy of the GNU General Public License
\r
16 * along with this program; if not, write to the Free Software
\r
17 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
\r
19 package jalview.datamodel;
\r
21 import jalview.schemes.*;
\r
29 * @version $Revision$
\r
31 public class BinarySequence extends Sequence
\r
37 * Creates a new BinarySequence object.
\r
39 * @param s DOCUMENT ME!
\r
41 public BinarySequence(String s)
\r
43 super("", s, 0, s.length());
\r
49 public void encode()
\r
51 // Set all matrix to 0
\r
52 dbinary = new double[getSequence().length() * 21];
\r
56 for (int i = 0; i < dbinary.length; i++)
\r
61 for (int i = 0; i < getSequence().length(); i++)
\r
67 aanum = ((Integer) ResidueProperties.getAAHash().get(getSequence()
\r
69 i + 1))).intValue();
\r
71 catch (NullPointerException e)
\r
81 dbinary[(i * nores) + aanum] = 1.0;
\r
88 public void blosumEncode()
\r
90 // Set all matrix to 0
\r
91 dbinary = new double[getSequence().length() * 21];
\r
95 //for (int i = 0; i < dbinary.length; i++) {
\r
96 // dbinary[i] = 0.0;
\r
98 for (int i = 0; i < getSequence().length(); i++)
\r
104 aanum = ((Integer) ResidueProperties.getAAHash().get(getSequence()
\r
106 i + 1))).intValue();
\r
108 catch (NullPointerException e)
\r
118 // Do the blosum thing
\r
119 for (int j = 0; j < 20; j++)
\r
121 dbinary[(i * nores) + j] = ResidueProperties.getBLOSUM62()[aanum][j];
\r
129 * @return DOCUMENT ME!
\r
131 public String toBinaryString()
\r
135 for (int i = 0; i < binary.length; i++)
\r
137 out += (new Integer(binary[i])).toString();
\r
139 if (i < (binary.length - 1))
\r
151 * @return DOCUMENT ME!
\r
153 public double[] getDBinary()
\r