Nodes

Types

PanGraph.Graphs.Nodes.NodeType
mutable struct Node{T}
	block  :: T
	strand :: Bool
end

Node represents a portion of a sequence path that passes through a single block. strand stores whether we pass along the forward strand of block (if true) or reverse (if false).

source

Functions

Base.lengthMethod
length(n::Node) = length(n.block, n)

Return the length of sequence stored within node n

source