// ========================================================================== // SeqAn - The Library for Sequence Analysis // ========================================================================== // Copyright (c) 2006-2018, Knut Reinert, FU Berlin // All rights reserved. // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are met: // // * Redistributions of source code must retain the above copyright // notice, this list of conditions and the following disclaimer. // * Redistributions in binary form must reproduce the above copyright // notice, this list of conditions and the following disclaimer in the // documentation and/or other materials provided with the distribution. // * Neither the name of Knut Reinert or the FU Berlin nor the names of // its contributors may be used to endorse or promote products derived // from this software without specific prior written permission. // // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" // AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE // IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE // ARE DISCLAIMED. IN NO EVENT SHALL KNUT REINERT OR THE FU BERLIN BE LIABLE // FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL // DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR // SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER // CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT // LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY // OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH // DAMAGE. // // ========================================================================== // Author: Manuel Holtgrewe <manuel.holtgrewe@fu-berlin.de> // ========================================================================== // We put the tag definition into its own header so we can include them // independently from the algorithms. // ========================================================================== #ifndef SEQAN_INCLUDE_SEQAN_ALIGN_ALIGNMENT_ALGORITHM_TAGS_H_ #define SEQAN_INCLUDE_SEQAN_ALIGN_ALIGNMENT_ALGORITHM_TAGS_H_ namespace seqan { // ============================================================================ // Forwards // ============================================================================ // ============================================================================ // Tags, Classes, Enums // ============================================================================ // ---------------------------------------------------------------------------- // Global Alignment Algorithm Tags // ---------------------------------------------------------------------------- /*! * @defgroup AlignmentAlgorithmTags Alignment Algorithm Tags * @brief Tags for selecting algorithms. */ // TODO(holtgrew): Rename MyersBitVector to Myers? Clashes with find module at the moment. /*! * @tag AlignmentAlgorithmTags#Gotoh * @headerfile <seqan/align.h> * @brief Tag for selecting Gotoh DP algorithm. * * @signature struct Gotoh_; * @signature typedef Tag<Gotoh_> Gotoh; */ struct Gotoh_; typedef Tag<Gotoh_> Gotoh; /*! * @tag AlignmentAlgorithmTags#NeedlemanWunsch * @headerfile <seqan/align.h> * @brief Tag for selecting NeedlemanWunsch DP algorithm. * * @signature struct Hirschberg_; * @signature typedef Tag<Hirschberg_> NeedlemanWunsch; */ struct NeedlemanWunsch_; typedef Tag<NeedlemanWunsch_> NeedlemanWunsch; /*! * @tag AlignmentAlgorithmTags#Hirschberg * @headerfile <seqan/align.h> * @brief Tag for selecting Hirschberg's DP algorithm. * * @signature struct Hirschberg_; * @signature typedef Tag<Hirschberg_> Hirschberg; */ struct Hirschberg_; typedef Tag<Hirschberg_> Hirschberg; /*! * @tag AlignmentAlgorithmTags#MyersBitVector * @headerfile <seqan/align.h> * @brief Tag for selecting Myers' bit-vector algorithm. * * @signature struct MyersBitVector_; * @signature typedef Tag<MyersBitVector_> MyersBitVector; */ struct MyersBitVector_; typedef Tag<MyersBitVector_> MyersBitVector; /*! * @tag AlignmentAlgorithmTags#MyersHirschberg * @headerfile <seqan/align.h> * @brief Tag for selecting a combination of Myers' bit-vector algorithm with Hirschberg's algorithm. * * @signature struct MyersHirschberg_; * @signature typedef Tag<MyersHirschberg_> MyersHirschberg; */ struct MyersHirschberg_; typedef Tag<MyersHirschberg_> MyersHirschberg; // ---------------------------------------------------------------------------- // Local Alignment Algorithm Tags // ---------------------------------------------------------------------------- /*! * @defgroup PairwiseLocalAlignmentAlgorithms Pairwise Local Alignment Algorithms * @brief Tags for selecting algorithms. */ /*! * @tag PairwiseLocalAlignmentAlgorithms#SmithWaterman * @headerfile <seqan/align.h> * @brief Tag for selecting the Smith-Waterman algorithm. * * @signature struct SmithWaterman_; * @signature typedef Tag<SmithWaterman_> SmithWaterman; */ struct SmithWaterman_; typedef Tag<SmithWaterman_> SmithWaterman; /*! * @tag PairwiseLocalAlignmentAlgorithms#WatermanEggert * @headerfile <seqan/align.h> * @brief Tag for selecting the Waterman-Eggert algorithm. * * @signature struct WatermanEggert_; * @signature typedef Tag<WatermanEggert_> WatermanEggert; */ struct WatermanEggert_; typedef Tag<WatermanEggert_> WatermanEggert; // ============================================================================ // Metafunctions // ============================================================================ // ============================================================================ // Functions // ============================================================================ } // namespace seqan #endif // #ifndef SEQAN_INCLUDE_SEQAN_ALIGN_ALIGNMENT_ALGORITHM_TAGS_H_