Package org.cipres.treebase.domain.study

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


    algorithmMap.put(Constants.ALGORITHM_Bayesian, new BayesianAlgorithm());
    algorithmMap.put(Constants.ALGORITHM_Evolution, new EvolutionAlgorithm());
    algorithmMap.put(Constants.ALGORITHM_Joining, new JoiningAlgorithm());
    algorithmMap.put(Constants.ALGORITHM_UPGMA, new UPGMAAlgorithm());
    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


      } else if (tb1Algorithm.equalsIgnoreCase("UPGMA")) {
        theAlgorithm = new UPGMAAlgorithm();
      } else if (tb1Algorithm.equalsIgnoreCase("likelihood")) {
        theAlgorithm = new LikelihoodAlgorithm();
      } else {
        theAlgorithm = new OtherAlgorithm()
      }
      theAlgorithm.setDescription(tb1Algorithm);
      ContextManager.getAlgorithmHome().save(theAlgorithm);
      theAnalysisStep.setAlgorithmInfo(theAlgorithm);
     
View Full Code Here

TOP

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

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.