]> git.donarmstrong.com Git - mothur.git/blobdiff - alignment.hpp
fixed io
[mothur.git] / alignment.hpp
index 77b650cab75b8f9bbbd4241f851ccf48da556c3f..9d2197f5eaa7248b9bb8490c87c804f85931d095 100644 (file)
@@ -30,12 +30,16 @@ public:
 //     float getAlignmentScore();
        string getSeqAAln();
        string getSeqBAln();
+    map<int, int> getSeqAAlnBaseMap();
+    map<int, int> 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<vector<AlignmentCell> > alignment;
+    map<int, int> ABaseMap;
+    map<int, int> BBaseMap;
+       MothurOut* m;
 };
 
 /**************************************************************************************************/