1 #ifndef GETLISTCOUNTCOMMAND_H
2 #define GETLISTCOUNTCOMMAND_H
4 * getlistcountcommand.h
7 * Created by westcott on 10/12/09.
8 * Copyright 2009 Schloss Lab. All rights reserved.
12 #include "command.hpp"
13 #include "inputdata.h"
14 #include "listvector.hpp"
16 /**********************************************************/
18 class GetListCountCommand : public Command {
21 GetListCountCommand(string);
22 GetListCountCommand();
23 ~GetListCountCommand(){}
25 vector<string> setParameters();
26 string getCommandName() { return "get.otulist"; }
27 string getCommandCategory() { return "OTU-Based Approaches"; }
28 string getCitation() { return "http://www.mothur.org/wiki/Get.otulist"; }
29 string getDescription() { return "lists each OTU number and the sequence contained in that OTU"; }
31 string getHelpString();
34 void help() { m->mothurOut(getHelpString()); }
42 set<string> labels; //holds labels to be used
43 string label, listfile, outputDir, sort;
45 vector<string> outputNames;
47 void process(ListVector*);
49 /**********************************************************/