Package org.bioinfo.formats.core.sequence

Examples of org.bioinfo.formats.core.sequence.Fasta


      // init buffer
      StringBuilder referenceBuffer = new StringBuilder();

      numberOfReferenceContigs = 0;
      Fasta contig;
      while((contig=reader.read())!=null){
        referenceBuffer.append(contig.getSeq().toUpperCase());
        numberOfReferenceContigs++;
      }

      reader.close();
      reference = referenceBuffer.toString().getBytes();
View Full Code Here

TOP

Related Classes of org.bioinfo.formats.core.sequence.Fasta

Copyright © 2018 www.massapicom. 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.