Struct parasailors::AlignmentStats [] [src]

pub struct AlignmentStats {
    pub score: i64,
    pub num_matches: u64,
    pub num_positive_subs: u64,
    pub align_length: usize,
    pub query_end: usize,
    pub ref_end: usize,
}

Stores statistics from an alignment.

Fields

The score according to the substitution matrix and gap penalty scheme used.

Number of exactly matching characters.

Number of positively scoring character substitutions (this is the same as num_matches when used an identity matrix).

The length of the found alignment.

The starting index (0-based) of the alignment in the query (usually 0).

The starting index (0-based) of the alignment in the reference.