/** * @author Alexei Drummond * * @version $Id: ScoreMatrix.java,v 1.3 2006/06/22 07:42:48 pepster Exp $ */ public interface ScoreMatrix { /** * * @return human readable name */ public String getName(); /** * @return the score for matching char x with char y */ float getScore(char x, char y); /** * @return a string containing the valid characters for this score matrix. */ String getAlphabet(); }