Package picard.illumina.parser.readers

Examples of picard.illumina.parser.readers.AbstractIlluminaPositionFileReader


     * @return An iterator over the PositionalData in that file.
     */
    @Override
    protected CloseableIterator<PositionalData> makeTileIterator(final File file) {

        final AbstractIlluminaPositionFileReader fileReader;
        switch(fileType){
            case Pos:
                fileReader = new PosFileReader(file);
                break;

View Full Code Here

TOP

Related Classes of picard.illumina.parser.readers.AbstractIlluminaPositionFileReader

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.