Functionsยง
- is_
sorted - lift_
query_ positions - find the closest query positions for a list of reference positions
- lift_
query_ positions_ exact - lift_
query_ range - Find the closest range but hopefully better
- lift_
reference_ positions - find the closest reference positions for a list of query positions
- lift_
reference_ positions_ exact - merge_
two_ lists - Merge two lists into a sorted list Normal sort is supposed to be very fast on two sorted lists https://doc.rust-lang.org/std/vec/struct.Vec.html#current-implementation-6
- merge_
two_ lists_ with_ qual - Merge two lists based on a key Normal sort is supposed to be very fast on two sorted lists https://doc.rust-lang.org/std/vec/struct.Vec.html#current-implementation-6
- positions_
on_ complimented_ sequence - get positions on the complimented sequence in the cigar record
- positions_
on_ complimented_ sequence_ in_ place - get positions on the complimented sequence in the cigar record
- search_
sorted - search a sorted array for insertions positions of another sorted array returned index i satisfies left a[i-1] < v <= a[i] right a[i-1] <= v < a[i] https://numpy.org/doc/stable/reference/generated/numpy.searchsorted.html