Package htsjdk.samtools.util.BlockCompressedInputStream

Examples of htsjdk.samtools.util.BlockCompressedInputStream.FileTermination


    }

    @Override protected int doWork() {
        IOUtil.assertFileIsReadable(INPUT);
        try {
            final FileTermination term = BlockCompressedInputStream.checkTermination(INPUT);
            System.err.println(term.name());
            if (term == FileTermination.DEFECTIVE) {
                return 100;
            }
            else {
                return 0;
View Full Code Here

TOP

Related Classes of htsjdk.samtools.util.BlockCompressedInputStream.FileTermination

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.