]> git.donarmstrong.com Git - mothur.git/blobdiff - alignment.hpp
added otu.association command. added calcSpearman, calcKendall and calcPearson functi...
[mothur.git] / alignment.hpp
index b3175560af7f16aa7a4e6fe4d8e87a2a081ae7cf..7a943fd0037430991a7baab418474e78a496d403 100644 (file)
@@ -23,17 +23,21 @@ class Alignment {
 public:
        Alignment(int);
        Alignment();
+       virtual ~Alignment();
        virtual void align(string, string) = 0;
        
-       float getAlignmentScore();
+       
+//     float getAlignmentScore();
        string getSeqAAln();
        string getSeqBAln();
        int getCandidateStartPos();
        int getCandidateEndPos();
        int getTemplateStartPos();
        int getTemplateEndPos();
-
+       
        int getPairwiseLength();
+       void resize(int);
+       int getnRows() { return nRows; }
 //     int getLongestTemplateGap();
 
 protected:
@@ -45,6 +49,7 @@ protected:
        int pairwiseLength;
        int nRows, nCols, lA, lB;
        vector<vector<AlignmentCell> > alignment;
+       MothurOut* m;
 };
 
 /**************************************************************************************************/