fn() createSuffixArray
Creates a suffix array from a given text.

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

Parameters

suffix Array The resulting suffix array.
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 suffixArray must be at least length(text) before calling this function.

Data Races

If not stated otherwise, concurrent invocation is not guaranteed to be thread-safe.

See Also