Package htsjdk.samtools.util

Examples of htsjdk.samtools.util.BlockGunzipper


        FileInputStream fis = new FileInputStream(blockFile);
        fis.read(compressedBuffer);
        fis.close();

        BlockGunzipper gunzipper = new BlockGunzipper();
        gunzipper.setCheckCrcs(true);
        Method unzipBlock = BlockGunzipper.class.getDeclaredMethod("unzipBlock",byte[].class,byte[].class,Integer.TYPE);
        unzipBlock.setAccessible(true);

        unzipBlock.invoke(gunzipper,uncompressedBuffer,compressedBuffer,compressedBufferSize);
View Full Code Here

TOP

Related Classes of htsjdk.samtools.util.BlockGunzipper

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.