X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fjalview%2Fanalysis%2Fscoremodels%2FScoreMatrix.java;h=efaeb430d86bc58ace6f251d11c9e9b852c33601;hb=e601aa83423acffa85f09e10a946087ee84ae850;hp=8bc2c045ee23246b3c1ad557f9e987b735c6e873;hpb=1ee1c1730f3b52aee4d039b416f276a1c55257df;p=jalview.git diff --git a/src/jalview/analysis/scoremodels/ScoreMatrix.java b/src/jalview/analysis/scoremodels/ScoreMatrix.java index 8bc2c04..efaeb43 100644 --- a/src/jalview/analysis/scoremodels/ScoreMatrix.java +++ b/src/jalview/analysis/scoremodels/ScoreMatrix.java @@ -20,9 +20,10 @@ */ package jalview.analysis.scoremodels; +import jalview.api.AlignmentViewPanel; import jalview.api.analysis.PairwiseScoreModelI; +import jalview.api.analysis.ScoreModelI; import jalview.api.analysis.SimilarityParamsI; -import jalview.api.analysis.SimilarityScoreModelI; import jalview.datamodel.AlignmentView; import jalview.math.Matrix; import jalview.math.MatrixI; @@ -32,9 +33,10 @@ import java.util.Arrays; /** * A class that models a substitution score matrix for any given alphabet of - * symbols + * symbols. Instances of this class are immutable and thread-safe, so the same + * object is returned from calls to getInstance(). */ -public class ScoreMatrix implements SimilarityScoreModelI, +public class ScoreMatrix extends SimilarityScoreModel implements PairwiseScoreModelI { private static final char GAP_CHARACTER = Comparison.GAP_DASH; @@ -96,7 +98,7 @@ public class ScoreMatrix implements SimilarityScoreModelI, private float minValue; private float maxValue; - + /** * Constructor given a name, symbol alphabet, and matrix of scores for pairs * of symbols. The matrix should be square and of the same size as the @@ -111,6 +113,26 @@ public class ScoreMatrix implements SimilarityScoreModelI, */ public ScoreMatrix(String theName, char[] alphabet, float[][] values) { + this(theName, null, alphabet, values); + } + + /** + * Constructor given a name, description, symbol alphabet, and matrix of + * scores for pairs of symbols. The matrix should be square and of the same + * size as the alphabet, for example 20x20 for a 20 symbol alphabet. + * + * @param theName + * Unique, human readable name for the matrix + * @param theDescription + * descriptive display name suitable for use in menus + * @param alphabet + * the symbols to which scores apply + * @param values + * Pairwise scores indexed according to the symbol alphabet + */ + public ScoreMatrix(String theName, String theDescription, + char[] alphabet, float[][] values) + { if (alphabet.length != values.length) { throw new IllegalArgumentException( @@ -127,6 +149,7 @@ public class ScoreMatrix implements SimilarityScoreModelI, this.matrix = values; this.name = theName; + this.description = theDescription; this.symbols = alphabet; symbolIndex = buildSymbolIndex(alphabet); @@ -411,6 +434,7 @@ public class ScoreMatrix implements SimilarityScoreModelI, *
  • product[0, 1] = F.R + K.- + L.D = -3 + -1 + -3 = -8 *
  • and so on
  • * + * This method is thread-safe. */ @Override public MatrixI findSimilarities(AlignmentView seqstrings, @@ -552,11 +576,6 @@ public class ScoreMatrix implements SimilarityScoreModelI, return new String(symbols); } - public void setDescription(String desc) - { - description = desc; - } - public float getMinimumScore() { return minValue; @@ -566,4 +585,10 @@ public class ScoreMatrix implements SimilarityScoreModelI, { return maxValue; } + + @Override + public ScoreModelI getInstance(AlignmentViewPanel avp) + { + return this; + } }