X-Git-Url: https://git.donarmstrong.com/?p=mothur.git;a=blobdiff_plain;f=listseqscommand.h;h=b8a79c06035825fd92050a1e0c610ac6b77bd122;hp=ea48430e9e0876c1034c344d5688fd64bc0c2bde;hb=df7e3ff9f68ef157b0328a2d353c3258c5d45d89;hpb=e150b0b0664caec517485ee6d69dcdade6dcae77 diff --git a/listseqscommand.h b/listseqscommand.h index ea48430..b8a79c0 100644 --- a/listseqscommand.h +++ b/listseqscommand.h @@ -23,16 +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; bool abort; int readFasta(); @@ -41,6 +44,7 @@ class ListSeqsCommand : public Command { int readAlign(); int readList(); int readTax(); + int readCount(); };