Examples of Alignment


Examples of org.lightforge.bioinformatics.alignment.Alignment

  @Override
  protected void traceBackGlobal() {
    for (SdpaCell finalCell : getFinalCells()) {
      traceBackGlobal(finalCell,
          new Alignment(finalCell.get_score(), _alignmentType));
    }
  }
View Full Code Here

Examples of org.moltools.lib.alignment.Alignment

  /**Return the strongest intramolecular structure (as reported by lac) for
   * the specified sequence.
   * Throws exception if allowPolys is true.*/
  public NASecStructure calculateStructure(NucleotideSequence seq, boolean doTemp) {
    Alignment la = doStrongestIntramolecularLocalAlignment(seq.seqString(), seq.getType());
    if (la == null) return null;
    NASecStructure s = new DefaultNASecStructure(la,seq.length());
    return s;
  }
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.