Function
goLeftChild
bool goLeftChild(iterator)
Include Headers
seqan/index.h
Parameters
iterator
An iterator of a wavelet tree structure.
Types: Spwc.RightArrayBinaryTree Iterator, TopDown Iterator
Remarks
goLeftChild(iterator) goes down the left edge if it exist.
Return Values
true if the edge or path to go down exists, otherwise false.
Examples
String<Dna5> genome = "ACGTACGT";
RightArrayBinaryTree<Dna5> waveletTreeStructure(genome);
 
Iterator<RightArrayBinaryTree<Dna5>, TopDown<> >::Type it;
it = begin(waveletTreeStructure); // go to root node
 
goLeftChild(it); // go to left child of root node
SeqAn - Sequence Analysis Library - www.seqan.de
 

Page built @2012/10/02 11:10:32