]> 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 981afa339308199105a0082c8458dd0b1ed7295c..984b4a78ec40fc5b9d643cd51434ef4255d3e239 100644 (file)
@@ -26,9 +26,15 @@ class GlobalData;
 
 class ReadDistCommand : public Command {
 public:
-       ReadDistCommand();
+       ReadDistCommand(string);
+       ReadDistCommand() {}
        ~ReadDistCommand();
+       vector<string> getRequiredParameters();
+       vector<string> getValidParameters();
+       vector<string> getRequiredFiles();
+       map<string, vector<string> > getOutputFiles() { return outputTypes; }
        int execute();
+       void help();
        
 private:
        GlobalData* globaldata;
@@ -37,8 +43,14 @@ private:
        ReadMatrix* read;
        FullMatrix* matrix;
        GroupMap* groupMap;
-       string filename, format, method;
+       string distFileName, format, method;
+       string phylipfile, columnfile, namefile, groupfile, outputDir;
        NameAssignment* nameMap;
+       vector<string> outputNames;
+       map<string, vector<string> > outputTypes;
+
+       bool abort, sim;
+
 };
 
 #endif