]> git.donarmstrong.com Git - mothur.git/blobdiff - alignment.hpp
added parse.list command
[mothur.git] / alignment.hpp
index 336781244b5a3370c37a7ad6f369cd9553f31618..6dd7f0aed42938bd94a50bc6d4ebf88eda1c2b40 100644 (file)
@@ -12,7 +12,6 @@
  *     As of 12/18/08 these included alignments based on blastn, needleman-wunsch, and the     Gotoh algorithms
  * 
  */
-using namespace std;
 
 #include "mothur.h"
 #include "alignmentcell.hpp"
@@ -24,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: