]> git.donarmstrong.com Git - mothur.git/blob - bootstrapsharedcommand.cpp
added set.dir command and modified commands to redirect input and output, removed...
[mothur.git] / bootstrapsharedcommand.cpp
1 /*
2  *  bootstrapsharedcommand.cpp
3  *  Mothur
4  *
5  *  Created by Sarah Westcott on 4/16/09.
6  *  Copyright 2009 Schloss Lab UMASS Amherst. All rights reserved.
7  *
8  */
9
10 #include "bootstrapsharedcommand.h"
11 #include "sharedjabund.h"
12 #include "sharedsorabund.h"
13 #include "sharedjclass.h"
14 #include "sharedsorclass.h"
15 #include "sharedjest.h"
16 #include "sharedsorest.h"
17 #include "sharedthetayc.h"
18 #include "sharedthetan.h"
19 #include "sharedmorisitahorn.h"
20 #include "sharedbraycurtis.h"
21
22
23 //**********************************************************************************************************************
24
25 BootSharedCommand::BootSharedCommand(string option){
26         try {
27                 globaldata = GlobalData::getInstance();
28                 abort = false;
29                 allLines = 1;
30                 labels.clear();
31                 Groups.clear();
32                 Estimators.clear();
33                 
34                 //allow user to run help
35                 if(option == "help") { help(); abort = true; }
36                 
37                 else {
38                         //valid paramters for this command
39                         string Array[] =  {"label","calc","groups","iters","outputdir","inputdir"};
40                         vector<string> myArray (Array, Array+(sizeof(Array)/sizeof(string)));
41                         
42                         OptionParser parser(option);
43                         map<string,string> parameters = parser.getParameters();
44                         
45                         ValidParameters validParameter;
46                 
47                         //check to make sure all parameters are valid for command
48                         for (map<string,string>::iterator it = parameters.begin(); it != parameters.end(); it++) { 
49                                 if (validParameter.isValidParameter(it->first, myArray, it->second) != true) {  abort = true;  }
50                         }
51                         
52                         //if the user changes the output directory command factory will send this info to us in the output parameter 
53                         outputDir = validParameter.validFile(parameters, "outputdir", false);           if (outputDir == "not found"){  
54                                 outputDir = ""; 
55                                 outputDir += hasPath(globaldata->inputFileName); //if user entered a file with a path then preserve it  
56                         }
57
58                         
59                         //make sure the user has already run the read.otu command
60                         if (globaldata->getSharedFile() == "") {
61                                 if (globaldata->getListFile() == "") { mothurOut("You must read a list and a group, or a shared before you can use the bootstrap.shared command."); mothurOutEndLine(); abort = true; }
62                                 else if (globaldata->getGroupFile() == "") { mothurOut("You must read a list and a group, or a shared before you can use the bootstrap.shared command."); mothurOutEndLine(); abort = true; }
63                         }
64                         
65                         //check for optional parameter and set defaults
66                         // ...at some point should added some additional type checking...
67                         label = validParameter.validFile(parameters, "label", false);                   
68                         if (label == "not found") { label = ""; }
69                         else { 
70                                 if(label != "all") {  splitAtDash(label, labels);  allLines = 0;  }
71                                 else { allLines = 1;  }
72                         }
73                         
74                         //if the user has not specified any labels use the ones from read.otu
75                         if(label == "") {  
76                                 allLines = globaldata->allLines; 
77                                 labels = globaldata->labels; 
78                         }
79                                 
80                         groups = validParameter.validFile(parameters, "groups", false);                 
81                         if (groups == "not found") { groups = ""; }
82                         else { 
83                                 splitAtDash(groups, Groups);
84                                 globaldata->Groups = Groups;
85                         }
86                                 
87                         calc = validParameter.validFile(parameters, "calc", false);                     
88                         if (calc == "not found") { calc = "jclass-thetayc";  }
89                         else { 
90                                  if (calc == "default")  {  calc = "jclass-thetayc";  }
91                         }
92                         splitAtDash(calc, Estimators);
93
94                         string temp;
95                         temp = validParameter.validFile(parameters, "iters", false);  if (temp == "not found") { temp = "1000"; }
96                         convert(temp, iters); 
97                                 
98                         if (abort == false) {
99                         
100                                 //used in tree constructor 
101                                 globaldata->runParse = false;
102                         
103                                 validCalculator = new ValidCalculators();
104                                 
105                                 int i;
106                                 for (i=0; i<Estimators.size(); i++) {
107                                         if (validCalculator->isValidCalculator("boot", Estimators[i]) == true) { 
108                                                 if (Estimators[i] == "jabund") {        
109                                                         treeCalculators.push_back(new JAbund());
110                                                 }else if (Estimators[i] == "sorabund") { 
111                                                         treeCalculators.push_back(new SorAbund());
112                                                 }else if (Estimators[i] == "jclass") { 
113                                                         treeCalculators.push_back(new Jclass());
114                                                 }else if (Estimators[i] == "sorclass") { 
115                                                         treeCalculators.push_back(new SorClass());
116                                                 }else if (Estimators[i] == "jest") { 
117                                                         treeCalculators.push_back(new Jest());
118                                                 }else if (Estimators[i] == "sorest") { 
119                                                         treeCalculators.push_back(new SorEst());
120                                                 }else if (Estimators[i] == "thetayc") { 
121                                                         treeCalculators.push_back(new ThetaYC());
122                                                 }else if (Estimators[i] == "thetan") { 
123                                                         treeCalculators.push_back(new ThetaN());
124                                                 }else if (Estimators[i] == "morisitahorn") { 
125                                                         treeCalculators.push_back(new MorHorn());
126                                                 }else if (Estimators[i] == "braycurtis") { 
127                                                         treeCalculators.push_back(new BrayCurtis());
128                                                 }
129                                         }
130                                 }
131                                 
132                                 delete validCalculator;
133                                 
134                                 ofstream* tempo;
135                                 for (int i=0; i < treeCalculators.size(); i++) {
136                                         tempo = new ofstream;
137                                         out.push_back(tempo);
138                                 }
139                                 
140                                 //make a vector of tree* for each calculator
141                                 trees.resize(treeCalculators.size());
142                         }
143                 }
144
145         }
146         catch(exception& e) {
147                 errorOut(e, "BootSharedCommand", "BootSharedCommand");
148                 exit(1);
149         }
150 }
151
152 //**********************************************************************************************************************
153
154 void BootSharedCommand::help(){
155         try {
156                 mothurOut("The bootstrap.shared command can only be executed after a successful read.otu command.\n");
157                 mothurOut("The bootstrap.shared command parameters are groups, calc, iters and label.\n");
158                 mothurOut("The groups parameter allows you to specify which of the groups in your groupfile you would like included used.\n");
159                 mothurOut("The group names are separated by dashes. The label parameter allows you to select what distance levels you would like trees created for, and is also separated by dashes.\n");
160                 mothurOut("The bootstrap.shared command should be in the following format: bootstrap.shared(groups=yourGroups, calc=yourCalcs, label=yourLabels, iters=yourIters).\n");
161                 mothurOut("Example bootstrap.shared(groups=A-B-C, calc=jabund-sorabund, iters=100).\n");
162                 mothurOut("The default value for groups is all the groups in your groupfile.\n");
163                 mothurOut("The default value for calc is jclass-thetayc. The default for iters is 1000.\n");
164         }
165         catch(exception& e) {
166                 errorOut(e, "BootSharedCommand", "help");
167                 exit(1);
168         }
169 }
170
171 //**********************************************************************************************************************
172
173 BootSharedCommand::~BootSharedCommand(){
174         //made new in execute
175         if (abort == false) {
176                 delete input; globaldata->ginput = NULL;
177                 delete read;
178                 delete util;
179                 globaldata->gorder = NULL;
180         }
181 }
182
183 //**********************************************************************************************************************
184
185 int BootSharedCommand::execute(){
186         try {
187         
188                 if (abort == true) {    return 0;       }
189         
190                 util = new SharedUtil();        
191         
192                 //read first line
193                 read = new ReadOTUFile(globaldata->inputFileName);      
194                 read->read(&*globaldata); 
195                 input = globaldata->ginput;
196                 order = input->getSharedOrderVector();
197                 string lastLabel = order->getLabel();
198                 
199                 //if the users entered no valid calculators don't execute command
200                 if (treeCalculators.size() == 0) { return 0; }
201
202                 //if the users enters label "0.06" and there is no "0.06" in their file use the next lowest label.
203                 set<string> processedLabels;
204                 set<string> userLabels = labels;
205                                 
206                 //set users groups
207                 util->setGroups(globaldata->Groups, globaldata->gGroupmap->namesOfGroups, "treegroup");
208                 numGroups = globaldata->Groups.size();
209                 
210                 //clear globaldatas old tree names if any
211                 globaldata->Treenames.clear();
212                 
213                 //fills globaldatas tree names
214                 globaldata->Treenames = globaldata->Groups;
215                 
216                 //create treemap class from groupmap for tree class to use
217                 tmap = new TreeMap();
218                 tmap->makeSim(globaldata->gGroupmap);
219                 globaldata->gTreemap = tmap;
220                         
221                 while((order != NULL) && ((allLines == 1) || (userLabels.size() != 0))) {
222                 
223                         if(allLines == 1 || labels.count(order->getLabel()) == 1){                      
224                                 
225                                 mothurOut(order->getLabel()); mothurOutEndLine();
226                                 process(order);
227                                 
228                                 processedLabels.insert(order->getLabel());
229                                 userLabels.erase(order->getLabel());
230                         }
231                         
232                         //you have a label the user want that is smaller than this label and the last label has not already been processed
233                         if ((anyLabelsToProcess(order->getLabel(), userLabels, "") == true) && (processedLabels.count(lastLabel) != 1)) {
234                                 string saveLabel = order->getLabel();
235                                 
236                                 delete order;
237                                 order = input->getSharedOrderVector(lastLabel);                                                                                                 
238                                 mothurOut(order->getLabel()); mothurOutEndLine();
239                                 process(order);
240
241                                 processedLabels.insert(order->getLabel());
242                                 userLabels.erase(order->getLabel());
243                                 
244                                 //restore real lastlabel to save below
245                                 order->setLabel(saveLabel);
246                         }
247                         
248                         
249                         lastLabel = order->getLabel();                  
250
251                         //get next line to process
252                         delete order;
253                         order = input->getSharedOrderVector();
254                 }
255                 
256                 //output error messages about any remaining user labels
257                 set<string>::iterator it;
258                 bool needToRun = false;
259                 for (it = userLabels.begin(); it != userLabels.end(); it++) {  
260                         mothurOut("Your file does not include the label " + *it); 
261                         if (processedLabels.count(lastLabel) != 1) {
262                                 mothurOut(". I will use " + lastLabel + "."); mothurOutEndLine();
263                                 needToRun = true;
264                         }else {
265                                 mothurOut(". Please refer to " + lastLabel + ".");  mothurOutEndLine();
266                         }
267                 }
268                 
269                 //run last line if you need to
270                 if (needToRun == true)  {
271                                 if (order != NULL) {    delete order;   }
272                                 order = input->getSharedOrderVector(lastLabel);                                                                                                 
273                                 mothurOut(order->getLabel()); mothurOutEndLine();
274                                 process(order);
275                                 delete order;
276
277                 }
278                 
279                 //reset groups parameter
280                 globaldata->Groups.clear();  
281
282                 return 0;
283         }
284         catch(exception& e) {
285                 errorOut(e, "BootSharedCommand", "execute");
286                 exit(1);
287         }
288 }
289 //**********************************************************************************************************************
290
291 void BootSharedCommand::createTree(ostream* out, Tree* t){
292         try {
293                 
294                 //do merges and create tree structure by setting parents and children
295                 //there are numGroups - 1 merges to do
296                 for (int i = 0; i < (numGroups - 1); i++) {
297                 
298                         float largest = -1000.0;
299                         int row, column;
300                         //find largest value in sims matrix by searching lower triangle
301                         for (int j = 1; j < simMatrix.size(); j++) {
302                                 for (int k = 0; k < j; k++) {
303                                         if (simMatrix[j][k] > largest) {  largest = simMatrix[j][k]; row = j; column = k;  }
304                                 }
305                         }
306
307                         //set non-leaf node info and update leaves to know their parents
308                         //non-leaf
309                         t->tree[numGroups + i].setChildren(index[row], index[column]);
310                 
311                         //parents
312                         t->tree[index[row]].setParent(numGroups + i);
313                         t->tree[index[column]].setParent(numGroups + i);
314                         
315                         //blength = distance / 2;
316                         float blength = ((1.0 - largest) / 2);
317                         
318                         //branchlengths
319                         t->tree[index[row]].setBranchLength(blength - t->tree[index[row]].getLengthToLeaves());
320                         t->tree[index[column]].setBranchLength(blength - t->tree[index[column]].getLengthToLeaves());
321                 
322                         //set your length to leaves to your childs length plus branchlength
323                         t->tree[numGroups + i].setLengthToLeaves(t->tree[index[row]].getLengthToLeaves() + t->tree[index[row]].getBranchLength());
324                         
325                 
326                         //update index 
327                         index[row] = numGroups+i;
328                         index[column] = numGroups+i;
329                         
330                         //zero out highest value that caused the merge.
331                         simMatrix[row][column] = -1000.0;
332                         simMatrix[column][row] = -1000.0;
333                 
334                         //merge values in simsMatrix
335                         for (int n = 0; n < simMatrix.size(); n++)      {
336                                 //row becomes merge of 2 groups
337                                 simMatrix[row][n] = (simMatrix[row][n] + simMatrix[column][n]) / 2;
338                                 simMatrix[n][row] = simMatrix[row][n];
339                                 //delete column
340                                 simMatrix[column][n] = -1000.0;
341                                 simMatrix[n][column] = -1000.0;
342                         }
343                 }
344                 
345                 //adjust tree to make sure root to tip length is .5
346                 int root = t->findRoot();
347                 t->tree[root].setBranchLength((0.5 - t->tree[root].getLengthToLeaves()));
348
349                 //assemble tree
350                 t->assembleTree();
351         
352                 //print newick file
353                 t->print(*out);
354         
355         }
356         catch(exception& e) {
357                 errorOut(e, "BootSharedCommand", "createTree");
358                 exit(1);
359         }
360 }
361 /***********************************************************/
362 void BootSharedCommand::printSims() {
363         try {
364                 mothurOut("simsMatrix"); mothurOutEndLine(); 
365                 for (int m = 0; m < simMatrix.size(); m++)      {
366                         for (int n = 0; n < simMatrix.size(); n++)      {
367                                 mothurOut(simMatrix[m][n]);  mothurOut("\t"); 
368                         }
369                         mothurOutEndLine(); 
370                 }
371
372         }
373         catch(exception& e) {
374                 errorOut(e, "BootSharedCommand", "printSims");
375                 exit(1);
376         }
377 }
378 /***********************************************************/
379 void BootSharedCommand::process(SharedOrderVector* order) {
380         try{
381                                 EstOutput data;
382                                 vector<SharedRAbundVector*> subset;
383                                                                 
384                                 //open an ostream for each calc to print to
385                                 for (int z = 0; z < treeCalculators.size(); z++) {
386                                         //create a new filename
387                                         outputFile = outputDir + getRootName(getSimpleName(globaldata->inputFileName)) + treeCalculators[z]->getName() + ".boot" + order->getLabel() + ".tre";
388                                         openOutputFile(outputFile, *(out[z]));
389                                 }
390                                 
391                                 mothurOut("Generating bootstrap trees..."); cout.flush();
392                                 
393                                 //create a file for each calculator with the 1000 trees in it.
394                                 for (int p = 0; p < iters; p++) {
395                                         
396                                         util->getSharedVectorswithReplacement(globaldata->Groups, lookup, order);  //fills group vectors from order vector.
397
398                                 
399                                         //for each calculator                                                                                           
400                                         for(int i = 0 ; i < treeCalculators.size(); i++) {
401                                         
402                                                 //initialize simMatrix
403                                                 simMatrix.clear();
404                                                 simMatrix.resize(numGroups);
405                                                 for (int m = 0; m < simMatrix.size(); m++)      {
406                                                         for (int j = 0; j < simMatrix.size(); j++)      {
407                                                                 simMatrix[m].push_back(0.0);
408                                                         }
409                                                 }
410                                 
411                                                 //initialize index
412                                                 index.clear();
413                                                 for (int g = 0; g < numGroups; g++) {   index[g] = g;   }
414                                                         
415                                                 for (int k = 0; k < lookup.size(); k++) { // pass cdd each set of groups to commpare
416                                                         for (int l = k; l < lookup.size(); l++) {
417                                                                 if (k != l) { //we dont need to similiarity of a groups to itself
418                                                                         subset.clear(); //clear out old pair of sharedrabunds
419                                                                         //add new pair of sharedrabunds
420                                                                         subset.push_back(lookup[k]); subset.push_back(lookup[l]); 
421                                                                         
422                                                                         //get estimated similarity between 2 groups
423                                                                         data = treeCalculators[i]->getValues(subset); //saves the calculator outputs
424                                                                         //save values in similarity matrix
425                                                                         simMatrix[k][l] = data[0];
426                                                                         simMatrix[l][k] = data[0];
427                                                                 }
428                                                         }
429                                                 }
430                                                 
431                                                 tempTree = new Tree();
432                                                 
433                                                 //creates tree from similarity matrix and write out file
434                                                 createTree(out[i], tempTree);
435                                                 
436                                                 //save trees for consensus command.
437                                                 trees[i].push_back(tempTree);
438                                         }
439                                 }
440                                 
441                                 mothurOut("\tDone."); mothurOutEndLine();
442                                 //delete globaldata's tree
443                                 //for (int m = 0; m < globaldata->gTree.size(); m++) {  delete globaldata->gTree[m];  }
444                                 //globaldata->gTree.clear();
445                                 
446                                 
447                                 //create consensus trees for each bootstrapped tree set
448                                 for (int k = 0; k < trees.size(); k++) {
449                                         
450                                         mothurOut("Generating consensus tree for " + treeCalculators[k]->getName()); mothurOutEndLine();
451                                         
452                                         //set global data to calc trees
453                                         globaldata->gTree = trees[k];
454                                         
455                                         string filename = getRootName(getSimpleName(globaldata->inputFileName)) + treeCalculators[k]->getName() + ".boot" + order->getLabel();
456                                         consensus = new ConcensusCommand(filename);
457                                         consensus->execute();
458                                         delete consensus;
459                                         
460                                         //delete globaldata's tree
461                                         //for (int m = 0; m < globaldata->gTree.size(); m++) {  delete globaldata->gTree[m];  }
462                                         //globaldata->gTree.clear();
463                                         
464                                 }
465                                 
466                                 
467                                         
468                                 //close ostream for each calc
469                                 for (int z = 0; z < treeCalculators.size(); z++) { out[z]->close(); }
470         
471         }
472         catch(exception& e) {
473                 errorOut(e, "BootSharedCommand", "process");
474                 exit(1);
475         }
476 }
477 /***********************************************************/
478
479
480