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