Struct google_genomics1::LinearAlignment[][src]

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

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

This type is not used in any activity, and only used as part of another schema.

Fields

The position of this alignment.

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

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.

Trait Implementations

impl Default for LinearAlignment
[src]

Returns the "default value" for a type. Read more

impl Clone for LinearAlignment
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for LinearAlignment
[src]

Formats the value using the given formatter. Read more

impl Part for LinearAlignment
[src]

Auto Trait Implementations