Package net.sf.samtools.BAMFileReader

Examples of net.sf.samtools.BAMFileReader.QueryType


  CloseableIterator<SAMRecord> query(String sequence, int start, int end,
      boolean contained) {
    CloseableIterator<SAMRecord> iterator = queryAlignmentStart(sequence,
        start);

    QueryType qt = QueryType.CONTAINED;
    if (!contained)
      qt = QueryType.OVERLAPPING;
    if (end == -1)
      qt = QueryType.STARTING_AT;
    return new BAMQueryFilteringIterator(iterator, sequence, start, end, qt);
View Full Code Here

TOP

Related Classes of net.sf.samtools.BAMFileReader.QueryType

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.