]> git.donarmstrong.com Git - mothur.git/blobdiff - alignment.hpp
added check to cluster.classic to make sure file type is phylip. added mapping funct...
[mothur.git] / alignment.hpp
index 7a943fd0037430991a7baab418474e78a496d403..9d2197f5eaa7248b9bb8490c87c804f85931d095 100644 (file)
@@ -30,6 +30,8 @@ public:
 //     float getAlignmentScore();
        string getSeqAAln();
        string getSeqBAln();
+    map<int, int> getSeqAAlnBaseMap();
+    map<int, int> getSeqBAlnBaseMap();
        int getCandidateStartPos();
        int getCandidateEndPos();
        int getTemplateStartPos();
@@ -49,6 +51,8 @@ protected:
        int pairwiseLength;
        int nRows, nCols, lA, lB;
        vector<vector<AlignmentCell> > alignment;
+    map<int, int> ABaseMap;
+    map<int, int> BBaseMap;
        MothurOut* m;
 };