1 #ifndef GETLINEAGECOMMAND_H
2 #define GETLINEAGECOMMAND_H
8 * Created by westcott on 9/24/10.
9 * Copyright 2010 Schloss Lab. All rights reserved.
13 #include "command.hpp"
15 class GetLineageCommand : public Command {
19 GetLineageCommand(string);
21 ~GetLineageCommand(){}
23 vector<string> setParameters();
24 string getCommandName() { return "get.lineage"; }
25 string getCommandCategory() { return "Phylotype Analysis"; }
27 string getHelpString();
28 string getOutputPattern(string);
29 string getCitation() { return "http://www.mothur.org/wiki/Get.lineage"; }
30 string getDescription() { return "gets sequences from a list, fasta, name, group, alignreport or taxonomy file from a given taxonomy or set of taxonomies"; }
34 void help() { m->mothurOut(getHelpString()); }
39 vector<string> outputNames, listOfTaxons;
40 string fastafile, namefile, groupfile, alignfile, countfile, listfile, taxfile, outputDir, taxons;
50 vector< map<string, float> > getTaxons(string);