pub struct MatrixMetadata {
pub chr1_index: i64,
pub chr2_index: i64,
pub unit: String,
pub bin_size: i64,
pub sum_counts: f32,
pub block_bin_count: i64,
pub block_column_count: i64,
pub blocks: IndexMap<i64, HiCIndexItem>,
}Expand description
One resolution of one chromosome pair: where its blocks are and how they are laid out.
Fields§
§chr1_index: i64§chr2_index: i64§unit: String§bin_size: i64§sum_counts: f32§block_bin_count: i64§block_column_count: i64§blocks: IndexMap<i64, HiCIndexItem>Trait Implementations§
Source§impl Clone for MatrixMetadata
impl Clone for MatrixMetadata
Source§fn clone(&self) -> MatrixMetadata
fn clone(&self) -> MatrixMetadata
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for MatrixMetadata
impl RefUnwindSafe for MatrixMetadata
impl Send for MatrixMetadata
impl Sync for MatrixMetadata
impl Unpin for MatrixMetadata
impl UnsafeUnpin for MatrixMetadata
impl UnwindSafe for MatrixMetadata
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
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 moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
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