Struct fibertools_rs::fiber::FiberseqData

source ·
pub struct FiberseqData {
    pub record: Record,
    pub msp: Ranges,
    pub nuc: Ranges,
    pub m6a: Ranges,
    pub cpg: Ranges,
    pub base_mods: BaseMods,
    pub ec: f32,
    pub target_name: String,
    pub rg: String,
    pub center_position: Option<CenterPosition>,
}

Fields§

§record: Record§msp: Ranges§nuc: Ranges§m6a: Ranges§cpg: Ranges§base_mods: BaseMods§ec: f32§target_name: String§rg: String§center_position: Option<CenterPosition>

Implementations§

source§

impl FiberseqData

source

pub fn new( record: Record, target_name: Option<&String>, filters: &FiberFilters, ) -> Self

source

pub fn dict_from_head_view(head_view: &HeaderView) -> HashMap<i32, String>

source

pub fn target_name_from_tid( tid: i32, target_dict: &HashMap<i32, String>, ) -> Option<&String>

source

pub fn from_records( records: Vec<Record>, head_view: &HeaderView, filters: &FiberFilters, ) -> Vec<Self>

source

pub fn get_rq(&self) -> Option<f32>

source

pub fn get_hp(&self) -> String

source

pub fn center(&self, center_position: &CenterPosition) -> Option<Self>

Center all coordinates on the read using the offset attribute.

source

pub fn write_msp(&self, reference: bool) -> String

source

pub fn write_nuc(&self, reference: bool) -> String

source

pub fn write_m6a(&self, reference: bool) -> String

source

pub fn write_cpg(&self, reference: bool) -> String

source

pub fn to_bed12( &self, reference: bool, starts: &[Option<i64>], lengths: &[Option<i64>], color: &str, ) -> String

source

pub fn all_header(simplify: bool, quality: bool) -> String

source

pub fn write_all(&self, simplify: bool, quality: bool) -> String

Trait Implementations§

source§

impl Clone for FiberseqData

source§

fn clone(&self) -> FiberseqData

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for FiberseqData

source§

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

Formats the value using the given formatter. Read more
source§

impl PartialEq for FiberseqData

source§

fn eq(&self, other: &FiberseqData) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl StructuralPartialEq for FiberseqData

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> CloneToUninit for T
where T: Clone,

source§

unsafe fn clone_to_uninit(&self, dst: *mut T)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. 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> 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> Same for T

source§

type Output = T

Should always be Self
source§

impl<SS, SP> SupersetOf<SS> for SP
where SS: SubsetOf<SP>,

source§

fn to_subset(&self) -> Option<SS>

The inverse inclusion map: attempts to construct self from the equivalent element of its superset. Read more
source§

fn is_in_subset(&self) -> bool

Checks if self is actually part of its subset T (and can be converted to it).
source§

fn to_subset_unchecked(&self) -> SS

Use with care! Same as self.to_subset but without any property checks. Always succeeds.
source§

fn from_subset(element: &SS) -> SP

The inclusion map: converts self to the equivalent element of its superset.
source§

impl<T> ToOwned for T
where T: Clone,

source§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

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

source§

type Error = Infallible

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

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

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.
source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

source§

fn vzip(self) -> V

source§

impl<T> ErasedDestructor for T
where T: 'static,

source§

impl<T> Scalar for T
where T: 'static + Clone + PartialEq + Debug,