]> git.donarmstrong.com Git - mothur.git/blobdiff - chimeraccodecommand.h
removed UWSig and WSig from output if user does not set random=T
[mothur.git] / chimeraccodecommand.h
index a9ed223b112cdb50876024c893257549e159481f..87f5ee87f7df50625be6a7a6407070e73dfc5b8c 100644 (file)
@@ -21,13 +21,17 @@ class ChimeraCcodeCommand : public Command {
 public:
        ChimeraCcodeCommand(string);
        ChimeraCcodeCommand();
-       ~ChimeraCcodeCommand();
-       vector<string> getRequiredParameters();
-       vector<string> getValidParameters();
-       vector<string> getRequiredFiles();
-       map<string, vector<string> > getOutputFiles() { return outputTypes; }
-       int execute();
-       void help();
+       ~ChimeraCcodeCommand(){}
+       
+       vector<string> setParameters();
+       string getCommandName()                 { return "chimera.ccode";               }
+       string getCommandCategory()             { return "Sequence Processing"; }
+       string getHelpString(); 
+       string getCitation() { return "Gonzalez JM, Zimmermann J, Saiz-Jimenez C (2005). Evaluating putative chimeric sequences from PCR-amplified products. Bioinformatics 21: 333-7. \nhttp://www.mothur.org/wiki/Chimera.ccode"; }
+       string getDescription()         { return "detect chimeric sequences"; }
+       
+       int execute(); 
+       void help() { m->mothurOut(getHelpString()); }  
        
                
 private:
@@ -46,15 +50,12 @@ private:
        int driverMPI(int, int, MPI_File&, MPI_File&, MPI_File&, vector<unsigned long int>&);
        #endif
 
-       bool abort, filter;
+       bool abort, filter, save;
        string fastafile, templatefile, outputDir, maskfile;
        int processors, window, numwanted, numSeqs, templateSeqsLength;
        Chimera* chimera;
        vector<string> fastaFileNames;
        vector<string> outputNames;
-       map<string, vector<string> > outputTypes;
-       
-       
 };
 
 /***********************************************************/