]> git.donarmstrong.com Git - mothur.git/blobdiff - aligncommand.h
fixing bugs while testing
[mothur.git] / aligncommand.h
index 1167c938708bcce7bb54755229bfceef00379822..ef5a92e4b8aad04651ded1ed8caf58dc58c16b30 100644 (file)
@@ -20,9 +20,16 @@ class AlignCommand : public Command {
        
 public:
        AlignCommand(string);   
+       AlignCommand();
        ~AlignCommand();
+       
+       vector<string> setParameters();
+       string getCommandName()                 { return "align.seqs";                  }
+       string getCommandCategory()             { return "Sequence Processing"; }
+       string getHelpString(); 
+       
        int execute(); 
-       void help();    
+       void help() { m->mothurOut(getHelpString()); }  
        
 private:
        struct linePair {
@@ -50,8 +57,10 @@ private:
        float match, misMatch, gapOpen, gapExtend, threshold;
        int processors, kmerSize;
        vector<string> candidateFileNames;
+       vector<string> outputNames;
        
-       bool abort, flip;
+       bool abort, flip, calledHelp;
+
 };
 
 #endif