X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=parsefastaqcommand.h;h=96fcb7d6799358ff4e10f930d1ad4165763b46a0;hb=006601d68abe8d0061f77e8d28323b160750e343;hp=dfafca6fee21c9f5493437fe37007669c3fc4ac7;hpb=e150b0b0664caec517485ee6d69dcdade6dcae77;p=mothur.git diff --git a/parsefastaqcommand.h b/parsefastaqcommand.h index dfafca6..96fcb7d 100644 --- a/parsefastaqcommand.h +++ b/parsefastaqcommand.h @@ -23,18 +23,22 @@ public: 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; + string outputDir, fastaQFile, format; + bool abort, fasta, qual; vector convertQual(string); + vector convertTable; }; #endif