]> git.donarmstrong.com Git - mothur.git/blobdiff - clustercommand.h
removed some couts from qualityscores.cpp
[mothur.git] / clustercommand.h
index 44ce6f9f6833a8fd5181bcff64880bfe8f4d4f88..787f835a0f33d1d157aeab41568286c28a752520 100644 (file)
        The cluster() command outputs three files *.list, *.rabund, and *.sabund.   */
 
 
-class GlobalData;
-
 class ClusterCommand : public Command {
        
 public:
-       ClusterCommand(string); 
+       ClusterCommand(string);
+       ClusterCommand();
        ~ClusterCommand();
+       vector<string> getRequiredParameters();
+       vector<string> getValidParameters();
+       vector<string> getRequiredFiles();
+       map<string, vector<string> > getOutputFiles() { return outputTypes; }
        int execute();  
        void help();
        
@@ -45,14 +48,21 @@ private:
        RAbundVector oldRAbund;
        ListVector oldList;
 
-       bool abort;
+       bool abort, hard;
 
-       string method, fileroot, tag;
+       string method, fileroot, tag, outputDir;
        double cutoff;
+       string showabund, timing;
        int precision, length;
        ofstream sabundFile, rabundFile, listFile;
+
+       bool print_start;
+       time_t start;
+       unsigned long loops;
        
        void printData(string label);
+       vector<string> outputNames;
+       map<string, vector<string> > outputTypes;
 };
 
 #endif