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