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
|
#ifndef COuNTSEQSCOMMAND_H
#define COuNTSEQSCOMMAND_H
/*
* countseqscommand.h
* Mothur
*
* Created by westcott on 6/1/11.
* Copyright 2011 Schloss Lab. All rights reserved.
*
*/
#include "command.hpp"
#include "groupmap.h"
class CountSeqsCommand : public Command {
public:
CountSeqsCommand(string);
~CountSeqsCommand(){}
vector<string> setParameters();
string getCommandName() { return "count.seqs"; }
string getCommandCategory() { return "Sequence Processing"; }
string getHelpString();
string getOutputPattern(string);
string getCitation() { return "http://www.mothur.org/wiki/Count.seqs"; }
string getDescription() { return "makes a count file from a names or shared file"; }
int execute();
void help() { m->mothurOut(getHelpString()); }
private:
string namefile, groupfile, groups, sharedfile, countfile;
bool abort, allLines, compress;
vector<string> Groups, outputNames;
set<string> labels;
unsigned long long process(string);
map<int, string> processNameFile(string);
map<int, string> getGroupNames(string, set<string>&);
unsigned long long processShared(vector<SharedRAbundVector*>& lookup, map<string, string> variables, vector<string>);
};
#endif
|