X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=gotohoverlap.hpp;fp=gotohoverlap.hpp;h=0000000000000000000000000000000000000000;hb=4a877efa127e56e81a21f53cfdbbfd3bfbe8c4ff;hp=0b7d8ea0f008f30ab4d4cb36d1c7ec22713c3dde;hpb=a6cf29fa4dac0909c7582cb1094151d34093ee76;p=mothur.git diff --git a/gotohoverlap.hpp b/gotohoverlap.hpp deleted file mode 100644 index 0b7d8ea..0000000 --- a/gotohoverlap.hpp +++ /dev/null @@ -1,45 +0,0 @@ -#ifndef GOTOHOVERLAP_H -#define GOTOHOVERLAP_H - -/* - * gotohoverlap.h - * - * - * Created by Pat Schloss on 12/15/08. - * Copyright 2008 Patrick D. Schloss. All rights reserved. - * - * This class is an Alignment child class that implements the Gotoh pairwise alignment algorithm as described in: - * - * Gotoh O. 1982. An improved algorithm for matching biological sequences. J. Mol. Biol. 162:705-8. - * Myers, EW & Miller, W. 1988. Optimal alignments in linear space. Comput Appl Biosci. 4:11-7. - * - * This method is nice because it allows for an affine gap penalty to be assessed, which is analogous to what is used - * in blast and is an alternative to Needleman-Wunsch, which only charges the same penalty for each gap position. - * Because this method typically has problems at the ends when two sequences do not full overlap, we employ a separate - * method to fix the ends (see Overlap class documentation) - * - */ - -#include "mothur.h" -#include "alignment.hpp" - -/**************************************************************************************************/ - -class GotohOverlap : public Alignment { - -public: - GotohOverlap(float, float, float, float, int); - void align(string, string); - - ~GotohOverlap() {} - -private: - float gapOpen; - float gapExtend; - float match; - float mismatch; -}; - -/**************************************************************************************************/ - -#endif