Examples of PoissonDistributionCalculator


Examples of net.sourceforge.align.calculator.length.PoissonDistributionCalculator

  public List<Alignment> apply(List<Alignment> alignmentList) {
   
    Counter counter = new SplitCounter();
    Calculator calculator =
      new PoissonDistributionCalculator(counter, alignmentList);
   
    HmmAlignAlgorithmFactory algorithmFactory =
      new ForwardBackwardAlgorithmFactory();
   
    AlignAlgorithm algorithm =
View Full Code Here

Examples of net.sourceforge.align.calculator.length.PoissonDistributionCalculator

    if (lengthCorpus != null) {
      lengthAlignmentList = loadAlignmentList(lengthCorpus);
    } else {
      lengthAlignmentList = alignmentList;
    }
    Calculator calculator = new PoissonDistributionCalculator(counter,
        lengthAlignmentList);
    return calculator;
  }
View Full Code Here

Examples of net.sourceforge.align.calculator.length.PoissonDistributionCalculator

    List<Filter> filterList = new ArrayList<Filter>();
   
    Counter counter = new SplitCounter();
    Calculator calculator =
      new PoissonDistributionCalculator(counter, alignmentList);
   
    HmmAlignAlgorithmFactory algorithmFactory =
      new ForwardBackwardAlgorithmFactory();
   
    AlignAlgorithm algorithm =
View Full Code Here

Examples of net.sourceforge.align.calculator.length.PoissonDistributionCalculator

      List<Alignment> bestAlignmentList) {
   
    List<Calculator> calculatorList = new ArrayList<Calculator>();
   
    Counter counter = new SplitCounter();
    calculatorList.add(new PoissonDistributionCalculator(counter, alignmentList));
   
    calculatorList.add(new TranslationCalculator(bestAlignmentList));

    Calculator calculator = new CompositeCalculator(calculatorList);
   
View Full Code Here

Examples of net.sourceforge.align.calculator.length.PoissonDistributionCalculator

   * @return aligned list
   */
  private List<Alignment> lengthAlign(List<Alignment> alignmentList) {
    Counter counter = new SplitCounter();
    Calculator calculator =
      new PoissonDistributionCalculator(counter, alignmentList);
   
    HmmAlignAlgorithmFactory algorithmFactory =
      new ForwardBackwardAlgorithmFactory();
   
    AlignAlgorithm algorithm =
View Full Code Here

Examples of net.sourceforge.align.calculator.length.PoissonDistributionCalculator

      List<Alignment> bestAlignmentList) {
   
    List<Calculator> calculatorList = new ArrayList<Calculator>();
   
    Counter counter = new SplitCounter();
    calculatorList.add(new PoissonDistributionCalculator(counter, alignmentList));
   
    calculatorList.add(new TranslationCalculator(bestAlignmentList));

    Calculator calculator = new CompositeCalculator(calculatorList);
   
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.