Package mesquite.lib.characters

Examples of mesquite.lib.characters.CharWeightSet


    CharacterMatrix pMatrix) {

    for (int i = 0; i < pSetVector.size(); i++) {
      SpecsSet ss = (SpecsSet) pSetVector.elementAt(i);
      if (ss instanceof CharWeightSet) {
        CharWeightSet wtSet = (CharWeightSet) ss;
        org.cipres.treebase.domain.matrix.CharWeightSet tbWeightSet = createWeightSet(
          pMesqMatrix,
          wtSet,
          pMatrix);

        pMatrix.getWeightSets().add(tbWeightSet);
      }
    }

    CharWeightSet defaultWeightSet = (CharWeightSet) pMesqMatrix
      .getCurrentSpecsSet(CharWeightSet.class);
    if (defaultWeightSet != null) {
      org.cipres.treebase.domain.matrix.CharWeightSet tbWeightSet = createWeightSet(
        pMesqMatrix,
        defaultWeightSet,
View Full Code Here

TOP

Related Classes of mesquite.lib.characters.CharWeightSet

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.