Struct google_genomics1::CigarUnit[][src]

pub struct CigarUnit {
    pub reference_sequence: Option<String>,
    pub operation: Option<String>,
    pub operation_length: Option<String>,
}

A single CIGAR operation.

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

Fields

referenceSequence is only used at mismatches (SEQUENCE_MISMATCH) and deletions (DELETE). Filling this field replaces SAM's MD tag. If the relevant information is not available, this field is unset.

no description provided

The number of genomic bases that the operation runs for. Required.

Trait Implementations

impl Default for CigarUnit
[src]

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

impl Clone for CigarUnit
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for CigarUnit
[src]

Formats the value using the given formatter. Read more

impl Part for CigarUnit
[src]

Auto Trait Implementations

impl Send for CigarUnit

impl Sync for CigarUnit