]> git.donarmstrong.com Git - mothur.git/blobdiff - parsefastaqcommand.h
added modify names parameter to set.dir
[mothur.git] / parsefastaqcommand.h
index 071077577f1bec0fb39b05a6d18b01917e7a839e..5ae6b9c482fe6b4022bb4d4c5d4ae2e79ea3aad8 100644 (file)
@@ -17,17 +17,29 @@ class ParseFastaQCommand : public Command {
 
 public:
        ParseFastaQCommand(string);
-       ~ParseFastaQCommand();
-       int execute();
-       void help();    
+       ParseFastaQCommand();
+       ~ParseFastaQCommand() {}
        
+       vector<string> setParameters();
+       string getCommandName()                 { return "fastq.info";          }
+       string getCommandCategory()             { return "Sequence Processing"; }
+       
+       string getHelpString(); 
+    string getOutputPattern(string);   
+       string getCitation() { return "http://www.mothur.org/wiki/Parse.fastq"; }
+       string getDescription()         { return "reads a fastq file and creates a fasta and quality file"; }
+
+       
+       int execute(); 
+       void help() { m->mothurOut(getHelpString()); }          
 private:
 
        vector<string> outputNames;     
-       string outputDir, fastaQFile;
-       bool abort;
+       string outputDir, fastaQFile, format;
+       bool abort, fasta, qual, pacbio;
        
        vector<int> convertQual(string);
+    vector<char> convertTable;
 };
 
 #endif