Examples of randomSequence()


Examples of bgu.bio.util.alphabet.AlphabetUtils.randomSequence()

    final int repeats = 1000;
    char[] seq1 = new char[size];
    char[] seq2 = new char[size];
    for (int i = 0; i < repeats; i++) {

      alphabet.randomSequence(seq1, size, rand);
      alphabet.randomSequence(seq2, size, rand);

      alignMat.setSequences(new String(seq1), new String(seq2));
      alignNoMat.setSequences(seq1, seq2);
View Full Code Here

Examples of bgu.bio.util.alphabet.AlphabetUtils.randomSequence()

    char[] seq1 = new char[size];
    char[] seq2 = new char[size];
    for (int i = 0; i < repeats; i++) {

      alphabet.randomSequence(seq1, size, rand);
      alphabet.randomSequence(seq2, size, rand);

      alignMat.setSequences(new String(seq1), new String(seq2));
      alignNoMat.setSequences(seq1, seq2);

      alignMat.buildMatrix();
View Full Code Here

Examples of bgu.bio.util.alphabet.AlphabetUtils.randomSequence()

    final int repeats = 12000;
    char[] seq1 = new char[size];
    char[] seq2 = new char[size / 2];
    for (int i = 0; i < repeats; i++) {

      alphabet.randomSequence(seq1, size, rand);
      alphabet.randomSequence(seq2, size / 2, rand);

      alignMat.setSequences(new String(seq1), new String(seq2));
      alignNoMat.setSequences(seq1, seq2);
View Full Code Here

Examples of bgu.bio.util.alphabet.AlphabetUtils.randomSequence()

    char[] seq1 = new char[size];
    char[] seq2 = new char[size / 2];
    for (int i = 0; i < repeats; i++) {

      alphabet.randomSequence(seq1, size, rand);
      alphabet.randomSequence(seq2, size / 2, rand);

      alignMat.setSequences(new String(seq1), new String(seq2));
      alignNoMat.setSequences(seq1, seq2);

      alignMat.buildMatrix();
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.