JAL-2349 allow contact map to be associated with a reference sequence
[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 }