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());