chainfile 0.4.0

A crate for working with genomics chain files.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Alignment data records.

/// A kind of alignment data record.
#[derive(Copy, Clone, Debug, PartialEq, Eq)]
pub enum Kind {
    /// A non-terminating alignment data line.
    ///
    /// In other words, all alignment data records that precede the last line
    /// within an alignment section.
    NonTerminating,

    /// The last line in an alignment section.
    Terminating,
}