in progress
[jalview.git] / forester / java / src / org / forester / msa / Msa.java
index 0ee7844..50fcee9 100644 (file)
@@ -27,6 +27,7 @@ package org.forester.msa;
 
 import java.io.IOException;
 import java.io.Writer;
+import java.util.List;
 
 import org.forester.sequence.Sequence.TYPE;
 
@@ -42,6 +43,8 @@ public interface Msa {
 
     public char getResidueAt( int row, int col );
 
+    public List<Character> getColumnAt( int col );
+
     public StringBuffer getSequenceAsString( int row );
 
     public abstract TYPE getType();