X-Git-Url: https://git.donarmstrong.com/?p=mothur.git;a=blobdiff_plain;f=listseqscommand.h;h=9d320d9e9a94ad031826bc547d42a03b30e8ec30;hp=be53d750ac0691938e314c883d689715bc8d11c7;hb=cf9987b67aa49777a4c91c2d21f96e58bf17aa82;hpb=39a0a86958038d71083fad3a1a50c02ba9c2fc67 diff --git a/listseqscommand.h b/listseqscommand.h index be53d75..9d320d9 100644 --- a/listseqscommand.h +++ b/listseqscommand.h @@ -23,15 +23,19 @@ class ListSeqsCommand : public Command { vector setParameters(); string getCommandName() { return "list.seqs"; } string getCommandCategory() { return "Sequence Processing"; } - string getHelpString(); - + + string getHelpString(); + string getOutputPattern(string); + string getCitation() { return "http://www.mothur.org/wiki/List.seqs"; } + string getDescription() { return "lists sequences from a list, fasta, name, group, alignreport or taxonomy file"; } + int execute(); void help() { m->mothurOut(getHelpString()); } private: vector names, outputNames; - string fastafile, namefile, groupfile, alignfile, inputFileName, outputDir, listfile, taxfile; + string fastafile, namefile, groupfile, countfile, alignfile, inputFileName, outputDir, listfile, taxfile, fastqfile; bool abort; int readFasta(); @@ -40,7 +44,8 @@ class ListSeqsCommand : public Command { int readAlign(); int readList(); int readTax(); - + int readCount(); + int readFastq(); }; #endif