]> git.donarmstrong.com Git - mothur.git/blob - phylotypecommand.cpp
rewrote metastats command in c++, added mothurRemove function to handle ~ error....
[mothur.git] / phylotypecommand.cpp
1 /*
2  *  phylotypecommand.cpp
3  *  Mothur
4  *
5  *  Created by westcott on 11/20/09.
6  *  Copyright 2009 Schloss Lab. All rights reserved.
7  *
8  */
9
10 #include "phylotypecommand.h"
11 #include "phylotree.h"
12 #include "listvector.hpp"
13 #include "rabundvector.hpp"
14 #include "sabundvector.hpp"
15
16 //**********************************************************************************************************************
17 vector<string> PhylotypeCommand::setParameters(){       
18         try {
19                 CommandParameter ptaxonomy("taxonomy", "InputTypes", "", "", "none", "none", "none",false,true); parameters.push_back(ptaxonomy);
20                 CommandParameter pname("name", "InputTypes", "", "", "none", "none", "none",false,false); parameters.push_back(pname);
21                 CommandParameter pcutoff("cutoff", "Number", "", "-1", "", "", "",false,false); parameters.push_back(pcutoff);
22                 CommandParameter plabel("label", "String", "", "", "", "", "",false,false); parameters.push_back(plabel);
23                 CommandParameter pinputdir("inputdir", "String", "", "", "", "", "",false,false); parameters.push_back(pinputdir);
24                 CommandParameter poutputdir("outputdir", "String", "", "", "", "", "",false,false); parameters.push_back(poutputdir);
25                 
26                 vector<string> myArray;
27                 for (int i = 0; i < parameters.size(); i++) {   myArray.push_back(parameters[i].name);          }
28                 return myArray;
29         }
30         catch(exception& e) {
31                 m->errorOut(e, "PhylotypeCommand", "setParameters");
32                 exit(1);
33         }
34 }
35 //**********************************************************************************************************************
36 string PhylotypeCommand::getHelpString(){       
37         try {
38                 string helpString = "";
39                 helpString += "The phylotype command reads a taxonomy file and outputs a .list, .rabund and .sabund file. \n";
40                 helpString += "The phylotype command parameter options are taxonomy, cutoff and label. The taxonomy parameter is required.\n";
41                 helpString += "The cutoff parameter allows you to specify the level you want to stop at.  The default is the highest level in your taxonomy file. \n";
42                 helpString += "For example: taxonomy = Bacteria;Bacteroidetes-Chlorobi;Bacteroidetes; - cutoff=2, would truncate the taxonomy to Bacteria;Bacteroidetes-Chlorobi; \n";
43                 helpString += "For the cutoff parameter levels count up from the root of the phylotree. This enables you to look at the grouping down to a specific resolution, say the genus level.\n";
44                 helpString += "The label parameter allows you to specify which level you would like, and are separated by dashes.  The default all levels in your taxonomy file. \n";
45                 helpString += "For the label parameter, levels count down from the root to keep the output similiar to mothur's other commands which report information from finer resolution to coarser resolutions.\n";
46                 helpString += "The phylotype command should be in the following format: \n";
47                 helpString += "phylotype(taxonomy=yourTaxonomyFile, cutoff=yourCutoff, label=yourLabels) \n";
48                 helpString += "Eaxample: phylotype(taxonomy=amazon.taxonomy, cutoff=5, label=1-3-5).\n";
49                 return helpString;
50         }
51         catch(exception& e) {
52                 m->errorOut(e, "PhylotypeCommand", "getHelpString");
53                 exit(1);
54         }
55 }
56
57 //**********************************************************************************************************************
58 PhylotypeCommand::PhylotypeCommand(){   
59         try {
60                 abort = true; calledHelp = true; 
61                 setParameters();
62                 vector<string> tempOutNames;
63                 outputTypes["list"] = tempOutNames;
64                 outputTypes["sabund"] = tempOutNames;
65                 outputTypes["rabund"] = tempOutNames;
66         }
67         catch(exception& e) {
68                 m->errorOut(e, "PhylotypeCommand", "PhylotypeCommand");
69                 exit(1);
70         }
71 }
72 /**********************************************************************************************************************/
73 PhylotypeCommand::PhylotypeCommand(string option)  {
74         try {
75                 abort = false; calledHelp = false;   
76                 
77                 //allow user to run help
78                 if(option == "help") { help(); abort = true; calledHelp = true; }
79                 else if(option == "citation") { citation(); abort = true; calledHelp = true;}
80                 
81                 else {
82                         vector<string> myArray = setParameters();
83                         
84                         OptionParser parser(option);
85                         map<string, string> parameters = parser.getParameters(); 
86                         
87                         ValidParameters validParameter;
88                         map<string, string>::iterator it;
89                         
90                         //check to make sure all parameters are valid for command
91                         for (it = parameters.begin(); it != parameters.end(); it++) { 
92                                 if (validParameter.isValidParameter(it->first, myArray, it->second) != true) {  abort = true;  }
93                         }
94                         
95                         //initialize outputTypes
96                         vector<string> tempOutNames;
97                         outputTypes["list"] = tempOutNames;
98                         outputTypes["sabund"] = tempOutNames;
99                         outputTypes["rabund"] = tempOutNames;
100                         
101                         //if the user changes the input directory command factory will send this info to us in the output parameter 
102                         string inputDir = validParameter.validFile(parameters, "inputdir", false);              
103                         if (inputDir == "not found"){   inputDir = "";          }
104                         else {
105                                 string path;
106                                 it = parameters.find("taxonomy");
107                                 //user has given a template file
108                                 if(it != parameters.end()){ 
109                                         path = m->hasPath(it->second);
110                                         //if the user has not given a path then, add inputdir. else leave path alone.
111                                         if (path == "") {       parameters["taxonomy"] = inputDir + it->second;         }
112                                 }
113                                 
114                                 it = parameters.find("name");
115                                 //user has given a template file
116                                 if(it != parameters.end()){ 
117                                         path = m->hasPath(it->second);
118                                         //if the user has not given a path then, add inputdir. else leave path alone.
119                                         if (path == "") {       parameters["name"] = inputDir + it->second;             }
120                                 }
121                         }
122
123                         taxonomyFileName = validParameter.validFile(parameters, "taxonomy", true);
124                         if (taxonomyFileName == "not found") { 
125                                 taxonomyFileName = m->getTaxonomyFile(); 
126                                 if (taxonomyFileName != "") {  m->mothurOut("Using " + taxonomyFileName + " as input file for the taxonomy parameter."); m->mothurOutEndLine(); }
127                                 else { 
128                                         m->mothurOut("No valid current files. taxonomy is a required parameter."); m->mothurOutEndLine(); 
129                                         abort = true; 
130                                 }
131                         }else if (taxonomyFileName == "not open") { abort = true; }     
132                         else { m->setTaxonomyFile(taxonomyFileName); }
133                         
134                         namefile = validParameter.validFile(parameters, "name", true);
135                         if (namefile == "not open") { abort = true; }
136                         else if (namefile == "not found") { namefile = ""; }
137                         else { readNamesFile(); m->setNameFile(namefile); }     
138                         
139                         //if the user changes the output directory command factory will send this info to us in the output parameter 
140                         outputDir = validParameter.validFile(parameters, "outputdir", false);           if (outputDir == "not found"){  
141                                 outputDir = ""; 
142                                 outputDir += m->hasPath(taxonomyFileName); //if user entered a file with a path then preserve it        
143                         }
144                         
145                         string temp = validParameter.validFile(parameters, "cutoff", false);
146                         if (temp == "not found") { temp = "-1"; }
147                         convert(temp, cutoff); 
148                         
149                         label = validParameter.validFile(parameters, "label", false);                   
150                         if (label == "not found") { label = ""; allLines = 1; }
151                         else { 
152                                 if(label != "all") {  m->splitAtDash(label, labels);  allLines = 0;  }
153                                 else { allLines = 1;  }
154                         }
155                         
156                 }
157         }
158         catch(exception& e) {
159                 m->errorOut(e, "PhylotypeCommand", "PhylotypeCommand");
160                 exit(1);
161         }
162 }
163 /**********************************************************************************************************************/
164
165 int PhylotypeCommand::execute(){
166         try {
167         
168                 if (abort == true) { if (calledHelp) { return 0; }  return 2;   }
169                 
170                 //reads in taxonomy file and makes all the taxonomies the same length 
171                 //by appending the last taxon to a given taxonomy as many times as needed to 
172                 //make it as long as the longest taxonomy in the file 
173                 TaxEqualizer* taxEqual = new TaxEqualizer(taxonomyFileName, cutoff, outputDir);
174                 
175                 if (m->control_pressed) { delete taxEqual; return 0; }
176                 
177                 string equalizedTaxFile = taxEqual->getEqualizedTaxFile();
178                 
179                 delete taxEqual;
180                 
181                 //build taxonomy tree from equalized file
182                 PhyloTree* tree = new PhyloTree(equalizedTaxFile);
183                 vector<int> leaves = tree->getGenusNodes();
184                 
185                 //store leaf nodes in current map
186                 for (int i = 0; i < leaves.size(); i++)         {       currentNodes[leaves[i]] = leaves[i];    }
187                 
188                 bool done = false;
189                 if (tree->get(leaves[0]).parent == -1) {  m->mothurOut("Empty Tree"); m->mothurOutEndLine();    done = true;    }
190                 
191                 if (m->control_pressed) { delete tree; return 0; }
192                 
193                 string fileroot = outputDir + m->getRootName(m->getSimpleName(taxonomyFileName));
194                 
195                 ofstream outList;
196                 string outputListFile = fileroot + "tx.list";
197                 m->openOutputFile(outputListFile, outList);
198                 ofstream outSabund;
199                 string outputSabundFile = fileroot + "tx.sabund";
200                 m->openOutputFile(outputSabundFile, outSabund);
201                 ofstream outRabund;
202                 string outputRabundFile = fileroot + "tx.rabund";
203                 m->openOutputFile(outputRabundFile, outRabund);
204                 
205                 outputNames.push_back(outputListFile); outputTypes["list"].push_back(outputListFile);
206                 outputNames.push_back(outputSabundFile); outputTypes["sabund"].push_back(outputSabundFile);
207                 outputNames.push_back(outputRabundFile); outputTypes["rabund"].push_back(outputRabundFile);
208                 
209                 int count = 1;          
210                 //start at leaves of tree and work towards root, processing the labels the user wants
211                 while((!done) && ((allLines == 1) || (labels.size() != 0))) {
212                 
213                         string level = toString(count); 
214                         count++;
215                         
216                         if (m->control_pressed) { 
217                                 outRabund.close(); outSabund.close(); outList.close();
218                                 for (int i = 0; i < outputNames.size(); i++) {  m->mothurRemove(outputNames[i]);  }
219                                 delete tree; return 0; 
220                         }
221                         
222                         //is this a level the user want output for
223                         if(allLines == 1 || labels.count(level) == 1){  
224                                 
225                                 //output level
226                                 m->mothurOut(level); m->mothurOutEndLine();
227                                 
228                                 ListVector list;
229                                 list.setLabel(level);
230                                 //go through nodes and build listvector 
231                                 for (itCurrent = currentNodes.begin(); itCurrent != currentNodes.end(); itCurrent++) {
232                         
233                                         //get parents
234                                         TaxNode node = tree->get(itCurrent->first);
235                                         parentNodes[node.parent] = node.parent;
236                                         
237                                         vector<string> names = node.accessions;
238                                         
239                                         //make the names compatable with listvector
240                                         string name = "";
241                                         for (int i = 0; i < names.size(); i++) {  
242                                                 if (namefile != "") {   
243                                                         map<string, string>::iterator itNames = namemap.find(names[i]);  //make sure this name is in namefile
244                 
245                                                         if (itNames != namemap.end()) {  name += namemap[names[i]] + ",";   } //you found it in namefile
246                                                         else { m->mothurOut(names[i] + " is not in your namefile, please correct."); m->mothurOutEndLine(); exit(1);  }
247                                                         
248                                                 }else{   name += names[i] + ",";        }
249                                         }
250                                         name = name.substr(0, name.length()-1);  //rip off extra ','
251                                         
252                                         //add bin to list vector
253                                         list.push_back(name);
254                                 }       
255                                 
256                                 //print listvector
257                                 list.print(outList);
258                                 //print rabund
259                                 list.getRAbundVector().print(outRabund);
260                                 //print sabund
261                                 list.getSAbundVector().print(outSabund);
262                         
263                                 labels.erase(level);
264                                 
265                         }else {
266                                 
267                                 //just get parents
268                                 for (itCurrent = currentNodes.begin(); itCurrent != currentNodes.end(); itCurrent++) {
269                                         int parent = tree->get(itCurrent->first).parent;
270                                         parentNodes[parent] = parent;
271                                 }
272                         }
273                         
274                         //move up a level
275                         currentNodes = parentNodes;
276                         parentNodes.clear();
277                         
278                         //have we reached the rootnode
279                         if (tree->get(currentNodes.begin()->first).parent == -1)  {  done = true;  }
280                 }
281                         
282                 outList.close();
283                 outSabund.close();
284                 outRabund.close();      
285                 
286                 delete tree;
287                 
288                 if (m->control_pressed) { 
289                         for (int i = 0; i < outputNames.size(); i++) {  m->mothurRemove(outputNames[i]);  }
290                         return 0; 
291                 }
292                 
293                 //set list file as new current listfile
294                 string current = "";
295                 itTypes = outputTypes.find("list");
296                 if (itTypes != outputTypes.end()) {
297                         if ((itTypes->second).size() != 0) { current = (itTypes->second)[0]; m->setListFile(current); }
298                 }
299                 
300                 //set rabund file as new current rabundfile
301                 itTypes = outputTypes.find("rabund");
302                 if (itTypes != outputTypes.end()) {
303                         if ((itTypes->second).size() != 0) { current = (itTypes->second)[0]; m->setRabundFile(current); }
304                 }
305                 
306                 //set sabund file as new current sabundfile
307                 itTypes = outputTypes.find("sabund");
308                 if (itTypes != outputTypes.end()) {
309                         if ((itTypes->second).size() != 0) { current = (itTypes->second)[0]; m->setSabundFile(current); }
310                 }               
311                 
312                 m->mothurOutEndLine();
313                 m->mothurOut("Output File Names: "); m->mothurOutEndLine();
314                 for (int i = 0; i < outputNames.size(); i++) {  m->mothurOut(outputNames[i]); m->mothurOutEndLine();    }
315                 m->mothurOutEndLine();
316                 
317                 return 0;               
318         }
319
320         catch(exception& e) {
321                 m->errorOut(e, "PhylotypeCommand", "execute");
322                 exit(1);
323         }
324 }
325 /*****************************************************************/
326 int PhylotypeCommand::readNamesFile() {
327         try {
328                                 
329                 ifstream in;
330                 m->openInputFile(namefile, in);
331                 
332                 string first, second;
333                 map<string, string>::iterator itNames;
334                 
335                 while(!in.eof()) {
336                         in >> first >> second; m->gobble(in);
337                         
338                         itNames = namemap.find(first);
339                         if (itNames == namemap.end()) {  
340                                 namemap[first] = second; 
341                         }else {  m->mothurOut(first + " has already been seen in namefile, disregarding names file."); m->mothurOutEndLine(); in.close(); namemap.clear(); namefile = ""; return 1; }                   
342                 }
343                 in.close();
344                 
345                 return 0;
346         }
347         catch(exception& e) {
348                 m->errorOut(e, "PhylotypeCommand", "readNamesFile");
349                 exit(1);
350         }
351 }
352
353 /**********************************************************************************************************************/