]> git.donarmstrong.com Git - mothur.git/blobdiff - sensspeccommand.h
fixed sub.sample groups bug
[mothur.git] / sensspeccommand.h
index 52ab31ea6c96c88edb1b9b360cac7f9e38979a4e..c690d5704652b3b68635614e4cf0b6e65050278e 100644 (file)
@@ -18,22 +18,37 @@ class SensSpecCommand : public Command {
        
 public:
        SensSpecCommand(string);
-       ~SensSpecCommand();
-       int execute();
-       void help();
+       SensSpecCommand();
+       ~SensSpecCommand(){}
+       
+       vector<string> setParameters();
+       string getCommandName()                 { return "sens.spec";                           }
+       string getCommandCategory()             { return "OTU-Based Approaches";        }
+       string getHelpString(); 
+       
+       int execute(); 
+       void help() { m->mothurOut(getHelpString()); }  
        
 private:
        void processPhylip();
-///    void processColumn(map<string, int>);
+       void processColumn();
+       void setUpOutput();
+       void outputStatistics(string, string);
        
-       string listFile, distFile, nameFile, outputDir;
+       string listFile, distFile, nameFile, sensSpecFileName, phylipfile, columnfile;
+       string outputDir;
        string format;
-//     int numSeqs, numDists;
-       int truePositives, falsePositives, trueNegatives, falseNegatives;
+       vector<string> outputNames;
+
+       long int truePositives, falsePositives, trueNegatives, falseNegatives;
        bool abort;
        bool hard;
        string lineLabel;
        double cutoff;
+       int precision;
 };
 
-#endif
\ No newline at end of file
+#endif
+
+
+