Examples of StemStructure


Examples of bgu.bio.ds.rna.StemStructure

        "matrix/tests/STEMS-test2.matrix",
        StemStructureAlphabet.getInstance()),
        new GlobalSequenceAlignment(10, 10, RnaAlphabet.getInstance(),
            new IdentityScoringMatrix(RnaAlphabet.getInstance())));

    StemStructure str1 = new StemStructure(
        ">ID: add , START: 1 , STRAND: UNKNOWN , ENERGY: -14.1 (base)",
        new CharBuffer("UCUACCGGGCAAAGUCCGACUAUGGG"), new CharBuffer(
            "((((.(((((...)))))....))))"));

    StemStructure str2 = new StemStructure(
        ">ID: add , START: 1 , STRAND: UNKNOWN , ENERGY: -14.1 (base)",
        new CharBuffer(
            "UCACACCCGUUCCCAUACCGAACACGGAAACCGAUGGUAGUCGGGGGUUUCCCCCUGUGA"),
        new CharBuffer(
            "(((((...(..(((...((((.(((((...))).))....)))))))...)....)))))"));
View Full Code Here

Examples of bgu.bio.ds.rna.StemStructure

            10, 10, RnaAlphabet.getInstance(),
            new AffineGapScoringMatrix(
                "matrix/NUC-Affine-sim-RIBOSUM85-60.matrix",
                RnaAlphabet.getInstance())));

    StemStructure str1 = new StemStructure(">1", new CharBuffer(
        "AGAGGUAAAAUGCAUCU"), new CharBuffer("((..(((...)))..))"));

    StemStructure str2 = new StemStructure(">1", new CharBuffer(
        "AGAGGUAAAAUGCAUUU"), new CharBuffer("((..(((...)))..))"));

    sim.setStem1(str1);
    sim.setStem2(str2);
    sim.run();
View Full Code Here

Examples of bgu.bio.ds.rna.StemStructure

            10, 10, RnaAlphabet.getInstance(),
            new AffineGapScoringMatrix(
                "matrix/NUC-Affine-sim-RIBOSUM85-60.matrix",
                RnaAlphabet.getInstance())));

    StemStructure str1 = new StemStructure(">1", new CharBuffer(
        "AGAGGUAAAAUGCAUCU"), new CharBuffer("((..(((...)))..))"));

    StemStructure str2 = new StemStructure(">1", new CharBuffer(
        "AGAGAAAAUAUCU"), new CharBuffer("((..(...)..))"));

    sim.setStem1(str1);
    sim.setStem2(str2);
    sim.run();
View Full Code Here

Examples of bgu.bio.ds.rna.StemStructure

                RnaAlphabet.getInstance())),
        new LocalSequenceAlignment(10, 10, RnaAlphabet.getInstance(),
            new ScoringMatrix("matrix/NUC-sim-RIBOSUM85-60.matrix",
                RnaAlphabet.getInstance())));

    StemStructure str1 = new StemStructure(">1", new CharBuffer(
        "AAAGAGGUAAAAUGCAUCUAA"), new CharBuffer(
        "..((..(((...)))..)).."));

    StemStructure str2 = new StemStructure(">1", new CharBuffer(
        "AAAGAGAAAAUAUCUAA"), new CharBuffer("..((..(...)..)).."));

    StemStructure str3 = new StemStructure(">1", new CharBuffer(
        "UUUUAAACAGAGAAAAUAUCUCAAAGGGG"), new CharBuffer(
        "........((..(...)..))........"));

    sim.setStem1(str1);
    sim.setStem2(str2);
View Full Code Here

Examples of bgu.bio.ds.rna.StemStructure

                RnaAlphabet.getInstance())),
        new LocalSequenceAlignment(10, 10, RnaAlphabet.getInstance(),
            new ScoringMatrix("matrix/NUC-sim-RIBOSUM85-60.matrix",
                RnaAlphabet.getInstance())));

    StemStructure str1 = new StemStructure(">1", new CharBuffer(
        "AGAGGUAAAAUGCAUCU"), new CharBuffer("((..(((...)))..))"));

    StemStructure str2 = new StemStructure(">1", new CharBuffer(
        "AGAGAAAAUAUCU"), new CharBuffer("((..(...)..))"));

    StemStructure str3 = new StemStructure(">1", new CharBuffer(
        "UUUUAAACAGAGAAAAUAUCUCAAAGGGG"), new CharBuffer(
        "........((..(...)..))........"));

    sim.setStem1(str1);
    sim.setStem2(str2);
View Full Code Here

Examples of bgu.bio.ds.rna.StemStructure

                RnaAlphabet.getInstance())),
        new LocalSequenceAlignment(10, 10, RnaAlphabet.getInstance(),
            new ScoringMatrix("matrix/NUC-sim-RIBOSUM85-60.matrix",
                RnaAlphabet.getInstance())));

    StemStructure str1 = new StemStructure(
        ">1",
        new CharBuffer(
            "AUUUCAUGAAGAGUGGCUGAGGGACGGGCCCUGUGACGCCACGACAACCGGCUCGAGCAAUUCGGGACAUCGGUGUCAACUCUCUCC"),
        new CharBuffer(
            "..............((..(((((........................................................))))).))"));

    StemStructure str2 = new StemStructure(
        ">1",
        new CharBuffer(
            "UGAGACUUAUUACUGCACCAUAAUUAAGCCAUCCAAUGAGGAAGACUCGAUUUUGGUGGAAAGGUUUAUCUGGCACAAUGGUAGUGUUUUG"),
        new CharBuffer(
            "((((((..((((((.................................................................))))))))))))"));

    StemStructure str1no = new StemStructure(
        ">1",
        new CharBuffer(
            "GGCUGAGGGACGGGCCCUGUGACGCCACGACAACCGGCUCGAGCAAUUCGGGACAUCGGUGUCAACUCUCUCC"),
        new CharBuffer(
            "((..(((((........................................................))))).))"));
View Full Code Here

Examples of bgu.bio.ds.rna.StemStructure

            "matrix/tests/STEMS-test2-affine.matrix",
            StemStructureAlphabet.getInstance()),
        new GlobalSequenceAlignment(10, 10, RnaAlphabet.getInstance(),
            new IdentityScoringMatrix(RnaAlphabet.getInstance())));

    StemStructure str1 = new StemStructure(
        ">ID: add , START: 1 , STRAND: UNKNOWN , ENERGY: -14.1 (base)",
        new CharBuffer("UCUACCGGGCAAAGUCCGACUAUGGG"), new CharBuffer(
            "((((.(((((...)))))....))))"));

    StemStructure str2 = new StemStructure(
        ">ID: add , START: 1 , STRAND: UNKNOWN , ENERGY: -14.1 (base)",
        new CharBuffer("GGGGGGUCUACCGGGCAAAGUCCGACUAUGGGCCCCCC"),
        new CharBuffer("((((((((((.(((((...)))))....))))))))))"));

    StemStructure str15 = new StemStructure(
        ">ID: add , START: 1 , STRAND: UNKNOWN , ENERGY: -14.1 (base)",
        new CharBuffer("UCUACCGGGCAAAGUCCGACUAUGGG"), new CharBuffer(
            "((((.(((((...)))))....))))"));

    simGlobal.setStem1(str1);
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.