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.scoremodels;
23 import jalview.api.AlignmentViewPanel;
24 import jalview.api.analysis.PairwiseScoreModelI;
25 import jalview.api.analysis.ScoreModelI;
26 import jalview.api.analysis.SimilarityParamsI;
27 import jalview.datamodel.AlignmentView;
28 import jalview.math.Matrix;
29 import jalview.math.MatrixI;
30 import jalview.util.Comparison;
32 import java.util.Arrays;
35 * A class that models a substitution score matrix for any given alphabet of
36 * symbols. Instances of this class are immutable and thread-safe, so the same
37 * object is returned from calls to getInstance().
39 public class ScoreMatrix extends SimilarityScoreModel
40 implements PairwiseScoreModelI
42 private static final char GAP_CHARACTER = Comparison.GAP_DASH;
45 * an arbitrary score to assign for identity of an unknown symbol
46 * (this is the value on the diagonal in the * column of the NCBI matrix)
47 * (though a case could be made for using the minimum diagonal value)
49 private static final int UNKNOWN_IDENTITY_SCORE = 1;
52 * Jalview 2.10.1 treated gaps as X (peptide) or N (nucleotide)
53 * for pairwise scoring; 2.10.2 uses gap score (last column) in
54 * score matrix (JAL-2397)
55 * Set this flag to true (via Groovy) for 2.10.1 behaviour
57 private static boolean scoreGapAsAny = false;
59 public static final short UNMAPPED = (short) -1;
61 private static final String BAD_ASCII_ERROR = "Unexpected character %s in getPairwiseScore";
63 private static final int MAX_ASCII = 127;
66 * the name of the model as shown in menus
67 * each score model in use should have a unique name
72 * a description for the model as shown in tooltips
74 private String description;
77 * the characters that the model provides scores for
79 private char[] symbols;
82 * the score matrix; both dimensions must equal the number of symbols
83 * matrix[i][j] is the substitution score for replacing symbols[i] with symbols[j]
85 private float[][] matrix;
88 * quick lookup to convert from an ascii character value to the index
89 * of the corresponding symbol in the score matrix
91 private short[] symbolIndex;
94 * true for Protein Score matrix, false for dna score matrix
96 private boolean peptide;
98 private float minValue;
100 private float maxValue;
102 private boolean symmetric;
105 * Constructor given a name, symbol alphabet, and matrix of scores for pairs
106 * of symbols. The matrix should be square and of the same size as the
107 * alphabet, for example 20x20 for a 20 symbol alphabet.
110 * Unique, human readable name for the matrix
112 * the symbols to which scores apply
114 * Pairwise scores indexed according to the symbol alphabet
116 public ScoreMatrix(String theName, char[] alphabet, float[][] values)
118 this(theName, null, alphabet, values);
122 * Constructor given a name, description, symbol alphabet, and matrix of
123 * scores for pairs of symbols. The matrix should be square and of the same
124 * size as the alphabet, for example 20x20 for a 20 symbol alphabet.
127 * Unique, human readable name for the matrix
128 * @param theDescription
129 * descriptive display name suitable for use in menus
131 * the symbols to which scores apply
133 * Pairwise scores indexed according to the symbol alphabet
135 public ScoreMatrix(String theName, String theDescription, char[] alphabet,
138 if (alphabet.length != values.length)
140 throw new IllegalArgumentException(
141 "score matrix size must match alphabet size");
143 for (float[] row : values)
145 if (row.length != alphabet.length)
147 throw new IllegalArgumentException(
148 "score matrix size must be square");
152 this.matrix = values;
154 this.description = theDescription;
155 this.symbols = alphabet;
157 symbolIndex = buildSymbolIndex(alphabet);
161 symmetric = checkSymmetry();
164 * crude heuristic for now...
166 peptide = alphabet.length >= 20;
170 * Answers true if the matrix is symmetric, else false. Usually, substitution
171 * matrices are symmetric, which allows calculations to be short cut.
175 private boolean checkSymmetry()
177 for (int i = 0; i < matrix.length; i++)
179 for (int j = i; j < matrix.length; j++)
181 if (matrix[i][j] != matrix[j][i])
191 * Record the minimum and maximum score values
193 protected void findMinMax()
195 float min = Float.MAX_VALUE;
196 float max = -Float.MAX_VALUE;
199 for (float[] row : matrix)
205 min = Math.min(min, f);
206 max = Math.max(max, f);
216 * Returns an array A where A[i] is the position in the alphabet array of the
217 * character whose value is i. For example if the alphabet is { 'A', 'D', 'X'
218 * } then A['D'] = A[68] = 1.
220 * Unmapped characters (not in the alphabet) get an index of -1.
222 * Mappings are added automatically for lower case symbols (for non case
223 * sensitive scoring), unless they are explicitly present in the alphabet (are
224 * scored separately in the score matrix).
226 * the gap character (space, dash or dot) included in the alphabet (if any) is
227 * recorded in a field
232 short[] buildSymbolIndex(char[] alphabet)
234 short[] index = new short[MAX_ASCII + 1];
235 Arrays.fill(index, UNMAPPED);
237 for (char c : alphabet)
245 * also map lower-case character (unless separately mapped)
247 if (c >= 'A' && c <= 'Z')
249 short lowerCase = (short) (c + ('a' - 'A'));
250 if (index[lowerCase] == UNMAPPED)
252 index[lowerCase] = pos;
261 public String getName()
267 public String getDescription()
273 public boolean isDNA()
279 public boolean isProtein()
285 * Returns a copy of the score matrix as used in getPairwiseScore. If using
286 * this matrix directly, callers <em>must</em> also call
287 * <code>getMatrixIndex</code> in order to get the matrix index for each
288 * character (symbol).
291 * @see #getMatrixIndex(char)
293 public float[][] getMatrix()
295 float[][] v = new float[matrix.length][matrix.length];
296 for (int i = 0; i < matrix.length; i++)
298 v[i] = Arrays.copyOf(matrix[i], matrix[i].length);
304 * Answers the matrix index for a given character, or -1 if unmapped in the
305 * matrix. Use this method only if using <code>getMatrix</code> in order to
306 * compute scores directly (without symbol lookup) for efficiency.
312 public int getMatrixIndex(char c)
314 if (c < symbolIndex.length)
316 return symbolIndex[c];
325 * Returns the pairwise score for substituting c with d. If either c or d is
326 * an unexpected character, returns 1 for identity (c == d), else the minimum
327 * score value in the matrix.
330 public float getPairwiseScore(char c, char d)
332 if (c >= symbolIndex.length)
334 System.err.println(String.format(BAD_ASCII_ERROR, c));
337 if (d >= symbolIndex.length)
339 System.err.println(String.format(BAD_ASCII_ERROR, d));
343 int cIndex = symbolIndex[c];
344 int dIndex = symbolIndex[d];
345 if (cIndex != UNMAPPED && dIndex != UNMAPPED)
347 return matrix[cIndex][dIndex];
351 * one or both symbols not found in the matrix
352 * currently scoring as 1 (for identity) or the minimum
353 * matrix score value (otherwise)
354 * (a case could be made for using minimum row/column value instead)
356 return c == d ? UNKNOWN_IDENTITY_SCORE : getMinimumScore();
360 * pretty print the matrix
363 public String toString()
365 return outputMatrix(false);
369 * Print the score matrix, optionally formatted as html, with the alphabet
370 * symbols as column headings and at the start of each row.
372 * The non-html format should give an output which can be parsed as a score
378 public String outputMatrix(boolean html)
380 StringBuilder sb = new StringBuilder(512);
383 * heading row with alphabet
387 sb.append("<table border=\"1\">");
388 sb.append(html ? "<tr><th></th>" : "");
392 sb.append("ScoreMatrix ").append(getName()).append("\n");
394 for (char sym : symbols)
398 sb.append("<th> ").append(sym).append(" </th>");
402 sb.append("\t").append(sym);
405 sb.append(html ? "</tr>\n" : "\n");
410 for (char c1 : symbols)
414 sb.append("<tr><td>");
416 sb.append(c1).append(html ? "</td>" : "");
417 for (char c2 : symbols)
419 sb.append(html ? "<td>" : "\t")
420 .append(matrix[symbolIndex[c1]][symbolIndex[c2]])
421 .append(html ? "</td>" : "");
423 sb.append(html ? "</tr>\n" : "\n");
427 sb.append("</table>");
429 return sb.toString();
433 * Answers the number of symbols coded for (also equal to the number of rows
434 * and columns of the score matrix)
440 return symbols.length;
444 * Computes an NxN matrix where N is the number of sequences, and entry [i, j]
445 * is sequence[i] pairwise multiplied with sequence[j], as a sum of scores
446 * computed using the current score matrix. For example
448 * <li>Sequences:</li>
453 * <li>Score matrix is BLOSUM62</li>
454 * <li>Gaps treated same as X (unknown)</li>
455 * <li>product [0, 0] = F.F + K.K + L.L = 6 + 5 + 4 = 15</li>
456 * <li>product [1, 1] = R.R + -.- + D.D = 5 + -1 + 6 = 10</li>
457 * <li>product [2, 2] = Q.Q + I.I + A.A = 5 + 4 + 4 = 13</li>
458 * <li>product [3, 3] = G.G + W.W + C.C = 6 + 11 + 9 = 26</li>
459 * <li>product[0, 1] = F.R + K.- + L.D = -3 + -1 + -3 = -8
462 * This method is thread-safe.
465 public MatrixI findSimilarities(AlignmentView seqstrings,
466 SimilarityParamsI options)
468 char gapChar = scoreGapAsAny ? (seqstrings.isNa() ? 'N' : 'X')
470 String[] seqs = seqstrings.getSequenceStrings(gapChar);
471 return findSimilarities(seqs, options);
475 * Computes pairwise similarities of a set of sequences using the given
482 protected MatrixI findSimilarities(String[] seqs,
483 SimilarityParamsI params)
485 double[][] values = new double[seqs.length][seqs.length];
486 for (int row = 0; row < seqs.length; row++)
488 for (int col = symmetric ? row : 0; col < seqs.length; col++)
490 double total = computeSimilarity(seqs[row], seqs[col], params);
491 values[row][col] = total;
494 values[col][row] = total;
498 return new Matrix(values);
502 * Calculates the pairwise similarity of two strings using the given
503 * calculation parameters
510 protected double computeSimilarity(String seq1, String seq2,
511 SimilarityParamsI params)
513 int len1 = seq1.length();
514 int len2 = seq2.length();
517 int width = Math.max(len1, len2);
518 for (int i = 0; i < width; i++)
520 if (i >= len1 || i >= len2)
523 * off the end of one sequence; stop if we are only matching
524 * on the shorter sequence length, else treat as trailing gap
526 if (params.denominateByShortestLength())
532 char c1 = i >= len1 ? GAP_CHARACTER : seq1.charAt(i);
533 char c2 = i >= len2 ? GAP_CHARACTER : seq2.charAt(i);
534 boolean gap1 = Comparison.isGap(c1);
535 boolean gap2 = Comparison.isGap(c2);
540 * gap-gap: include if options say so, else ignore
542 if (!params.includeGappedColumns())
547 else if (gap1 || gap2)
550 * gap-residue: score if options say so
552 if (!params.includeGaps())
557 float score = getPairwiseScore(c1, c2);
564 * Answers a hashcode computed from the symbol alphabet and the matrix score
568 public int hashCode()
570 int hs = Arrays.hashCode(symbols);
571 for (float[] row : matrix)
573 hs = hs * 31 + Arrays.hashCode(row);
579 * Answers true if the argument is a ScoreMatrix with the same symbol alphabet
580 * and score values, else false
583 public boolean equals(Object obj)
585 if (!(obj instanceof ScoreMatrix))
589 ScoreMatrix sm = (ScoreMatrix) obj;
590 if (Arrays.equals(symbols, sm.symbols)
591 && Arrays.deepEquals(matrix, sm.matrix))
599 * Returns the alphabet the matrix scores for, as a string of characters
605 return new String(symbols);
608 public float getMinimumScore()
613 public float getMaximumScore()
619 public ScoreModelI getInstance(AlignmentViewPanel avp)
624 public boolean isSymmetric()