ISnpReaderSkipToChromosomePosition Method |
Name | Description | |
---|---|---|
SkipToChromosomePosition(Int32) |
This moves the cursor to the current/next SNP item containing the current chromosome number
and position equal to the given position
(i.e. Current.Position == position and Current.Chromosome does not change),
or beyond the end of the enumerator if none exist.
The enumerator should be positioned at or after the first item and at
or before the last item.
NOTE: This is useful when traversing sorted SNP sequences and need to jump to a
specific chromosome position within current chromosome position.
| |
SkipToChromosomePosition(Int32, Int32) |
This moves the cursor to the current/next SNP item containing the given
chromosome number and position
(i.e. Current.Chromosome == chromosomeNumber and Current.Position == position),
or beyond the end of the enumerator if none exist.
The enumerator should be positioned at or after the first item and at
or before the last item.
NOTE: This is useful when traversing sorted SNP sequences and need to jump to a
specific chromosome number+position.
|