Group Approximate Finder Search Type Tags
Tags for specifying the Finder search type (prefix or infix).

Grouped Tags Overview

Detailed Description

There are two interesting kinds of search for approximate string search algorithms: (1) search for a matching substring anywhere in the text, infix search, and (2) search for a matching prefix, prefix search. The tags in this group can be used to select this search for approximate string search algorithms.

Grouped Tags Detail

struct FindInfix;

Defined in
<seqan/find.h>
Find needle as a substring of the haystack (infix search).
See Also
FindPrefix

struct FindPrefix;

Defined in
<seqan/find.h>
Find needle as a substring of the haystack (prefix search).
See Also
FindInfix