Glossary
List of terms used in SeqAn
Adaption
Functionality that allows to access built-in type or data types from external libraries in the same way as SeqAn classes.
Affine Gap Costs
A scoring scheme that defines the score for a gap of length n as gap_open + (n-1)* gap_extend.
Alignment
An arrangement of two or more sequences: Each character is connected to at most one character for each other sequence, and that the characters in each sequence are ordered in the same way as the connected characters in other sequences.
Blank
One position within a gap area of an alignment.
Concept
A kind of interface used in generic programmic that is not formulated in C++ but only a part of the documentation.
Gap
A part of an alignment in which characters of one sequence are not aligned to characters of the other sequence.
Haystack
The sequence that is searched for needles.
Index
A data structure for faster searching in sequences.
Linear Gap Costs
A scoring scheme that defines the score for a gap to be proportional to the length of the gap.
Metafunction
A C++ construct that is used to determine types and constants at compile time.
Needle
The sequence that is searched in the haystack.
Scoring Scheme
A rule for calculating the similarity between two values or between a value and a blank.
Scoring schemes are used for searching and aligning.In SeqAn, scoring schemes are stored in score objects, e.g. Simple Score or Pam.
SeqAn
The C++ library for sequence analysis.
You are just reading the documentation of this library. For more information see http://www.seqan.de.
Specialization
A refinement of a class that was defined using Template Subclassing.
Tag
A type that acts as a switch when applied as argument to functions or metafunctions.
See: Tags
Template Subclassing
An alternative to inheritance for the refinement of classes that is based on class template specialization.
Trie
A tree shaped automaton.
See: Trie
SeqAn - Sequence Analysis Library - www.seqan.de