X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=parsefastaqcommand.h;h=b4d90e542a98f329dd166a93c54d57852e0f54dd;hb=0bd3a2d33b478f0b09fd6b8ce562e9ab41227535;hp=fe77cf08f34e3760734fb7b70568c4db09d603a2;hpb=ca9ac1d80c62f57270b0dcd49410ebe08a8aecd6;p=mothur.git diff --git a/parsefastaqcommand.h b/parsefastaqcommand.h index fe77cf0..b4d90e5 100644 --- a/parsefastaqcommand.h +++ b/parsefastaqcommand.h @@ -23,17 +23,23 @@ public: vector setParameters(); string getCommandName() { return "parse.fastq"; } 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 outputNames; - string outputDir, fastaQFile; - bool abort; + string outputDir, fastaQFile, format; + bool abort, fasta, qual; vector convertQual(string); + vector convertTable; }; #endif