]> git.donarmstrong.com Git - mothur.git/blob - commandfactory.cpp
added list.seqs command
[mothur.git] / commandfactory.cpp
1 /*
2  *  commandfactory.cpp
3  *  
4  *
5  *  Created by Pat Schloss on 10/25/08.
6  *  Copyright 2008 Patrick D. Schloss. All rights reserved.
7  *
8  */
9
10 #include "command.hpp"
11 #include "readdistcommand.h"
12 #include "readtreecommand.h"
13 #include "readotucommand.h"
14 #include "clustercommand.h"
15 #include "collectcommand.h"
16 #include "collectsharedcommand.h"
17 #include "getgroupcommand.h"
18 #include "getlabelcommand.h"
19 #include "getlinecommand.h"
20 #include "rarefactcommand.h"
21 #include "summarycommand.h"
22 #include "summarysharedcommand.h"
23 #include "rarefactsharedcommand.h"
24 #include "quitcommand.h"
25 #include "helpcommand.h"
26 #include "commandfactory.hpp"
27 #include "deconvolutecommand.h"
28 #include "parsimonycommand.h"
29 #include "unifracunweightedcommand.h"
30 #include "unifracweightedcommand.h"
31 #include "libshuffcommand.h"
32 #include "heatmapcommand.h"
33 #include "heatmapsimcommand.h"
34 #include "filterseqscommand.h"
35 #include "venncommand.h"
36 #include "nocommands.h"
37 #include "binsequencecommand.h"
38 #include "getoturepcommand.h"
39 #include "treegroupscommand.h"
40 #include "bootstrapsharedcommand.h"
41 //#include "consensuscommand.h"
42 #include "distancecommand.h"
43 #include "aligncommand.h"
44 #include "matrixoutputcommand.h"
45 #include "getsabundcommand.h"
46 #include "getrabundcommand.h"
47 #include "seqsummarycommand.h"
48 #include "screenseqscommand.h"
49 #include "reversecommand.h"
50 #include "trimseqscommand.h"
51 #include "mergefilecommand.h"
52 #include "chimeraseqscommand.h"
53 #include "listseqscommand.h"
54
55 /***********************************************************/
56
57 /***********************************************************/
58 CommandFactory::CommandFactory(){
59         string s = "";
60         command = new NoCommand(s);
61         
62         
63         //initialize list of valid commands
64         commands["read.dist"]                   = "read.dist"; 
65         commands["read.otu"]                    = "read.otu";
66         commands["read.tree"]                   = "read.tree"; 
67         commands["bin.seqs"]                    = "bin.seqs"; 
68         commands["get.oturep"]                  = "get.oturep";
69         commands["cluster"]                             = "cluster"; 
70         commands["unique.seqs"]                 = "unique.seqs"; 
71         commands["dist.seqs"]                   = "dist.seqs";
72         commands["dist.shared"]                 = "dist.shared";
73         commands["collect.single"]              = "collect.single"; 
74         commands["collect.shared"]              = "collect.shared"; 
75         commands["rarefaction.single"]  = "rarefaction.single"; 
76         commands["rarefaction.shared"]  = "rarefaction.shared"; 
77         commands["summary.single"]              = "summary.single"; 
78         commands["summary.shared"]              = "summary.shared"; 
79         commands["parsimony"]                   = "parsimony";
80         commands["unifrac.weighted"]    = "unifrac.weighted"; 
81         commands["unifrac.unweighted"]  = "unifrac.unweighted"; 
82         commands["libshuff"]                    = "libshuff";
83         commands["tree.shared"]                 = "tree.shared";
84         commands["heatmap.bin"]                 = "heatmap.bin";
85         commands["heatmap.sim"]                 = "heatmap.sim";
86         commands["venn"]                                = "venn";
87         commands["get.group"]           = "get.group";
88         commands["get.label"]           = "get.label";
89         commands["get.line"]            = "get.line";
90         commands["get.sabund"]          = "get.sabund";
91         commands["get.rabund"]          = "get.rabund";
92         commands["bootstrap.shared"]    = "bootstrap.shared";
93         //commands["consensus"]                 = "consensus";
94         commands["help"]                                = "help"; 
95         commands["filter.seqs"]                 = "filter.seqs";
96         commands["align.seqs"]                  = "align.seqs";
97         commands["summary.seqs"]                = "summary.seqs";
98         commands["screen.seqs"]                 = "screen.seqs";
99         commands["reverse.seqs"]                = "reverse.seqs";
100         commands["trim.seqs"]                   = "trim.seqs";
101         commands["chimera.seqs"]                = "chimera.seqs";
102         commands["list.seqs"]                   = "list.seqs";
103         commands["quit"]                                = "quit"; 
104
105 }
106 /***********************************************************/
107
108 /***********************************************************/
109 CommandFactory::~CommandFactory(){
110         delete command;
111 }
112
113 /***********************************************************/
114
115 /***********************************************************/
116 //This function calls the appropriate command fucntions based on user input.
117 Command* CommandFactory::getCommand(string commandName, string optionString){
118         try {
119                 delete command;   //delete the old command
120
121                 if(commandName == "read.dist")                                  {       command = new ReadDistCommand(optionString);                    }
122                 else if(commandName == "read.otu")                              {       command = new ReadOtuCommand(optionString);                             }
123                 else if(commandName == "read.tree")                             {       command = new ReadTreeCommand(optionString);                    }
124                 else if(commandName == "cluster")                               {       command = new ClusterCommand(optionString);                             }
125                 else if(commandName == "unique.seqs")                   {       command = new DeconvoluteCommand(optionString);                 }
126                 else if(commandName == "parsimony")                             {       command = new ParsimonyCommand(optionString);                   }
127                 else if(commandName == "help")                                  {       command = new HelpCommand(optionString);                                }
128                 else if(commandName == "quit")                                  {       command = new QuitCommand(optionString);                                }
129                 else if(commandName == "collect.single")                {       command = new CollectCommand(optionString);                             }
130                 else if(commandName == "collect.shared")                {       command = new CollectSharedCommand(optionString);               }
131                 else if(commandName == "rarefaction.single")    {       command = new RareFactCommand(optionString);                    }
132                 else if(commandName == "rarefaction.shared")    {       command = new RareFactSharedCommand(optionString);              }
133                 else if(commandName == "summary.single")                {       command = new SummaryCommand(optionString);                             }
134                 else if(commandName == "summary.shared")                {       command = new SummarySharedCommand(optionString);               }
135                 else if(commandName == "unifrac.weighted")              {       command = new UnifracWeightedCommand(optionString);             }
136                 else if(commandName == "unifrac.unweighted")    {       command = new UnifracUnweightedCommand(optionString);   }
137                 else if(commandName == "get.group")             {   command = new GetgroupCommand(optionString);                        }
138                 else if(commandName == "get.label")             {   command = new GetlabelCommand(optionString);                        }
139                 else if(commandName == "get.line")              {   command = new GetlineCommand(optionString);                         }
140                 else if(commandName == "get.sabund")            {   command = new GetSAbundCommand(optionString);                       }
141                 else if(commandName == "get.rabund")            {   command = new GetRAbundCommand(optionString);                       }
142                 else if(commandName == "libshuff")              {   command = new LibShuffCommand(optionString);                        }
143                 else if(commandName == "heatmap.bin")                   {   command = new HeatMapCommand(optionString);                         }
144                 else if(commandName == "heatmap.sim")                   {   command = new HeatMapSimCommand(optionString);                      }
145                 else if(commandName == "filter.seqs")                   {   command = new FilterSeqsCommand(optionString);                      }
146                 else if(commandName == "venn")                                  {   command = new VennCommand(optionString);                            }
147                 else if(commandName == "bin.seqs")                              {   command = new BinSeqCommand(optionString);                          }
148                 else if(commandName == "get.oturep")                    {   command = new GetOTURepCommand(optionString);                       }
149                 else if(commandName == "tree.shared")                   {   command = new TreeGroupCommand(optionString);                       }
150                 else if(commandName == "dist.shared")                   {   command = new MatrixOutputCommand(optionString);            }
151                 else if(commandName == "bootstrap.shared")              {   command = new BootSharedCommand(optionString);                      }
152                 //else if(commandName == "consensus")                   {   command = new ConcensusCommand(optionString);                       }
153                 else if(commandName == "dist.seqs")                             {   command = new DistanceCommand(optionString);                        }
154                 else if(commandName == "align.seqs")                    {   command = new AlignCommand(optionString);                           }
155                 else if(commandName == "summary.seqs")                  {       command = new SeqSummaryCommand(optionString);                  }
156                 else if(commandName == "screen.seqs")                   {       command = new ScreenSeqsCommand(optionString);                  }
157                 else if(commandName == "reverse.seqs")                  {       command = new ReverseSeqsCommand(optionString);                 }
158                 else if(commandName == "trim.seqs")                             {       command = new TrimSeqsCommand(optionString);                    }
159                 else if(commandName == "chimera.seqs")                  {       command = new ChimeraSeqsCommand(optionString);                 }
160                 else if(commandName == "list.seqs")                             {       command = new ListSeqsCommand(optionString);                    }
161                 else if(commandName == "merge.files")                   {       command = new MergeFileCommand(optionString);                   }
162                 else                                                                                    {       command = new NoCommand(optionString);                                  }
163
164                 return command;
165         }
166         catch(exception& e) {
167                 errorOut(e, "CommandFactory", "getCommand");
168                 exit(1);
169         }
170 }
171
172 /***********************************************************************/
173 bool CommandFactory::isValidCommand(string command) {
174         try {   
175         
176                 //is the command in the map
177                 if ((commands.find(command)) != (commands.end())) {
178                         return true;
179                 }else{
180                         mothurOut(command + " is not a valid command in Mothur.  Valid commands are ");
181                         for (it = commands.begin(); it != commands.end(); it++) {
182                                 mothurOut(it->first + ", ");
183                         }
184                         mothurOutEndLine();
185                         return false;
186                 }
187                 
188         }
189         catch(exception& e) {
190                 errorOut(e, "CommandFactory", "isValidCommand");
191                 exit(1);
192         }
193 }
194
195 /***********************************************************************/
196 void CommandFactory::printCommands(ostream& out) {
197         try {   
198                 out << "Valid commands are ";
199                 for (it = commands.begin(); it != commands.end(); it++) {
200                         out << it->first << ", ";
201                 }
202                 out << endl;
203         }
204         catch(exception& e) {
205                 errorOut(e, "CommandFactory", "printCommands");
206                 exit(1);
207         }
208 }
209 /***********************************************************************/
210
211
212
213