Struct seqalign::measures::LCS [] [src]

pub struct LCS { /* fields omitted */ }

Longest common subsequence (LCS) alignment.

This measure uses the following edit operations:

  • Insert
  • Delete
  • Match

The matches in edit script for this measure give a longest common subsequence. The cost is the number of insertions/deletions after aligning the LCSes.

Methods

impl LCS
[src]

Construct LCS measure with the associated insertion and deletion cost.

[src]

Trait Implementations

impl Clone for LCS
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for LCS
[src]

[src]

Formats the value using the given formatter. Read more

impl<T> Measure<T> for LCS where
    T: Eq
[src]

The edit operations associated with the measure.

[src]

Get a slice with the measure's operations. Typically, this contains all the enum variants of the associated type Operation. Read more

Auto Trait Implementations

impl Send for LCS

impl Sync for LCS