]> git.donarmstrong.com Git - mothur.git/blob - getsharedotucommand.h
removed read.dist, read.otu, read.tree and globaldata. added current to defaults...
[mothur.git] / getsharedotucommand.h
1 #ifndef GETSHAREDOTUCOMMAND_H
2 #define GETSHAREDOTUCOMMAND_H
3
4 /*
5  *  getsharedotucommand.h
6  *  Mothur
7  *
8  *  Created by westcott on 9/22/09.
9  *  Copyright 2009 Schloss Lab. All rights reserved.
10  *
11  */
12  
13 #include "command.hpp"
14 #include "listvector.hpp"
15 #include "sequence.hpp"
16 #include "groupmap.h"
17
18 //**********************************************************************************************************************
19 class GetSharedOTUCommand : public Command {
20         
21         public:
22         
23                 GetSharedOTUCommand(string);    
24                 GetSharedOTUCommand();  
25                 ~GetSharedOTUCommand() {}
26         
27                 vector<string> setParameters();
28                 string getCommandName()                 { return "get.sharedseqs";                      }
29                 string getCommandCategory()             { return "OTU-Based Approaches";        }
30                 string getRequiredCommand()             { return "none";                                        }
31                 string getHelpString(); 
32         
33                 int execute(); 
34                 void help() { m->mothurOut(getHelpString()); }  
35         
36         
37                 
38         private:
39                 ListVector* list;
40                 GroupMap* groupMap;
41                 
42                 set<string> labels;
43                 string fastafile, label, groups, listfile, groupfile, output, userGroups, outputDir, format;
44                 bool abort, allLines, unique;
45                 vector<string> Groups;
46                 map<string, string> groupFinder;
47                 map<string, string>::iterator it;
48                 vector<Sequence> seqs;
49                 vector<string> outputNames;
50                 
51                 int process(ListVector*);
52                 
53 };
54 //**********************************************************************************************************************
55
56 #endif
57