]> git.donarmstrong.com Git - mothur.git/blob - rarefactcommand.cpp
added checks for ^C to quit command instead of program
[mothur.git] / rarefactcommand.cpp
1 /*
2  *  rarefactcommand.cpp
3  *  Dotur
4  *
5  *  Created by Sarah Westcott on 1/2/09.
6  *  Copyright 2009 Schloss Lab UMASS Amherst. All rights reserved.
7  *
8  */
9
10 #include "rarefactcommand.h"
11 #include "ace.h"
12 #include "sobs.h"
13 #include "nseqs.h"
14 #include "chao1.h"
15 #include "bootstrap.h"
16 #include "simpson.h"
17 #include "npshannon.h"
18 #include "shannon.h"
19 #include "jackknife.h"
20 #include "coverage.h"
21
22 //**********************************************************************************************************************
23
24
25 RareFactCommand::RareFactCommand(string option)  {
26         try {
27                 globaldata = GlobalData::getInstance();
28                 abort = false;
29                 allLines = 1;
30                 labels.clear();
31                 Estimators.clear();
32                                 
33                 //allow user to run help
34                 if(option == "help") { validCalculator = new ValidCalculators(); help(); delete validCalculator; abort = true; }
35                 
36                 else {
37                         //valid paramters for this command
38                         string Array[] =  {"iters","freq","label","calc","abund","outputdir","inputdir"};
39                         vector<string> myArray (Array, Array+(sizeof(Array)/sizeof(string)));
40                         
41                         OptionParser parser(option);
42                         map<string,string> parameters = parser.getParameters();
43                         
44                         ValidParameters validParameter;
45                 
46                         //check to make sure all parameters are valid for command
47                         for (map<string,string>::iterator it = parameters.begin(); it != parameters.end(); it++) { 
48                                 if (validParameter.isValidParameter(it->first, myArray, it->second) != true) {  abort = true;  }
49                         }
50                         
51                         //if the user changes the output directory command factory will send this info to us in the output parameter 
52                         outputDir = validParameter.validFile(parameters, "outputdir", false);           if (outputDir == "not found"){  
53                                 outputDir = ""; 
54                                 outputDir += hasPath(globaldata->inputFileName); //if user entered a file with a path then preserve it  
55                         }
56
57                         //make sure the user has already run the read.otu command
58                         if ((globaldata->getSharedFile() == "") && (globaldata->getListFile() == "") && (globaldata->getRabundFile() == "") && (globaldata->getSabundFile() == "")) { m->mothurOut("You must read a list, sabund, rabund or shared file before you can use the rarefact.single command."); m->mothurOutEndLine(); abort = true; }
59                         
60                         //check for optional parameter and set defaults
61                         // ...at some point should added some additional type checking...
62                         label = validParameter.validFile(parameters, "label", false);                   
63                         if (label == "not found") { label = ""; }
64                         else { 
65                                 if(label != "all") {  splitAtDash(label, labels);  allLines = 0;  }
66                                 else { allLines = 1;  }
67                         }
68                         
69                         //if the user has not specified any labels use the ones from read.otu
70                         if(label == "") {  
71                                 allLines = globaldata->allLines; 
72                                 labels = globaldata->labels; 
73                         }
74                                 
75                         calc = validParameter.validFile(parameters, "calc", false);                     
76                         if (calc == "not found") { calc = "sobs";  }
77                         else { 
78                                  if (calc == "default")  {  calc = "sobs";  }
79                         }
80                         splitAtDash(calc, Estimators);
81
82                         string temp;
83                         temp = validParameter.validFile(parameters, "freq", false);                     if (temp == "not found") { temp = "100"; }
84                         convert(temp, freq); 
85                         
86                         temp = validParameter.validFile(parameters, "abund", false);                    if (temp == "not found") { temp = "10"; }
87                         convert(temp, abund); 
88                         
89                         temp = validParameter.validFile(parameters, "iters", false);                    if (temp == "not found") { temp = "1000"; }
90                         convert(temp, nIters); 
91                 }
92                 
93         }
94         catch(exception& e) {
95                 m->errorOut(e, "RareFactCommand", "RareFactCommand");
96                 exit(1);
97         }
98 }
99 //**********************************************************************************************************************
100
101 void RareFactCommand::help(){
102         try {
103                 m->mothurOut("The rarefaction.single command can only be executed after a successful read.otu WTIH ONE EXECEPTION.\n");
104                 m->mothurOut("The rarefaction.single command can be executed after a successful cluster command.  It will use the .list file from the output of the cluster.\n");
105                 m->mothurOut("The rarefaction.single command parameters are label, iters, freq, calc and abund.  No parameters are required. \n");
106                 m->mothurOut("The rarefaction.single command should be in the following format: \n");
107                 m->mothurOut("rarefaction.single(label=yourLabel, iters=yourIters, freq=yourFreq, calc=yourEstimators).\n");
108                 m->mothurOut("Example rarefaction.single(label=unique-.01-.03, iters=10000, freq=10, calc=sobs-rchao-race-rjack-rbootstrap-rshannon-rnpshannon-rsimpson).\n");
109                 m->mothurOut("The default values for iters is 1000, freq is 100, and calc is rarefaction which calculates the rarefaction curve for the observed richness.\n");
110                 validCalculator->printCalc("rarefaction", cout);
111                 m->mothurOut("The label parameter is used to analyze specific labels in your input.\n");
112                 m->mothurOut("Note: No spaces between parameter labels (i.e. freq), '=' and parameters (i.e.yourFreq).\n\n");
113         }
114         catch(exception& e) {
115                 m->errorOut(e, "RareFactCommand", "help");
116                 exit(1);
117         }
118 }
119
120 //**********************************************************************************************************************
121
122 RareFactCommand::~RareFactCommand(){}
123
124 //**********************************************************************************************************************
125
126 int RareFactCommand::execute(){
127         try {
128         
129                 if (abort == true) { return 0; }
130                 
131                 vector<string> outputNames;
132                 
133                 if ((globaldata->getFormat() != "sharedfile")) { inputFileNames.push_back(globaldata->inputFileName);  }
134                 else {  inputFileNames = parseSharedFile(globaldata->getSharedFile());  globaldata->setFormat("rabund");  }
135                 
136                 if (m->control_pressed) { return 0; }
137                 
138                 for (int p = 0; p < inputFileNames.size(); p++) {
139                         
140                         string fileNameRoot = outputDir + getRootName(getSimpleName(inputFileNames[p]));
141                         globaldata->inputFileName = inputFileNames[p];
142                         
143                         if (m->control_pressed) { return 0; }
144                         
145                         if (inputFileNames.size() > 1) {
146                                 m->mothurOutEndLine(); m->mothurOut("Processing group " + groups[p]); m->mothurOutEndLine(); m->mothurOutEndLine();
147                         }
148                         int i;
149                         validCalculator = new ValidCalculators();
150                         
151                         
152                         for (i=0; i<Estimators.size(); i++) {
153                                 if (validCalculator->isValidCalculator("rarefaction", Estimators[i]) == true) { 
154                                         if (Estimators[i] == "sobs") { 
155                                                 rDisplays.push_back(new RareDisplay(new Sobs(), new ThreeColumnFile(fileNameRoot+"rarefaction")));
156                                                 outputNames.push_back(fileNameRoot+"rarefaction");
157                                         }else if (Estimators[i] == "chao") { 
158                                                 rDisplays.push_back(new RareDisplay(new Chao1(), new ThreeColumnFile(fileNameRoot+"r_chao")));
159                                                 outputNames.push_back(fileNameRoot+"r_chao");
160                                         }else if (Estimators[i] == "ace") { 
161                                                 if(abund < 5)
162                                                         abund = 10;
163                                                 rDisplays.push_back(new RareDisplay(new Ace(abund), new ThreeColumnFile(fileNameRoot+"r_ace")));
164                                                 outputNames.push_back(fileNameRoot+"r_ace");
165                                         }else if (Estimators[i] == "jack") { 
166                                                 rDisplays.push_back(new RareDisplay(new Jackknife(), new ThreeColumnFile(fileNameRoot+"r_jack")));
167                                                 outputNames.push_back(fileNameRoot+"r_jack");
168                                         }else if (Estimators[i] == "shannon") { 
169                                                 rDisplays.push_back(new RareDisplay(new Shannon(), new ThreeColumnFile(fileNameRoot+"r_shannon")));
170                                                 outputNames.push_back(fileNameRoot+"r_shannon");
171                                         }else if (Estimators[i] == "npshannon") { 
172                                                 rDisplays.push_back(new RareDisplay(new NPShannon(), new ThreeColumnFile(fileNameRoot+"r_npshannon")));
173                                                 outputNames.push_back(fileNameRoot+"r_npshannon");
174                                         }else if (Estimators[i] == "simpson") { 
175                                                 rDisplays.push_back(new RareDisplay(new Simpson(), new ThreeColumnFile(fileNameRoot+"r_simpson")));
176                                                 outputNames.push_back(fileNameRoot+"r_simpson");
177                                         }else if (Estimators[i] == "bootstrap") { 
178                                                 rDisplays.push_back(new RareDisplay(new Bootstrap(), new ThreeColumnFile(fileNameRoot+"r_bootstrap")));
179                                                 outputNames.push_back(fileNameRoot+"r_bootstrap");
180                                         }else if (Estimators[i] == "coverage") { 
181                                                 rDisplays.push_back(new RareDisplay(new Coverage(), new ThreeColumnFile(fileNameRoot+"r_coverage")));
182                                                 outputNames.push_back(fileNameRoot+"r_coverage");
183                                         }else if (Estimators[i] == "nseqs") { 
184                                                 rDisplays.push_back(new RareDisplay(new NSeqs(), new ThreeColumnFile(fileNameRoot+"r_nseqs")));
185                                                 outputNames.push_back(fileNameRoot+"r_nseqs");
186                                         }
187                                 }
188                         }
189                         
190                         
191                         //if the users entered no valid calculators don't execute command
192                         if (rDisplays.size() == 0) { for(int i=0;i<rDisplays.size();i++){       delete rDisplays[i];    } delete validCalculator; return 0; }
193                         
194                         read = new ReadOTUFile(globaldata->inputFileName);      
195                         read->read(&*globaldata); 
196                         
197                         order = globaldata->gorder;
198                         string lastLabel = order->getLabel();
199                         input = globaldata->ginput;
200                         
201                         //if the users enters label "0.06" and there is no "0.06" in their file use the next lowest label.
202                         set<string> processedLabels;
203                         set<string> userLabels = labels;
204                         
205                         if (m->control_pressed) { for(int i=0;i<rDisplays.size();i++){  delete rDisplays[i];    } delete validCalculator; delete read; delete input; globaldata->ginput = NULL; delete order; globaldata->gorder = NULL; for (int i = 0; i < outputNames.size(); i++) { remove(outputNames[i].c_str()); } return 0; }
206                         
207                         //as long as you are not at the end of the file or done wih the lines you want
208                         while((order != NULL) && ((allLines == 1) || (userLabels.size() != 0))) {
209                                 
210                                 if (m->control_pressed) { for(int i=0;i<rDisplays.size();i++){  delete rDisplays[i];    } delete validCalculator; delete read; delete input; globaldata->ginput = NULL; delete order; globaldata->gorder = NULL; for (int i = 0; i < outputNames.size(); i++) { remove(outputNames[i].c_str()); } return 0; }
211
212                                 
213                                 if(allLines == 1 || labels.count(order->getLabel()) == 1){
214                                         
215                                         m->mothurOut(order->getLabel()); m->mothurOutEndLine();
216                                         rCurve = new Rarefact(order, rDisplays);
217                                         rCurve->getCurve(freq, nIters);
218                                         delete rCurve;
219                                         
220                                         processedLabels.insert(order->getLabel());
221                                         userLabels.erase(order->getLabel());
222                                 }
223                                 
224                                 if ((anyLabelsToProcess(order->getLabel(), userLabels, "") == true) && (processedLabels.count(lastLabel) != 1)) {
225                                         string saveLabel = order->getLabel();
226                                         
227                                         delete order;
228                                         order = (input->getOrderVector(lastLabel));
229                                         
230                                         m->mothurOut(order->getLabel()); m->mothurOutEndLine();
231                                         rCurve = new Rarefact(order, rDisplays);
232                                         rCurve->getCurve(freq, nIters);
233                                         delete rCurve;
234                                         
235                                         processedLabels.insert(order->getLabel());
236                                         userLabels.erase(order->getLabel());
237                                         
238                                         //restore real lastlabel to save below
239                                         order->setLabel(saveLabel);
240                                 }
241                                 
242                                 lastLabel = order->getLabel();          
243                                 
244                                 delete order;
245                                 order = (input->getOrderVector());
246                         }
247                         
248                         if (m->control_pressed) { for(int i=0;i<rDisplays.size();i++){  delete rDisplays[i];    } delete validCalculator; delete read; delete input; globaldata->ginput = NULL; for (int i = 0; i < outputNames.size(); i++) {  remove(outputNames[i].c_str()); }  return 0; }
249
250                         //output error messages about any remaining user labels
251                         set<string>::iterator it;
252                         bool needToRun = false;
253                         for (it = userLabels.begin(); it != userLabels.end(); it++) {  
254                                 m->mothurOut("Your file does not include the label " + *it);
255                                 if (processedLabels.count(lastLabel) != 1) {
256                                         m->mothurOut(". I will use " + lastLabel + "."); m->mothurOutEndLine();
257                                         needToRun = true;
258                                 }else {
259                                         m->mothurOut(". Please refer to " + lastLabel + "."); m->mothurOutEndLine();
260                                 }
261                         }
262                         
263                         if (m->control_pressed) { for(int i=0;i<rDisplays.size();i++){  delete rDisplays[i];    } delete validCalculator; delete read; delete input; globaldata->ginput = NULL;  for (int i = 0; i < outputNames.size(); i++) { remove(outputNames[i].c_str()); } return 0; }
264
265                         //run last label if you need to
266                         if (needToRun == true)  {
267                                 if (order != NULL) {    delete order;   }
268                                 order = (input->getOrderVector(lastLabel));
269                                 
270                                 m->mothurOut(order->getLabel()); m->mothurOutEndLine();
271                                 rCurve = new Rarefact(order, rDisplays);
272                                 rCurve->getCurve(freq, nIters);
273                                 delete rCurve;
274                                 
275                                 delete order;
276                         }
277                         
278                         
279                         for(int i=0;i<rDisplays.size();i++){    delete rDisplays[i];    }       
280                         rDisplays.clear();
281                         globaldata->gorder = NULL;
282                         delete input;  globaldata->ginput = NULL;
283                         delete read;
284                         delete validCalculator;
285                         
286                 }
287                 
288                 if (m->control_pressed) {  for (int i = 0; i < outputNames.size(); i++) {       remove(outputNames[i].c_str()); } return 0; }
289
290                 m->mothurOutEndLine();
291                 m->mothurOut("Output File Names: "); m->mothurOutEndLine();
292                 for (int i = 0; i < outputNames.size(); i++) {  m->mothurOut(outputNames[i]); m->mothurOutEndLine();    }
293                 m->mothurOutEndLine();
294
295                 return 0;
296         }
297         catch(exception& e) {
298                 m->errorOut(e, "RareFactCommand", "execute");
299                 exit(1);
300         }
301 }
302 //**********************************************************************************************************************
303 vector<string> RareFactCommand::parseSharedFile(string filename) {
304         try {
305                 vector<string> filenames;
306                 
307                 map<string, ofstream*> filehandles;
308                 map<string, ofstream*>::iterator it3;
309                 
310                                 
311                 //read first line
312                 read = new ReadOTUFile(filename);       
313                 read->read(&*globaldata); 
314                         
315                 input = globaldata->ginput;
316                 vector<SharedRAbundVector*> lookup = input->getSharedRAbundVectors();
317                 
318                 string sharedFileRoot = getRootName(filename);
319                 
320                 //clears file before we start to write to it below
321                 for (int i=0; i<lookup.size(); i++) {
322                         remove((sharedFileRoot + lookup[i]->getGroup() + ".rabund").c_str());
323                         filenames.push_back((sharedFileRoot + lookup[i]->getGroup() + ".rabund"));
324                 }
325                 
326                 ofstream* temp;
327                 for (int i=0; i<lookup.size(); i++) {
328                         temp = new ofstream;
329                         filehandles[lookup[i]->getGroup()] = temp;
330                         groups.push_back(lookup[i]->getGroup());
331                 }
332
333                 while(lookup[0] != NULL) {
334                 
335                         for (int i = 0; i < lookup.size(); i++) {
336                                 RAbundVector rav = lookup[i]->getRAbundVector();
337                                 openOutputFileAppend(sharedFileRoot + lookup[i]->getGroup() + ".rabund", *(filehandles[lookup[i]->getGroup()]));
338                                 rav.print(*(filehandles[lookup[i]->getGroup()]));
339                                 (*(filehandles[lookup[i]->getGroup()])).close();
340                         }
341                 
342                         for (int i = 0; i < lookup.size(); i++) {  delete lookup[i];  } 
343                         lookup = input->getSharedRAbundVectors();
344                 }
345                 
346                 //free memory
347                 for (it3 = filehandles.begin(); it3 != filehandles.end(); it3++) {
348                         delete it3->second;
349                 }
350                 delete read;
351                 delete input;
352                 globaldata->ginput = NULL;
353
354                 return filenames;
355         }
356         catch(exception& e) {
357                 m->errorOut(e, "RareFactCommand", "parseSharedFile");
358                 exit(1);
359         }
360 }
361 //**********************************************************************************************************************
362
363
364