Examples of AffineGapGlobalSequenceAlignmentNoMatrix


Examples of bgu.bio.algorithms.alignment.AffineGapGlobalSequenceAlignmentNoMatrix

  private static void testRNAShuffleExample() throws IOException {
    RnaSpecificTypeRelatedTreePruning prune2 = new RnaSpecificTypeRelatedTreePruning(
        false, true);
    RnaSpecificSmoothCost smooth = new RnaSpecificSmoothCost();

    SequenceAlignment aligner = new AffineGapGlobalSequenceAlignmentNoMatrix(
        10, 10, RnaAlphabet.getInstance(), new AffineGapScoringMatrix(
            "matrix" + File.separator
                + "interval-RIBOSUM85-60.matrix",
            RnaAlphabet.getInstance()));
View Full Code Here

Examples of bgu.bio.algorithms.alignment.AffineGapGlobalSequenceAlignmentNoMatrix

  public static void testRNAExample() {

    RnaSpecificTypeRelatedTreePruning prune = new RnaSpecificTypeRelatedTreePruning(
        false, true);
    RnaSpecificSmoothCost smooth = new RnaSpecificSmoothCost();
    SequenceAlignment aligner = new AffineGapGlobalSequenceAlignmentNoMatrix(
        10, 10, RnaAlphabet.getInstance(), new AffineGapScoringMatrix(
            "matrix" + File.separator
                + "interval-RIBOSUM85-60.matrix",
            RnaAlphabet.getInstance()));
View Full Code Here

Examples of bgu.bio.algorithms.alignment.AffineGapGlobalSequenceAlignmentNoMatrix

  public void testRNAShuffleExample() {
    RnaSpecificTypeRelatedTreePruning prune = new RnaSpecificTypeRelatedTreePruning(
        false, true);
    RnaSpecificSmoothCost smooth = new RnaSpecificSmoothCost();

    SequenceAlignment aligner = new AffineGapGlobalSequenceAlignmentNoMatrix(
        10, 10, RnaAlphabet.getInstance(), new AffineGapScoringMatrix(
            "matrix" + File.separator
                + "interval-RIBOSUM85-60.matrix",
            RnaAlphabet.getInstance()));
View Full Code Here

Examples of bgu.bio.algorithms.alignment.AffineGapGlobalSequenceAlignmentNoMatrix

    RnaSpecificTypeRelatedTreePruning pruneUnrooted = new RnaSpecificTypeRelatedTreePruning(
        false, false);

    RnaSpecificSmoothCost smooth = new RnaSpecificSmoothCost();

    SequenceAlignment aligner = new AffineGapGlobalSequenceAlignmentNoMatrix(
        10, 10, RnaAlphabet.getInstance(), new AffineGapScoringMatrix(
            "matrix" + File.separator
                + "interval-RIBOSUM85-60.matrix",
            RnaAlphabet.getInstance()));
View Full Code Here

Examples of bgu.bio.algorithms.alignment.AffineGapGlobalSequenceAlignmentNoMatrix

    RnaSpecificTypeRelatedTreePruning prune = new RnaSpecificTypeRelatedTreePruning(
        true, false);
   
    RnaSpecificSmoothCost smooth = new RnaSpecificSmoothCost();

    SequenceAlignment aligner = new AffineGapGlobalSequenceAlignmentNoMatrix(
        10, 10, RnaAlphabet.getInstance(), new AffineGapScoringMatrix(
            "matrix" + File.separator
                + "interval-RIBOSUM85-60.matrix",
            RnaAlphabet.getInstance()));
View Full Code Here

Examples of bgu.bio.algorithms.alignment.AffineGapGlobalSequenceAlignmentNoMatrix

  public static void testRNAExample() {

    RnaSpecificTypeRelatedTreePruning prune = new RnaSpecificTypeRelatedTreePruning(
        false, true);
    RnaSpecificSmoothCost smooth = new RnaSpecificSmoothCost();
    SequenceAlignment aligner = new AffineGapGlobalSequenceAlignmentNoMatrix(
        10, 10, RnaAlphabet.getInstance(), new AffineGapScoringMatrix(
            "matrix" + File.separator
                + "interval-RIBOSUM85-60.matrix",
            RnaAlphabet.getInstance()));
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.