]> git.donarmstrong.com Git - mothur.git/blobdiff - command.hpp
fixed classify.seqs output file name - had issue if reference taxonomy file did not...
[mothur.git] / command.hpp
index 6a1a4deea6c1df252a627fa827bb33a8f49b439c..22f118164eb04e7d22c0438e3e42c56b79ed0f3d 100644 (file)
@@ -1,6 +1,6 @@
 #ifndef COMMAND_HPP
 #define COMMAND_HPP
-
+//test2
 /*
  *  command.h
  *  
@@ -30,6 +30,7 @@ class Command {
                virtual string getCommandCategory() = 0;
                virtual string getHelpString() = 0;
                virtual string getCitation() = 0;
+               virtual string getDescription() = 0;
                
                virtual map<string, vector<string> > getOutputFiles() { return outputTypes; }
                virtual vector<string> setParameters() = 0; //to fill parameters
@@ -37,7 +38,7 @@ class Command {
        
                virtual int execute() = 0;
                virtual void help() = 0;
-               void citation() { m->mothurOut(getCitation()); }
+               void citation() { m->mothurOutEndLine(); m->mothurOut(getCitation()); m->mothurOutEndLine(); }
                virtual ~Command() { }
        
        protected: