예제 #1
0
  /**
   * seek forward on the iterator
   *
   * @param interval the interval to seek to
   * @return a RODRecordList at that location, null otherwise
   */
  @Override
  public RODRecordList seekForward(GenomeLoc interval) {

    RODRecordList lt = iterator.seekForward(interval);
    createPastRecord(lt);
    return lt;
  }