X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=alignment.hpp;h=9d2197f5eaa7248b9bb8490c87c804f85931d095;hb=a9dbc22713bfc056a797361dd757b1a5c98e1c01;hp=215e4b32f77e1fc21df19ffd61b493b84d89acc6;hpb=02909d6cae9963ba00dc746969a370fa8ca934fc;p=mothur.git diff --git a/alignment.hpp b/alignment.hpp index 215e4b3..9d2197f 100644 --- a/alignment.hpp +++ b/alignment.hpp @@ -26,15 +26,20 @@ public: virtual ~Alignment(); virtual void align(string, string) = 0; + // float getAlignmentScore(); string getSeqAAln(); string getSeqBAln(); + map getSeqAAlnBaseMap(); + map getSeqBAlnBaseMap(); int getCandidateStartPos(); int getCandidateEndPos(); int getTemplateStartPos(); int getTemplateEndPos(); - + int getPairwiseLength(); + void resize(int); + int getnRows() { return nRows; } // int getLongestTemplateGap(); protected: @@ -46,6 +51,9 @@ protected: int pairwiseLength; int nRows, nCols, lA, lB; vector > alignment; + map ABaseMap; + map BBaseMap; + MothurOut* m; }; /**************************************************************************************************/