2 * Jalview - A Sequence Alignment Editor and Viewer (Version 2.7)
3 * Copyright (C) 2011 J Procter, AM Waterhouse, J Engelhardt, LM Lui, G Barton, M Clamp, S Searle
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 of the License, or (at your option) any later version.
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.
16 * You should have received a copy of the GNU General Public License along with Jalview. If not, see <http://www.gnu.org/licenses/>.
18 package jalview.analysis;
22 import jalview.datamodel.*;
25 * Takes in a vector or array of sequences and column start and column end and
26 * returns a new Hashtable[] of size maxSeqLength, if Hashtable not supplied.
27 * This class is used extensively in calculating alignment colourschemes that
28 * depend on the amount of conservation in each alignment column.
33 public class AAFrequency
35 // No need to store 1000s of strings which are not
36 // visible to the user.
37 public static final String MAXCOUNT = "C";
39 public static final String MAXRESIDUE = "R";
41 public static final String PID_GAPS = "G";
43 public static final String PID_NOGAPS = "N";
45 public static final String PROFILE = "P";
47 public static final Hashtable[] calculate(Vector sequences, int start,
50 return calculate(sequences, start, end, false);
53 public static final Hashtable[] calculate(Vector sequences, int start,
54 int end, boolean profile)
56 SequenceI[] seqs = new SequenceI[sequences.size()];
58 for (int i = 0; i < sequences.size(); i++)
60 seqs[i] = (SequenceI) sequences.elementAt(i);
61 if (seqs[i].getLength() > width)
63 width = seqs[i].getLength();
67 Hashtable[] reply = new Hashtable[width];
74 calculate(seqs, start, end, reply, profile);
79 public static final void calculate(SequenceI[] sequences, int start,
80 int end, Hashtable[] result)
82 calculate(sequences, start, end, result, false);
85 public static final void calculate(SequenceI[] sequences, int start,
86 int end, Hashtable[] result, boolean profile)
88 Hashtable residueHash;
89 int maxCount, nongap, i, j, v, jSize = sequences.length;
94 int[] values = new int[255];
98 for (i = start; i < end; i++)
100 residueHash = new Hashtable();
104 values = new int[255];
106 for (j = 0; j < jSize; j++)
108 if (sequences[j]==null)
110 System.err.println("WARNING: Consensus skipping null sequence - possible race condition.");
113 seq = sequences[j].getSequence();
118 if (c == '.' || c == ' ')
128 else if ('a' <= c && c <= 'z')
130 c -= 32; // ('a' - 'A');
143 for (v = 'A'; v < 'Z'; v++)
145 if (values[v] < 2 || values[v] < maxCount)
150 if (values[v] > maxCount)
152 maxResidue = String.valueOf((char) v);
154 else if (values[v] == maxCount)
156 maxResidue += String.valueOf((char) v);
158 maxCount = values[v];
161 if (maxResidue.length() == 0)
167 residueHash.put(PROFILE, new int[][]
169 { jSize, nongap } });
171 residueHash.put(MAXCOUNT, new Integer(maxCount));
172 residueHash.put(MAXRESIDUE, maxResidue);
174 percentage = ((float) maxCount * 100) / (float) jSize;
175 residueHash.put(PID_GAPS, new Float(percentage));
177 percentage = ((float) maxCount * 100) / (float) nongap;
178 residueHash.put(PID_NOGAPS, new Float(percentage));
179 result[i] = residueHash;
184 * Compute all or part of the annotation row from the given consensus
188 * - pre-allocated annotation row
192 * @param ignoreGapsInConsensusCalculation
193 * @param includeAllConsSymbols
195 public static void completeConsensus(AlignmentAnnotation consensus,
196 Hashtable[] hconsensus, int iStart, int width,
197 boolean ignoreGapsInConsensusCalculation,
198 boolean includeAllConsSymbols)
200 completeConsensus(consensus, hconsensus, iStart, width,
201 ignoreGapsInConsensusCalculation, includeAllConsSymbols, null); // new
203 // { 'A', 'C', 'G', 'T', 'U' });
206 public static void completeConsensus(AlignmentAnnotation consensus,
207 Hashtable[] hconsensus, int iStart, int width,
208 boolean ignoreGapsInConsensusCalculation,
209 boolean includeAllConsSymbols, char[] alphabet)
212 if (consensus == null || consensus.annotations == null
213 || consensus.annotations.length < width)
215 // called with a bad alignment annotation row - wait for it to be
216 // initialised properly
219 for (int i = iStart; i < width; i++)
221 if (i >= hconsensus.length)
223 // happens if sequences calculated over were shorter than alignment
225 consensus.annotations[i] = null;
229 if (ignoreGapsInConsensusCalculation)
231 value = ((Float) hconsensus[i].get(AAFrequency.PID_NOGAPS))
236 value = ((Float) hconsensus[i].get(AAFrequency.PID_GAPS))
240 String maxRes = hconsensus[i].get(AAFrequency.MAXRESIDUE).toString();
241 String mouseOver = hconsensus[i].get(AAFrequency.MAXRESIDUE) + " ";
242 if (maxRes.length() > 1)
244 mouseOver = "[" + maxRes + "] ";
247 int[][] profile = (int[][]) hconsensus[i].get(AAFrequency.PROFILE);
248 if (profile != null && includeAllConsSymbols)
251 if (alphabet != null)
253 for (int c = 0; c < alphabet.length; c++)
255 tval = ((float) profile[0][alphabet[c]])
257 / (float) profile[1][ignoreGapsInConsensusCalculation ? 1
259 mouseOver += ((c == 0) ? "" : "; ") + alphabet[c] + " "
260 + ((int) tval) + "%";
265 Object[] ca = new Object[profile[0].length];
266 float[] vl = new float[profile[0].length];
267 for (int c = 0; c < ca.length; c++)
271 vl[c] = (float) profile[0][c];
274 jalview.util.QuickSort.sort(vl, ca);
275 for (int p = 0, c = ca.length - 1; profile[0][((char[]) ca[c])[0]] > 0; c--)
277 if (((char[]) ca[c])[0] != '-')
279 tval = ((float) profile[0][((char[]) ca[c])[0]])
281 / (float) profile[1][ignoreGapsInConsensusCalculation ? 1
283 mouseOver += ((p == 0) ? "" : "; ") + ((char[]) ca[c])[0]
284 + " " + ((int) tval) + "%";
294 mouseOver += ((int) value + "%");
296 consensus.annotations[i] = new Annotation(maxRes, mouseOver, ' ',
302 * get the sorted profile for the given position of the consensus
307 public static int[] extractProfile(Hashtable hconsensus,
308 boolean ignoreGapsInConsensusCalculation)
310 int[] rtnval = new int[64];
311 int[][] profile = (int[][]) hconsensus.get(AAFrequency.PROFILE);
314 Object[] ca = new Object[profile[0].length];
315 float[] vl = new float[profile[0].length];
316 for (int c = 0; c < ca.length; c++)
320 vl[c] = (float) profile[0][c];
323 jalview.util.QuickSort.sort(vl, ca);
326 for (int c = ca.length - 1; profile[0][((char[]) ca[c])[0]] > 0; c--)
328 if (((char[]) ca[c])[0] != '-')
330 rtnval[rtnval[0]++] = ((char[]) ca[c])[0];
331 rtnval[rtnval[0]] = (int) (((float) profile[0][((char[]) ca[c])[0]]) * 100f / (float) profile[1][ignoreGapsInConsensusCalculation ? 1
333 rtnval[1]+=rtnval[rtnval[0]++];