Package net.sf.cram.structure

Examples of net.sf.cram.structure.Block.compress()


    Block block = new Block();
    block.setRawContent(toByteArray(samFileHeader));
    block.method = BlockCompressionMethod.RAW.ordinal();
    block.contentId = 0;
    block.contentType = BlockContentType.FILE_HEADER;
    block.compress();

    Container c = new Container();
    c.blockCount = 1;
    c.blocks = new Block[] { block };
    c.landmarks = new int[0];
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.