]> git.donarmstrong.com Git - mothur.git/blobdiff - clearcutcommand.h
fixed an mpi bug in shhh.seqs
[mothur.git] / clearcutcommand.h
index b3ac28e03a293df1acb1f946fcec755294d0ecf5..ea6e279b88ca0f6d59312936b2c1652ff5b1a9b6 100644 (file)
@@ -11,7 +11,7 @@
  */
 
 #include "command.hpp"
-
+#include "globaldata.hpp"
 
 /* 
   Evans, J., L. Sheneman, and J.A. Foster (2006) Relaxed Neighbor-Joining: 
@@ -25,14 +25,21 @@ class ClearcutCommand : public Command {
 
 public:
        ClearcutCommand(string);
+       ClearcutCommand();
        ~ClearcutCommand() {};
+       vector<string> getRequiredParameters();
+       vector<string> getValidParameters();
+       vector<string> getRequiredFiles();
+       map<string, vector<string> > getOutputFiles() { return outputTypes; }
        int execute();
        void help();    
        
 private:
        string outputDir, phylipfile, fastafile, matrixout, inputFile, seed, ntrees;
-       bool version, verbose, quiet, norandom, shuffle, neighbor, expblen, expdist, stdout, kimura, jukes, protein, DNA, stdin;
+       bool version, verbose, quiet, norandom, shuffle, neighbor, expblen, expdist, stdoutWanted, kimura, jukes, protein, DNA;
        bool abort;
+       vector<string> outputNames;
+       map<string, vector<string> > outputTypes;
 };
 
 /****************************************************************************/