]> git.donarmstrong.com Git - mothur.git/blob - binsequencecommand.cpp
rewrote metastats command in c++, added mothurRemove function to handle ~ error....
[mothur.git] / binsequencecommand.cpp
1 /*
2  *  binsequencecommand.cpp
3  *  Mothur
4  *
5  *  Created by Sarah Westcott on 4/3/09.
6  *  Copyright 2009 Schloss Lab UMASS Amhers. All rights reserved.
7  *
8  */
9
10 #include "binsequencecommand.h"
11
12
13 //**********************************************************************************************************************
14 vector<string> BinSeqCommand::setParameters(){  
15         try {
16                 CommandParameter plist("list", "InputTypes", "", "", "none", "none", "none",false,true); parameters.push_back(plist);
17                 CommandParameter pfasta("fasta", "InputTypes", "", "", "none", "none", "none",false,true); parameters.push_back(pfasta);
18                 CommandParameter pname("name", "InputTypes", "", "", "none", "none", "none",false,false); parameters.push_back(pname);
19                 CommandParameter pgroup("group", "InputTypes", "", "", "none", "none", "none",false,false); parameters.push_back(pgroup);
20                 CommandParameter plabel("label", "String", "", "", "", "", "",false,false); parameters.push_back(plabel);
21                 CommandParameter pinputdir("inputdir", "String", "", "", "", "", "",false,false); parameters.push_back(pinputdir);
22                 CommandParameter poutputdir("outputdir", "String", "", "", "", "", "",false,false); parameters.push_back(poutputdir);
23         
24                 vector<string> myArray;
25                 for (int i = 0; i < parameters.size(); i++) {   myArray.push_back(parameters[i].name);          }
26                 return myArray;
27         }
28         catch(exception& e) {
29                 m->errorOut(e, "BinSeqCommand", "setParameters");
30                 exit(1);
31         }
32 }
33 //**********************************************************************************************************************
34 string BinSeqCommand::getHelpString(){  
35         try {
36                 string helpString = "";
37                 helpString += "The bin.seqs command parameters are list, fasta, name, label and group.  The fasta and list are required, unless you have a valid current list and fasta file.\n";
38                 helpString += "The label parameter allows you to select what distance levels you would like a output files created for, and are separated by dashes.\n";
39                 helpString += "The bin.seqs command should be in the following format: bin.seqs(fasta=yourFastaFile, name=yourNamesFile, group=yourGroupFile, label=yourLabels).\n";
40                 helpString += "Example bin.seqs(fasta=amazon.fasta, group=amazon.groups, name=amazon.names).\n";
41                 helpString += "The default value for label is all lines in your inputfile.\n";
42                 helpString += "The bin.seqs command outputs a .fasta file for each distance you specify appending the OTU number to each name.\n";
43                 helpString += "If you provide a groupfile, then it also appends the sequences group to the name.\n";
44                 helpString += "Note: No spaces between parameter labels (i.e. fasta), '=' and parameters (i.e.yourFastaFile).\n";
45                 return helpString;
46         }
47         catch(exception& e) {
48                 m->errorOut(e, "BinSeqCommand", "getHelpString");
49                 exit(1);
50         }
51 }
52 //**********************************************************************************************************************
53 BinSeqCommand::BinSeqCommand(){ 
54         try {
55                 abort = true; calledHelp = true; 
56                 setParameters();
57                 vector<string> tempOutNames;
58                 outputTypes["fasta"] = tempOutNames;
59         }
60         catch(exception& e) {
61                 m->errorOut(e, "BinSeqCommand", "BinSeqCommand");
62                 exit(1);
63         }
64 }
65 //**********************************************************************************************************************
66 BinSeqCommand::BinSeqCommand(string option) {
67         try {
68                 abort = false; calledHelp = false;   
69                 allLines = 1;
70                 labels.clear();
71                 
72                 //allow user to run help
73                 if(option == "help") { help(); abort = true; calledHelp = true; }
74                 else if(option == "citation") { citation(); abort = true; calledHelp = true;}
75                 
76                 else {
77                         vector<string> myArray = setParameters();
78                         
79                         OptionParser parser(option);
80                         map<string, string> parameters = parser.getParameters();
81                         
82                         ValidParameters validParameter;
83                         map<string, string>::iterator it;
84                 
85                         //check to make sure all parameters are valid for command
86                         for (it = parameters.begin(); it != parameters.end(); it++) { 
87                                 if (validParameter.isValidParameter(it->first, myArray, it->second) != true) {  abort = true;  }
88                         }
89                         
90                         //initialize outputTypes
91                         vector<string> tempOutNames;
92                         outputTypes["fasta"] = tempOutNames;
93                         
94                         //if the user changes the input directory command factory will send this info to us in the output parameter 
95                         string inputDir = validParameter.validFile(parameters, "inputdir", false);              
96                         if (inputDir == "not found"){   inputDir = "";          }
97                         else {
98                                 string path;
99                                 it = parameters.find("fasta");
100                                 //user has given a template file
101                                 if(it != parameters.end()){ 
102                                         path = m->hasPath(it->second);
103                                         //if the user has not given a path then, add inputdir. else leave path alone.
104                                         if (path == "") {       parameters["fasta"] = inputDir + it->second;            }
105                                 }
106                                 
107                                 it = parameters.find("list");
108                                 //user has given a template file
109                                 if(it != parameters.end()){ 
110                                         path = m->hasPath(it->second);
111                                         //if the user has not given a path then, add inputdir. else leave path alone.
112                                         if (path == "") {       parameters["list"] = inputDir + it->second;             }
113                                 }
114                                 
115                                 it = parameters.find("name");
116                                 //user has given a template file
117                                 if(it != parameters.end()){ 
118                                         path = m->hasPath(it->second);
119                                         //if the user has not given a path then, add inputdir. else leave path alone.
120                                         if (path == "") {       parameters["name"] = inputDir + it->second;             }
121                                 }
122                                 
123                                 it = parameters.find("group");
124                                 //user has given a template file
125                                 if(it != parameters.end()){ 
126                                         path = m->hasPath(it->second);
127                                         //if the user has not given a path then, add inputdir. else leave path alone.
128                                         if (path == "") {       parameters["group"] = inputDir + it->second;            }
129                                 }
130                         }
131
132                         
133                         //check for required parameters
134                         fastafile = validParameter.validFile(parameters, "fasta", true);
135                         if (fastafile == "not found") {                                 //if there is a current phylip file, use it
136                                 fastafile = m->getFastaFile(); 
137                                 if (fastafile != "") { m->mothurOut("Using " + fastafile + " as input file for the fasta parameter."); m->mothurOutEndLine(); }
138                                 else {  m->mothurOut("You have no current fasta file and the fasta parameter is required."); m->mothurOutEndLine(); abort = true; }
139                         }
140                         else if (fastafile == "not open") { abort = true; }     
141                         else { m->setFastaFile(fastafile); }
142                         
143                         listfile = validParameter.validFile(parameters, "list", true);
144                         if (listfile == "not found") {                  
145                                 listfile = m->getListFile(); 
146                                 if (listfile != "") { m->mothurOut("Using " + listfile + " as input file for the list parameter."); m->mothurOutEndLine(); }
147                                 else {  m->mothurOut("You have no current list file and the list parameter is required."); m->mothurOutEndLine(); abort = true; }
148                         }
149                         else if (listfile == "not open") { listfile = ""; abort = true; }       
150                         else { m->setListFile(listfile); }
151                         
152                         //if the user changes the output directory command factory will send this info to us in the output parameter 
153                         outputDir = validParameter.validFile(parameters, "outputdir", false);           if (outputDir == "not found"){  
154                                 outputDir = ""; 
155                                 outputDir += m->hasPath(listfile); //if user entered a file with a path then preserve it        
156                         }
157                         
158                 
159                         //check for optional parameter and set defaults
160                         // ...at some point should added some additional type checking...
161                         
162                         label = validParameter.validFile(parameters, "label", false);                   
163                         if (label == "not found") { label = ""; }
164                         else { 
165                                 if(label != "all") {  m->splitAtDash(label, labels);  allLines = 0;  }
166                                 else { allLines = 1;  }
167                         }
168                         
169                         namesfile = validParameter.validFile(parameters, "name", true);
170                         if (namesfile == "not open") { abort = true; }  
171                         else if (namesfile == "not found") { namesfile = ""; }
172                         else {  m->setNameFile(namesfile); }
173
174                         groupfile = validParameter.validFile(parameters, "group", true);
175                         if (groupfile == "not open") { abort = true; }
176                         else if (groupfile == "not found") { groupfile = ""; }
177                         else { m->setGroupFile(groupfile); }
178                         
179                 }
180         }
181         catch(exception& e) {
182                 m->errorOut(e, "BinSeqCommand", "BinSeqCommand");
183                 exit(1);
184         }
185 }
186 //**********************************************************************************************************************
187
188 BinSeqCommand::~BinSeqCommand(){}
189 //**********************************************************************************************************************
190
191 int BinSeqCommand::execute(){
192         try {
193                 if (abort == true) { if (calledHelp) { return 0; }  return 2;   }
194         
195                 int error = 0;
196                 
197                 fasta = new FastaMap();
198                 if (groupfile != "") {
199                         groupMap = new GroupMap(groupfile);
200                         groupMap->readMap();
201                 }
202                 
203                 //read fastafile
204                 fasta->readFastaFile(fastafile);
205                 
206                 //if user gave a namesfile then use it
207                 if (namesfile != "") {
208                         readNamesFile();
209                 }
210                 
211                 input = new InputData(listfile, "list");
212                 list = input->getListVector();
213                 string lastLabel = list->getLabel();
214                 
215                 if (m->control_pressed) {  delete input;  delete fasta; if (groupfile != "") {  delete groupMap;   } return 0; }
216                 
217                 //if the users enters label "0.06" and there is no "0.06" in their file use the next lowest label.
218                 set<string> processedLabels;
219                 set<string> userLabels = labels;
220
221                                 
222                 while((list != NULL) && ((allLines == 1) || (userLabels.size() != 0))) {
223                         
224                         if(m->control_pressed) { for (int i = 0; i < outputNames.size(); i++) { m->mothurRemove(outputNames[i]);                } delete input;  delete fasta; if (groupfile != "") {  delete groupMap;   } return 0; } 
225                         
226                         if(allLines == 1 || labels.count(list->getLabel()) == 1){
227                                 
228                                 error = process(list);  
229                                 if (error == 1) { for (int i = 0; i < outputNames.size(); i++) {        m->mothurRemove(outputNames[i]);                } delete input;  delete fasta; if (groupfile != "") {  delete groupMap;   } return 0; } 
230                                                         
231                                 processedLabels.insert(list->getLabel());
232                                 userLabels.erase(list->getLabel());
233                         }
234                         
235                         if ((m->anyLabelsToProcess(list->getLabel(), userLabels, "") == true) && (processedLabels.count(lastLabel) != 1)) {
236                                 string saveLabel = list->getLabel();
237                                 
238                                 delete list;
239                                 list = input->getListVector(lastLabel);
240                                 
241                                 error = process(list);  
242                                 if (error == 1) { for (int i = 0; i < outputNames.size(); i++) {        m->mothurRemove(outputNames[i]);                } delete input;  delete fasta; if (groupfile != "") {  delete groupMap;   } return 0; }
243                                                                                                         
244                                 processedLabels.insert(list->getLabel());
245                                 userLabels.erase(list->getLabel());
246                                 
247                                 //restore real lastlabel to save below
248                                 list->setLabel(saveLabel);
249                         }
250                         
251                         lastLabel = list->getLabel();                   
252                         
253                         delete list;
254                         list = input->getListVector();
255                 }
256                 
257                 if(m->control_pressed) { for (int i = 0; i < outputNames.size(); i++) { m->mothurRemove(outputNames[i]);                } delete input;  delete fasta; if (groupfile != "") {  delete groupMap;   } return 0; } 
258
259                 //output error messages about any remaining user labels
260                 set<string>::iterator it;
261                 bool needToRun = false;
262                 for (it = userLabels.begin(); it != userLabels.end(); it++) {  
263                         m->mothurOut("Your file does not include the label " + *it); 
264                         if (processedLabels.count(lastLabel) != 1) {
265                                 m->mothurOut(". I will use " + lastLabel + "."); m->mothurOutEndLine();
266                                 needToRun = true;
267                         }else {
268                                 m->mothurOut(". Please refer to " + lastLabel + ".");  m->mothurOutEndLine();
269                         }
270                 }
271                 
272                 //run last label if you need to
273                 if (needToRun == true)  {
274                         if (list != NULL) {             delete list;    }
275                         list = input->getListVector(lastLabel);
276                                 
277                         error = process(list);  
278                         if (error == 1) { for (int i = 0; i < outputNames.size(); i++) {        m->mothurRemove(outputNames[i]);                } delete input;  delete fasta; if (groupfile != "") {  delete groupMap;   } return 0; }
279                         
280                         delete list;  
281                 }
282                 
283                 delete input;  
284                 delete fasta; 
285                 if (groupfile != "") {  delete groupMap;   } 
286                 
287                 if(m->control_pressed) { for (int i = 0; i < outputNames.size(); i++) { m->mothurRemove(outputNames[i]);                }  return 0; }  
288                 
289                 m->mothurOutEndLine();
290                 m->mothurOut("Output File Names: "); m->mothurOutEndLine();
291                 for (int i = 0; i < outputNames.size(); i++) {  m->mothurOut(outputNames[i]); m->mothurOutEndLine();    }
292                 m->mothurOutEndLine();
293
294                 
295                 return 0;
296         }
297         catch(exception& e) {
298                 m->errorOut(e, "BinSeqCommand", "execute");
299                 exit(1);
300         }
301 }
302
303 //**********************************************************************************************************************
304 void BinSeqCommand::readNamesFile() {
305         try {
306                 vector<string> dupNames;
307                 m->openInputFile(namesfile, inNames);
308                 
309                 string name, names, sequence;
310         
311                 while(inNames){
312                         inNames >> name;                        //read from first column  A
313                         inNames >> names;               //read from second column  A,B,C,D
314                         
315                         dupNames.clear();
316                         
317                         //parse names into vector
318                         m->splitAtComma(names, dupNames);
319                         
320                         //store names in fasta map
321                         sequence = fasta->getSequence(name);
322                         for (int i = 0; i < dupNames.size(); i++) {
323                                 fasta->push_back(dupNames[i], sequence);
324                         }
325                 
326                         m->gobble(inNames);
327                 }
328                 inNames.close();
329
330         }
331         catch(exception& e) {
332                 m->errorOut(e, "BinSeqCommand", "readNamesFile");
333                 exit(1);
334         }
335 }
336 //**********************************************************************************************************************
337 //return 1 if error, 0 otherwise
338 int BinSeqCommand::process(ListVector* list) {
339         try {
340                                 string binnames, name, sequence;
341                                 
342                                 string outputFileName = outputDir + m->getRootName(m->getSimpleName(listfile)) + list->getLabel() + ".fasta";
343                                 m->openOutputFile(outputFileName, out);
344                                 
345                                 //save to output list of output file names
346                                 outputNames.push_back(outputFileName);  outputTypes["fasta"].push_back(outputFileName);
347
348                                 m->mothurOut(list->getLabel()); m->mothurOutEndLine();
349                                 
350                                 //for each bin in the list vector
351                                 for (int i = 0; i < list->size(); i++) {
352                                         
353                                         if (m->control_pressed) {  return 1; }
354                                         
355                                         binnames = list->get(i);
356                                         while (binnames.find_first_of(',') != -1) { 
357                                                 name = binnames.substr(0,binnames.find_first_of(','));
358                                                 binnames = binnames.substr(binnames.find_first_of(',')+1, binnames.length());
359                                                 
360                                                 //do work for that name
361                                                 sequence = fasta->getSequence(name);
362                                                 if (sequence != "not found") {
363                                                         //if you don't have groups
364                                                         if (groupfile == "") {
365                                                                 name = name + "\t" + toString(i+1);
366                                                                 out << ">" << name << endl;
367                                                                 out << sequence << endl;
368                                                         }else {//if you do have groups
369                                                                 string group = groupMap->getGroup(name);
370                                                                 if (group == "not found") {  
371                                                                         m->mothurOut(name + " is missing from your group file. Please correct. ");  m->mothurOutEndLine();
372                                                                         return 1;
373                                                                 }else{
374                                                                         name = name + "\t" + group + "\t" + toString(i+1);
375                                                                         out << ">" << name << endl;
376                                                                         out << sequence << endl;
377                                                                 }
378                                                         }
379                                                 }else { 
380                                                         m->mothurOut(name + " is missing from your fasta or name file. Please correct. "); m->mothurOutEndLine();
381                                                         return 1;
382                                                 }
383                                                 
384                                         }
385                                         
386                                         //get last name
387                                         sequence = fasta->getSequence(binnames);
388                                         if (sequence != "not found") {
389                                                 //if you don't have groups
390                                                 if (groupfile == "") {
391                                                         binnames = binnames + "\t" + toString(i+1);
392                                                         out << ">" << binnames << endl;
393                                                         out << sequence << endl;
394                                                 }else {//if you do have groups
395                                                         string group = groupMap->getGroup(binnames);
396                                                         if (group == "not found") {  
397                                                                 m->mothurOut(binnames + " is missing from your group file. Please correct. "); m->mothurOutEndLine();
398                                                                 return 1;
399                                                         }else{
400                                                                 binnames = binnames + "\t" + group + "\t" + toString(i+1);
401                                                                 out << ">" << binnames << endl;
402                                                                 out << sequence << endl;
403                                                         }
404                                                 }
405                                         }else { 
406                                                 m->mothurOut(binnames + " is missing from your fasta or name file. Please correct. "); m->mothurOutEndLine();
407                                                 return 1;
408                                         }
409                                 }
410                                         
411                                 out.close();
412                                 return 0;
413
414         }
415         catch(exception& e) {
416                 m->errorOut(e, "BinSeqCommand", "process");
417                 exit(1);
418         }
419 }
420 //**********************************************************************************************************************
421
422