X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=parsefastaqcommand.h;h=5ae6b9c482fe6b4022bb4d4c5d4ae2e79ea3aad8;hb=3914b0d6480f67df53b1e838f51c4e6155710434;hp=071077577f1bec0fb39b05a6d18b01917e7a839e;hpb=2c5386dc0cb6a0e42e8d7256bd6fb18ab66e4480;p=mothur.git diff --git a/parsefastaqcommand.h b/parsefastaqcommand.h index 0710775..5ae6b9c 100644 --- a/parsefastaqcommand.h +++ b/parsefastaqcommand.h @@ -17,17 +17,29 @@ class ParseFastaQCommand : public Command { public: ParseFastaQCommand(string); - ~ParseFastaQCommand(); - int execute(); - void help(); + ParseFastaQCommand(); + ~ParseFastaQCommand() {} + vector 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 outputNames; - string outputDir, fastaQFile; - bool abort; + string outputDir, fastaQFile, format; + bool abort, fasta, qual, pacbio; vector convertQual(string); + vector convertTable; }; #endif