Merge branch 'features/JAL-4061_and_JAL-4062_findselectfeatures' into features/r2_11_...
[jalview.git] / src / jalview / datamodel / ContactMatrixI.java
1 package jalview.datamodel;
2
3 public interface ContactMatrixI
4 {
5
6   ContactListI getContactList(int column);
7
8   float getMin();
9
10   float getMax();
11
12   boolean hasReferenceSeq();
13
14   SequenceI getReferenceSeq();
15
16   String getAnnotDescr();
17
18   String getAnnotLabel();
19
20 }