gen-core 0.1.31

Core structs and representations for the gen sequence graph and version control system.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
use crate::{HashId, Strand};

#[derive(Clone, Debug, Eq, Hash, PartialEq)]
pub struct PathBlock {
    pub node_id: HashId,
    pub block_sequence: String,
    pub sequence_start: i64,
    pub sequence_end: i64,
    pub path_start: i64,
    pub path_end: i64,
    pub strand: Strand,
}