1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57
|
#ifndef GETLINEAGECOMMAND_H
#define GETLINEAGECOMMAND_H
/*
* getlineagecommand.h
* Mothur
*
* Created by westcott on 9/24/10.
* Copyright 2010 Schloss Lab. All rights reserved.
*
*/
#include "command.hpp"
#include "sharedrabundvectors.hpp"
#include "listvector.hpp"
#include "getseqscommand.h"
#include "getotuscommand.h"
#include "taxonomy.hpp"
class GetLineageCommand : public Command {
public:
GetLineageCommand(string);
~GetLineageCommand(){}
vector<string> setParameters();
string getCommandName() { return "get.lineage"; }
string getCommandCategory() { return "Phylotype Analysis"; }
string getHelpString();
string getOutputPattern(string);
string getCitation() { return "http://www.mothur.org/wiki/Get.lineage"; }
string getDescription() { return "gets sequences from a list, fasta, name, group, alignreport or taxonomy file from a given taxonomy or set of taxonomies"; }
int execute();
void help() { m->mothurOut(getHelpString()); }
private:
vector<string> outputNames, listOfTaxons;
string fastafile, namefile, groupfile, alignfile, countfile, listfile, taxfile, taxons, sharedfile, constaxonomy, label;
bool abort, dups;
string readTax();
string readConsTax();
int runGetOTUs(string);
int runGetSeqs(string);
};
#endif
|