]> git.donarmstrong.com Git - mothur.git/blobdiff - parsefastaqcommand.h
added modify names parameter to set.dir
[mothur.git] / parsefastaqcommand.h
index fe77cf08f34e3760734fb7b70568c4db09d603a2..5ae6b9c482fe6b4022bb4d4c5d4ae2e79ea3aad8 100644 (file)
@@ -21,19 +21,25 @@ public:
        ~ParseFastaQCommand() {}
        
        vector<string> setParameters();
-       string getCommandName()                 { return "parse.fastq";         }
+       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