Examples of BayesianAlgorithm


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

  private List<AnalyzedDataCommand> analyzedDataCommandList = new ArrayList<AnalyzedDataCommand>();

  private List<String> mUniqueAlgorithmDescriptions;

  public AnalysisStepCommand() {
    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());
View Full Code Here

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

      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")) {
        theAlgorithm = new JoiningAlgorithm();
      } else if (tb1Algorithm.equalsIgnoreCase("UPGMA")) {
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.