]> git.donarmstrong.com Git - mothur.git/blobdiff - readdistcommand.h
fixed bug that caused bayesian cutoff not to work if iters > 100. fixed bug in trim...
[mothur.git] / readdistcommand.h
index bd4a913d61fb22799c682387b73bd38440b10af0..6241f97b5fb1b70f79a326360ace611a1866fa72 100644 (file)
@@ -11,6 +11,8 @@
 
 #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. 
@@ -24,17 +26,24 @@ class GlobalData;
 
 class ReadDistCommand : public Command {
 public:
-       ReadDistCommand();
+       ReadDistCommand(string);
        ~ReadDistCommand();
        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;
+
+       bool abort, sim, hard;
+
 };
 
 #endif