]> git.donarmstrong.com Git - mothur.git/blob - mergegroupscommand.h
added citation function to commands
[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         
30         int execute(); 
31         void help() { m->mothurOut(getHelpString()); }  
32         
33 private:
34         GroupMap* designMap;
35         vector<SharedRAbundVector*> lookup;
36         
37         bool abort, allLines, pickedGroups;
38         set<string> labels; //holds labels to be used
39         string groups, label, outputDir, inputDir, designfile, sharedfile;
40         vector<string> Groups, outputNames;
41                 
42         int process(vector<SharedRAbundVector*>&, ofstream&);
43 };
44
45 #endif
46