fn() createBWTable
Creates a Burrows-Wheeler table from a given text and suffix array.

Defined in <seqan/index.h>
Signature void createBWTable(bwt, text, suffixArray[, algoTag]);

Parameters

bwt The resulting Burrows-Wheeler table.
suffix Array The suffix array of text.
text A given text. Types: ContainerConcept
algoTag A tag that identifies the algorithm which is used for creation.

Detailed Description

This function should not be called directly. Please use indexCreate or indexRequire. The size of bwt must be at least length(text) before calling this function.

Data Races

Thread safety unknown!