]> git.donarmstrong.com Git - mothur.git/blobdiff - readdistcommand.h
*** empty log message ***
[mothur.git] / readdistcommand.h
index 3dfda1ba5cb5960642c0891570290fa9ae0d01a1..2f05ddbd3169d4cd4f204245ca2a0dd88571cb8e 100644 (file)
@@ -9,11 +9,10 @@
  *
  */
 
-#include <Carbon/Carbon.h>
-#include <iostream>
-#include <fstream>
 #include "command.hpp"
 #include "readmatrix.hpp"
+#include "fullmatrix.h"
+#include "groupmap.h"
 
 /* The read.dist command is used to read a distance matrix file.  
 The read.dist command parameter options are phylipfile, columnfile, namefile, cutoff and precision. 
@@ -27,17 +26,31 @@ class GlobalData;
 
 class ReadDistCommand : public Command {
 public:
-       ReadDistCommand();
+       ReadDistCommand(string);
+       ReadDistCommand() { abort = true; calledHelp = true; }
        ~ReadDistCommand();
+       vector<string> getRequiredParameters();
+       vector<string> getValidParameters();
+       vector<string> getRequiredFiles();
+       map<string, vector<string> > getOutputFiles() { return outputTypes; }
        int execute();
+       void help();
        
 private:
        GlobalData* globaldata;
        double cutoff;
        int precision;
        ReadMatrix* read;
-       string filename, format, method;
+       FullMatrix* matrix;
+       GroupMap* groupMap;
+       string distFileName, format, method;
+       string phylipfile, columnfile, namefile, groupfile, outputDir;
        NameAssignment* nameMap;
+       vector<string> outputNames;
+       map<string, vector<string> > outputTypes;
+
+       bool abort, sim;
+
 };
 
-#endif
\ No newline at end of file
+#endif