/** * Base class for all score matrices in the package. * * @author Alexei Drummond * * @version $Id: Scores.java,v 1.10 2006/06/22 07:42:48 pepster Exp $ * * Based on code originally by Peter Setsoft. See package.html. */ public abstract class Scores implements ScoreMatrix { public float[][] score; private String extraResidues= ""; protected void buildScores(float[][] scores) { String states = getAlphabet(); // Allow lowercase and uppercase states (ASCII code <= 127): score = new float[127][127]; for (int i=0; i