2 * Jalview - A Sequence Alignment Editor and Viewer ($$Version-Rel$$)
3 * Copyright (C) $$Year-Rel$$ The Jalview Authors
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
10 * of the License, or (at your option) any later version.
12 * Jalview is distributed in the hope that it will be useful, but
13 * WITHOUT ANY WARRANTY; without even the implied warranty
14 * of MERCHANTABILITY or FITNESS FOR A PARTICULAR
15 * PURPOSE. See the GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with Jalview. If not, see <http://www.gnu.org/licenses/>.
19 * The Jalview Authors are detailed in the 'AUTHORS' file.
21 package jalview.analysis;
23 import jalview.datamodel.AlignmentAnnotation;
24 import jalview.datamodel.Annotation;
25 import jalview.datamodel.Sequence;
26 import jalview.datamodel.SequenceI;
28 import java.awt.Color;
29 import java.util.Enumeration;
30 import java.util.Hashtable;
31 import java.util.List;
32 import java.util.Vector;
35 * Calculates conservation values for a given set of sequences
40 public class Conservation
42 SequenceI[] sequences;
48 Vector seqNums; // vector of int vectors where first is sequence checksum
50 int maxLength = 0; // used by quality calcs
52 boolean seqNumsChanged = false; // updated after any change via calcSeqNum;
56 boolean canonicaliseAa = true; // if true then conservation calculation will
58 // map all symbols to canonical aa numbering
59 // rather than consider conservation of that
62 /** Stores calculated quality values */
63 public Vector quality;
65 /** Stores maximum and minimum values of quality values */
66 public Double[] qualityRange = new Double[2];
68 String consString = "";
70 Sequence consSequence;
80 private String[] consSymbs;
83 * Creates a new Conservation object.
86 * Name of conservation
88 * hash of properties for each symbol
90 * to count the residues in residueHash(). commonly used value is 3
92 * sequences to be used in calculation
94 * start residue position
96 * end residue position
98 public Conservation(String name, Hashtable propHash, int threshold,
99 List<SequenceI> sequences, int start, int end)
102 this.propHash = propHash;
103 this.threshold = threshold;
107 maxLength = end - start + 1; // default width includes bounds of
110 int s, sSize = sequences.size();
111 SequenceI[] sarray = new SequenceI[sSize];
112 this.sequences = sarray;
115 for (s = 0; s < sSize; s++)
117 sarray[s] = sequences.get(s);
118 if (sarray[s].getLength() > maxLength)
120 maxLength = sarray[s].getLength();
123 } catch (ArrayIndexOutOfBoundsException ex)
125 // bail - another thread has modified the sequence array, so the current
126 // calculation is probably invalid.
127 this.sequences = new SequenceI[0];
133 * Translate sequence i into a numerical representation and store it in the
134 * i'th position of the seqNums array.
138 private void calcSeqNum(int i)
140 String sq = null; // for dumb jbuilder not-inited exception warning
143 int sSize = sequences.length;
145 if ((i > -1) && (i < sSize))
147 sq = sequences[i].getSequenceAsString();
149 if (seqNums.size() <= i)
151 seqNums.addElement(new int[sq.length() + 1]);
154 if (sq.hashCode() != ((int[]) seqNums.elementAt(i))[0])
158 seqNumsChanged = true;
166 sqnum = new int[len + 1]; // better to always make a new array -
167 // sequence can change its length
168 sqnum[0] = sq.hashCode();
170 for (j = 1; j <= len; j++)
172 sqnum[j] = jalview.schemes.ResidueProperties.aaIndex[sq
176 seqNums.setElementAt(sqnum, i);
180 System.out.println("SEQUENCE HAS BEEN DELETED!!!");
185 // JBPNote INFO level debug
187 .println("ERROR: calcSeqNum called with out of range sequence index for Alignment\n");
192 * Calculates the conservation values for given set of sequences
194 public void calculate()
196 Hashtable resultHash, ht;
197 int thresh, j, jSize = sequences.length;
198 int[] values; // Replaces residueHash
199 String type, res = null;
201 Enumeration enumeration2;
203 total = new Hashtable[maxLength];
205 for (int i = start; i <= end; i++)
207 values = new int[255];
209 for (j = 0; j < jSize; j++)
211 if (sequences[j].getLength() > i)
213 c = sequences[j].getCharAt(i);
216 { // lookup the base aa code symbol
217 c = (char) jalview.schemes.ResidueProperties.aaIndex[sequences[j]
225 // recover canonical aa symbol
226 c = jalview.schemes.ResidueProperties.aa[c].charAt(0);
231 // original behaviour - operate on ascii symbols directly
232 // No need to check if its a '-'
233 if (c == '.' || c == ' ')
238 if (!canonicaliseAa && 'a' <= c && c <= 'z')
240 c -= (32); // 32 = 'a' - 'A'
251 // What is the count threshold to count the residues in residueHash()
252 thresh = (threshold * (jSize)) / 100;
254 // loop over all the found residues
255 resultHash = new Hashtable();
256 for (char v = '-'; v < 'Z'; v++)
259 if (values[v] > thresh)
261 res = String.valueOf(v);
263 // Now loop over the properties
264 enumeration2 = propHash.keys();
266 while (enumeration2.hasMoreElements())
268 type = (String) enumeration2.nextElement();
269 ht = (Hashtable) propHash.get(type);
271 // Have we ticked this before?
272 if (!resultHash.containsKey(type))
274 if (ht.containsKey(res))
276 resultHash.put(type, ht.get(res));
280 resultHash.put(type, ht.get("-"));
283 else if (((Integer) resultHash.get(type)).equals(ht
286 resultHash.put(type, new Integer(-1));
292 if (total.length > 0)
294 total[i - start] = resultHash;
299 /*****************************************************************************
300 * count conservation for the j'th column of the alignment
302 * @return { gap count, conserved residue count}
304 public int[] countConsNGaps(int j)
309 int[] r = new int[2];
311 int i, iSize = sequences.length;
314 for (i = 0; i < iSize; i++)
316 if (j >= sequences[i].getLength())
322 c = sequences[i].getCharAt(j); // gaps do not have upper/lower case
324 if (jalview.util.Comparison.isGap((c)))
344 r[0] = (nres == cons) ? 1 : 0;
351 * Calculates the conservation sequence
354 * if true, poitiveve conservation; false calculates negative
356 * @param percentageGaps
357 * commonly used value is 25
359 public void verdict(boolean consflag, float percentageGaps)
361 StringBuffer consString = new StringBuffer();
367 Hashtable resultHash;
368 Enumeration enumeration;
370 // NOTE THIS SHOULD CHECK IF THE CONSEQUENCE ALREADY
371 // EXISTS AND NOT OVERWRITE WITH '-', BUT THIS CASE
372 // DOES NOT EXIST IN JALVIEW 2.1.2
373 for (int i = 0; i < start; i++)
375 consString.append('-');
377 consSymbs = new String[end-start+1];
378 for (int i = start; i <= end; i++)
380 gapcons = countConsNGaps(i);
381 totGaps = gapcons[1];
382 pgaps = ((float) totGaps * 100) / sequences.length;
383 consSymbs[i-start]=new String();
385 if (percentageGaps > pgaps)
387 resultHash = total[i - start];
388 // Now find the verdict
390 enumeration = resultHash.keys();
392 while (enumeration.hasMoreElements())
394 type = (String) enumeration.nextElement();
395 result = (Integer) resultHash.get(type);
396 // Do we want to count +ve conservation or +ve and -ve cons.?
399 if (result.intValue() == 1)
401 consSymbs[i-start] = type+" "+consSymbs[i-start];
407 if (result.intValue() != -1)
410 if (result.intValue()==0) {
411 consSymbs[i-start] = consSymbs[i-start]+ " !"+type;
413 consSymbs[i-start] = type+" "+consSymbs[i-start];
424 consString.append(count); // Conserved props!=Identity
428 consString.append((gapcons[0] == 1) ? "*" : "+");
433 consString.append('-');
437 consSequence = new Sequence(name, consString.toString(), start, end);
443 * @return Conservation sequence
445 public Sequence getConsSequence()
450 // From Alignment.java in jalview118
451 public void findQuality()
453 findQuality(0, maxLength - 1);
459 private void percentIdentity2()
461 seqNums = new Vector();
463 int i = 0, iSize = sequences.length;
464 // Do we need to calculate this again?
465 for (i = 0; i < iSize; i++)
470 if ((cons2 == null) || seqNumsChanged)
472 cons2 = new int[maxLength][24];
474 // Initialize the array
475 for (int j = 0; j < 24; j++)
477 for (i = 0; i < maxLength; i++)
486 while (j < sequences.length)
488 sqnum = (int[]) seqNums.elementAt(j);
490 for (i = 1; i < sqnum.length; i++)
492 cons2[i - 1][sqnum[i]]++;
495 for (i = sqnum.length - 1; i < maxLength; i++)
497 cons2[i][23]++; // gap count
506 * for (int i=start; i <= end; i++) { int max = -1000; int maxi = -1; int
509 * for (int j=0;j<24;j++) { if (cons2[i][j] > max) { max = cons2[i][j];
510 * maxi = i; maxj = j; } } }
516 * Calculates the quality of the set of sequences
523 public void findQuality(int start, int end)
525 quality = new Vector();
528 int[][] BLOSUM62 = jalview.schemes.ResidueProperties.getBLOSUM62();
530 // Loop over columns // JBPNote Profiling info
531 // long ts = System.currentTimeMillis();
532 // long te = System.currentTimeMillis();
535 int size = seqNums.size();
536 int[] lengths = new int[size];
537 double tot, bigtot, sr, tmp;
539 int l, j, i, ii, i2, k, seqNum;
541 for (l = 0; l < size; l++)
543 lengths[l] = ((int[]) seqNums.elementAt(l)).length - 1;
546 for (j = start; j <= end; j++)
550 // First Xr = depends on column only
553 for (ii = 0; ii < 24; ii++)
557 for (i2 = 0; i2 < 24; i2++)
559 x[ii] += (((double) cons2[j][i2] * BLOSUM62[ii][i2]) + 4);
565 // Now calculate D for each position and sum
566 for (k = 0; k < size; k++)
570 seqNum = (j < lengths[k]) ? ((int[]) seqNums.elementAt(k))[j + 1]
571 : 23; // Sequence, or gap at the end
573 // This is a loop over r
574 for (i = 0; i < 23; i++)
578 sr = (double) BLOSUM62[i][seqNum] + 4;
580 // Calculate X with another loop over residues
581 // System.out.println("Xi " + i + " " + x[i] + " " + sr);
584 tot += (xx[i] * xx[i]);
587 bigtot += Math.sqrt(tot);
590 // This is the quality for one column
596 // bigtot = bigtot * (size-cons2[j][23])/size;
597 quality.addElement(new Double(bigtot));
599 // Need to normalize by gaps
602 double newmax = -10000;
604 for (j = start; j <= end; j++)
606 tmp = ((Double) quality.elementAt(j)).doubleValue();
607 tmp = ((max - tmp) * (size - cons2[j][23])) / size;
609 // System.out.println(tmp+ " " + j);
610 quality.setElementAt(new Double(tmp), j);
618 // System.out.println("Quality " + s);
619 qualityRange[0] = new Double(0);
620 qualityRange[1] = new Double(newmax);
624 * complete the given consensus and quuality annotation rows. Note: currently
625 * this method will enlarge the given annotation row if it is too small,
626 * otherwise will leave its length unchanged.
628 * @param conservation
629 * conservation annotation row
631 * (optional - may be null)
633 * first column for conservation
635 * extent of conservation
637 public void completeAnnotations(AlignmentAnnotation conservation,
638 AlignmentAnnotation quality2, int istart, int alWidth)
640 char[] sequence = getConsSequence().getSequence();
652 maxB = 0f - minB; // scalable range for colouring both Conservation and
662 if (conservation.annotations != null
663 && conservation.annotations.length < alWidth)
665 conservation.annotations = new Annotation[alWidth];
668 if (quality2 != null)
670 quality2.graphMax = qualityRange[1].floatValue();
671 if (quality2.annotations != null
672 && quality2.annotations.length < alWidth)
674 quality2.annotations = new Annotation[alWidth];
676 qmin = qualityRange[0].floatValue();
677 qmax = qualityRange[1].floatValue();
680 for (int i = 0; i < alWidth; i++)
686 if (Character.isDigit(c))
699 float vprop = value - min;
701 int consp = i - start;
702 String conssym = (value > 0 && consp > -1 && consp < consSymbs.length) ? consSymbs[consp]
704 conservation.annotations[i] = new Annotation(String.valueOf(c),
705 conssym, ' ', value, new Color(minR
706 + (maxR * vprop), minG + (maxG * vprop), minB
710 if (quality2 != null)
712 value = ((Double) quality.elementAt(i)).floatValue();
713 vprop = value - qmin;
715 quality2.annotations[i] = new Annotation(" ",
716 String.valueOf(value), ' ', value, new Color(minR
717 + (maxR * vprop), minG + (maxG * vprop), minB
724 * construct and call the calculation methods on a new Conservation object
727 * - name of conservation
729 * - hash table of properties for each amino acid (normally
730 * ResidueProperties.propHash)
732 * - minimum number of conserved residues needed to indicate
733 * conservation (typically 3)
736 * first column in calculation window
738 * last column in calculation window
740 * positive (true) or negative (false) conservation
741 * @param consPercGaps
742 * percentage of gaps tolerated in column
744 * flag indicating if alignment quality should be calculated
745 * @return Conservation object ready for use in visualization
747 public static Conservation calculateConservation(String name,
748 Hashtable consHash, int threshold, List<SequenceI> seqs,
749 int start, int end, boolean posOrNeg, int consPercGaps,
752 Conservation cons = new Conservation(name, consHash, threshold, seqs,
754 return calculateConservation(cons, posOrNeg, consPercGaps, calcQuality);
759 * positive (true) or negative (false) conservation
760 * @param consPercGaps
761 * percentage of gaps tolerated in column
763 * flag indicating if alignment quality should be calculated
764 * @return Conservation object ready for use in visualization
766 public static Conservation calculateConservation(Conservation cons,
767 boolean b, int consPercGaps, boolean calcQuality)
770 cons.verdict(b, consPercGaps);