]> git.donarmstrong.com Git - mothur.git/blob - removegroupscommand.cpp
fixed minor issue with sub.sample command.
[mothur.git] / removegroupscommand.cpp
1 /*
2  *  removegroupscommand.cpp
3  *  Mothur
4  *
5  *  Created by westcott on 11/10/10.
6  *  Copyright 2010 Schloss Lab. All rights reserved.
7  *
8  */
9
10 #include "removegroupscommand.h"
11 #include "sequence.hpp"
12 #include "listvector.hpp"
13 #include "sharedutilities.h"
14 #include "inputdata.h"
15
16 //**********************************************************************************************************************
17 vector<string> RemoveGroupsCommand::setParameters(){    
18         try {
19                 CommandParameter pfasta("fasta", "InputTypes", "", "", "none", "FNGLT", "none",false,false); parameters.push_back(pfasta);
20                 CommandParameter pshared("shared", "InputTypes", "", "", "none", "FNGLT-sharedGroup", "none",false,false); parameters.push_back(pshared);
21                 CommandParameter pname("name", "InputTypes", "", "", "none", "FNGLT", "none",false,false); parameters.push_back(pname);
22                 CommandParameter pgroup("group", "InputTypes", "", "", "none", "FNGLT-sharedGroup", "none",false,false); parameters.push_back(pgroup);
23                 CommandParameter plist("list", "InputTypes", "", "", "none", "FNGLT", "none",false,false); parameters.push_back(plist);
24                 CommandParameter ptaxonomy("taxonomy", "InputTypes", "", "", "none", "FNGLT", "none",false,false); parameters.push_back(ptaxonomy);
25                 CommandParameter paccnos("accnos", "InputTypes", "", "", "none", "none", "none",false,false); parameters.push_back(paccnos);
26                 CommandParameter pgroups("groups", "String", "", "", "", "", "",false,false); parameters.push_back(pgroups);
27                 CommandParameter pinputdir("inputdir", "String", "", "", "", "", "",false,false); parameters.push_back(pinputdir);
28                 CommandParameter poutputdir("outputdir", "String", "", "", "", "", "",false,false); parameters.push_back(poutputdir);
29                 
30                 vector<string> myArray;
31                 for (int i = 0; i < parameters.size(); i++) {   myArray.push_back(parameters[i].name);          }
32                 return myArray;
33         }
34         catch(exception& e) {
35                 m->errorOut(e, "RemoveGroupsCommand", "setParameters");
36                 exit(1);
37         }
38 }
39 //**********************************************************************************************************************
40 string RemoveGroupsCommand::getHelpString(){    
41         try {
42                 string helpString = "";
43                 helpString += "The remove.groups command removes sequences from a specfic group or set of groups from the following file types: fasta, name, group, list, taxonomy or sharedfile.\n";
44                 helpString += "It outputs a file containing the sequences NOT in the those specified groups, or with a sharedfile eliminates the groups you selected.\n";
45                 helpString += "The remove.groups command parameters are accnos, fasta, name, group, list, taxonomy, shared and groups. The group parameter is required, unless you have a current group file or are using a sharedfile.\n";
46                 helpString += "You must also provide an accnos containing the list of groups to remove or set the groups parameter to the groups you wish to remove.\n";
47                 helpString += "The groups parameter allows you to specify which of the groups in your groupfile you would like removed.  You can separate group names with dashes.\n";
48                 helpString += "The remove.groups command should be in the following format: remove.groups(accnos=yourAccnos, fasta=yourFasta, group=yourGroupFile).\n";
49                 helpString += "Example remove.groups(accnos=amazon.accnos, fasta=amazon.fasta, group=amazon.groups).\n";
50                 helpString += "or remove.groups(groups=pasture, fasta=amazon.fasta, amazon.groups).\n";
51                 helpString += "Note: No spaces between parameter labels (i.e. fasta), '=' and parameters (i.e.yourFasta).\n";
52                 return helpString;
53         }
54         catch(exception& e) {
55                 m->errorOut(e, "RemoveGroupsCommand", "getHelpString");
56                 exit(1);
57         }
58 }
59
60 //**********************************************************************************************************************
61 RemoveGroupsCommand::RemoveGroupsCommand(){     
62         try {
63                 abort = true; calledHelp = true; 
64                 setParameters();
65                 vector<string> tempOutNames;
66                 outputTypes["fasta"] = tempOutNames;
67                 outputTypes["taxonomy"] = tempOutNames;
68                 outputTypes["name"] = tempOutNames;
69                 outputTypes["group"] = tempOutNames;
70                 outputTypes["list"] = tempOutNames;
71                 outputTypes["shared"] = tempOutNames;
72         }
73         catch(exception& e) {
74                 m->errorOut(e, "RemoveGroupsCommand", "RemoveGroupsCommand");
75                 exit(1);
76         }
77 }
78 //**********************************************************************************************************************
79 RemoveGroupsCommand::RemoveGroupsCommand(string option)  {
80         try {
81                 abort = false; calledHelp = false;   
82                 
83                 //allow user to run help
84                 if(option == "help") { help(); abort = true; calledHelp = true; }
85                 else if(option == "citation") { citation(); abort = true; calledHelp = true;}
86                 
87                 else {
88                         vector<string> myArray = setParameters();
89                         
90                         OptionParser parser(option);
91                         map<string,string> parameters = parser.getParameters();
92                         
93                         ValidParameters validParameter;
94                         map<string,string>::iterator it;
95                         
96                         //check to make sure all parameters are valid for command
97                         for (it = parameters.begin(); it != parameters.end(); it++) { 
98                                 if (validParameter.isValidParameter(it->first, myArray, it->second) != true) {  abort = true;  }
99                         }
100                         
101                         //initialize outputTypes
102                         vector<string> tempOutNames;
103                         outputTypes["fasta"] = tempOutNames;
104                         outputTypes["taxonomy"] = tempOutNames;
105                         outputTypes["name"] = tempOutNames;
106                         outputTypes["group"] = tempOutNames;
107                         outputTypes["list"] = tempOutNames;
108                         outputTypes["shared"] = tempOutNames;
109                         
110                         
111                         //if the user changes the output directory command factory will send this info to us in the output parameter 
112                         outputDir = validParameter.validFile(parameters, "outputdir", false);           if (outputDir == "not found"){  outputDir = "";         }
113                         
114                         //if the user changes the input directory command factory will send this info to us in the output parameter 
115                         string inputDir = validParameter.validFile(parameters, "inputdir", false);              
116                         if (inputDir == "not found"){   inputDir = "";          }
117                         else {
118                                 string path;
119                                 it = parameters.find("fasta");
120                                 //user has given a template file
121                                 if(it != parameters.end()){ 
122                                         path = m->hasPath(it->second);
123                                         //if the user has not given a path then, add inputdir. else leave path alone.
124                                         if (path == "") {       parameters["fasta"] = inputDir + it->second;            }
125                                 }
126                                 
127                                 it = parameters.find("accnos");
128                                 //user has given a template file
129                                 if(it != parameters.end()){ 
130                                         path = m->hasPath(it->second);
131                                         //if the user has not given a path then, add inputdir. else leave path alone.
132                                         if (path == "") {       parameters["accnos"] = inputDir + it->second;           }
133                                 }
134                                 
135                                 it = parameters.find("list");
136                                 //user has given a template file
137                                 if(it != parameters.end()){ 
138                                         path = m->hasPath(it->second);
139                                         //if the user has not given a path then, add inputdir. else leave path alone.
140                                         if (path == "") {       parameters["list"] = inputDir + it->second;             }
141                                 }
142                                 
143                                 it = parameters.find("name");
144                                 //user has given a template file
145                                 if(it != parameters.end()){ 
146                                         path = m->hasPath(it->second);
147                                         //if the user has not given a path then, add inputdir. else leave path alone.
148                                         if (path == "") {       parameters["name"] = inputDir + it->second;             }
149                                 }
150                                 
151                                 it = parameters.find("group");
152                                 //user has given a template file
153                                 if(it != parameters.end()){ 
154                                         path = m->hasPath(it->second);
155                                         //if the user has not given a path then, add inputdir. else leave path alone.
156                                         if (path == "") {       parameters["group"] = inputDir + it->second;            }
157                                 }
158                                 
159                                 it = parameters.find("taxonomy");
160                                 //user has given a template file
161                                 if(it != parameters.end()){ 
162                                         path = m->hasPath(it->second);
163                                         //if the user has not given a path then, add inputdir. else leave path alone.
164                                         if (path == "") {       parameters["taxonomy"] = inputDir + it->second;         }
165                                 }
166                                 
167                                 it = parameters.find("shared");
168                                 //user has given a template file
169                                 if(it != parameters.end()){ 
170                                         path = m->hasPath(it->second);
171                                         //if the user has not given a path then, add inputdir. else leave path alone.
172                                         if (path == "") {       parameters["shared"] = inputDir + it->second;           }
173                                 }
174                         }
175                         
176                         
177                         //check for required parameters
178                         accnosfile = validParameter.validFile(parameters, "accnos", true);
179                         if (accnosfile == "not open") { accnosfile = ""; abort = true; }
180                         else if (accnosfile == "not found") {  accnosfile = ""; }       
181                         else { m->setAccnosFile(accnosfile); }
182                         
183                         fastafile = validParameter.validFile(parameters, "fasta", true);
184                         if (fastafile == "not open") { fastafile = ""; abort = true; }
185                         else if (fastafile == "not found") {  fastafile = "";  }        
186                         else { m->setFastaFile(fastafile); }
187                         
188                         namefile = validParameter.validFile(parameters, "name", true);
189                         if (namefile == "not open") { namefile = ""; abort = true; }
190                         else if (namefile == "not found") {  namefile = "";  }  
191                         else { m->setNameFile(namefile); }
192                         
193                         groupfile = validParameter.validFile(parameters, "group", true);
194                         if (groupfile == "not open") { abort = true; }
195                         else if (groupfile == "not found") {            
196                                 //if there is a current group file, use it
197                                 groupfile = m->getGroupFile(); 
198                                 if (groupfile != "") { m->mothurOut("Using " + groupfile + " as input file for the group parameter."); m->mothurOutEndLine(); }
199                                 else {  m->mothurOut("You have no current groupfile and the group parameter is required."); m->mothurOutEndLine(); abort = true; }
200                         }else { m->setGroupFile(groupfile); }   
201                         
202                         listfile = validParameter.validFile(parameters, "list", true);
203                         if (listfile == "not open") { listfile = ""; abort = true; }
204                         else if (listfile == "not found") {  listfile = "";  }
205                         else { m->setListFile(listfile); }
206                         
207                         taxfile = validParameter.validFile(parameters, "taxonomy", true);
208                         if (taxfile == "not open") { taxfile = ""; abort = true; }
209                         else if (taxfile == "not found") {  taxfile = "";  }
210                         else { m->setTaxonomyFile(taxfile); }
211                         
212                         groups = validParameter.validFile(parameters, "groups", false);                 
213                         if (groups == "not found") { groups = ""; }
214                         else { 
215                                 m->splitAtDash(groups, Groups);
216                                 m->setGroups(Groups);
217                         }
218                         
219                         sharedfile = validParameter.validFile(parameters, "shared", true);
220                         if (sharedfile == "not open") { sharedfile = ""; abort = true; }
221                         else if (sharedfile == "not found") {  sharedfile = "";  }
222                         else { m->setSharedFile(sharedfile); }
223                         
224                         groupfile = validParameter.validFile(parameters, "group", true);
225                         if (groupfile == "not open") { groupfile = ""; abort = true; }
226                         else if (groupfile == "not found") {    groupfile = ""; }
227                         else { m->setGroupFile(groupfile); }    
228                         
229                         if ((sharedfile == "") && (groupfile == "")) { 
230                                 //is there are current file available for any of these?
231                                 if ((namefile != "") || (fastafile != "") || (listfile != "") || (taxfile != "")) {
232                                         //give priority to group, then shared
233                                         groupfile = m->getGroupFile(); 
234                                         if (groupfile != "") {  m->mothurOut("Using " + groupfile + " as input file for the group parameter."); m->mothurOutEndLine(); }
235                                         else { 
236                                                 sharedfile = m->getSharedFile(); 
237                                                 if (sharedfile != "") { m->mothurOut("Using " + sharedfile + " as input file for the shared parameter."); m->mothurOutEndLine(); }
238                                                 else { 
239                                                         m->mothurOut("You have no current groupfile or sharedfile and one is required."); m->mothurOutEndLine(); abort = true;
240                                                 }
241                                         }
242                                 }else {
243                                         //give priority to shared, then group
244                                         sharedfile = m->getSharedFile(); 
245                                         if (sharedfile != "") {  m->mothurOut("Using " + sharedfile + " as input file for the shared parameter."); m->mothurOutEndLine(); }
246                                         else { 
247                                                 groupfile = m->getGroupFile(); 
248                                                 if (groupfile != "") { m->mothurOut("Using " + groupfile + " as input file for the group parameter."); m->mothurOutEndLine(); }
249                                                 else { 
250                                                         m->mothurOut("You have no current groupfile or sharedfile and one is required."); m->mothurOutEndLine(); abort = true;
251                                                 }
252                                         }
253                                 }
254                         }
255                         
256                         if ((accnosfile == "") && (Groups.size() == 0)) { m->mothurOut("You must provide an accnos file containing group names or specify groups using the groups parameter."); m->mothurOutEndLine(); abort = true; }
257                         
258                         if ((fastafile == "") && (namefile == "") && (groupfile == "")  && (sharedfile == "") && (listfile == "") && (taxfile == ""))  { m->mothurOut("You must provide at least one of the following: fasta, name, taxonomy, group, shared or list."); m->mothurOutEndLine(); abort = true; }
259                         if ((groupfile == "") && ((namefile != "") || (fastafile != "") || (listfile != "") || (taxfile != "")))  { m->mothurOut("If using a fasta, name, taxonomy, group or list, then you must provide a group file."); m->mothurOutEndLine(); abort = true; }
260                 }
261                 
262         }
263         catch(exception& e) {
264                 m->errorOut(e, "RemoveGroupsCommand", "RemoveGroupsCommand");
265                 exit(1);
266         }
267 }
268 //**********************************************************************************************************************
269
270 int RemoveGroupsCommand::execute(){
271         try {
272                 
273                 if (abort == true) { if (calledHelp) { return 0; }  return 2;   }
274                 
275                 //get groups you want to remove
276                 if (accnosfile != "") { readAccnos(); }
277                 
278                 if (groupfile != "") {
279                         groupMap = new GroupMap(groupfile);
280                         groupMap->readMap();
281                         
282                         //make sure groups are valid
283                         //takes care of user setting groupNames that are invalid or setting groups=all
284                         SharedUtil* util = new SharedUtil();
285                         vector<string> namesGroups = groupMap->getNamesOfGroups();
286                         util->setGroups(Groups, namesGroups);
287                         delete util;
288                         
289                         //fill names with names of sequences that are from the groups we want to remove 
290                         fillNames();
291                         
292                         delete groupMap;
293                 }
294                                 
295                 if (m->control_pressed) { return 0; }
296                 
297                 //read through the correct file and output lines you want to keep
298                 if (namefile != "")                     {               readName();             }
299                 if (fastafile != "")            {               readFasta();    }
300                 if (groupfile != "")            {               readGroup();    }
301                 if (listfile != "")                     {               readList();             }
302                 if (taxfile != "")                      {               readTax();              }
303                 if (sharedfile != "")           {               readShared();   }
304                 
305                 if (m->control_pressed) { for (int i = 0; i < outputNames.size(); i++) {        m->mothurRemove(outputNames[i]); } return 0; }
306                                 
307                 if (outputNames.size() != 0) {
308                         m->mothurOutEndLine();
309                         m->mothurOut("Output File names: "); m->mothurOutEndLine();
310                         for (int i = 0; i < outputNames.size(); i++) {  m->mothurOut(outputNames[i]); m->mothurOutEndLine();    }
311                         m->mothurOutEndLine();
312                         
313                         //set fasta file as new current fastafile
314                         string current = "";
315                         itTypes = outputTypes.find("fasta");
316                         if (itTypes != outputTypes.end()) {
317                                 if ((itTypes->second).size() != 0) { current = (itTypes->second)[0]; m->setFastaFile(current); }
318                         }
319                         
320                         itTypes = outputTypes.find("name");
321                         if (itTypes != outputTypes.end()) {
322                                 if ((itTypes->second).size() != 0) { current = (itTypes->second)[0]; m->setNameFile(current); }
323                         }
324                         
325                         itTypes = outputTypes.find("group");
326                         if (itTypes != outputTypes.end()) {
327                                 if ((itTypes->second).size() != 0) { current = (itTypes->second)[0]; m->setGroupFile(current); }
328                         }
329                         
330                         itTypes = outputTypes.find("list");
331                         if (itTypes != outputTypes.end()) {
332                                 if ((itTypes->second).size() != 0) { current = (itTypes->second)[0]; m->setListFile(current); }
333                         }
334                         
335                         itTypes = outputTypes.find("taxonomy");
336                         if (itTypes != outputTypes.end()) {
337                                 if ((itTypes->second).size() != 0) { current = (itTypes->second)[0]; m->setTaxonomyFile(current); }
338                         }
339                         
340                         itTypes = outputTypes.find("shared");
341                         if (itTypes != outputTypes.end()) {
342                                 if ((itTypes->second).size() != 0) { current = (itTypes->second)[0]; m->setSharedFile(current); }
343                         }
344                 }
345                 
346                 return 0;               
347         }
348         
349         catch(exception& e) {
350                 m->errorOut(e, "RemoveGroupsCommand", "execute");
351                 exit(1);
352         }
353 }
354
355 //**********************************************************************************************************************
356 int RemoveGroupsCommand::readFasta(){
357         try {
358                 string thisOutputDir = outputDir;
359                 if (outputDir == "") {  thisOutputDir += m->hasPath(fastafile);  }
360                 string outputFileName = thisOutputDir + m->getRootName(m->getSimpleName(fastafile)) + "pick" + m->getExtension(fastafile);
361                 
362                 ofstream out;
363                 m->openOutputFile(outputFileName, out);
364                 
365                 ifstream in;
366                 m->openInputFile(fastafile, in);
367                 string name;
368                 
369                 bool wroteSomething = false;
370                 int removedCount = 0;
371                 
372                 while(!in.eof()){
373                         if (m->control_pressed) { in.close();  out.close();  m->mothurRemove(outputFileName);  return 0; }
374                         
375                         Sequence currSeq(in);
376                         name = currSeq.getName();
377                         
378                         if (name != "") {
379                                 //if this name is in the accnos file
380                                 if (names.count(name) == 0) {
381                                         wroteSomething = true;
382                                         
383                                         currSeq.printSequence(out);
384                                 }else { removedCount++; }
385                         }
386                         m->gobble(in);
387                 }
388                 in.close();     
389                 out.close();
390                 
391                 if (wroteSomething == false) {  m->mothurOut("Your file contains only sequences from the groups you wish to remove."); m->mothurOutEndLine();  }
392                 outputTypes["fasta"].push_back(outputFileName);  outputNames.push_back(outputFileName);
393                 
394                 m->mothurOut("Removed " + toString(removedCount) + " sequences from your fasta file."); m->mothurOutEndLine();
395                 
396                 return 0;
397                 
398         }
399         catch(exception& e) {
400                 m->errorOut(e, "RemoveGroupsCommand", "readFasta");
401                 exit(1);
402         }
403 }
404 //**********************************************************************************************************************
405 int RemoveGroupsCommand::readShared(){
406         try {
407                 string thisOutputDir = outputDir;
408                 if (outputDir == "") {  thisOutputDir += m->hasPath(sharedfile);  }
409                 
410                 //get group names from sharedfile so we can set Groups to the groupNames we want to keep
411                 //that way we can take advantage of the reads in inputdata and sharedRabundVector
412                 InputData* tempInput = new InputData(sharedfile, "sharedfile");
413                 vector<SharedRAbundVector*> lookup = tempInput->getSharedRAbundVectors();
414         
415                 //save m->Groups
416                 vector<string> allGroupsNames = m->getAllGroups();
417                 vector<string> mothurOutGroups = m->getGroups();
418                 
419                 vector<string> groupsToKeep;
420                 for (int i = 0; i < allGroupsNames.size(); i++) {
421                         if (!m->inUsersGroups(allGroupsNames[i], m->getGroups())) {
422                                 groupsToKeep.push_back(allGroupsNames[i]);
423                         }
424                 }
425                 
426                 if (allGroupsNames.size() == groupsToKeep.size()) { m->mothurOut("Your file does not contain any groups you wish to remove."); m->mothurOutEndLine(); m->setGroups(mothurOutGroups); delete tempInput; for (int i = 0; i < lookup.size(); i++) {  delete lookup[i];  }  return 0; }
427                 
428                 //reset read 
429                 for (int i = 0; i < lookup.size(); i++) {  delete lookup[i];  } 
430                 delete tempInput;
431                 m->setGroups(groupsToKeep);
432                 m->clearAllGroups();
433                 m->names.clear();
434                 m->saveNextLabel = "";
435                 m->printedHeaders = false;
436                 m->currentBinLabels.clear();
437                 m->binLabelsInFile.clear();
438                 
439                 InputData input(sharedfile, "sharedfile");
440                 lookup = input.getSharedRAbundVectors();
441
442                 bool wroteSomething = false;
443                 
444                 while(lookup[0] != NULL) {
445                         
446                         string outputFileName = thisOutputDir + m->getRootName(m->getSimpleName(sharedfile)) + lookup[0]->getLabel() + ".pick" + m->getExtension(sharedfile);
447                         ofstream out;
448                         m->openOutputFile(outputFileName, out);
449                         outputTypes["shared"].push_back(outputFileName);  outputNames.push_back(outputFileName);
450                         
451                         if (m->control_pressed) { out.close();  m->mothurRemove(outputFileName);  for (int i = 0; i < lookup.size(); i++) { delete lookup[i]; } return 0; }
452                         
453                         lookup[0]->printHeaders(out); 
454                         
455                         for (int i = 0; i < lookup.size(); i++) {
456                                 out << lookup[i]->getLabel() << '\t' << lookup[i]->getGroup() << '\t';
457                                 lookup[i]->print(out);
458                                 wroteSomething = true;
459                                 
460                         }                       
461                         
462                         //get next line to process
463                         //prevent memory leak
464                         for (int i = 0; i < lookup.size(); i++) {  delete lookup[i];  } 
465                         lookup = input.getSharedRAbundVectors();
466                         
467                         out.close();
468                 }
469                 
470                 
471                 m->setGroups(mothurOutGroups);
472                 
473                 if (wroteSomething == false) {  m->mothurOut("Your file contains only the groups you wish to remove."); m->mothurOutEndLine();  }
474                 
475                 string groupsString = "";
476                 for (int i = 0; i < Groups.size()-1; i++) {     groupsString += Groups[i] + ", "; }
477                 groupsString += Groups[Groups.size()-1];
478                 
479                 m->mothurOut("Removed groups: " + groupsString + " from your shared file."); m->mothurOutEndLine();
480                 
481                 return 0;
482                 
483         }
484         catch(exception& e) {
485                 m->errorOut(e, "RemoveGroupsCommand", "readShared");
486                 exit(1);
487         }
488 }
489 //**********************************************************************************************************************
490 int RemoveGroupsCommand::readList(){
491         try {
492                 string thisOutputDir = outputDir;
493                 if (outputDir == "") {  thisOutputDir += m->hasPath(listfile);  }
494                 string outputFileName = thisOutputDir + m->getRootName(m->getSimpleName(listfile)) + "pick" +  m->getExtension(listfile);
495                 
496                 ofstream out;
497                 m->openOutputFile(outputFileName, out);
498                 
499                 ifstream in;
500                 m->openInputFile(listfile, in);
501                 
502                 bool wroteSomething = false;
503                 int removedCount = 0;
504                 
505                 while(!in.eof()){
506                         
507                         removedCount = 0;
508                         
509                         //read in list vector
510                         ListVector list(in);
511                         
512                         //make a new list vector
513                         ListVector newList;
514                         newList.setLabel(list.getLabel());
515                         
516                         //for each bin
517                         for (int i = 0; i < list.getNumBins(); i++) {
518                                 if (m->control_pressed) { in.close();  out.close();  m->mothurRemove(outputFileName);  return 0; }
519                                 
520                                 //parse out names that are in accnos file
521                                 string binnames = list.get(i);
522                                 
523                                 string newNames = "";
524                                 while (binnames.find_first_of(',') != -1) { 
525                                         string name = binnames.substr(0,binnames.find_first_of(','));
526                                         binnames = binnames.substr(binnames.find_first_of(',')+1, binnames.length());
527                                         
528                                         //if that name is in the .accnos file, add it
529                                         if (names.count(name) == 0) {  newNames += name + ",";  }
530                                         else { removedCount++; }
531                                 }
532                                 
533                                 //get last name
534                                 if (names.count(binnames) == 0) {  newNames += binnames + ",";  }
535                                 else { removedCount++; }
536                                 
537                                 //if there are names in this bin add to new list
538                                 if (newNames != "") {  
539                                         newNames = newNames.substr(0, newNames.length()-1); //rip off extra comma
540                                         newList.push_back(newNames);    
541                                 }
542                         }
543                         
544                         //print new listvector
545                         if (newList.getNumBins() != 0) {
546                                 wroteSomething = true;
547                                 newList.print(out);
548                         }
549                         
550                         m->gobble(in);
551                 }
552                 in.close();     
553                 out.close();
554                 
555                 if (wroteSomething == false) {  m->mothurOut("Your file contains only sequences from the groups you wish to remove."); m->mothurOutEndLine();  }
556                 outputTypes["list"].push_back(outputFileName); outputNames.push_back(outputFileName);
557                 
558                 m->mothurOut("Removed " + toString(removedCount) + " sequences from your list file."); m->mothurOutEndLine();
559                 
560                 return 0;
561                 
562         }
563         catch(exception& e) {
564                 m->errorOut(e, "RemoveGroupsCommand", "readList");
565                 exit(1);
566         }
567 }
568 //**********************************************************************************************************************
569 int RemoveGroupsCommand::readName(){
570         try {
571                 string thisOutputDir = outputDir;
572                 if (outputDir == "") {  thisOutputDir += m->hasPath(namefile);  }
573                 string outputFileName = thisOutputDir + m->getRootName(m->getSimpleName(namefile)) + "pick" + m->getExtension(namefile);
574                 
575                 ofstream out;
576                 m->openOutputFile(outputFileName, out);
577                 
578                 ifstream in;
579                 m->openInputFile(namefile, in);
580                 string name, firstCol, secondCol;
581                 
582                 bool wroteSomething = false;
583                 int removedCount = 0;
584                 
585                 while(!in.eof()){
586                         if (m->control_pressed) { in.close();  out.close();  m->mothurRemove(outputFileName);  return 0; }
587                         
588                         in >> firstCol;         m->gobble(in);          
589                         in >> secondCol;                        
590                         
591                         vector<string> parsedNames;
592                         m->splitAtComma(secondCol, parsedNames);
593                                                 
594                         vector<string> validSecond;  validSecond.clear();
595                         for (int i = 0; i < parsedNames.size(); i++) {
596                                 if (names.count(parsedNames[i]) == 0) {
597                                         validSecond.push_back(parsedNames[i]);
598                                 }
599                         }
600                         
601                         removedCount += parsedNames.size()-validSecond.size();
602                         
603                         //if the name in the first column is in the set then print it and any other names in second column also in set
604                         if (names.count(firstCol) == 0) {
605                                 
606                                 wroteSomething = true;
607                                 
608                                 out << firstCol << '\t';
609                                 
610                                 //you know you have at least one valid second since first column is valid
611                                 for (int i = 0; i < validSecond.size()-1; i++) {  out << validSecond[i] << ',';  }
612                                 out << validSecond[validSecond.size()-1] << endl;
613                                 
614                                 //make first name in set you come to first column and then add the remaining names to second column
615                         }else {
616                                 
617                                 //you want part of this row
618                                 if (validSecond.size() != 0) {
619                                         
620                                         wroteSomething = true;
621                                         
622                                         out << validSecond[0] << '\t';
623                                         
624                                         //you know you have at least one valid second since first column is valid
625                                         for (int i = 0; i < validSecond.size()-1; i++) {  out << validSecond[i] << ',';  }
626                                         out << validSecond[validSecond.size()-1] << endl;
627                                 }
628                         }
629                         
630                         m->gobble(in);
631                 }
632                 in.close();
633                 out.close();
634                 
635                 if (wroteSomething == false) {  m->mothurOut("Your file contains only sequences from the groups you wish to remove."); m->mothurOutEndLine();  }
636                 outputTypes["name"].push_back(outputFileName); outputNames.push_back(outputFileName);
637                 
638                 m->mothurOut("Removed " + toString(removedCount) + " sequences from your name file."); m->mothurOutEndLine();
639                 
640                 return 0;
641         }
642         catch(exception& e) {
643                 m->errorOut(e, "RemoveGroupsCommand", "readName");
644                 exit(1);
645         }
646 }
647
648 //**********************************************************************************************************************
649 int RemoveGroupsCommand::readGroup(){
650         try {
651                 string thisOutputDir = outputDir;
652                 if (outputDir == "") {  thisOutputDir += m->hasPath(groupfile);  }
653                 string outputFileName = thisOutputDir + m->getRootName(m->getSimpleName(groupfile)) + "pick" + m->getExtension(groupfile);
654                 
655                 ofstream out;
656                 m->openOutputFile(outputFileName, out);
657                 
658                 ifstream in;
659                 m->openInputFile(groupfile, in);
660                 string name, group;
661                 
662                 bool wroteSomething = false;
663                 int removedCount = 0;
664                 
665                 while(!in.eof()){
666                         if (m->control_pressed) { in.close();  out.close();  m->mothurRemove(outputFileName);  return 0; }
667                         
668                         in >> name;                             //read from first column
669                         in >> group;                    //read from second column
670                         
671                         //if this name is in the accnos file
672                         if (names.count(name) == 0) {
673                                 wroteSomething = true;
674                                 out << name << '\t' << group << endl;
675                         }else {  removedCount++;  }
676                         
677                         m->gobble(in);
678                 }
679                 in.close();
680                 out.close();
681                 
682                 if (wroteSomething == false) {  m->mothurOut("Your file contains only sequences from the groups you wish to remove."); m->mothurOutEndLine();  }
683                 outputTypes["group"].push_back(outputFileName); outputNames.push_back(outputFileName);
684                 
685                 m->mothurOut("Removed " + toString(removedCount) + " sequences from your group file."); m->mothurOutEndLine();
686
687                 
688                 return 0;
689         }
690         catch(exception& e) {
691                 m->errorOut(e, "RemoveGroupsCommand", "readGroup");
692                 exit(1);
693         }
694 }
695 //**********************************************************************************************************************
696 int RemoveGroupsCommand::readTax(){
697         try {
698                 string thisOutputDir = outputDir;
699                 if (outputDir == "") {  thisOutputDir += m->hasPath(taxfile);  }
700                 string outputFileName = thisOutputDir + m->getRootName(m->getSimpleName(taxfile)) + "pick" + m->getExtension(taxfile);
701                 ofstream out;
702                 m->openOutputFile(outputFileName, out);
703                 
704                 ifstream in;
705                 m->openInputFile(taxfile, in);
706                 string name, tax;
707                 
708                 bool wroteSomething = false;
709                 int removedCount = 0;
710                 
711                 while(!in.eof()){
712                         if (m->control_pressed) { in.close();  out.close();  m->mothurRemove(outputFileName);  return 0; }
713                         
714                         in >> name;                             //read from first column
715                         in >> tax;                      //read from second column
716                         
717                         //if this name is in the accnos file
718                         if (names.count(name) == 0) {
719                                 wroteSomething = true;
720                                 out << name << '\t' << tax << endl;
721                         }else {  removedCount++;  }
722                         
723                         m->gobble(in);
724                 }
725                 in.close();
726                 out.close();
727                 
728                 if (wroteSomething == false) {  m->mothurOut("Your file contains only sequences from the groups you wish to remove."); m->mothurOutEndLine();  }
729                 outputTypes["taxonomy"].push_back(outputFileName); outputNames.push_back(outputFileName);
730                 
731                 m->mothurOut("Removed " + toString(removedCount) + " sequences from your taxonomy file."); m->mothurOutEndLine();
732                 
733                 return 0;
734         }
735         catch(exception& e) {
736                 m->errorOut(e, "RemoveGroupsCommand", "readTax");
737                 exit(1);
738         }
739 }
740 //**********************************************************************************************************************
741 void RemoveGroupsCommand::readAccnos(){
742         try {
743                 Groups.clear();
744                 
745                 ifstream in;
746                 m->openInputFile(accnosfile, in);
747                 string name;
748                 
749                 while(!in.eof()){
750                         in >> name;
751                         
752                         Groups.push_back(name);
753                         
754                         m->gobble(in);
755                 }
756                 in.close();     
757                 
758                 m->setGroups(Groups);
759                 
760         }
761         catch(exception& e) {
762                 m->errorOut(e, "RemoveGroupsCommand", "readAccnos");
763                 exit(1);
764         }
765 }
766 //**********************************************************************************************************************
767 int RemoveGroupsCommand::fillNames(){
768         try {
769                 vector<string> seqs = groupMap->getNamesSeqs();
770                 
771                 for (int i = 0; i < seqs.size(); i++) {
772                         
773                         if (m->control_pressed) { return 0; }
774                         
775                         string group = groupMap->getGroup(seqs[i]);
776                         
777                         if (m->inUsersGroups(group, Groups)) {
778                                 names.insert(seqs[i]);
779                         }
780                 }
781                 
782                 return 0;
783         }
784         catch(exception& e) {
785                 m->errorOut(e, "RemoveGroupsCommand", "fillNames");
786                 exit(1);
787         }
788 }
789
790 //**********************************************************************************************************************
791
792
793