X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fjalview%2Fapi%2Fanalysis%2FScoreModelI.java;h=6afd483a96ac341ebfe856337d62ca3a4f091130;hb=4d890895e6aabfc36d45d3b53781ee2cf5cfafdc;hp=9a633f0b629c8fda920172034546e6ba3a7d950b;hpb=582493a5b56d3e01d901c6da9906685c31a32abb;p=jalview.git diff --git a/src/jalview/api/analysis/ScoreModelI.java b/src/jalview/api/analysis/ScoreModelI.java index 9a633f0..6afd483 100644 --- a/src/jalview/api/analysis/ScoreModelI.java +++ b/src/jalview/api/analysis/ScoreModelI.java @@ -1,5 +1,8 @@ package jalview.api.analysis; +import jalview.datamodel.AlignmentView; +import jalview.math.MatrixI; + public interface ScoreModelI { /** @@ -12,6 +15,15 @@ public interface ScoreModelI String getName(); /** + * Answers an informative description of the model, suitable for use in + * tooltips. Descriptions may be internationalised, and need not be unique + * (but should be). + * + * @return + */ + String getDescription(); + + /** * Answers true if this model is applicable for nucleotide data (so should be * shown in menus in that context) * @@ -27,4 +39,30 @@ public interface ScoreModelI */ boolean isProtein(); + // TODO getName, isDNA, isProtein can be static methods in Java 8 + + /** + * Returns a distance score for the given sequence regions, that is, a matrix + * whose value [i][j] is the distance of sequence i from sequence j by some + * measure. The options parameter provides configuration choices for how the + * similarity score is calculated. + * + * @param seqData + * @param options + * @return + */ + + MatrixI findDistances(AlignmentView seqData, SimilarityParamsI options); + + /** + * Returns a similarity score for the given sequence regions, that is, a + * matrix whose value [i][j] is the similarity of sequence i to sequence j by + * some measure. The options parameter provides configuration choices for how + * the similarity score is calculated. + * + * @param seqData + * @param options + * @return + */ + MatrixI findSimilarities(AlignmentView seqData, SimilarityParamsI options); }