Package cbcb.kmulus.db.cluster

Examples of cbcb.kmulus.db.cluster.ClusterPresenceVectors$Map


      case CLUSTER:
        clusterOut = tempOut + Path.SEPARATOR + CLUSTER_SUFFIX;
        int runIter = 0;
        do {
          result = ToolRunner.run(new Configuration(),
              new ClusterPresenceVectors(runIter),
              new String[]{pvOut, clusterOut, numSeq, numClusters, kmerLen});

          runIter++;
        } while (result == ClusterPresenceVectors.CODE_LOOP);

        if (result == ClusterPresenceVectors.CODE_CONVERGED) {
          result = ToolRunner.run(new Configuration(),
              new ClusterPresenceVectors(),
              new String[]{pvOut, clusterOut, numSeq, numClusters, kmerLen});
        }

        if (result < 0) {
          System.err.println(ClusterPresenceVectors.class.getName() + " failed.");
View Full Code Here

TOP

Related Classes of cbcb.kmulus.db.cluster.ClusterPresenceVectors$Map

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.