Examples of AdaptiveBandAlgorithm


Examples of net.sourceforge.align.filter.aligner.align.hmm.adaptive.AdaptiveBandAlgorithm

   
    HmmAlignAlgorithmFactory algorithmFactory =
      new ForwardBackwardAlgorithmFactory();
   
    AlignAlgorithm algorithm =
      new AdaptiveBandAlgorithm(algorithmFactory, calculator);
   
    Filter filter = new Aligner(algorithm);
   
    return filter.apply(alignmentList);
View Full Code Here

Examples of net.sourceforge.align.filter.aligner.align.hmm.adaptive.AdaptiveBandAlgorithm

   
    HmmAlignAlgorithmFactory algorithmFactory =
      new ForwardBackwardAlgorithmFactory();
   
    AlignAlgorithm algorithm =
      new AdaptiveBandAlgorithm(algorithmFactory, calculator);
   
    filterList.add(new Aligner(algorithm));
   
    filterList.add(new OneToOneSelector());
   
View Full Code Here

Examples of net.sourceforge.align.filter.aligner.align.hmm.adaptive.AdaptiveBandAlgorithm

    HmmAlignAlgorithmFactory algorithmFactory =
      new ForwardBackwardAlgorithmFactory();
   
    AlignAlgorithm algorithm =
      new AdaptiveBandAlgorithm(algorithmFactory, calculator);

    Filter filter = new Aligner(algorithm);
   
    return filter.apply(alignmentList);
    
View Full Code Here

Examples of net.sourceforge.align.filter.aligner.align.hmm.adaptive.AdaptiveBandAlgorithm

   
    HmmAlignAlgorithmFactory algorithmFactory =
      new ForwardBackwardAlgorithmFactory();
   
    AlignAlgorithm algorithm =
      new AdaptiveBandAlgorithm(algorithmFactory, calculator);
   
    filterList.add(new Aligner(algorithm));
   
    filterList.add(new OneToOneSelector());
   
View Full Code Here

Examples of net.sourceforge.align.filter.aligner.align.hmm.adaptive.AdaptiveBandAlgorithm

   
    HmmAlignAlgorithmFactory algorithmFactory =
      new ForwardBackwardAlgorithmFactory();
   
    AlignAlgorithm algorithm =
      new AdaptiveBandAlgorithm(algorithmFactory, calculator);

    Filter filter = new Aligner(algorithm);
   
    return filter.apply(alignmentList);
    
View Full Code Here

Examples of net.sourceforge.align.filter.aligner.align.hmm.adaptive.AdaptiveBandAlgorithm

   
    HmmAlignAlgorithmFactory algorithmFactory =
      new ViterbiAlgorithmFactory();
   
    AlignAlgorithm algorithm =
      new AdaptiveBandAlgorithm(algorithmFactory, calculator);
   
    Filter filter = new Aligner(algorithm);
   
    return filter.apply(alignmentList);
View Full Code Here

Examples of net.sourceforge.align.filter.aligner.align.hmm.adaptive.AdaptiveBandAlgorithm

   
    HmmAlignAlgorithmFactory algorithmFactory =
      new ForwardBackwardAlgorithmFactory();
   
    AlignAlgorithm algorithm =
      new AdaptiveBandAlgorithm(algorithmFactory, calculator);
   
    Filter filter = new Aligner(algorithm)
   
    return filter.apply(alignmentList);
  }
View Full Code Here

Examples of net.sourceforge.align.filter.aligner.align.hmm.adaptive.AdaptiveBandAlgorithm

   
    HmmAlignAlgorithmFactory algorithmFactory =
      new ForwardBackwardAlgorithmFactory();
   
    AlignAlgorithm algorithm =
      new AdaptiveBandAlgorithm(algorithmFactory, calculator);

    Filter filter = new Aligner(algorithm);
   
    return filter.apply(alignmentList);
    
View Full Code Here

Examples of net.sourceforge.align.filter.aligner.align.hmm.adaptive.AdaptiveBandAlgorithm

        } else if (cls.equals("fb")) {
          algorithmFactory = new ForwardBackwardAlgorithmFactory();
        } else {
          throw new UnknownParameterException("class");
        }
        algorithm = new AdaptiveBandAlgorithm(algorithmFactory,
            calculator, radius, increment, margin,
            categoryMap);
      } else {
        throw new UnknownParameterException("search");
      }
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.