Struct gapi_grpc::google::genomics::v1::LinearAlignment[][src]

pub struct LinearAlignment {
    pub position: Option<Position>,
    pub mapping_quality: i32,
    pub cigar: Vec<CigarUnit>,
}

A linear alignment can be represented by one CIGAR string. Describes the mapped position and local alignment of the read to the reference.

Fields

position: Option<Position>

The position of this alignment.

mapping_quality: i32

The mapping quality of this alignment. Represents how likely the read maps to this position as opposed to other locations.

Specifically, this is -10 log10 Pr(mapping position is wrong), rounded to the nearest integer.

cigar: Vec<CigarUnit>

Represents the local alignment of this sequence (alignment matches, indels, etc) against the reference.

Trait Implementations

impl Clone for LinearAlignment[src]

impl Debug for LinearAlignment[src]

impl Default for LinearAlignment[src]

impl Message for LinearAlignment[src]

impl PartialEq<LinearAlignment> for LinearAlignment[src]

impl StructuralPartialEq for LinearAlignment[src]

Auto Trait Implementations

impl RefUnwindSafe for LinearAlignment

impl Send for LinearAlignment

impl Sync for LinearAlignment

impl Unpin for LinearAlignment

impl UnwindSafe for LinearAlignment

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> IntoRequest<T> for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 
[src]

impl<T> WithSubscriber for T[src]