File: index.rst

package info (click to toggle)
seqan2 2.5.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 228,748 kB
  • sloc: cpp: 257,602; ansic: 91,967; python: 8,326; sh: 1,056; xml: 570; makefile: 229; awk: 51; javascript: 21
file content (24 lines) | stat: -rw-r--r-- 940 bytes parent folder | download | duplicates (9)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
.. _tutorial-datastructures-alignment:

Alignment
========================

..  toctree::
    :hidden:
    :titlesonly:

    ScoringSchemes
    AlignmentGaps
    AlignmentGraph

Alignment Algorithms ( e.g.
:ref:`Pairwise <tutorial-algorithms-alignment-pairwise-sequence-alignment>` and
:ref:`Multiple <tutorial-algorithms-alignment-multiple-sequence-alignment>` )
are one of the core algorithms in SeqAn. In this section you can learn how SeqAn
represents alignments as C++ Objects and how you could use those data structures
for your own alignment algorithm. Furthermore, you can learn which different
kinds of :ref:`tutorial-datastructures-alignment-scoringschemes` exist,
i.e. which combinations of Match/Mismatch Evaluation (e.g. Simple Score,
Substitutional Matrices Score) and Insertion/Deletion Evaluation (e.g. Linear
Gap Model, Affine Gap Model and Dynamic Gap Model) are possible and how you can
define your own Scoring Matrices.