X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=forester%2Fjava%2Fsrc%2Forg%2Fforester%2Fmsa%2FMsa.java;h=6ffa1ea3cf27c279b3a29020cd611ea6cfa64656;hb=ea402c168ecf73c1824d023a91331494939f2641;hp=2867989f30d8c2674a638b870464ea37e9b93144;hpb=48f7a89be9d34f1930a1f863e608235cc27184c5;p=jalview.git diff --git a/forester/java/src/org/forester/msa/Msa.java b/forester/java/src/org/forester/msa/Msa.java index 2867989..6ffa1ea 100644 --- a/forester/java/src/org/forester/msa/Msa.java +++ b/forester/java/src/org/forester/msa/Msa.java @@ -5,7 +5,7 @@ // Copyright (C) 2008-2009 Christian M. Zmasek // Copyright (C) 2008-2009 Burnham Institute for Medical Research // All rights reserved -// +// // This library is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public // License as published by the Free Software Foundation; either @@ -15,7 +15,7 @@ // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU // Lesser General Public License for more details. -// +// // You should have received a copy of the GNU Lesser General Public // License along with this library; if not, write to the Free Software // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA @@ -27,14 +27,16 @@ package org.forester.msa; import java.io.IOException; import java.io.Writer; +import java.util.List; +import org.forester.sequence.Sequence; import org.forester.sequence.Sequence.TYPE; public interface Msa { - public Object getIdentifier( int row ); + public String getIdentifier( int row ); - public void setIdentifier( int row, Object identifier ); + public void setIdentifier( int row, String identifier ); public int getLength(); @@ -42,6 +44,14 @@ public interface Msa { public char getResidueAt( int row, int col ); + public List getColumnAt( int col ); + + public Sequence getSequence( final String id ); + + public Sequence getSequence( final int row ); + + public List asSequenceList(); + public StringBuffer getSequenceAsString( int row ); public abstract TYPE getType();