JAL-1473 refactor score matrices and tree score calculations to interface/api and...
[jalview.git] / src / jalview / api / analysis / ScoreModelI.java
1 package jalview.api.analysis;
2
3 import jalview.datamodel.AlignmentView;
4
5 public interface ScoreModelI
6 {
7
8   float[][] findDistances(AlignmentView seqData);
9
10   String getName();
11
12   boolean isDNA();
13
14   boolean isProtein();
15
16 }