]> git.donarmstrong.com Git - mothur.git/blob - removeseqscommand.cpp
added taxonomy file to list of files list.seqs, get.seqs and remove.seqs can process
[mothur.git] / removeseqscommand.cpp
1 /*
2  *  removeseqscommand.cpp
3  *  Mothur
4  *
5  *  Created by Sarah Westcott on 7/8/09.
6  *  Copyright 2009 Schloss Lab UMASS Amherst. All rights reserved.
7  *
8  */
9
10 #include "removeseqscommand.h"
11 #include "sequence.hpp"
12 #include "listvector.hpp"
13
14 //**********************************************************************************************************************
15
16 RemoveSeqsCommand::RemoveSeqsCommand(string option)  {
17         try {
18                 abort = false;
19                 
20                 //allow user to run help
21                 if(option == "help") { help(); abort = true; }
22                 
23                 else {
24                         //valid paramters for this command
25                         string Array[] =  {"fasta","name", "group", "alignreport", "accnos", "list","taxonomy","outputdir","inputdir", "dups" };
26                         vector<string> myArray (Array, Array+(sizeof(Array)/sizeof(string)));
27                         
28                         OptionParser parser(option);
29                         map<string,string> parameters = parser.getParameters();
30                         
31                         ValidParameters validParameter;
32                         map<string,string>::iterator it;
33                         
34                         //check to make sure all parameters are valid for command
35                         for (it = parameters.begin(); it != parameters.end(); it++) { 
36                                 if (validParameter.isValidParameter(it->first, myArray, it->second) != true) {  abort = true;  }
37                         }
38                         
39                         //if the user changes the output directory command factory will send this info to us in the output parameter 
40                         outputDir = validParameter.validFile(parameters, "outputdir", false);           if (outputDir == "not found"){  outputDir = "";         }
41                         
42                         //if the user changes the input directory command factory will send this info to us in the output parameter 
43                         string inputDir = validParameter.validFile(parameters, "inputdir", false);              
44                         if (inputDir == "not found"){   inputDir = "";          }
45                         else {
46                                 string path;
47                                 it = parameters.find("alignreport");
48                                 //user has given a template file
49                                 if(it != parameters.end()){ 
50                                         path = hasPath(it->second);
51                                         //if the user has not given a path then, add inputdir. else leave path alone.
52                                         if (path == "") {       parameters["alignreport"] = inputDir + it->second;              }
53                                 }
54                                 
55                                 it = parameters.find("fasta");
56                                 //user has given a template file
57                                 if(it != parameters.end()){ 
58                                         path = hasPath(it->second);
59                                         //if the user has not given a path then, add inputdir. else leave path alone.
60                                         if (path == "") {       parameters["fasta"] = inputDir + it->second;            }
61                                 }
62                                 
63                                 it = parameters.find("accnos");
64                                 //user has given a template file
65                                 if(it != parameters.end()){ 
66                                         path = hasPath(it->second);
67                                         //if the user has not given a path then, add inputdir. else leave path alone.
68                                         if (path == "") {       parameters["accnos"] = inputDir + it->second;           }
69                                 }
70                                 
71                                 it = parameters.find("list");
72                                 //user has given a template file
73                                 if(it != parameters.end()){ 
74                                         path = hasPath(it->second);
75                                         //if the user has not given a path then, add inputdir. else leave path alone.
76                                         if (path == "") {       parameters["list"] = inputDir + it->second;             }
77                                 }
78                                 
79                                 it = parameters.find("name");
80                                 //user has given a template file
81                                 if(it != parameters.end()){ 
82                                         path = hasPath(it->second);
83                                         //if the user has not given a path then, add inputdir. else leave path alone.
84                                         if (path == "") {       parameters["name"] = inputDir + it->second;             }
85                                 }
86                                 
87                                 it = parameters.find("group");
88                                 //user has given a template file
89                                 if(it != parameters.end()){ 
90                                         path = hasPath(it->second);
91                                         //if the user has not given a path then, add inputdir. else leave path alone.
92                                         if (path == "") {       parameters["group"] = inputDir + it->second;            }
93                                 }
94                                 
95                                 it = parameters.find("taxonomy");
96                                 //user has given a template file
97                                 if(it != parameters.end()){ 
98                                         path = hasPath(it->second);
99                                         //if the user has not given a path then, add inputdir. else leave path alone.
100                                         if (path == "") {       parameters["taxonomy"] = inputDir + it->second;         }
101                                 }
102                         }
103
104                         
105                         //check for required parameters
106                         accnosfile = validParameter.validFile(parameters, "accnos", true);
107                         if (accnosfile == "not open") { abort = true; }
108                         else if (accnosfile == "not found") {  accnosfile = "";  m->mothurOut("You must provide an accnos file."); m->mothurOutEndLine(); abort = true; }       
109                         
110                         fastafile = validParameter.validFile(parameters, "fasta", true);
111                         if (fastafile == "not open") { abort = true; }
112                         else if (fastafile == "not found") {  fastafile = "";  }        
113                         
114                         namefile = validParameter.validFile(parameters, "name", true);
115                         if (namefile == "not open") { abort = true; }
116                         else if (namefile == "not found") {  namefile = "";  }  
117                         
118                         groupfile = validParameter.validFile(parameters, "group", true);
119                         if (groupfile == "not open") { abort = true; }
120                         else if (groupfile == "not found") {  groupfile = "";  }        
121                         
122                         alignfile = validParameter.validFile(parameters, "alignreport", true);
123                         if (alignfile == "not open") { abort = true; }
124                         else if (alignfile == "not found") {  alignfile = "";  }
125                         
126                         listfile = validParameter.validFile(parameters, "list", true);
127                         if (listfile == "not open") { abort = true; }
128                         else if (listfile == "not found") {  listfile = "";  }
129                         
130                         taxfile = validParameter.validFile(parameters, "taxonomy", true);
131                         if (taxfile == "not open") { abort = true; }
132                         else if (taxfile == "not found") {  taxfile = "";  }
133
134                         
135                         string usedDups = "true";
136                         string temp = validParameter.validFile(parameters, "dups", false);      if (temp == "not found") { temp = "false"; usedDups = ""; }
137                         dups = isTrue(temp);
138                         
139                         if ((fastafile == "") && (namefile == "") && (groupfile == "") && (alignfile == "") && (listfile == "") && (taxfile == ""))  { m->mothurOut("You must provide at least one of the following: fasta, name, group, taxonomy, alignreport or list."); m->mothurOutEndLine(); abort = true; }
140                         
141                         if ((usedDups != "") && (namefile == "")) {  m->mothurOut("You may only use dups with the name option."); m->mothurOutEndLine();  abort = true; }                       
142                 }
143
144         }
145         catch(exception& e) {
146                 m->errorOut(e, "RemoveSeqsCommand", "RemoveSeqsCommand");
147                 exit(1);
148         }
149 }
150 //**********************************************************************************************************************
151
152 void RemoveSeqsCommand::help(){
153         try {
154                 m->mothurOut("The remove.seqs command reads an .accnos file and at least one of the following file types: fasta, name, group, list, taxonomy or alignreport file.\n");
155                 m->mothurOut("It outputs a file containing the sequences NOT in the .accnos file.\n");
156                 m->mothurOut("The remove.seqs command parameters are accnos, fasta, name, group, list, taxonomy, alignreport and dups.  You must provide accnos and at least one of the file parameters.\n");
157                 m->mothurOut("The dups parameter allows you to remove the entire line from a name file if you remove any name from the line. default=false. If dups=true, then remove.seqs outputs a new .accnos file containing all the sequences removed. \n");
158                 m->mothurOut("The remove.seqs command should be in the following format: remove.seqs(accnos=yourAccnos, fasta=yourFasta).\n");
159                 m->mothurOut("Example remove.seqs(accnos=amazon.accnos, fasta=amazon.fasta).\n");
160                 m->mothurOut("Note: No spaces between parameter labels (i.e. fasta), '=' and parameters (i.e.yourFasta).\n\n");
161         }
162         catch(exception& e) {
163                 m->errorOut(e, "RemoveSeqsCommand", "help");
164                 exit(1);
165         }
166 }
167
168 //**********************************************************************************************************************
169
170 int RemoveSeqsCommand::execute(){
171         try {
172                 
173                 if (abort == true) { return 0; }
174                 
175                 //get names you want to keep
176                 readAccnos();
177                 
178                 if (m->control_pressed) { return 0; }
179                 
180                 //read through the correct file and output lines you want to keep
181                 if (fastafile != "")            {               readFasta();    }
182                 if (namefile != "")                     {               readName();             }
183                 if (groupfile != "")            {               readGroup();    }
184                 if (alignfile != "")            {               readAlign();    }
185                 if (listfile != "")                     {               readList();             }
186                 if (taxfile != "")                      {               readTax();              }
187                 
188                 if (m->control_pressed) { for (int i = 0; i < outputNames.size(); i++) {        remove(outputNames[i].c_str()); } return 0; }
189                 
190                 if (outputNames.size() != 0) {
191                         m->mothurOutEndLine();
192                         m->mothurOut("Output File Names: "); m->mothurOutEndLine();
193                         for (int i = 0; i < outputNames.size(); i++) {  m->mothurOut(outputNames[i]); m->mothurOutEndLine();    }
194                         m->mothurOutEndLine();
195                 }
196                 
197                 return 0;               
198         }
199
200         catch(exception& e) {
201                 m->errorOut(e, "RemoveSeqsCommand", "execute");
202                 exit(1);
203         }
204 }
205
206 //**********************************************************************************************************************
207 int RemoveSeqsCommand::readFasta(){
208         try {
209                 if (outputDir == "") {  outputDir += hasPath(fastafile);  }
210                 string outputFileName = outputDir + getRootName(getSimpleName(fastafile)) + "pick" + getExtension(fastafile);
211                 ofstream out;
212                 openOutputFile(outputFileName, out);
213                 
214                 ifstream in;
215                 openInputFile(fastafile, in);
216                 string name;
217                 
218                 bool wroteSomething = false;
219                 
220                 while(!in.eof()){
221                         if (m->control_pressed) { in.close();  out.close();  remove(outputFileName.c_str());  return 0; }
222                         
223                         Sequence currSeq(in);
224                         name = currSeq.getName();
225                         
226                         if (name != "") {
227                                 //if this name is in the accnos file
228                                 if (names.count(name) == 0) {
229                                         wroteSomething = true;
230                                         
231                                         currSeq.printSequence(out);
232                                 }
233                         }
234                         gobble(in);
235                 }
236                 in.close();     
237                 out.close();
238                 
239                 if (wroteSomething == false) {
240                         m->mothurOut("Your file contains only sequences from the .accnos file."); m->mothurOutEndLine();
241                         remove(outputFileName.c_str()); 
242                 }else { outputNames.push_back(outputFileName); }
243                 
244                 return 0;
245                 
246         }
247         catch(exception& e) {
248                 m->errorOut(e, "RemoveSeqsCommand", "readFasta");
249                 exit(1);
250         }
251 }
252 //**********************************************************************************************************************
253 int RemoveSeqsCommand::readList(){
254         try {
255                 if (outputDir == "") {  outputDir += hasPath(listfile);  }
256                 string outputFileName = outputDir + getRootName(getSimpleName(listfile)) + "pick" +  getExtension(listfile);
257                 ofstream out;
258                 openOutputFile(outputFileName, out);
259                 
260                 ifstream in;
261                 openInputFile(listfile, in);
262                 
263                 bool wroteSomething = false;
264                 
265                 while(!in.eof()){
266                         //read in list vector
267                         ListVector list(in);
268                         
269                         //make a new list vector
270                         ListVector newList;
271                         newList.setLabel(list.getLabel());
272                         
273                         //for each bin
274                         for (int i = 0; i < list.getNumBins(); i++) {
275                                 if (m->control_pressed) { in.close();  out.close();  remove(outputFileName.c_str());  return 0; }
276                         
277                                 //parse out names that are in accnos file
278                                 string binnames = list.get(i);
279                                 
280                                 string newNames = "";
281                                 while (binnames.find_first_of(',') != -1) { 
282                                         string name = binnames.substr(0,binnames.find_first_of(','));
283                                         binnames = binnames.substr(binnames.find_first_of(',')+1, binnames.length());
284                                         
285                                         //if that name is in the .accnos file, add it
286                                         if (names.count(name) == 0) {  newNames += name + ",";  }
287                                 }
288                         
289                                 //get last name
290                                 if (names.count(binnames) == 0) {  newNames += binnames + ",";  }
291
292                                 //if there are names in this bin add to new list
293                                 if (newNames != "") {  
294                                         newNames = newNames.substr(0, newNames.length()-1); //rip off extra comma
295                                         newList.push_back(newNames);    
296                                 }
297                         }
298                                 
299                         //print new listvector
300                         if (newList.getNumBins() != 0) {
301                                 wroteSomething = true;
302                                 newList.print(out);
303                         }
304                         
305                         gobble(in);
306                 }
307                 in.close();     
308                 out.close();
309                 
310                 if (wroteSomething == false) {
311                         m->mothurOut("Your file contains only sequences from the .accnos file."); m->mothurOutEndLine();
312                         remove(outputFileName.c_str()); 
313                 }else { outputNames.push_back(outputFileName); }
314                 
315                 return 0;
316
317         }
318         catch(exception& e) {
319                 m->errorOut(e, "RemoveSeqsCommand", "readList");
320                 exit(1);
321         }
322 }
323 //**********************************************************************************************************************
324 int RemoveSeqsCommand::readName(){
325         try {
326                 if (outputDir == "") {  outputDir += hasPath(namefile);  }
327                 string outputFileName = outputDir + getRootName(getSimpleName(namefile)) + "pick" + getExtension(namefile);
328                 string outputFileName2 = outputDir + getRootName(getSimpleName(namefile)) + "dups.accnos";
329
330                 ofstream out2;
331                 if (dups) {      openOutputFile(outputFileName2, out2); }
332                 bool wroteDups = false;
333                 
334                 ofstream out;
335                 openOutputFile(outputFileName, out);
336
337                 ifstream in;
338                 openInputFile(namefile, in);
339                 string name, firstCol, secondCol;
340                 
341                 bool wroteSomething = false;
342                 
343                 while(!in.eof()){
344                         if (m->control_pressed) { in.close();  out.close();  remove(outputFileName.c_str()); if (dups) { out2.close(); remove(outputFileName2.c_str()); } return 0; }
345
346                         in >> firstCol;                         
347                         in >> secondCol;                        
348
349                         vector<string> parsedNames;
350                         //parse second column saving each name
351                         while (secondCol.find_first_of(',') != -1) { 
352                                 name = secondCol.substr(0,secondCol.find_first_of(','));
353                                 secondCol = secondCol.substr(secondCol.find_first_of(',')+1, secondCol.length());
354                                 parsedNames.push_back(name);
355
356                         }
357                         
358                         //get name after last ,
359                         parsedNames.push_back(secondCol);
360
361                         vector<string> validSecond;  validSecond.clear();
362                         for (int i = 0; i < parsedNames.size(); i++) {
363                                 if (names.count(parsedNames[i]) == 0) {
364                                         validSecond.push_back(parsedNames[i]);
365                                 }
366                         }
367                         
368                         if ((dups) && (validSecond.size() != parsedNames.size())) { 
369                                 wroteDups = true;
370                                 for (int i = 0; i < parsedNames.size(); i++) {  out2 << parsedNames[i] << endl;  }
371                         }else {
372                                         //if the name in the first column is in the set then print it and any other names in second column also in set
373                                 if (names.count(firstCol) == 0) {
374                                         
375                                         wroteSomething = true;
376                                         
377                                         out << firstCol << '\t';
378                                         
379                                         //you know you have at least one valid second since first column is valid
380                                         for (int i = 0; i < validSecond.size()-1; i++) {  out << validSecond[i] << ',';  }
381                                         out << validSecond[validSecond.size()-1] << endl;
382                                         
383                                         //make first name in set you come to first column and then add the remaining names to second column
384                                 }else {
385                                         
386                                         //you want part of this row
387                                         if (validSecond.size() != 0) {
388                                                 
389                                                 wroteSomething = true;
390                                                 
391                                                 out << validSecond[0] << '\t';
392                                                 
393                                                 //you know you have at least one valid second since first column is valid
394                                                 for (int i = 0; i < validSecond.size()-1; i++) {  out << validSecond[i] << ',';  }
395                                                 out << validSecond[validSecond.size()-1] << endl;
396                                         }
397                                 }
398                         }
399                         gobble(in);
400                 }
401                 in.close();
402                 out.close();
403                 
404                 if (dups) { out2.close();  }
405                 if (wroteDups == false) {
406                         remove(outputFileName2.c_str()); 
407                 }else { outputNames.push_back(outputFileName2); }
408                 
409                 if (wroteSomething == false) {
410                         m->mothurOut("Your file contains only sequences from the .accnos file."); m->mothurOutEndLine();
411                         remove(outputFileName.c_str()); 
412                 }else { outputNames.push_back(outputFileName); }
413                 
414                 return 0;
415         }
416         catch(exception& e) {
417                 m->errorOut(e, "RemoveSeqsCommand", "readName");
418                 exit(1);
419         }
420 }
421
422 //**********************************************************************************************************************
423 int RemoveSeqsCommand::readGroup(){
424         try {
425                 if (outputDir == "") {  outputDir += hasPath(groupfile);  }
426                 string outputFileName = outputDir + getRootName(getSimpleName(groupfile)) + "pick" + getExtension(groupfile);
427                 ofstream out;
428                 openOutputFile(outputFileName, out);
429
430                 ifstream in;
431                 openInputFile(groupfile, in);
432                 string name, group;
433                 
434                 bool wroteSomething = false;
435                 
436                 while(!in.eof()){
437                         if (m->control_pressed) { in.close();  out.close();  remove(outputFileName.c_str());  return 0; }
438                         
439                         in >> name;                             //read from first column
440                         in >> group;                    //read from second column
441                         
442                         //if this name is in the accnos file
443                         if (names.count(name) == 0) {
444                                 wroteSomething = true;
445                                 out << name << '\t' << group << endl;
446                         }
447                                         
448                         gobble(in);
449                 }
450                 in.close();
451                 out.close();
452                 
453                 if (wroteSomething == false) {
454                         m->mothurOut("Your file contains only sequences from the .accnos file."); m->mothurOutEndLine();
455                         remove(outputFileName.c_str()); 
456                 }else { outputNames.push_back(outputFileName); }
457                 
458                 return 0;
459         }
460         catch(exception& e) {
461                 m->errorOut(e, "RemoveSeqsCommand", "readGroup");
462                 exit(1);
463         }
464 }
465 //**********************************************************************************************************************
466 int RemoveSeqsCommand::readTax(){
467         try {
468                 if (outputDir == "") {  outputDir += hasPath(taxfile);  }
469                 string outputFileName = outputDir + getRootName(getSimpleName(taxfile)) + "pick" + getExtension(taxfile);
470                 ofstream out;
471                 openOutputFile(outputFileName, out);
472
473                 ifstream in;
474                 openInputFile(taxfile, in);
475                 string name, tax;
476                 
477                 bool wroteSomething = false;
478                 
479                 while(!in.eof()){
480                         if (m->control_pressed) { in.close();  out.close();  remove(outputFileName.c_str());  return 0; }
481                         
482                         in >> name;                             //read from first column
483                         in >> tax;                      //read from second column
484                         
485                         //if this name is in the accnos file
486                         if (names.count(name) == 0) {
487                                 wroteSomething = true;
488                                 out << name << '\t' << tax << endl;
489                         }
490                                         
491                         gobble(in);
492                 }
493                 in.close();
494                 out.close();
495                 
496                 if (wroteSomething == false) {
497                         m->mothurOut("Your file contains only sequences from the .accnos file."); m->mothurOutEndLine();
498                         remove(outputFileName.c_str()); 
499                 }else { outputNames.push_back(outputFileName); }
500                 
501                 return 0;
502         }
503         catch(exception& e) {
504                 m->errorOut(e, "RemoveSeqsCommand", "readTax");
505                 exit(1);
506         }
507 }
508 //**********************************************************************************************************************
509 //alignreport file has a column header line then all other lines contain 16 columns.  we just want the first column since that contains the name
510 int RemoveSeqsCommand::readAlign(){
511         try {
512                 if (outputDir == "") {  outputDir += hasPath(alignfile);  }
513                 string outputFileName = outputDir + getRootName(getSimpleName(alignfile)) + "pick.align.report";
514                 ofstream out;
515                 openOutputFile(outputFileName, out);
516
517                 ifstream in;
518                 openInputFile(alignfile, in);
519                 string name, junk;
520                 
521                 bool wroteSomething = false;
522                 
523                 //read column headers
524                 for (int i = 0; i < 16; i++) {  
525                         if (!in.eof())  {       in >> junk;      out << junk << '\t';   }
526                         else                    {       break;                  }
527                 }
528                 out << endl;
529                 
530                 while(!in.eof()){
531                         if (m->control_pressed) { in.close();  out.close();  remove(outputFileName.c_str());  return 0; }
532                         
533                         in >> name;                             //read from first column
534                         
535                         //if this name is in the accnos file
536                         if (names.count(name) == 0) {
537                                 wroteSomething = true;
538                                 
539                                 out << name << '\t';
540                                 
541                                 //read rest
542                                 for (int i = 0; i < 15; i++) {  
543                                         if (!in.eof())  {       in >> junk;      out << junk << '\t';   }
544                                         else                    {       break;                  }
545                                 }
546                                 out << endl;
547                                 
548                         }else {//still read just don't do anything with it
549                                 
550                                 //read rest
551                                 for (int i = 0; i < 15; i++) {  
552                                         if (!in.eof())  {       in >> junk;             }
553                                         else                    {       break;                  }
554                                 }
555                         }
556                         
557                         gobble(in);
558                 }
559                 in.close();
560                 out.close();
561                 
562                 if (wroteSomething == false) {
563                         m->mothurOut("Your file contains only sequences from the .accnos file."); m->mothurOutEndLine();
564                         remove(outputFileName.c_str()); 
565                 }else { outputNames.push_back(outputFileName); }
566                 
567                 return 0;
568                 
569         }
570         catch(exception& e) {
571                 m->errorOut(e, "RemoveSeqsCommand", "readAlign");
572                 exit(1);
573         }
574 }
575 //**********************************************************************************************************************
576 void RemoveSeqsCommand::readAccnos(){
577         try {
578                 
579                 ifstream in;
580                 openInputFile(accnosfile, in);
581                 string name;
582                 
583                 while(!in.eof()){
584                         in >> name;
585                                                 
586                         names.insert(name);
587                         
588                         gobble(in);
589                 }
590                 in.close();             
591
592         }
593         catch(exception& e) {
594                 m->errorOut(e, "RemoveSeqsCommand", "readAccnos");
595                 exit(1);
596         }
597 }
598
599 //**********************************************************************************************************************
600
601