9115681911de8978de7ea34702abba95ab1e5115
[jalview.git] / src / jalview / schemes / ResidueProperties.java
1 /*
2  * Jalview - A Sequence Alignment Editor and Viewer (Version 2.6)
3  * Copyright (C) 2010 J Procter, AM Waterhouse, G Barton, M Clamp, S Searle
4  * 
5  * This file is part of Jalview.
6  * 
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.
10  * 
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.
15  * 
16  * You should have received a copy of the GNU General Public License along with Jalview.  If not, see <http://www.gnu.org/licenses/>.
17  */
18 package jalview.schemes;
19
20 import java.util.*;
21
22 import java.awt.*;
23
24 public class ResidueProperties
25 {
26   public static Hashtable scoreMatrices = new Hashtable();
27
28   // Stores residue codes/names and colours and other things
29   public static final int[] aaIndex; // aaHash version 2.1.1 and below
30
31   public static final int[] nucleotideIndex;
32
33   public static final Hashtable aa3Hash = new Hashtable();
34
35   public static final Hashtable aa2Triplet = new Hashtable();
36
37   public static final Hashtable nucleotideName = new Hashtable();
38
39   static
40   {
41     aaIndex = new int[255];
42     for (int i = 0; i < 255; i++)
43     {
44       aaIndex[i] = 23;
45     }
46
47     aaIndex['A'] = 0;
48     aaIndex['R'] = 1;
49     aaIndex['N'] = 2;
50     aaIndex['D'] = 3;
51     aaIndex['C'] = 4;
52     aaIndex['Q'] = 5;
53     aaIndex['E'] = 6;
54     aaIndex['G'] = 7;
55     aaIndex['H'] = 8;
56     aaIndex['I'] = 9;
57     aaIndex['L'] = 10;
58     aaIndex['K'] = 11;
59     aaIndex['M'] = 12;
60     aaIndex['F'] = 13;
61     aaIndex['P'] = 14;
62     aaIndex['S'] = 15;
63     aaIndex['T'] = 16;
64     aaIndex['W'] = 17;
65     aaIndex['Y'] = 18;
66     aaIndex['V'] = 19;
67     aaIndex['B'] = 20;
68     aaIndex['Z'] = 21;
69     aaIndex['X'] = 22;
70     aaIndex['U'] = 22;
71     aaIndex['a'] = 0;
72     aaIndex['r'] = 1;
73     aaIndex['n'] = 2;
74     aaIndex['d'] = 3;
75     aaIndex['c'] = 4;
76     aaIndex['q'] = 5;
77     aaIndex['e'] = 6;
78     aaIndex['g'] = 7;
79     aaIndex['h'] = 8;
80     aaIndex['i'] = 9;
81     aaIndex['l'] = 10;
82     aaIndex['k'] = 11;
83     aaIndex['m'] = 12;
84     aaIndex['f'] = 13;
85     aaIndex['p'] = 14;
86     aaIndex['s'] = 15;
87     aaIndex['t'] = 16;
88     aaIndex['w'] = 17;
89     aaIndex['y'] = 18;
90     aaIndex['v'] = 19;
91     aaIndex['b'] = 20;
92     aaIndex['z'] = 21;
93     aaIndex['x'] = 22;
94     aaIndex['u'] = 22; // TODO: selenocystine triplet and codons needed. also
95     // extend subt. matrices
96   }
97
98   static
99   {
100     nucleotideIndex = new int[255];
101     for (int i = 0; i < 255; i++)
102     {
103       nucleotideIndex[i] = 10; // non-nucleotide symbols are all non-gap gaps.
104     }
105
106     nucleotideIndex['A'] = 0;
107     nucleotideIndex['a'] = 0;
108     nucleotideIndex['C'] = 1;
109     nucleotideIndex['c'] = 1;
110     nucleotideIndex['G'] = 2;
111     nucleotideIndex['g'] = 2;
112     nucleotideIndex['T'] = 3;
113     nucleotideIndex['t'] = 3;
114     nucleotideIndex['U'] = 4;
115     nucleotideIndex['u'] = 4;
116     nucleotideIndex['I'] = 5;
117     nucleotideIndex['i'] = 5;
118     nucleotideIndex['X'] = 6;
119     nucleotideIndex['x'] = 6;
120     nucleotideIndex['R'] = 7;
121     nucleotideIndex['r'] = 7;
122     nucleotideIndex['Y'] = 8;
123     nucleotideIndex['y'] = 8;
124     nucleotideIndex['N'] = 9;
125     nucleotideIndex['n'] = 9;
126
127     nucleotideName.put("A", "Adenine");
128     nucleotideName.put("a", "Adenine");
129     nucleotideName.put("G", "Guanine");
130     nucleotideName.put("g", "Guanine");
131     nucleotideName.put("C", "Cytosine");
132     nucleotideName.put("c", "Cytosine");
133     nucleotideName.put("T", "Thymine");
134     nucleotideName.put("t", "Thymine");
135     nucleotideName.put("U", "Uracil");
136     nucleotideName.put("u", "Uracil");
137     nucleotideName.put("I", "Inosine");
138     nucleotideName.put("i", "Inosine");
139     nucleotideName.put("X", "Xanthine");
140     nucleotideName.put("x", "Xanthine");
141     nucleotideName.put("R", "Unknown Purine");
142     nucleotideName.put("r", "Unknown Purine");
143     nucleotideName.put("Y", "Unknown Pyrimidine");
144     nucleotideName.put("y", "Unknown Pyrimidine");
145     nucleotideName.put("N", "Unknown");
146     nucleotideName.put("n", "Unknown");
147   }
148
149   static
150   {
151     aa3Hash.put("ALA", new Integer(0));
152     aa3Hash.put("ARG", new Integer(1));
153     aa3Hash.put("ASN", new Integer(2));
154     aa3Hash.put("ASP", new Integer(3)); // D
155     aa3Hash.put("CYS", new Integer(4));
156     aa3Hash.put("GLN", new Integer(5)); // Q
157     aa3Hash.put("GLU", new Integer(6)); // E
158     aa3Hash.put("GLY", new Integer(7));
159     aa3Hash.put("HIS", new Integer(8));
160     aa3Hash.put("ILE", new Integer(9));
161     aa3Hash.put("LEU", new Integer(10));
162     aa3Hash.put("LYS", new Integer(11));
163     aa3Hash.put("MET", new Integer(12));
164     aa3Hash.put("PHE", new Integer(13));
165     aa3Hash.put("PRO", new Integer(14));
166     aa3Hash.put("SER", new Integer(15));
167     aa3Hash.put("THR", new Integer(16));
168     aa3Hash.put("TRP", new Integer(17));
169     aa3Hash.put("TYR", new Integer(18));
170     aa3Hash.put("VAL", new Integer(19));
171     // IUB Nomenclature for ambiguous peptides
172     aa3Hash.put("ASX", new Integer(20)); // "B";
173     aa3Hash.put("GLX", new Integer(21)); // X
174     aa3Hash.put("XAA", new Integer(22)); // X unknown
175     aa3Hash.put("-", new Integer(23));
176     aa3Hash.put("*", new Integer(23));
177     aa3Hash.put(".", new Integer(23));
178     aa3Hash.put(" ", new Integer(23));
179     aa3Hash.put("Gap", new Integer(23));
180   }
181
182   static
183   {
184     aa2Triplet.put("A", "ALA");
185     aa2Triplet.put("a", "ALA");
186     aa2Triplet.put("R", "ARG");
187     aa2Triplet.put("r", "ARG");
188     aa2Triplet.put("N", "ASN");
189     aa2Triplet.put("n", "ASN");
190     aa2Triplet.put("D", "ASP");
191     aa2Triplet.put("d", "ASP");
192     aa2Triplet.put("C", "CYS");
193     aa2Triplet.put("c", "CYS");
194     aa2Triplet.put("Q", "GLN");
195     aa2Triplet.put("q", "GLN");
196     aa2Triplet.put("E", "GLU");
197     aa2Triplet.put("e", "GLU");
198     aa2Triplet.put("G", "GLY");
199     aa2Triplet.put("g", "GLY");
200     aa2Triplet.put("H", "HIS");
201     aa2Triplet.put("h", "HIS");
202     aa2Triplet.put("I", "ILE");
203     aa2Triplet.put("i", "ILE");
204     aa2Triplet.put("L", "LEU");
205     aa2Triplet.put("l", "LEU");
206     aa2Triplet.put("K", "LYS");
207     aa2Triplet.put("k", "LYS");
208     aa2Triplet.put("M", "MET");
209     aa2Triplet.put("m", "MET");
210     aa2Triplet.put("F", "PHE");
211     aa2Triplet.put("f", "PHE");
212     aa2Triplet.put("P", "PRO");
213     aa2Triplet.put("p", "PRO");
214     aa2Triplet.put("S", "SER");
215     aa2Triplet.put("s", "SER");
216     aa2Triplet.put("T", "THR");
217     aa2Triplet.put("t", "THR");
218     aa2Triplet.put("W", "TRP");
219     aa2Triplet.put("w", "TRP");
220     aa2Triplet.put("Y", "TYR");
221     aa2Triplet.put("y", "TYR");
222     aa2Triplet.put("V", "VAL");
223     aa2Triplet.put("v", "VAL");
224   }
225
226   public static final String[] aa =
227   { "A", "R", "N", "D", "C", "Q", "E", "G", "H", "I", "L", "K", "M", "F",
228       "P", "S", "T", "W", "Y", "V", "B", "Z", "X", "_", "*", ".", " " };
229
230   public static final Color midBlue = new Color(100, 100, 255);
231
232   public static final Vector scaleColours = new Vector();
233
234   static
235   {
236     scaleColours.addElement(new Color(114, 0, 147));
237     scaleColours.addElement(new Color(156, 0, 98));
238     scaleColours.addElement(new Color(190, 0, 0));
239     scaleColours.addElement(Color.red);
240     scaleColours.addElement(new Color(255, 125, 0));
241     scaleColours.addElement(Color.orange);
242     scaleColours.addElement(new Color(255, 194, 85));
243     scaleColours.addElement(Color.yellow);
244     scaleColours.addElement(new Color(255, 255, 181));
245     scaleColours.addElement(Color.white);
246   }
247
248   public static final Color[] taylor =
249   { new Color(204, 255, 0), // A Greenish-yellowy-yellow
250       new Color(0, 0, 255), // R Blueish-bluey-blue
251       new Color(204, 0, 255), // N Blueish-reddy-blue
252       new Color(255, 0, 0), // D Reddish-reddy-red
253       new Color(255, 255, 0), // C Yellowish-yellowy-yellow
254       new Color(255, 0, 204), // Q Reddish-bluey-red
255       new Color(255, 0, 102), // E Blueish-reddy-red
256       new Color(255, 153, 0), // G Yellowy-reddy-yellow
257       new Color(0, 102, 255), // H Greenish-bluey-blue
258       new Color(102, 255, 0), // I Greenish-yellowy-green
259       new Color(51, 255, 0), // L Yellowish-greeny-green
260       new Color(102, 0, 255), // K Reddish-bluey-blue
261       new Color(0, 255, 0), // M Greenish-greeny-green
262       new Color(0, 255, 102), // F Blueish-greeny-green
263       new Color(255, 204, 0), // P Reddish-yellowy-yellow
264       new Color(255, 51, 0), // S Yellowish-reddy-red
265       new Color(255, 102, 0), // T Reddish-yellowy-red
266       new Color(0, 204, 255), // W Blueish-greeny-green
267       new Color(0, 255, 204), // Y Greenish-bluey-green
268       new Color(153, 255, 0), // V Yellowish-greeny-yellow
269       Color.white, // B
270       Color.white, // Z
271       Color.white, // X
272       Color.white, // -
273       Color.white, // *
274       Color.white // .
275   };
276
277   public static final Color[] nucleotide =
278   { new Color(100, 247, 63), // A
279       new Color(255, 179, 64), // C
280       new Color(235, 65, 60), // G
281       new Color(60, 136, 238), // T
282       new Color(60, 136, 238), // U
283       Color.white, // I
284       Color.white, // X
285       Color.white, // R
286       Color.white, // Y
287       Color.white, // N
288       Color.white, // Gap
289   };
290
291   // Zappo
292   public static final Color[] zappo =
293   { Color.pink, // A
294       midBlue, // R
295       Color.green, // N
296       Color.red, // D
297       Color.yellow, // C
298       Color.green, // Q
299       Color.red, // E
300       Color.magenta, // G
301       midBlue,// Color.red, // H
302       Color.pink, // I
303       Color.pink, // L
304       midBlue, // K
305       Color.pink, // M
306       Color.orange, // F
307       Color.magenta, // P
308       Color.green, // S
309       Color.green, // T
310       Color.orange, // W
311       Color.orange, // Y
312       Color.pink, // V
313       Color.white, // B
314       Color.white, // Z
315       Color.white, // X
316       Color.white, // -
317       Color.white, // *
318       Color.white, // .
319       Color.white // ' '
320   };
321
322   // Dunno where I got these numbers from
323   public static final double[] hyd2 =
324   { 0.62, // A
325       0.29, // R
326       -0.90, // N
327       -0.74, // D
328       1.19, // C
329       0.48, // Q
330       -0.40, // E
331       1.38, // G
332       -1.50, // H
333       1.06, // I
334       0.64, // L
335       -0.78, // K
336       0.12, // M
337       -0.85, // F
338       -2.53, // P
339       -0.18, // S
340       -0.05, // T
341       1.08, // W
342       0.81, // Y
343       0.0, // V
344       0.26, // B
345       0.0, // Z
346       0.0 // X
347   };
348
349   public static final double[] helix =
350   { 1.42, 0.98, 0.67, 1.01, 0.70, 1.11, 1.51, 0.57, 1.00, 1.08, 1.21, 1.16,
351       1.45, 1.13, 0.57, 0.77, 0.83, 1.08, 0.69, 1.06, 0.84, 1.31, 1.00, 0.0 };
352
353   public static final double helixmin = 0.57;
354
355   public static final double helixmax = 1.51;
356
357   public static final double[] strand =
358   { 0.83, 0.93, 0.89, 0.54, 1.19, 1.10, 0.37, 0.75, 0.87, 1.60, 1.30, 0.74,
359       1.05, 1.38, 0.55, 0.75, 1.19, 1.37, 1.47, 1.70, 0.72, 0.74, 1.0, 0.0 };
360
361   public static final double strandmin = 0.37;
362
363   public static final double strandmax = 1.7;
364
365   public static final double[] turn =
366   { 0.66, 0.95, 1.56, 1.46, 1.19, 0.98, 0.74, 1.56, 0.95, 0.47, 0.59, 1.01,
367       0.60, 0.60, 1.52, 1.43, 0.96, 0.96, 1.14, 0.50, 1.51, 0.86, 1.00, 0,
368       0 };
369
370   public static final double turnmin = 0.47;
371
372   public static final double turnmax = 1.56;
373
374   public static final double[] buried =
375   { 1.7, 0.1, 0.4, 0.4, 4.6, 0.3, 0.3, 1.8, 0.8, 3.1, 2.4, 0.05, 1.9, 2.2,
376       0.6, 0.8, 0.7, 1.6, 0.5, 2.9, 0.4, 0.3, 1.358, 0.00 };
377
378   public static final double buriedmin = 0.05;
379
380   public static final double buriedmax = 4.6;
381
382   // This is hydropathy index
383   // Kyte, J., and Doolittle, R.F., J. Mol. Biol.
384   // 1157, 105-132, 1982
385   public static final double[] hyd =
386   { 1.8, -4.5, -3.5, -3.5, 2.5, -3.5, -3.5, -0.4, -3.2, 4.5, 3.8, -3.9,
387       1.9, 2.8, -1.6, -0.8, -0.7, -0.9, -1.3, 4.2, -3.5, -3.5, -0.49, 0.0 };
388
389   public static final double hydmax = 4.5;
390
391   public static final double hydmin = -3.9;
392
393   // public static final double hydmax = 1.38;
394   // public static final double hydmin = -2.53;
395   private static final int[][] BLOSUM62 =
396   {
397       { 4, -1, -2, -2, 0, -1, -1, 0, -2, -1, -1, -1, -1, -2, -1, 1, 0, -3,
398           -2, 0, -2, -1, 0, -4 },
399       { -1, 5, 0, -2, -3, 1, 0, -2, 0, -3, -2, 2, -1, -3, -2, -1, -1, -3,
400           -2, -3, -1, 0, -1, -4 },
401       { -2, 0, 6, 1, -3, 0, 0, 0, 1, -3, -3, 0, -2, -3, -2, 1, 0, -4, -2,
402           -3, 3, 0, -1, -4 },
403       { -2, -2, 1, 6, -3, 0, 2, -1, -1, -3, -4, -1, -3, -3, -1, 0, -1, -4,
404           -3, -3, 4, 1, -1, -4 },
405       { 0, 3, -3, -3, 9, -3, -4, -3, -3, -1, -1, -3, -1, -2, -3, -1, -1,
406           -2, -2, -1, -3, -3, -2, -4 },
407       { -1, 1, 0, 0, -3, 5, 2, -2, 0, -3, -2, 1, 0, -3, -1, 0, -1, -2, -1,
408           -2, 0, 3, -1, -4 },
409       { -1, 0, 0, 2, -4, 2, 5, -2, 0, -3, -3, 1, -2, -3, -1, 0, -1, -3, -2,
410           -2, 1, 4, -1, -4 },
411       { 0, -2, 0, -1, -3, -2, -2, 6, -2, -4, -4, -2, -3, -3, -2, 0, -2, -2,
412           -3, -3, -1, -2, -1, -4 },
413       { -2, 0, 1, -1, -3, 0, 0, -2, 8, -3, -3, -1, -2, -1, -2, -1, -2, -2,
414           2, -3, 0, 0, -1, -4 },
415       { -1, -3, -3, -3, -1, -3, -3, -4, -3, 4, 2, -3, 1, 0, -3, -2, -1, -3,
416           -1, 3, -3, -3, -1, -4 },
417       { -1, -2, -3, -4, -1, -2, -3, -4, -3, 2, 4, -2, 2, 0, -3, -2, -1, -2,
418           -1, 1, -4, -3, -1, -4 },
419       { -1, 2, 0, -1, -3, 1, 1, -2, -1, -3, -2, 5, -1, -3, -1, 0, -1, -3,
420           -2, -2, 0, 1, -1, -4 },
421       { -1, -1, -2, -3, -1, 0, -2, -3, -2, 1, 2, -1, 5, 0, -2, -1, -1, -1,
422           -1, 1, -3, -1, -1, -4 },
423       { -2, -3, -3, -3, -2, -3, -3, -3, -1, 0, 0, -3, 0, 6, -4, -2, -2, 1,
424           3, -1, -3, -3, -1, -4 },
425       { -1, -2, -2, -1, -3, -1, -1, -2, -2, -3, -3, -1, -2, -4, 7, -1, -1,
426           -4, -3, -2, -2, -1, -2, -4 },
427       { 1, -1, 1, 0, -1, 0, 0, 0, -1, -2, -2, 0, -1, -2, -1, 4, 1, -3, -2,
428           -2, 0, 0, 0, -4 },
429       { 0, -1, 0, -1, -1, -1, -1, -2, -2, -1, -1, -1, -1, -2, -1, 1, 5, -2,
430           -2, 0, -1, -1, 0, -4 },
431       { -3, -3, -4, -4, -2, -2, -3, -2, -2, -3, -2, -3, -1, 1, -4, -3, -2,
432           11, 2, -3, -4, -3, -2, -4 },
433       { -2, -2, -2, -3, -2, -1, -2, -3, 2, -1, -1, -2, -1, 3, -3, -2, -2,
434           2, 7, -1, -3, -2, -1, -4 },
435       { 0, -3, -3, -3, -1, -2, -2, -3, -3, 3, 1, -2, 1, -1, -2, -2, 0, -3,
436           -1, 4, -3, -2, -1, -4 },
437       { -2, -1, 3, 4, -3, 0, 1, -1, 0, -3, -4, 0, -3, -3, -2, 0, -1, -4,
438           -3, -3, 4, 1, -1, -4 },
439       { -1, 0, 0, 1, -3, 3, 4, -2, 0, -3, -3, 1, -1, -3, -1, 0, -1, -3, -2,
440           -2, 1, 4, -1, -4 },
441       { 0, -1, -1, -1, -2, -1, -1, -1, -1, -1, -1, -1, -1, -1, -2, 0, 0,
442           -2, -1, -1, -1, -1, -1, -4 },
443       { -4, -4, -4, -4, -4, -4, -4, -4, -4, -4, -4, -4, -4, -4, -4, -4, -4,
444           -4, -4, -4, -4, -4, -4, 1 }, };
445
446   static final int[][] PAM250 =
447   {
448       { 2, -2, 0, 0, -2, 0, 0, 1, -1, -1, -2, -1, -1, -3, 1, 1, 1, -6, -3,
449           0, 0, 0, 0, -8 },
450       { -2, 6, 0, -1, -4, 1, -1, -3, 2, -2, -3, 3, 0, -4, 0, 0, -1, 2, -4,
451           -2, -1, 0, -1, -8 },
452       { 0, 0, 2, 2, -4, 1, 1, 0, 2, -2, -3, 1, -2, -3, 0, 1, 0, -4, -2, -2,
453           2, 1, 0, -8 },
454       { 0, -1, 2, 4, -5, 2, 3, 1, 1, -2, -4, 0, -3, -6, -1, 0, 0, -7, -4,
455           -2, 3, 3, -1, -8 },
456       { -2, -4, -4, -5, 12, -5, -5, -3, -3, -2, -6, -5, -5, -4, -3, 0, -2,
457           -8, 0, -2, -4, -5, -3, -8 },
458       { 0, 1, 1, 2, -5, 4, 2, -1, 3, -2, -2, 1, -1, -5, 0, -1, -1, -5, -4,
459           -2, 1, 3, -1, -8 },
460       { 0, -1, 1, 3, -5, 2, 4, 0, 1, -2, -3, 0, -2, -5, -1, 0, 0, -7, -4,
461           -2, 3, 3, -1, -8 },
462       { 1, -3, 0, 1, -3, -1, 0, 5, -2, -3, -4, -2, -3, -5, 0, 1, 0, -7, -5,
463           -1, 0, 0, -1, -8 },
464       { -1, 2, 2, 1, -3, 3, 1, -2, 6, -2, -2, 0, -2, -2, 0, -1, -1, -3, 0,
465           -2, 1, 2, -1, -8 },
466       { -1, -2, -2, -2, -2, -2, -2, -3, -2, 5, 2, -2, 2, 1, -2, -1, 0, -5,
467           -1, 4, -2, -2, -1, -8 },
468       { -2, -3, -3, -4, -6, -2, -3, -4, -2, 2, 6, -3, 4, 2, -3, -3, -2, -2,
469           -1, 2, -3, -3, -1, -8 },
470       { -1, 3, 1, 0, -5, 1, 0, -2, 0, -2, -3, 5, 0, -5, -1, 0, 0, -3, -4,
471           -2, 1, 0, -1, -8 },
472       { -1, 0, -2, -3, -5, -1, -2, -3, -2, 2, 4, 0, 6, 0, -2, -2, -1, -4,
473           -2, 2, -2, -2, -1, -8 },
474       { -3, -4, -3, -6, -4, -5, -5, -5, -2, 1, 2, -5, 0, 9, -5, -3, -3, 0,
475           7, -1, -4, -5, -2, -8 },
476       { 1, 0, 0, -1, -3, 0, -1, 0, 0, -2, -3, -1, -2, -5, 6, 1, 0, -6, -5,
477           -1, -1, 0, -1, -8 },
478       { 1, 0, 1, 0, 0, -1, 0, 1, -1, -1, -3, 0, -2, -3, 1, 2, 1, -2, -3,
479           -1, 0, 0, 0, -8 },
480       { 1, -1, 0, 0, -2, -1, 0, 0, -1, 0, -2, 0, -1, -3, 0, 1, 3, -5, -3,
481           0, 0, -1, 0, -8 },
482       { -6, 2, -4, -7, -8, -5, -7, -7, -3, -5, -2, -3, -4, 0, -6, -2, -5,
483           17, 0, -6, -5, -6, -4, -8 },
484       { -3, -4, -2, -4, 0, -4, -4, -5, 0, -1, -1, -4, -2, 7, -5, -3, -3, 0,
485           10, -2, -3, -4, -2, -8 },
486       { 0, -2, -2, -2, -2, -2, -2, -1, -2, 4, 2, -2, 2, -1, -1, -1, 0, -6,
487           -2, 4, -2, -2, -1, -8 },
488       { 0, -1, 2, 3, -4, 1, 3, 0, 1, -2, -3, 1, -2, -4, -1, 0, 0, -5, -3,
489           -2, 3, 2, -1, -8 },
490       { 0, 0, 1, 3, -5, 3, 3, 0, 2, -2, -3, 0, -2, -5, 0, 0, -1, -6, -4,
491           -2, 2, 3, -1, -8 },
492       { 0, -1, 0, -1, -3, -1, -1, -1, -1, -1, -1, -1, -1, -2, -1, 0, 0, -4,
493           -2, -1, -1, -1, -1, -8 },
494       { -8, -8, -8, -8, -8, -8, -8, -8, -8, -8, -8, -8, -8, -8, -8, -8, -8,
495           -8, -8, -8, -8, -8, -8, 1 }, };
496
497   public static final Hashtable ssHash = new Hashtable(); // stores the number
498   // value of the aa
499
500   static
501   {
502     ssHash.put("H", Color.magenta);
503     ssHash.put("E", Color.yellow);
504     ssHash.put("-", Color.white);
505     ssHash.put(".", Color.white);
506     ssHash.put("S", Color.cyan);
507     ssHash.put("T", Color.blue);
508     ssHash.put("G", Color.pink);
509     ssHash.put("I", Color.pink);
510     ssHash.put("B", Color.yellow);
511   }
512
513   /*
514    * new Color(60, 136, 238), // U Color.white, // I Color.white, // X
515    * Color.white, // R Color.white, // Y Color.white, // N Color.white, // Gap
516    */
517   static final int[][] DNA =
518   {
519   { 10, -8, -8, -8, 1, 0, 0, 0, 0, 0, 1 }, // C
520       { -8, 10, -8, -8, 1, 0, 0, 0, 0, 0, 1 }, // T
521       { -8, -8, 10, -8, 1, 0, 0, 0, 0, 0, 1 }, // A
522       { -8, -8, -8, 10, 1, 0, 0, 0, 0, 0, 1 }, // G
523       { 1, 1, 1, 1, 10, 0, 0, 0, 0, 0, 1 }, // -
524       { 1, 1, 1, 1, 1, 10, 0, 0, 0, 0, 1 }, // -
525       { 1, 1, 1, 1, 1, 0, 10, 0, 0, 0, 1 }, // -
526       { 1, 1, 1, 1, 1, 0, 0, 10, 0, 0, 1 }, // -
527       { 1, 1, 1, 1, 1, 0, 0, 0, 10, 0, 1 }, // -
528       { 1, 1, 1, 1, 1, 0, 0, 0, 0, 10, 1 }, // -
529       { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 }, // -
530   };
531   /**
532    * register matrices in list
533    */
534   static
535   {
536     scoreMatrices.put("BLOSUM62", new ScoreMatrix("BLOSUM62", BLOSUM62, 0));
537     scoreMatrices.put("PAM250", new ScoreMatrix("PAM250", PAM250, 0));
538     scoreMatrices.put("DNA", new ScoreMatrix("DNA", DNA, 1));
539   }
540
541   public static final Color[] pidColours =
542   { midBlue, new Color(153, 153, 255),
543       // Color.lightGray,
544       new Color(204, 204, 255), };
545
546   public static final float[] pidThresholds =
547   { 80, 60, 40, };
548
549   public static Hashtable codonHash = new Hashtable();
550
551   public static Vector Lys = new Vector();
552
553   public static Vector Asn = new Vector();
554
555   public static Vector Gln = new Vector();
556
557   public static Vector His = new Vector();
558
559   public static Vector Glu = new Vector();
560
561   public static Vector Asp = new Vector();
562
563   public static Vector Tyr = new Vector();
564
565   public static Vector Thr = new Vector();
566
567   public static Vector Pro = new Vector();
568
569   public static Vector Ala = new Vector();
570
571   public static Vector Ser = new Vector();
572
573   public static Vector Arg = new Vector();
574
575   public static Vector Gly = new Vector();
576
577   public static Vector Trp = new Vector();
578
579   public static Vector Cys = new Vector();
580
581   public static Vector Ile = new Vector();
582
583   public static Vector Met = new Vector();
584
585   public static Vector Leu = new Vector();
586
587   public static Vector Val = new Vector();
588
589   public static Vector Phe = new Vector();
590
591   public static Vector STOP = new Vector();
592
593   static
594   {
595     codonHash.put("K", Lys);
596     codonHash.put("N", Asn);
597     codonHash.put("Q", Gln);
598     codonHash.put("H", His);
599     codonHash.put("E", Glu);
600     codonHash.put("D", Asp);
601     codonHash.put("Y", Tyr);
602     codonHash.put("T", Thr);
603     codonHash.put("P", Pro);
604     codonHash.put("A", Ala);
605     codonHash.put("S", Ser);
606     codonHash.put("R", Arg);
607     codonHash.put("G", Gly);
608     codonHash.put("W", Trp);
609     codonHash.put("C", Cys);
610     codonHash.put("I", Ile);
611     codonHash.put("M", Met);
612     codonHash.put("L", Leu);
613     codonHash.put("V", Val);
614     codonHash.put("F", Phe);
615     codonHash.put("STOP", STOP);
616   }
617
618   public static Hashtable codonHash2 = new Hashtable();
619
620   static
621   {
622     codonHash2.put("AAA", "K");
623     codonHash2.put("AAG", "K");
624     codonHash2.put("AAC", "N");
625     codonHash2.put("AAT", "N");
626
627     codonHash2.put("CAA", "E");
628     codonHash2.put("CAG", "E");
629     codonHash2.put("CAC", "H");
630     codonHash2.put("CAT", "H");
631
632     codonHash2.put("GAA", "Q");
633     codonHash2.put("GAG", "Q");
634     codonHash2.put("GAC", "D");
635     codonHash2.put("GAT", "D");
636
637     codonHash2.put("TAC", "Y");
638     codonHash2.put("TAT", "Y");
639
640     codonHash2.put("ACA", "T");
641     codonHash2.put("AAG", "T");
642     codonHash2.put("ACC", "T");
643     codonHash2.put("ACT", "T");
644
645     codonHash2.put("CCA", "P");
646     codonHash2.put("CCG", "P");
647     codonHash2.put("CCC", "P");
648     codonHash2.put("CCT", "P");
649
650     codonHash2.put("GCA", "A");
651     codonHash2.put("GCG", "A");
652     codonHash2.put("GCC", "A");
653     codonHash2.put("GCT", "A");
654
655     codonHash2.put("TCA", "S");
656     codonHash2.put("TCG", "S");
657     codonHash2.put("TCC", "S");
658     codonHash2.put("TCT", "S");
659     codonHash2.put("AGC", "S");
660     codonHash2.put("AGT", "S");
661
662     codonHash2.put("AGA", "R");
663     codonHash2.put("AGG", "R");
664     codonHash2.put("CGA", "R");
665     codonHash2.put("CGG", "R");
666     codonHash2.put("CGC", "R");
667     codonHash2.put("CGT", "R");
668
669     codonHash2.put("GGA", "G");
670     codonHash2.put("GGG", "G");
671     codonHash2.put("GGC", "G");
672     codonHash2.put("GGT", "G");
673
674     codonHash2.put("TGA", "*");
675     codonHash2.put("TAA", "*");
676     codonHash2.put("TAG", "*");
677
678     codonHash2.put("TGG", "W");
679
680     codonHash2.put("TGC", "C");
681     codonHash2.put("TGT", "C");
682
683     codonHash2.put("ATA", "I");
684     codonHash2.put("ATC", "I");
685     codonHash2.put("ATT", "I");
686
687     codonHash2.put("ATG", "M");
688
689     codonHash2.put("CTA", "L");
690     codonHash2.put("CTG", "L");
691     codonHash2.put("CTC", "L");
692     codonHash2.put("CTT", "L");
693     codonHash2.put("TTA", "L");
694     codonHash2.put("TTG", "L");
695
696     codonHash2.put("GTA", "V");
697     codonHash2.put("GTG", "V");
698     codonHash2.put("GTC", "V");
699     codonHash2.put("GTT", "V");
700
701     codonHash2.put("TTC", "F");
702     codonHash2.put("TTT", "F");
703   }
704
705   static
706   {
707     Lys.addElement("AAA");
708     Lys.addElement("AAG");
709     Asn.addElement("AAC");
710     Asn.addElement("AAT");
711
712     Gln.addElement("CAA");
713     Gln.addElement("CAG");
714     His.addElement("CAC");
715     His.addElement("CAT");
716
717     Glu.addElement("GAA");
718     Glu.addElement("GAG");
719     Asp.addElement("GAC");
720     Asp.addElement("GAT");
721
722     Tyr.addElement("TAC");
723     Tyr.addElement("TAT");
724
725     Thr.addElement("ACA");
726     Thr.addElement("ACG");
727     Thr.addElement("ACC");
728     Thr.addElement("ACT");
729
730     Pro.addElement("CCA");
731     Pro.addElement("CCG");
732     Pro.addElement("CCC");
733     Pro.addElement("CCT");
734
735     Ala.addElement("GCA");
736     Ala.addElement("GCG");
737     Ala.addElement("GCC");
738     Ala.addElement("GCT");
739
740     Ser.addElement("TCA");
741     Ser.addElement("TCG");
742     Ser.addElement("TCC");
743     Ser.addElement("TCT");
744     Ser.addElement("AGC");
745     Ser.addElement("AGT");
746
747     Arg.addElement("AGA");
748     Arg.addElement("AGG");
749     Arg.addElement("CGA");
750     Arg.addElement("CGG");
751     Arg.addElement("CGC");
752     Arg.addElement("CGT");
753
754     Gly.addElement("GGA");
755     Gly.addElement("GGG");
756     Gly.addElement("GGC");
757     Gly.addElement("GGT");
758
759     STOP.addElement("TGA");
760     STOP.addElement("TAA");
761     STOP.addElement("TAG");
762
763     Trp.addElement("TGG");
764
765     Cys.addElement("TGC");
766     Cys.addElement("TGT");
767
768     Ile.addElement("ATA");
769     Ile.addElement("ATC");
770     Ile.addElement("ATT");
771
772     Met.addElement("ATG");
773
774     Leu.addElement("CTA");
775     Leu.addElement("CTG");
776     Leu.addElement("CTC");
777     Leu.addElement("CTT");
778     Leu.addElement("TTA");
779     Leu.addElement("TTG");
780
781     Val.addElement("GTA");
782     Val.addElement("GTG");
783     Val.addElement("GTC");
784     Val.addElement("GTT");
785
786     Phe.addElement("TTC");
787     Phe.addElement("TTT");
788   }
789
790   // Stores residue codes/names and colours and other things
791   public static Hashtable propHash = new Hashtable();
792
793   public static Hashtable hydrophobic = new Hashtable();
794
795   public static Hashtable polar = new Hashtable();
796
797   public static Hashtable small = new Hashtable();
798
799   public static Hashtable positive = new Hashtable();
800
801   public static Hashtable negative = new Hashtable();
802
803   public static Hashtable charged = new Hashtable();
804
805   public static Hashtable aromatic = new Hashtable();
806
807   public static Hashtable aliphatic = new Hashtable();
808
809   public static Hashtable tiny = new Hashtable();
810
811   public static Hashtable proline = new Hashtable();
812
813   static
814   {
815     hydrophobic.put("I", new Integer(1));
816     hydrophobic.put("L", new Integer(1));
817     hydrophobic.put("V", new Integer(1));
818     hydrophobic.put("C", new Integer(1));
819     hydrophobic.put("A", new Integer(1));
820     hydrophobic.put("G", new Integer(1));
821     hydrophobic.put("M", new Integer(1));
822     hydrophobic.put("F", new Integer(1));
823     hydrophobic.put("Y", new Integer(1));
824     hydrophobic.put("W", new Integer(1));
825     hydrophobic.put("H", new Integer(1));
826     hydrophobic.put("K", new Integer(1));
827     hydrophobic.put("X", new Integer(1));
828     hydrophobic.put("-", new Integer(1));
829     hydrophobic.put("*", new Integer(1));
830     hydrophobic.put("R", new Integer(0));
831     hydrophobic.put("E", new Integer(0));
832     hydrophobic.put("Q", new Integer(0));
833     hydrophobic.put("D", new Integer(0));
834     hydrophobic.put("N", new Integer(0));
835     hydrophobic.put("S", new Integer(0));
836     hydrophobic.put("T", new Integer(0));
837     hydrophobic.put("P", new Integer(0));
838   }
839
840   static
841   {
842     polar.put("Y", new Integer(1));
843     polar.put("W", new Integer(1));
844     polar.put("H", new Integer(1));
845     polar.put("K", new Integer(1));
846     polar.put("R", new Integer(1));
847     polar.put("E", new Integer(1));
848     polar.put("Q", new Integer(1));
849     polar.put("D", new Integer(1));
850     polar.put("N", new Integer(1));
851     polar.put("S", new Integer(1));
852     polar.put("T", new Integer(1));
853     polar.put("X", new Integer(1));
854     polar.put("-", new Integer(1));
855     polar.put("*", new Integer(1));
856     polar.put("I", new Integer(0));
857     polar.put("L", new Integer(0));
858     polar.put("V", new Integer(0));
859     polar.put("C", new Integer(0));
860     polar.put("A", new Integer(0));
861     polar.put("G", new Integer(0));
862     polar.put("M", new Integer(0));
863     polar.put("F", new Integer(0));
864     polar.put("P", new Integer(0));
865   }
866
867   static
868   {
869     small.put("I", new Integer(0));
870     small.put("L", new Integer(0));
871     small.put("V", new Integer(1));
872     small.put("C", new Integer(1));
873     small.put("A", new Integer(1));
874     small.put("G", new Integer(1));
875     small.put("M", new Integer(0));
876     small.put("F", new Integer(0));
877     small.put("Y", new Integer(0));
878     small.put("W", new Integer(0));
879     small.put("H", new Integer(0));
880     small.put("K", new Integer(0));
881     small.put("R", new Integer(0));
882     small.put("E", new Integer(0));
883     small.put("Q", new Integer(0));
884     small.put("D", new Integer(1));
885     small.put("N", new Integer(1));
886     small.put("S", new Integer(1));
887     small.put("T", new Integer(1));
888     small.put("P", new Integer(1));
889     small.put("-", new Integer(1));
890     small.put("*", new Integer(1));
891   }
892
893   static
894   {
895     positive.put("I", new Integer(0));
896     positive.put("L", new Integer(0));
897     positive.put("V", new Integer(0));
898     positive.put("C", new Integer(0));
899     positive.put("A", new Integer(0));
900     positive.put("G", new Integer(0));
901     positive.put("M", new Integer(0));
902     positive.put("F", new Integer(0));
903     positive.put("Y", new Integer(0));
904     positive.put("W", new Integer(0));
905     positive.put("H", new Integer(1));
906     positive.put("K", new Integer(1));
907     positive.put("R", new Integer(1));
908     positive.put("E", new Integer(0));
909     positive.put("Q", new Integer(0));
910     positive.put("D", new Integer(0));
911     positive.put("N", new Integer(0));
912     positive.put("S", new Integer(0));
913     positive.put("T", new Integer(0));
914     positive.put("P", new Integer(0));
915     positive.put("-", new Integer(1));
916     positive.put("*", new Integer(1));
917   }
918
919   static
920   {
921     negative.put("I", new Integer(0));
922     negative.put("L", new Integer(0));
923     negative.put("V", new Integer(0));
924     negative.put("C", new Integer(0));
925     negative.put("A", new Integer(0));
926     negative.put("G", new Integer(0));
927     negative.put("M", new Integer(0));
928     negative.put("F", new Integer(0));
929     negative.put("Y", new Integer(0));
930     negative.put("W", new Integer(0));
931     negative.put("H", new Integer(0));
932     negative.put("K", new Integer(0));
933     negative.put("R", new Integer(0));
934     negative.put("E", new Integer(1));
935     negative.put("Q", new Integer(0));
936     negative.put("D", new Integer(1));
937     negative.put("N", new Integer(0));
938     negative.put("S", new Integer(0));
939     negative.put("T", new Integer(0));
940     negative.put("P", new Integer(0));
941     negative.put("-", new Integer(1));
942     negative.put("*", new Integer(1));
943   }
944
945   static
946   {
947     charged.put("I", new Integer(0));
948     charged.put("L", new Integer(0));
949     charged.put("V", new Integer(0));
950     charged.put("C", new Integer(0));
951     charged.put("A", new Integer(0));
952     charged.put("G", new Integer(0));
953     charged.put("M", new Integer(0));
954     charged.put("F", new Integer(0));
955     charged.put("Y", new Integer(0));
956     charged.put("W", new Integer(0));
957     charged.put("H", new Integer(1));
958     charged.put("K", new Integer(1));
959     charged.put("R", new Integer(1));
960     charged.put("E", new Integer(1));
961     charged.put("Q", new Integer(0));
962     charged.put("D", new Integer(1));
963     charged.put("N", new Integer(0)); // Asparagine is polar but not charged.
964                                       // Alternative would be charged and
965                                       // negative (in basic form)?
966     charged.put("S", new Integer(0));
967     charged.put("T", new Integer(0));
968     charged.put("P", new Integer(0));
969     charged.put("-", new Integer(1));
970     charged.put("*", new Integer(1));
971   }
972
973   static
974   {
975     aromatic.put("I", new Integer(0));
976     aromatic.put("L", new Integer(0));
977     aromatic.put("V", new Integer(0));
978     aromatic.put("C", new Integer(0));
979     aromatic.put("A", new Integer(0));
980     aromatic.put("G", new Integer(0));
981     aromatic.put("M", new Integer(0));
982     aromatic.put("F", new Integer(1));
983     aromatic.put("Y", new Integer(1));
984     aromatic.put("W", new Integer(1));
985     aromatic.put("H", new Integer(1));
986     aromatic.put("K", new Integer(0));
987     aromatic.put("R", new Integer(0));
988     aromatic.put("E", new Integer(0));
989     aromatic.put("Q", new Integer(0));
990     aromatic.put("D", new Integer(0));
991     aromatic.put("N", new Integer(0));
992     aromatic.put("S", new Integer(0));
993     aromatic.put("T", new Integer(0));
994     aromatic.put("P", new Integer(0));
995     aromatic.put("-", new Integer(1));
996     aromatic.put("*", new Integer(1));
997   }
998
999   static
1000   {
1001     aliphatic.put("I", new Integer(1));
1002     aliphatic.put("L", new Integer(1));
1003     aliphatic.put("V", new Integer(1));
1004     aliphatic.put("C", new Integer(0));
1005     aliphatic.put("A", new Integer(0));
1006     aliphatic.put("G", new Integer(0));
1007     aliphatic.put("M", new Integer(0));
1008     aliphatic.put("F", new Integer(0));
1009     aliphatic.put("Y", new Integer(0));
1010     aliphatic.put("W", new Integer(0));
1011     aliphatic.put("H", new Integer(0));
1012     aliphatic.put("K", new Integer(0));
1013     aliphatic.put("R", new Integer(0));
1014     aliphatic.put("E", new Integer(0));
1015     aliphatic.put("Q", new Integer(0));
1016     aliphatic.put("D", new Integer(0));
1017     aliphatic.put("N", new Integer(0));
1018     aliphatic.put("S", new Integer(0));
1019     aliphatic.put("T", new Integer(0));
1020     aliphatic.put("P", new Integer(0));
1021     aliphatic.put("-", new Integer(1));
1022     aliphatic.put("*", new Integer(1));
1023   }
1024
1025   static
1026   {
1027     tiny.put("I", new Integer(0));
1028     tiny.put("L", new Integer(0));
1029     tiny.put("V", new Integer(0));
1030     tiny.put("C", new Integer(0));
1031     tiny.put("A", new Integer(1));
1032     tiny.put("G", new Integer(1));
1033     tiny.put("M", new Integer(0));
1034     tiny.put("F", new Integer(0));
1035     tiny.put("Y", new Integer(0));
1036     tiny.put("W", new Integer(0));
1037     tiny.put("H", new Integer(0));
1038     tiny.put("K", new Integer(0));
1039     tiny.put("R", new Integer(0));
1040     tiny.put("E", new Integer(0));
1041     tiny.put("Q", new Integer(0));
1042     tiny.put("D", new Integer(0));
1043     tiny.put("N", new Integer(0));
1044     tiny.put("S", new Integer(1));
1045     tiny.put("T", new Integer(0));
1046     tiny.put("P", new Integer(0));
1047     tiny.put("-", new Integer(1));
1048     tiny.put("*", new Integer(1));
1049   }
1050
1051   static
1052   {
1053     proline.put("I", new Integer(0));
1054     proline.put("L", new Integer(0));
1055     proline.put("V", new Integer(0));
1056     proline.put("C", new Integer(0));
1057     proline.put("A", new Integer(0));
1058     proline.put("G", new Integer(0));
1059     proline.put("M", new Integer(0));
1060     proline.put("F", new Integer(0));
1061     proline.put("Y", new Integer(0));
1062     proline.put("W", new Integer(0));
1063     proline.put("H", new Integer(0));
1064     proline.put("K", new Integer(0));
1065     proline.put("R", new Integer(0));
1066     proline.put("E", new Integer(0));
1067     proline.put("Q", new Integer(0));
1068     proline.put("D", new Integer(0));
1069     proline.put("N", new Integer(0));
1070     proline.put("S", new Integer(0));
1071     proline.put("T", new Integer(0));
1072     proline.put("P", new Integer(1));
1073     proline.put("-", new Integer(1));
1074     proline.put("*", new Integer(1));
1075   }
1076
1077   static
1078   {
1079     propHash.put("hydrophobic", hydrophobic);
1080     propHash.put("small", small);
1081     propHash.put("positive", positive);
1082     propHash.put("negative", negative);
1083     propHash.put("charged", charged);
1084     propHash.put("aromatic", aromatic);
1085     propHash.put("aliphatic", aliphatic);
1086     propHash.put("tiny", tiny);
1087     propHash.put("proline", proline);
1088     propHash.put("polar", polar);
1089   }
1090
1091   private ResidueProperties()
1092   {
1093   }
1094
1095   public static double getHydmax()
1096   {
1097     return hydmax;
1098   }
1099
1100   public static double getHydmin()
1101   {
1102     return hydmin;
1103   }
1104
1105   public static double[] getHyd()
1106   {
1107     return hyd;
1108   }
1109
1110   public static Hashtable getAA3Hash()
1111   {
1112     return aa3Hash;
1113   }
1114
1115   public static int[][] getDNA()
1116   {
1117     return ResidueProperties.DNA;
1118   }
1119
1120   public static int[][] getBLOSUM62()
1121   {
1122     return ResidueProperties.BLOSUM62;
1123   }
1124
1125   public static int getPAM250(String A1, String A2)
1126   {
1127     return getPAM250(A1.charAt(0), A2.charAt(0));
1128   }
1129
1130   public static int getBLOSUM62(char c1, char c2)
1131   {
1132     int pog = 0;
1133
1134     try
1135     {
1136       int a = aaIndex[c1];
1137       int b = aaIndex[c2];
1138
1139       pog = ResidueProperties.BLOSUM62[a][b];
1140     } catch (Exception e)
1141     {
1142       // System.out.println("Unknown residue in " + A1 + " " + A2);
1143     }
1144
1145     return pog;
1146   }
1147
1148   public static Vector getCodons(String res)
1149   {
1150     if (codonHash.containsKey(res))
1151     {
1152       return (Vector) codonHash.get(res);
1153     }
1154
1155     return null;
1156   }
1157
1158   public static String codonTranslate(String lccodon)
1159   {
1160     String codon = lccodon.toUpperCase();
1161     // all base ambiguity codes yield an 'X' amino acid residue
1162     if (codon.indexOf('X') > -1 || codon.indexOf('N') > -1)
1163     {
1164       return "X";
1165     }
1166     Enumeration e = codonHash.keys();
1167
1168     while (e.hasMoreElements())
1169     {
1170       String key = (String) e.nextElement();
1171       Vector tmp = (Vector) codonHash.get(key);
1172
1173       if (tmp.contains(codon))
1174       {
1175         return key;
1176       }
1177     }
1178
1179     return null;
1180   }
1181
1182   public static int[][] getDefaultPeptideMatrix()
1183   {
1184     return ResidueProperties.getBLOSUM62();
1185   }
1186
1187   public static int[][] getDefaultDnaMatrix()
1188   {
1189     return ResidueProperties.getDNA();
1190   }
1191
1192   /**
1193    * get a ScoreMatrix based on its string name
1194    * 
1195    * @param pwtype
1196    * @return matrix in scoreMatrices with key pwtype or null
1197    */
1198   public static ScoreMatrix getScoreMatrix(String pwtype)
1199   {
1200     Object val = scoreMatrices.get(pwtype);
1201     if (val != null)
1202     {
1203       return (ScoreMatrix) val;
1204     }
1205     return null;
1206   }
1207
1208   public static int getPAM250(char c, char d)
1209   {
1210     int a = aaIndex[c];
1211     int b = aaIndex[d];
1212
1213     int pog = ResidueProperties.PAM250[a][b];
1214
1215     return pog;
1216   }
1217
1218   public static Hashtable toDssp3State;
1219   static
1220   {
1221     toDssp3State = new Hashtable();
1222     toDssp3State.put("H", "H");
1223     toDssp3State.put("E", "E");
1224     toDssp3State.put("C", " ");
1225     toDssp3State.put(" ", " ");
1226     toDssp3State.put("T", " ");
1227     toDssp3State.put("B", "E");
1228     toDssp3State.put("G", "H");
1229     toDssp3State.put("I", "H");
1230     toDssp3State.put("X", " ");
1231   }
1232
1233   /**
1234    * translate from other dssp secondary structure alphabets to 3-state
1235    * 
1236    * @param ssstring
1237    * @return ssstring as a three-state secondary structure assignment.
1238    */
1239   public static String getDssp3state(String ssstring)
1240   {
1241     if (ssstring == null)
1242     {
1243       return null;
1244     }
1245     StringBuffer ss = new StringBuffer();
1246     for (int i = 0; i < ssstring.length(); i++)
1247     {
1248       String ssc = ssstring.substring(i, i + 1);
1249       if (toDssp3State.containsKey(ssc))
1250       {
1251         ss.append((String) toDssp3State.get(ssc));
1252       }
1253       else
1254       {
1255         ss.append(" ");
1256       }
1257     }
1258     return ss.toString();
1259   }
1260
1261   // main method generates perl representation of residue property hash
1262   // / cut here
1263   public static void main(String[] args)
1264   {
1265     Hashtable aa = new Hashtable();
1266     System.out.println("my %aa = {");
1267     // invert property hashes
1268     Enumeration prop = propHash.keys();
1269     while (prop.hasMoreElements())
1270     {
1271       String pname = (String) prop.nextElement();
1272       Hashtable phash = (Hashtable) propHash.get(pname);
1273       Enumeration res = phash.keys();
1274       while (res.hasMoreElements())
1275       {
1276         String rname = (String) res.nextElement();
1277         Vector aprops = (Vector) aa.get(rname);
1278         if (aprops == null)
1279         {
1280           aprops = new Vector();
1281           aa.put(rname, aprops);
1282         }
1283         Integer hasprop = (Integer) phash.get(rname);
1284         if (hasprop.intValue() == 1)
1285         {
1286           aprops.addElement(pname);
1287         }
1288       }
1289     }
1290     Enumeration res = aa.keys();
1291     while (res.hasMoreElements())
1292     {
1293       String rname = (String) res.nextElement();
1294
1295       System.out.print("'" + rname + "' => [");
1296       Enumeration props = ((Vector) aa.get(rname)).elements();
1297       while (props.hasMoreElements())
1298       {
1299         System.out.print("'" + (String) props.nextElement() + "'");
1300         if (props.hasMoreElements())
1301         {
1302           System.out.println(", ");
1303         }
1304       }
1305       System.out.println("]" + (res.hasMoreElements() ? "," : ""));
1306     }
1307     System.out.println("};");
1308   }
1309   // to here
1310 }