Examples of CRAMIndexer


Examples of net.sf.samtools.CRAMIndexer

  public BaiIndexer(InputStream is, SAMFileHeader samFileHeader, File output) {
    this.is = new CountingInputStream(is);
    this.samFileHeader = samFileHeader;

    indexer = new CRAMIndexer(output, samFileHeader);
  }
View Full Code Here

Examples of net.sf.samtools.CRAMIndexer

  public BaiIndexer(InputStream is, File output) throws IOException {
    this.is = new CountingInputStream(is);
    CramHeader cramHeader = ReadWrite.readCramHeader(this.is);
    samFileHeader = cramHeader.samFileHeader;

    indexer = new CRAMIndexer(output, samFileHeader);
  }
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.