16         Node(
unsigned int i, 
unsigned int j, 
string kmer);
 
unsigned int i
the index of the row/sequence 
Definition: Node.h:18
 
vector< Node * > adjNodes
the nodes that match with this node in the following sequence 
Definition: Node.h:22
 
string kmer
the string of the node 
Definition: Node.h:20
 
bool operator==(const Node &a)
operator "==" to compare the indices of two Nodes 
Definition: Node.cc:17
 
unsigned int j
the index of the node 
Definition: Node.h:19