]> git.donarmstrong.com Git - mothur.git/blobdiff - sensspeccommand.h
removed some testing changes i made to classify.seqs
[mothur.git] / sensspeccommand.h
index 818667a1c52729a2610564334d13225472eaac39..47d6e4e5fedfd92ec15700b931ce06681e5daf2c 100644 (file)
@@ -18,9 +18,17 @@ 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(); 
+       string getCitation() { return "Schloss PD, Westcott SL (2011). Assessing and improving methods used in OTU-based approaches for 16S rRNA gene sequence analysis. Appl Environ Microbiol. \nhttp://www.mothur.org/wiki/Sens.spec"; }
+       
+       int execute(); 
+       void help() { m->mothurOut(getHelpString()); }  
        
 private:
        void processPhylip();
@@ -28,9 +36,10 @@ private:
        void setUpOutput();
        void outputStatistics(string, string);
        
-       string listFile, distFile, nameFile, sensSpecFileName;
+       string listFile, distFile, nameFile, sensSpecFileName, phylipfile, columnfile;
        string outputDir;
        string format;
+       vector<string> outputNames;
 
        long int truePositives, falsePositives, trueNegatives, falseNegatives;
        bool abort;
@@ -40,4 +49,7 @@ private:
        int precision;
 };
 
-#endif
\ No newline at end of file
+#endif
+
+
+