Module gfa::gfa

source · []

Re-exports

pub use self::orientation::*;
pub use self::traits::*;

Modules

Structs

This module defines the various GFA line types, the GFA object, and some utility functions and types. Simple representation of a parsed GFA file, using a Vec to store each separate GFA line type.

The header line of a GFA graph

The step list that the path actually consists of is an unparsed Vec to keep memory down; use path.iter() to get an iterator over the parsed path segments and orientations.

A segment in a GFA graph. Generic over the name type, but currently the parser is only defined for N = Vec

Enums

Enum containing the different kinds of GFA lines.