]> git.donarmstrong.com Git - mothur.git/blobdiff - readdistcommand.h
fixed bug with aligner and longest base. added deunique.seqs command.
[mothur.git] / readdistcommand.h
index 868d72e6bd5184b11253dc5c9aacded459f0ee3d..984b4a78ec40fc5b9d643cd51434ef4255d3e239 100644 (file)
@@ -27,7 +27,12 @@ class GlobalData;
 class ReadDistCommand : public Command {
 public:
        ReadDistCommand(string);
+       ReadDistCommand() {}
        ~ReadDistCommand();
+       vector<string> getRequiredParameters();
+       vector<string> getValidParameters();
+       vector<string> getRequiredFiles();
+       map<string, vector<string> > getOutputFiles() { return outputTypes; }
        int execute();
        void help();
        
@@ -39,10 +44,12 @@ private:
        FullMatrix* matrix;
        GroupMap* groupMap;
        string distFileName, format, method;
-       string phylipfile, columnfile, namefile, groupfile;
+       string phylipfile, columnfile, namefile, groupfile, outputDir;
        NameAssignment* nameMap;
+       vector<string> outputNames;
+       map<string, vector<string> > outputTypes;
 
-       bool abort;
+       bool abort, sim;
 
 };