Skip to main content

ValuesWalk

Struct ValuesWalk 

Source
pub struct ValuesWalk { /* private fields */ }
Expand description

Successive windows of values over whole chromosomes.

Exhausted after one pass. locs() gives the region of each window up front, so iter.locs().to_vec() before the walk is how both are had at once.

Implementations§

Source§

impl ValuesWalk

Source

pub fn restarted(&self) -> Self

The same walk, back at its first window.

What makes the Python iterator re-iterable: __iter__ hands back a fresh cursor over the plan that is already built, so a second for loop walks the file again instead of yielding nothing. Costs two refcount bumps — the windows and the per-window bin counts are shared, not copied — and re-reads the file, which is what a second pass is.

Source

pub fn plan(reader: &BbiReader, req: &ValuesRequest, span: i64) -> Result<Self>

Resolve the whole walk up front: the windows, the zoom level, and every argument that could be refused.

A request that cannot be read says so when it is made rather than part way through the iteration.

Source

pub fn len(&self) -> usize

Number of windows, so len(iterator) works on the Python side.

Source

pub fn bin_size(&self) -> i64

The whole number of base pairs each bin covers.

Resolved at plan from the request’s f64, so a caller laying window values out on coordinates — as the exporters do — reads the grid the walk actually used rather than rounding the request a second time.

Source

pub fn is_empty(&self) -> bool

Source

pub fn locs(&self) -> &[WindowLoc]

The region of each window: the nth array covers locs()[n].

Source

pub fn next_window(&mut self, reader: &BbiReader) -> Option<Result<Array1<f32>>>

The next window, or None once the walk is spent.

Takes the reader on every step rather than holding it: a #[pyclass] cannot carry a borrow, and the Python iterator drives exactly this.

Trait Implementations§

Source§

impl Debug for ValuesWalk

Hand-written: a progress callback is a boxed closure and cannot be Debug.

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> IntoEither for T

Source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

impl<T> Pointable for T

Source§

const ALIGN: usize

The alignment of pointer.
Source§

type Init = T

The type for initializers.
Source§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
Source§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
Source§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
Source§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = !

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, !>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.