Package org.cipres.treebase.domain.study

Examples of org.cipres.treebase.domain.study.ParsimonyAlgorithm


    algorithmMap.put(Constants.ALGORITHM_LIKELIHOOD, new LikelihoodAlgorithm());
    algorithmMap.put(Constants.ALGORITHM_OTHER, new OtherAlgorithm());
    // ParsimonyAlgorithm parsimonyAlgorithm = new ParsimonyAlgorithm();
    // parsimonyAlgorithm.setGapMode(new GapMode());
    // parsimonyAlgorithm.setPolyTCount(new PolyTCount());
    algorithmMap.put(Constants.ALGORITHM_PARSIMONY, new ParsimonyAlgorithm());
  }
View Full Code Here


      ContextManager.getAnalysisStepService().save(theAnalysisStep);
     
      Algorithm theAlgorithm;
      String tb1Algorithm = an.getString("algorithm");
      if (tb1Algorithm.equalsIgnoreCase("parsimony")) {
        theAlgorithm = new ParsimonyAlgorithm();
      } else if (tb1Algorithm.equalsIgnoreCase("bayesian")) {
        theAlgorithm = new BayesianAlgorithm();
      } else if (tb1Algorithm.equalsIgnoreCase("evolution")) {
        theAlgorithm = new EvolutionAlgorithm();
      } else if (tb1Algorithm.equalsIgnoreCase("joining")) {
View Full Code Here

TOP

Related Classes of org.cipres.treebase.domain.study.ParsimonyAlgorithm

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.