]> git.donarmstrong.com Git - mothur.git/blob - mergegroupscommand.h
added command descriptions
[mothur.git] / mergegroupscommand.h
1 #ifndef MERGEGROUPSCOMMAND_H
2 #define MERGEGROUPSCOMMAND_H
3
4 /*
5  *  mergegroupscommand.h
6  *  mothur
7  *
8  *  Created by westcott on 1/24/11.
9  *  Copyright 2011 Schloss Lab. All rights reserved.
10  *
11  */
12
13 #include "command.hpp"
14 #include "inputdata.h"
15 #include "sharedrabundvector.h"
16
17 class MergeGroupsCommand : public Command {
18         
19 public:
20         MergeGroupsCommand(string);
21         MergeGroupsCommand();
22         ~MergeGroupsCommand() {}
23         
24         vector<string> setParameters();
25         string getCommandName()                 { return "merge.groups";        }
26         string getCommandCategory()             { return "General";                     }
27         string getHelpString(); 
28         string getCitation() { return "http://www.mothur.org/wiki/Merge.groups"; }
29         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"; }
30
31         
32         int execute(); 
33         void help() { m->mothurOut(getHelpString()); }  
34         
35 private:
36         GroupMap* designMap;
37         vector<SharedRAbundVector*> lookup;
38         
39         bool abort, allLines, pickedGroups;
40         set<string> labels; //holds labels to be used
41         string groups, label, outputDir, inputDir, designfile, sharedfile;
42         vector<string> Groups, outputNames;
43                 
44         int process(vector<SharedRAbundVector*>&, ofstream&);
45 };
46
47 #endif
48