Function
goRight
Iterates to the next sibling in a tree.
goRight(iterator)
Include Headers
seqan/index.h
Parameters
iterator
An iterator of a suffix tree.
Return Values
true if the iterator could be moved, otherwise false.
Types: bool
Examples
String<Dna5> genome = "ACGTACGT";
RightArrayBinaryTree<Dna5> waveletTreeStructure(genome);
 
Iterator<RightArrayBinaryTree<Dna5>, TopDown<> >::Type it;
it = begin(waveletTreeStructure); // go to root node
 
goDown(it); // go to left child of root node
goRight(it); // go to right child of root node
SeqAn - Sequence Analysis Library - www.seqan.de
 

Page built @2013/07/11 09:12:17