Package mesquite.lib.characters

Examples of mesquite.lib.characters.CharacterPartition


    CharacterMatrix pMatrix) {

    for (int i = 0; i < pSetVector.size(); i++) {
      SpecsSet ss = (SpecsSet) pSetVector.elementAt(i);
      if (ss instanceof CharacterPartition) {
        CharacterPartition partition = (CharacterPartition) ss;
        // org.cipres.treebase.domain.matrix.CharWeightSet tbWeightSet = create(
        // pMesqMatrix,
        // wtSet,
        // pMatrix);
        CharPartition tbPartition = createPartition(pMesqMatrix, partition);

        pMatrix.getCharPartitions().add(tbPartition);
      }
    }

    CharacterPartition defaultPartition = (CharacterPartition) pMesqMatrix
      .getCurrentSpecsSet(CharacterPartition.class);
    if (defaultPartition != null) {
      if (LOGGER.isDebugEnabled()) {
        LOGGER.debug("TODO: add support for default Char Partition.");
      }
View Full Code Here

TOP

Related Classes of mesquite.lib.characters.CharacterPartition

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.