X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=parsefastaqcommand.h;h=4481b98bb23bdbcd47a6059b2df0904c176ae9bf;hb=cbaa068e77aeb15bb06f0695a36d8f757977ed64;hp=071077577f1bec0fb39b05a6d18b01917e7a839e;hpb=2c5386dc0cb6a0e42e8d7256bd6fb18ab66e4480;p=mothur.git diff --git a/parsefastaqcommand.h b/parsefastaqcommand.h index 0710775..4481b98 100644 --- a/parsefastaqcommand.h +++ b/parsefastaqcommand.h @@ -17,15 +17,25 @@ class ParseFastaQCommand : public Command { public: ParseFastaQCommand(string); - ~ParseFastaQCommand(); - int execute(); - void help(); + ParseFastaQCommand(); + ~ParseFastaQCommand() {} + vector setParameters(); + string getCommandName() { return "parse.fastq"; } + string getCommandCategory() { return "Sequence Processing"; } + string getOutputFileNameTag(string, string); + string getHelpString(); + 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; + bool abort, fasta, qual; vector convertQual(string); };