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.analysis;
\r
21 import jalview.datamodel.*;
\r
27 * Calculates conservation values for a given set of sequences
\r
30 * @version $Revision$
\r
32 public class Conservation
\r
37 Vector seqNums; // vector of int vectors where first is sequence checksum
\r
38 int maxLength = 0; // used by quality calcs
\r
39 boolean seqNumsChanged = false; // updated after any change via calcSeqNum;
\r
40 Vector total = new Vector();
\r
42 /** Stores calculated quality values */
\r
43 public Vector quality;
\r
45 /** Stores maximum and minimum values of quality values */
\r
46 public Double[] qualityRange = new Double[2];
\r
47 String consString = "";
\r
48 Sequence consSequence;
\r
55 * Creates a new Conservation object.
\r
57 * @param name Name of conservation
\r
58 * @param propHash DOCUMENT ME!
\r
59 * @param threshold to count the residues in residueHash(). commonly used value is 3
\r
60 * @param sequences sequences to be used in calculation
\r
61 * @param start start residue position
\r
62 * @param end end residue position
\r
64 public Conservation(String name, Hashtable propHash, int threshold,
\r
65 Vector sequences, int start, int end)
\r
68 this.propHash = propHash;
\r
69 this.threshold = threshold;
\r
70 this.sequences = sequences;
\r
73 seqNums = new Vector(sequences.size());
\r
80 private void calcSeqNums()
\r
82 int i=0, iSize=sequences.size();
\r
83 for (i=0; i < iSize; i++)
\r
92 * @param i DOCUMENT ME!
\r
94 private void calcSeqNum(int i)
\r
96 String sq = null; // for dumb jbuilder not-inited exception warning
\r
99 if ((i > -1) && (i < sequences.size()))
\r
101 sq = ((SequenceI) sequences.elementAt(i)).getSequence();
\r
103 if (seqNums.size() <= i)
\r
105 seqNums.addElement(new int[sq.length() + 1]);
\r
108 if (sq.hashCode() != ((int[]) seqNums.elementAt(i))[0])
\r
112 seqNumsChanged = true;
\r
113 sq = ((SequenceI) sequences.elementAt(i)).getSequence();
\r
116 if (maxLength < len)
\r
121 sqnum = new int[len + 1]; // better to always make a new array - sequence can change its length
\r
122 sqnum[0] = sq.hashCode();
\r
124 for (j = 1; j <= len; j++)
\r
126 sqnum[j] = ((Integer) jalview.schemes.ResidueProperties.aaHash.get(String.valueOf(
\r
127 sq.charAt(j - 1)))).intValue(); // yuk - JBPNote - case taken care of in aaHash
\r
130 seqNums.setElementAt(sqnum, i);
\r
135 // JBPNote INFO level debug
\r
136 System.err.println(
\r
137 "ERROR: calcSeqNum called with out of range sequence index for Alignment\n");
\r
142 * Calculates the conservation values for given set of sequences
\r
144 public void calculate()
\r
146 Hashtable resultHash, residueHash, ht;
\r
147 int count, thresh, j, jSize = sequences.size();
\r
148 String type, res=null;
\r
149 SequenceI sequence;
\r
151 Enumeration enumeration, enumeration2;
\r
153 for (int i = start; i <= end; i++)
\r
155 resultHash = new Hashtable();
\r
156 residueHash = new Hashtable();
\r
158 for (j = 0; j < jSize; j++)
\r
160 // JBPNote - have to make sure elements of the sequences vector
\r
161 // are tested like this everywhere...
\r
162 sequence = (Sequence) sequences.elementAt(j);
\r
164 if (sequence.getLength() > i)
\r
166 c = sequence.getCharAt(i);
\r
168 if(jalview.util.Comparison.isGap(c))
\r
171 if ('a' <= c && c <= 'z')
\r
173 // TO UPPERCASE !!!
\r
174 //Faster than toUpperCase
\r
178 res = String.valueOf( c );
\r
181 if (residueHash.containsKey(res))
\r
183 count = ((Integer) residueHash.get(res)).intValue();
\r
185 residueHash.put(res, new Integer(count));
\r
189 residueHash.put(res, new Integer(1));
\r
194 if (residueHash.containsKey("-"))
\r
196 count = ((Integer) residueHash.get("-")).intValue();
\r
198 residueHash.put("-", new Integer(count));
\r
202 residueHash.put("-", new Integer(1));
\r
207 //What is the count threshold to count the residues in residueHash()
\r
208 thresh = (threshold * (sequences.size())) / 100;
\r
210 //loop over all the found residues
\r
211 enumeration = residueHash.keys();
\r
213 while (enumeration.hasMoreElements())
\r
215 res = (String) enumeration.nextElement();
\r
217 if (((Integer) residueHash.get(res)).intValue() > thresh)
\r
219 //Now loop over the properties
\r
220 enumeration2 = propHash.keys();
\r
222 while (enumeration2.hasMoreElements())
\r
224 type = (String) enumeration2.nextElement();
\r
225 ht = (Hashtable) propHash.get(type);
\r
227 //Have we ticked this before?
\r
228 if (!resultHash.containsKey(type))
\r
230 if (ht.containsKey(res))
\r
232 resultHash.put(type, ht.get(res));
\r
236 resultHash.put(type, ht.get("-"));
\r
239 else if (((Integer) resultHash.get(type)).equals(
\r
240 (Integer) ht.get(res)) == false)
\r
242 resultHash.put(type, new Integer(-1));
\r
248 total.addElement(resultHash);
\r
255 * returns gap count in int[0], and conserved residue count in int[1]
\r
257 public int[] countConsNGaps(int j)
\r
262 int[] r = new int[2];
\r
264 int i, iSize = sequences.size();
\r
267 for (i = 0; i < iSize; i++)
\r
269 if (j >= ((Sequence) sequences.elementAt(i)).getLength())
\r
275 c = ((Sequence) sequences.elementAt(i)).getCharAt(j); // gaps do not have upper/lower case
\r
277 if (jalview.util.Comparison.isGap((c)))
\r
297 r[0] = (nres == cons) ? 1 : 0;
\r
304 * Calculates the conservation sequence
\r
306 * @param consflag if true, poitiveve conservation; false calculates negative conservation
\r
307 * @param percentageGaps commonly used value is 25
\r
309 public void verdict(boolean consflag, float percentageGaps)
\r
311 StringBuffer consString = new StringBuffer();
\r
315 int totGaps, count;
\r
317 Hashtable resultHash ;
\r
318 Enumeration enumeration;
\r
321 for (int i = start; i <= end; i++)
\r
323 gapcons = countConsNGaps(i);
\r
324 totGaps = gapcons[1];
\r
325 pgaps = ((float) totGaps * 100) / (float) sequences.size();
\r
327 if (percentageGaps > pgaps)
\r
329 resultHash = (Hashtable) total.elementAt(i - start);
\r
331 //Now find the verdict
\r
333 enumeration = resultHash.keys();
\r
335 while (enumeration.hasMoreElements())
\r
337 type = (String) enumeration.nextElement();
\r
338 result = (Integer) resultHash.get(type);
\r
340 //Do we want to count +ve conservation or +ve and -ve cons.?
\r
343 if (result.intValue() == 1)
\r
350 if (result.intValue() != -1)
\r
359 consString.append(count); // Conserved props!=Identity
\r
363 consString.append((gapcons[0] == 1) ? "*" : "+");
\r
368 consString.append("-");
\r
372 consSequence = new Sequence(name, consString.toString(), start, end);
\r
378 * @return Conservation sequence
\r
380 public Sequence getConsSequence()
\r
382 return consSequence;
\r
385 // From Alignment.java in jalview118
\r
386 public void findQuality()
\r
388 findQuality(0, maxLength - 1);
\r
394 private void percentIdentity2()
\r
396 calcSeqNums(); // updates maxLength, too.
\r
398 if ((cons2 == null) || seqNumsChanged)
\r
400 cons2 = new int[maxLength][24];
\r
402 // Initialize the array
\r
403 for (int j = 0; j < 24; j++)
\r
405 for (int i = 0; i < maxLength; i++)
\r
414 while (j < sequences.size())
\r
416 sqnum = (int[]) seqNums.elementAt(j);
\r
418 for (int i = 1; i < sqnum.length; i++)
\r
420 cons2[i - 1][sqnum[i]]++;
\r
423 for (int i = sqnum.length - 1; i < maxLength; i++)
\r
425 cons2[i][23]++; // gap count
\r
433 /* for (int i=start; i <= end; i++) {
\r
438 for (int j=0;j<24;j++) {
\r
439 if (cons2[i][j] > max) {
\r
451 * Calculates the quality of the set of sequences
\r
453 * @param start Start residue
\r
454 * @param end End residue
\r
456 public void findQuality(int start, int end)
\r
458 quality = new Vector();
\r
460 double max = -10000;
\r
461 int[][] BLOSUM62 = jalview.schemes.ResidueProperties.getBLOSUM62();
\r
463 //Loop over columns // JBPNote Profiling info
\r
464 // long ts = System.currentTimeMillis();
\r
465 //long te = System.currentTimeMillis();
\r
466 percentIdentity2();
\r
468 int size = seqNums.size();
\r
469 int[] lengths = new int[size];
\r
470 double tot, bigtot, sr, tmp;
\r
472 int l, j, i, ii, seqNum;
\r
474 for (l = 0; l < size; l++)
\r
475 lengths[l] = ((int[]) seqNums.elementAt(l)).length - 1;
\r
478 for (j = start; j <= end; j++)
\r
482 // First Xr = depends on column only
\r
483 x = new double[24];
\r
485 for (ii = 0; ii < 24; ii++)
\r
491 for (int i2 = 0; i2 < 24; i2++)
\r
493 x[ii] += (((double) cons2[j][i2] * BLOSUM62[ii][i2]) +
\r
497 catch (Exception e)
\r
499 System.err.println("Exception during quality calculation.");
\r
500 e.printStackTrace();
\r
503 //System.out.println("X " + ii + " " + x[ii]);
\r
506 //System.out.println("X " + ii + " " + x[ii]);
\r
509 // Now calculate D for each position and sum
\r
510 for (int k = 0; k < size; k++)
\r
513 xx = new double[24];
\r
514 seqNum = (j < lengths[k])
\r
515 ? ((int[]) seqNums.elementAt(k))[j + 1] : 23; // Sequence, or gap at the end
\r
517 // This is a loop over r
\r
518 for (i = 0; i < 23; i++)
\r
524 sr = (double) BLOSUM62[i][seqNum] + 4;
\r
526 catch (Exception e)
\r
528 System.out.println("Exception in sr: " + e);
\r
529 e.printStackTrace();
\r
532 //Calculate X with another loop over residues
\r
533 // System.out.println("Xi " + i + " " + x[i] + " " + sr);
\r
536 tot += (xx[i] * xx[i]);
\r
539 bigtot += Math.sqrt(tot);
\r
542 // This is the quality for one column
\r
548 // bigtot = bigtot * (size-cons2[j][23])/size;
\r
549 quality.addElement(new Double(bigtot));
\r
552 // Need to normalize by gaps
\r
555 double newmax = -10000;
\r
557 for (j = start; j <= end; j++)
\r
559 tmp = ((Double) quality.elementAt(j)).doubleValue();
\r
560 tmp = ((max - tmp) * (size - cons2[j][23])) / size;
\r
562 // System.out.println(tmp+ " " + j);
\r
563 quality.setElementAt(new Double(tmp), j);
\r
571 // System.out.println("Quality " + s);
\r
572 qualityRange[0] = new Double(0);
\r
573 qualityRange[1] = new Double(newmax);
\r