Package org.broadinstitute.gatk.engine.iterators

Examples of org.broadinstitute.gatk.engine.iterators.NullSAMIterator


     * Gets the an iterator over the given reads, which will iterate over the reads in the given shard.
     * @param shard the shard to use when querying reads.
     * @return an iterator over the reads specified in the shard.
     */
    protected GATKSAMIterator getReadIterator(Shard shard) {
        return (!reads.isEmpty()) ? reads.seek(shard) : new NullSAMIterator();
    }
View Full Code Here

TOP

Related Classes of org.broadinstitute.gatk.engine.iterators.NullSAMIterator

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.