X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=alignment.hpp;h=9d2197f5eaa7248b9bb8490c87c804f85931d095;hb=1f0e54b53b714781f3f2fee7d01177fade98a625;hp=77b650cab75b8f9bbbd4241f851ccf48da556c3f;hpb=3abb236c602eb168ee112f080b563ebe2c705029;p=mothur.git diff --git a/alignment.hpp b/alignment.hpp index 77b650c..9d2197f 100644 --- a/alignment.hpp +++ b/alignment.hpp @@ -30,12 +30,16 @@ public: // 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: @@ -47,6 +51,9 @@ protected: int pairwiseLength; int nRows, nCols, lA, lB; vector > alignment; + map ABaseMap; + map BBaseMap; + MothurOut* m; }; /**************************************************************************************************/