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 MERGEGROUPSCOMMAND_H
#define MERGEGROUPSCOMMAND_H
/*
* mergegroupscommand.h
* mothur
*
* Created by westcott on 1/24/11.
* Copyright 2011 Schloss Lab. All rights reserved.
*
*/
#include "command.hpp"
#include "inputdata.h"
#include "sharedrabundvector.h"
class MergeGroupsCommand : public Command {
public:
MergeGroupsCommand(string);
MergeGroupsCommand();
~MergeGroupsCommand() {}
vector<string> setParameters();
string getCommandName() { return "merge.groups"; }
string getCommandCategory() { return "General"; }
string getHelpString();
string getOutputPattern(string);
string getCitation() { return "http://www.mothur.org/wiki/Merge.groups"; }
string getDescription() { return "reads shared file and a design file and merges the groups in the shared file that are in the same grouping in the design file"; }
int execute();
void help() { m->mothurOut(getHelpString()); }
private:
GroupMap* designMap;
vector<SharedRAbundVector*> lookup;
bool abort, allLines, pickedGroups;
set<string> labels; //holds labels to be used
string groups, label, outputDir, inputDir, designfile, sharedfile, groupfile;
vector<string> Groups, outputNames;
int process(vector<SharedRAbundVector*>&, ofstream&);
int processSharedFile(GroupMap*&);
int processGroupFile(GroupMap*&);
};
#endif
|