]> git.donarmstrong.com Git - mothur.git/blob - preclustercommand.cpp
added checks to make sure windows processes completed their tasks.
[mothur.git] / preclustercommand.cpp
1 /*
2  *  preclustercommand.cpp
3  *  Mothur
4  *
5  *  Created by westcott on 12/21/09.
6  *  Copyright 2009 Schloss Lab. All rights reserved.
7  *
8  */
9
10 #include "preclustercommand.h"
11 #include "deconvolutecommand.h"
12
13 //**********************************************************************************************************************
14 vector<string> PreClusterCommand::setParameters(){      
15         try {
16                 CommandParameter pfasta("fasta", "InputTypes", "", "", "none", "none", "none","fasta-name",false,true,true); parameters.push_back(pfasta);
17                 CommandParameter pname("name", "InputTypes", "", "", "NameCount", "none", "none","name",false,false,true); parameters.push_back(pname);
18         CommandParameter pcount("count", "InputTypes", "", "", "NameCount-CountGroup", "none", "none","count",false,false,true); parameters.push_back(pcount);
19                 CommandParameter pgroup("group", "InputTypes", "", "", "CountGroup", "none", "none","",false,false,true); parameters.push_back(pgroup);
20                 CommandParameter pdiffs("diffs", "Number", "", "0", "", "", "","",false,false,true); parameters.push_back(pdiffs);
21                 CommandParameter pprocessors("processors", "Number", "", "1", "", "", "","",false,false,true); parameters.push_back(pprocessors);
22         CommandParameter ptopdown("topdown", "Boolean", "", "T", "", "", "","",false,false); parameters.push_back(ptopdown);
23
24                 CommandParameter pinputdir("inputdir", "String", "", "", "", "", "","",false,false); parameters.push_back(pinputdir);
25                 CommandParameter poutputdir("outputdir", "String", "", "", "", "", "","",false,false); parameters.push_back(poutputdir);
26                 
27                 vector<string> myArray;
28                 for (int i = 0; i < parameters.size(); i++) {   myArray.push_back(parameters[i].name);          }
29                 return myArray;
30         }
31         catch(exception& e) {
32                 m->errorOut(e, "PreClusterCommand", "setParameters");
33                 exit(1);
34         }
35 }
36 //**********************************************************************************************************************
37 string PreClusterCommand::getHelpString(){      
38         try {
39                 string helpString = "";
40                 helpString += "The pre.cluster command groups sequences that are within a given number of base mismatches.\n";
41                 helpString += "The pre.cluster command outputs a new fasta and name file.\n";
42                 helpString += "The pre.cluster command parameters are fasta, name, group, count, topdown, processors and diffs. The fasta parameter is required. \n";
43                 helpString += "The name parameter allows you to give a list of seqs that are identical. This file is 2 columns, first column is name or representative sequence, second column is a list of its identical sequences separated by commas.\n";
44                 helpString += "The group parameter allows you to provide a group file so you can cluster by group. \n";
45         helpString += "The count parameter allows you to provide a count file so you can cluster by group. \n";
46                 helpString += "The diffs parameter allows you to specify maximum number of mismatched bases allowed between sequences in a grouping. The default is 1.\n";
47         helpString += "The topdown parameter allows you to specify whether to cluster from largest abundance to smallest or smallest to largest.  Default=T, meanging largest to smallest.\n";
48                 helpString += "The pre.cluster command should be in the following format: \n";
49                 helpString += "pre.cluster(fasta=yourFastaFile, names=yourNamesFile, diffs=yourMaxDiffs) \n";
50                 helpString += "Example pre.cluster(fasta=amazon.fasta, diffs=2).\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, "PreClusterCommand", "getHelpString");
56                 exit(1);
57         }
58 }
59 //**********************************************************************************************************************
60 string PreClusterCommand::getOutputPattern(string type) {
61     try {
62         string pattern = "";
63         
64         if (type == "fasta") {  pattern = "[filename],precluster,[extension]"; } 
65         else if (type == "name") {  pattern = "[filename],precluster.names"; } 
66         else if (type == "count") {  pattern = "[filename],precluster.count_table"; }
67         else if (type == "map") {  pattern =  "[filename],precluster.map"; }
68         else { m->mothurOut("[ERROR]: No definition for type " + type + " output pattern.\n"); m->control_pressed = true;  }
69         
70         return pattern;
71     }
72     catch(exception& e) {
73         m->errorOut(e, "PreClusterCommand", "getOutputPattern");
74         exit(1);
75     }
76 }
77 //**********************************************************************************************************************
78 PreClusterCommand::PreClusterCommand(){ 
79         try {
80                 abort = true; calledHelp = true; 
81                 setParameters();
82                 vector<string> tempOutNames;
83                 outputTypes["fasta"] = tempOutNames;
84                 outputTypes["name"] = tempOutNames;
85         outputTypes["count"] = tempOutNames;
86                 outputTypes["map"] = tempOutNames;
87         }
88         catch(exception& e) {
89                 m->errorOut(e, "PreClusterCommand", "PreClusterCommand");
90                 exit(1);
91         }
92 }
93 //**********************************************************************************************************************
94
95 PreClusterCommand::PreClusterCommand(string option) {
96         try {
97                 abort = false; calledHelp = false;   
98                 
99                 //allow user to run help
100                 if(option == "help") { help(); abort = true; calledHelp = true; }
101                 else if(option == "citation") { citation(); abort = true; calledHelp = true;}
102                 
103                 else {
104                         vector<string> myArray = setParameters();
105                         
106                         OptionParser parser(option);
107                         map<string, string> parameters = parser.getParameters();
108                         
109                         ValidParameters validParameter;
110                         map<string, string>::iterator it;
111                 
112                         //check to make sure all parameters are valid for command
113                         for (map<string, string>::iterator it2 = parameters.begin(); it2 != parameters.end(); it2++) { 
114                                 if (validParameter.isValidParameter(it2->first, myArray, it2->second) != true) {  abort = true;  }
115                         }
116                         
117                         //initialize outputTypes
118                         vector<string> tempOutNames;
119                         outputTypes["fasta"] = tempOutNames;
120                         outputTypes["name"] = tempOutNames;
121                         outputTypes["map"] = tempOutNames;
122             outputTypes["count"] = tempOutNames;
123                 
124                         //if the user changes the input directory command factory will send this info to us in the output parameter 
125                         string inputDir = validParameter.validFile(parameters, "inputdir", false);              
126                         if (inputDir == "not found"){   inputDir = "";          }
127                         else {
128                                 string path;
129                                 it = parameters.find("fasta");
130                                 //user has given a template file
131                                 if(it != parameters.end()){ 
132                                         path = m->hasPath(it->second);
133                                         //if the user has not given a path then, add inputdir. else leave path alone.
134                                         if (path == "") {       parameters["fasta"] = inputDir + it->second;            }
135                                 }
136                                 
137                                 it = parameters.find("name");
138                                 //user has given a template file
139                                 if(it != parameters.end()){ 
140                                         path = m->hasPath(it->second);
141                                         //if the user has not given a path then, add inputdir. else leave path alone.
142                                         if (path == "") {       parameters["name"] = inputDir + it->second;             }
143                                 }
144                                 
145                                 it = parameters.find("group");
146                                 //user has given a template file
147                                 if(it != parameters.end()){ 
148                                         path = m->hasPath(it->second);
149                                         //if the user has not given a path then, add inputdir. else leave path alone.
150                                         if (path == "") {       parameters["group"] = inputDir + it->second;            }
151                                 }
152                 
153                 it = parameters.find("count");
154                                 //user has given a template file
155                                 if(it != parameters.end()){ 
156                                         path = m->hasPath(it->second);
157                                         //if the user has not given a path then, add inputdir. else leave path alone.
158                                         if (path == "") {       parameters["count"] = inputDir + it->second;            }
159                                 }
160                         }
161
162                         //check for required parameters
163                         fastafile = validParameter.validFile(parameters, "fasta", true);
164                         if (fastafile == "not found") {                                 
165                                 fastafile = m->getFastaFile(); 
166                                 if (fastafile != "") { m->mothurOut("Using " + fastafile + " as input file for the fasta parameter."); m->mothurOutEndLine(); }
167                                 else {  m->mothurOut("You have no current fastafile and the fasta parameter is required."); m->mothurOutEndLine(); abort = true; }
168                         }
169                         else if (fastafile == "not open") { abort = true; }     
170                         else { m->setFastaFile(fastafile); }
171                         
172                         //if the user changes the output directory command factory will send this info to us in the output parameter 
173                         outputDir = validParameter.validFile(parameters, "outputdir", false);           if (outputDir == "not found"){  
174                                 outputDir = ""; 
175                                 outputDir += m->hasPath(fastafile); //if user entered a file with a path then preserve it       
176                         }
177
178                         //check for optional parameter and set defaults
179                         // ...at some point should added some additional type checking...
180                         namefile = validParameter.validFile(parameters, "name", true);
181                         if (namefile == "not found") { namefile =  "";  }
182                         else if (namefile == "not open") { namefile = ""; abort = true; }       
183                         else {  m->setNameFile(namefile); }
184                         
185                         groupfile = validParameter.validFile(parameters, "group", true);
186                         if (groupfile == "not found") { groupfile =  "";  bygroup = false; }
187                         else if (groupfile == "not open") { abort = true; groupfile =  ""; }    
188                         else {   m->setGroupFile(groupfile); bygroup = true;  }
189             
190             countfile = validParameter.validFile(parameters, "count", true);
191                         if (countfile == "not found") { countfile =  "";   }
192                         else if (countfile == "not open") { abort = true; countfile =  ""; }    
193                         else {   
194                 m->setCountTableFile(countfile); 
195                 ct.readTable(countfile);
196                 if (ct.hasGroupInfo()) { bygroup = true; }
197                 else { bygroup = false;  }
198             }
199             
200             if ((namefile != "") && (countfile != "")) {
201                 m->mothurOut("[ERROR]: you may only use one of the following: name or count."); m->mothurOutEndLine(); abort = true;
202             }
203             
204             if ((groupfile != "") && (countfile != "")) {
205                 m->mothurOut("[ERROR]: you may only use one of the following: group or count."); m->mothurOutEndLine(); abort=true;
206             }
207
208                         
209                         string temp     = validParameter.validFile(parameters, "diffs", false);         if(temp == "not found"){        temp = "1"; }
210                         m->mothurConvert(temp, diffs); 
211                         
212                         temp = validParameter.validFile(parameters, "processors", false);       if (temp == "not found"){       temp = m->getProcessors();      }
213                         m->setProcessors(temp);
214                         m->mothurConvert(temp, processors);
215                         
216             temp = validParameter.validFile(parameters, "topdown", false);              if(temp == "not found"){  temp = "T"; }
217                         topdown = m->isTrue(temp);
218             
219             if (countfile == "") {
220                 if (namefile == "") {
221                     vector<string> files; files.push_back(fastafile);
222                     parser.getNameFile(files);
223                 }
224             }
225                 }
226                                 
227         }
228         catch(exception& e) {
229                 m->errorOut(e, "PreClusterCommand", "PreClusterCommand");
230                 exit(1);
231         }
232 }
233 //**********************************************************************************************************************
234
235 int PreClusterCommand::execute(){
236         try {
237                 
238                 if (abort == true) { if (calledHelp) { return 0; }  return 2;   }
239                 
240                 int start = time(NULL);
241                 
242                 string fileroot = outputDir + m->getRootName(m->getSimpleName(fastafile));
243         map<string, string> variables; 
244         variables["[filename]"] = fileroot;
245                 string newNamesFile = getOutputFileName("name",variables);
246         string newCountFile = getOutputFileName("count",variables);
247                 string newMapFile = getOutputFileName("map",variables); //add group name if by group
248         variables["[extension]"] = m->getExtension(fastafile);
249                 string newFastaFile = getOutputFileName("fasta", variables);
250                 outputNames.push_back(newFastaFile); outputTypes["fasta"].push_back(newFastaFile);
251                 if (countfile == "") { outputNames.push_back(newNamesFile); outputTypes["name"].push_back(newNamesFile); }
252                 else { outputNames.push_back(newCountFile); outputTypes["count"].push_back(newCountFile); }
253                 
254                 if (bygroup) {
255                         //clear out old files
256                         ofstream outFasta; m->openOutputFile(newFastaFile, outFasta); outFasta.close();
257                         ofstream outNames; m->openOutputFile(newNamesFile, outNames);  outNames.close();
258                         newMapFile = fileroot + "precluster.";
259                         
260                         //parse fasta and name file by group
261             vector<string> groups;
262                         if (countfile != "") {
263                 cparser = new SequenceCountParser(countfile, fastafile);
264                 groups = cparser->getNamesOfGroups();
265             }else {
266                 if (namefile != "") { parser = new SequenceParser(groupfile, fastafile, namefile);      }
267                 else                            { parser = new SequenceParser(groupfile, fastafile);                    }
268                 groups = parser->getNamesOfGroups();
269                         }
270             
271                         if(processors == 1)     {       driverGroups(newFastaFile, newNamesFile, newMapFile, 0, groups.size(), groups); }
272                         else                            {       createProcessesGroups(newFastaFile, newNamesFile, newMapFile, groups);                  }
273                         
274                         if (countfile != "") { 
275                 mergeGroupCounts(newCountFile, newNamesFile, newFastaFile);
276                 delete cparser; 
277             }else {  
278                 delete parser; 
279                 //run unique.seqs for deconvolute results
280                 string inputString = "fasta=" + newFastaFile;
281                 if (namefile != "") { inputString += ", name=" + newNamesFile; }
282                 m->mothurOutEndLine(); 
283                 m->mothurOut("/******************************************/"); m->mothurOutEndLine(); 
284                 m->mothurOut("Running command: unique.seqs(" + inputString + ")"); m->mothurOutEndLine(); 
285                 m->mothurCalling = true;
286                 
287                 Command* uniqueCommand = new DeconvoluteCommand(inputString);
288                 uniqueCommand->execute();
289                 
290                 map<string, vector<string> > filenames = uniqueCommand->getOutputFiles();
291                 
292                 delete uniqueCommand;
293                 m->mothurCalling = false;
294                 m->mothurOut("/******************************************/"); m->mothurOutEndLine(); 
295                 
296                 m->renameFile(filenames["fasta"][0], newFastaFile);
297                 m->renameFile(filenames["name"][0], newNamesFile); 
298                         }
299             if (m->control_pressed) { for (int i = 0; i < outputNames.size(); i++) {    m->mothurRemove(outputNames[i]);        }        return 0; }
300                         m->mothurOut("It took " + toString(time(NULL) - start) + " secs to run pre.cluster."); m->mothurOutEndLine(); 
301                                 
302                 }else {
303                         if (namefile != "") { readNameFile(); }
304                 
305                         //reads fasta file and return number of seqs
306                         int numSeqs = readFASTA(); //fills alignSeqs and makes all seqs active
307                 
308                         if (m->control_pressed) { for (int i = 0; i < outputNames.size(); i++) {        m->mothurRemove(outputNames[i]);        } return 0; }
309         
310                         if (numSeqs == 0) { m->mothurOut("Error reading fasta file...please correct."); m->mothurOutEndLine(); return 0;  }
311                         if (diffs > length) { m->mothurOut("Error: diffs is greater than your sequence length."); m->mothurOutEndLine(); return 0;  }
312                         
313                         int count = process(newMapFile);
314                         outputNames.push_back(newMapFile); outputTypes["map"].push_back(newMapFile);
315                         
316                         if (m->control_pressed) { for (int i = 0; i < outputNames.size(); i++) {        m->mothurRemove(outputNames[i]);        } return 0; }   
317                         
318                         m->mothurOut("Total number of sequences before precluster was " + toString(alignSeqs.size()) + "."); m->mothurOutEndLine();
319                         m->mothurOut("pre.cluster removed " + toString(count) + " sequences."); m->mothurOutEndLine(); m->mothurOutEndLine(); 
320                         if (countfile != "") { newNamesFile = newCountFile; }
321             printData(newFastaFile, newNamesFile, "");
322                                 
323                         m->mothurOut("It took " + toString(time(NULL) - start) + " secs to cluster " + toString(numSeqs) + " sequences."); m->mothurOutEndLine(); 
324                 }
325                                 
326                 if (m->control_pressed) { for (int i = 0; i < outputNames.size(); i++) {        m->mothurRemove(outputNames[i]);        } return 0; }
327                 
328                 m->mothurOutEndLine();
329                 m->mothurOut("Output File Names: "); m->mothurOutEndLine();
330                 for (int i = 0; i < outputNames.size(); i++) {  m->mothurOut(outputNames[i]); m->mothurOutEndLine();    }               
331                 m->mothurOutEndLine();
332                 
333                 //set fasta file as new current fastafile
334                 string current = "";
335                 itTypes = outputTypes.find("fasta");
336                 if (itTypes != outputTypes.end()) {
337                         if ((itTypes->second).size() != 0) { current = (itTypes->second)[0]; m->setFastaFile(current); }
338                 }
339                 
340                 itTypes = outputTypes.find("name");
341                 if (itTypes != outputTypes.end()) {
342                         if ((itTypes->second).size() != 0) { current = (itTypes->second)[0]; m->setNameFile(current); }
343                 }
344         
345         itTypes = outputTypes.find("count");
346                 if (itTypes != outputTypes.end()) {
347                         if ((itTypes->second).size() != 0) { current = (itTypes->second)[0]; m->setCountTableFile(current); }
348                 }
349                 
350                 return 0;
351                 
352         }
353         catch(exception& e) {
354                 m->errorOut(e, "PreClusterCommand", "execute");
355                 exit(1);
356         }
357 }
358 /**************************************************************************************************/
359 int PreClusterCommand::createProcessesGroups(string newFName, string newNName, string newMFile, vector<string> groups) {
360         try {
361                 
362                 vector<int> processIDS;
363                 int process = 1;
364                 int num = 0;
365                 
366                 //sanity check
367                 if (groups.size() < processors) { processors = groups.size(); }
368                 
369                 //divide the groups between the processors
370                 vector<linePair> lines;
371                 int numGroupsPerProcessor = groups.size() / processors;
372                 for (int i = 0; i < processors; i++) {
373                         int startIndex =  i * numGroupsPerProcessor;
374                         int endIndex = (i+1) * numGroupsPerProcessor;
375                         if(i == (processors - 1)){      endIndex = groups.size();       }
376                         lines.push_back(linePair(startIndex, endIndex));
377                 }
378                 
379 #if defined (__APPLE__) || (__MACH__) || (linux) || (__linux) || (__linux__) || (__unix__) || (__unix)          
380                 
381                 //loop through and create all the processes you want
382                 while (process != processors) {
383                         int pid = fork();
384                         
385                         if (pid > 0) {
386                                 processIDS.push_back(pid);  //create map from line number to pid so you can append files in correct order later
387                                 process++;
388                         }else if (pid == 0){
389                 outputNames.clear();
390                                 num = driverGroups(newFName + toString(getpid()) + ".temp", newNName + toString(getpid()) + ".temp", newMFile, lines[process].start, lines[process].end, groups);
391                 
392                 string tempFile = toString(getpid()) + ".outputNames.temp";
393                 ofstream outTemp;
394                 m->openOutputFile(tempFile, outTemp);
395                 
396                 outTemp << outputNames.size();
397                 for (int i = 0; i < outputNames.size(); i++) { outTemp << outputNames[i] << endl; }
398                 outTemp.close();
399                 
400                                 exit(0);
401                         }else { 
402                                 m->mothurOut("[ERROR]: unable to spawn the necessary processes."); m->mothurOutEndLine(); 
403                                 for (int i = 0; i < processIDS.size(); i++) { kill (processIDS[i], SIGINT); }
404                                 exit(0);
405                         }
406                 }
407                 
408                 //do my part
409                 num = driverGroups(newFName, newNName, newMFile, lines[0].start, lines[0].end, groups);
410                 
411                 //force parent to wait until all the processes are done
412                 for (int i=0;i<processIDS.size();i++) { 
413                         int temp = processIDS[i];
414                         wait(&temp);
415                 }
416         
417         for (int i = 0; i < processIDS.size(); i++) {
418             string tempFile = toString(processIDS[i]) +  ".outputNames.temp";
419             ifstream intemp;
420             m->openInputFile(tempFile, intemp);
421             
422             int num;
423             intemp >> num;
424             for (int k = 0; k < num; k++) {
425                 string name = "";
426                 intemp >> name; m->gobble(intemp);
427                 
428                 outputNames.push_back(name); outputTypes["map"].push_back(name);
429             }
430             intemp.close();
431             m->mothurRemove(tempFile);
432         }
433 #else
434                 
435                 //////////////////////////////////////////////////////////////////////////////////////////////////////
436                 //Windows version shared memory, so be careful when passing variables through the preClusterData struct. 
437                 //Above fork() will clone, so memory is separate, but that's not the case with windows, 
438                 //////////////////////////////////////////////////////////////////////////////////////////////////////
439                 
440                 vector<preClusterData*> pDataArray; 
441                 DWORD   dwThreadIdArray[processors-1];
442                 HANDLE  hThreadArray[processors-1]; 
443                 
444                 //Create processor worker threads.
445                 for( int i=1; i<processors; i++ ){
446                         // Allocate memory for thread data.
447                         string extension = toString(i) + ".temp";
448                         
449                         preClusterData* tempPreCluster = new preClusterData(fastafile, namefile, groupfile, countfile, (newFName+extension), (newNName+extension), newMFile, groups, m, lines[i].start, lines[i].end, diffs, topdown, i);
450                         pDataArray.push_back(tempPreCluster);
451                         processIDS.push_back(i);
452                         
453                         //MySeqSumThreadFunction is in header. It must be global or static to work with the threads.
454                         //default security attributes, thread function name, argument to thread function, use default creation flags, returns the thread identifier
455                         hThreadArray[i-1] = CreateThread(NULL, 0, MyPreclusterThreadFunction, pDataArray[i-1], 0, &dwThreadIdArray[i-1]);   
456                 }
457                 
458                                 
459                 //using the main process as a worker saves time and memory
460                 num = driverGroups(newFName, newNName, newMFile, lines[0].start, lines[0].end, groups);
461                 
462                 //Wait until all threads have terminated.
463                 WaitForMultipleObjects(processors-1, hThreadArray, TRUE, INFINITE);
464                 
465                 //Close all thread handles and free memory allocations.
466                 for(int i=0; i < pDataArray.size(); i++){
467             if (pDataArray[i]->count != (pDataArray[i]->end-pDataArray[i]->start)) {
468                 m->mothurOut("[ERROR]: process " + toString(i) + " only processed " + toString(pDataArray[i]->count) + " of " + toString(pDataArray[i]->end-pDataArray[i]->start) + " groups assigned to it, quitting. \n"); m->control_pressed = true; 
469             }
470                         for (int j = 0; j < pDataArray[i]->mapFileNames.size(); j++) {
471                                 outputNames.push_back(pDataArray[i]->mapFileNames[j]); outputTypes["map"].push_back(pDataArray[i]->mapFileNames[j]); 
472                         }
473                         CloseHandle(hThreadArray[i]);
474                         delete pDataArray[i];
475                 }
476                 
477 #endif          
478                 
479                 //append output files
480                 for(int i=0;i<processIDS.size();i++){
481                         //newFName = m->getFullPathName(".\\" + newFName);
482                         //newNName = m->getFullPathName(".\\" + newNName);
483                         
484                         m->appendFiles((newFName + toString(processIDS[i]) + ".temp"), newFName);
485                         m->mothurRemove((newFName + toString(processIDS[i]) + ".temp"));
486                         
487                         m->appendFiles((newNName + toString(processIDS[i]) + ".temp"), newNName);
488                         m->mothurRemove((newNName + toString(processIDS[i]) + ".temp"));
489                 }
490                 
491                 return num;     
492                 
493         }
494         catch(exception& e) {
495                 m->errorOut(e, "PreClusterCommand", "createProcessesGroups");
496                 exit(1);
497         }
498 }
499 /**************************************************************************************************/
500 int PreClusterCommand::driverGroups(string newFFile, string newNFile, string newMFile, int start, int end, vector<string> groups){
501         try {
502                 
503                 int numSeqs = 0;
504                 
505                 //precluster each group
506                 for (int i = start; i < end; i++) {
507                         
508                         start = time(NULL);
509                         
510                         if (m->control_pressed) {  return 0; }
511                         
512                         m->mothurOutEndLine(); m->mothurOut("Processing group " + groups[i] + ":"); m->mothurOutEndLine();
513                         
514                         map<string, string> thisNameMap;
515             vector<Sequence> thisSeqs;
516                         if (groupfile != "") { 
517                 thisSeqs = parser->getSeqs(groups[i]);
518             }else if (countfile != "") {
519                 thisSeqs = cparser->getSeqs(groups[i]);
520             }
521                         if (namefile != "") {  thisNameMap = parser->getNameMap(groups[i]); }
522             
523                         //fill alignSeqs with this groups info.
524                         numSeqs = loadSeqs(thisNameMap, thisSeqs, groups[i]);
525                         
526                         if (m->control_pressed) {   return 0; }
527                         
528                         if (diffs > length) { m->mothurOut("Error: diffs is greater than your sequence length."); m->mothurOutEndLine(); m->control_pressed = true; return 0;  }
529                         
530                         int count= process(newMFile+groups[i]+".map");
531                         outputNames.push_back(newMFile+groups[i]+".map"); outputTypes["map"].push_back(newMFile+groups[i]+".map");
532                         
533                         if (m->control_pressed) {  return 0; }
534                         
535                         m->mothurOut("Total number of sequences before pre.cluster was " + toString(alignSeqs.size()) + "."); m->mothurOutEndLine();
536                         m->mothurOut("pre.cluster removed " + toString(count) + " sequences."); m->mothurOutEndLine(); m->mothurOutEndLine(); 
537                         printData(newFFile, newNFile, groups[i]);
538                         
539                         m->mothurOut("It took " + toString(time(NULL) - start) + " secs to cluster " + toString(numSeqs) + " sequences."); m->mothurOutEndLine(); 
540                         
541                 }
542                 
543                 return numSeqs;
544         }
545         catch(exception& e) {
546                 m->errorOut(e, "PreClusterCommand", "driverGroups");
547                 exit(1);
548         }
549 }
550 /**************************************************************************************************/
551 int PreClusterCommand::process(string newMapFile){
552         try {
553                 ofstream out;
554                 m->openOutputFile(newMapFile, out);
555                 
556                 //sort seqs by number of identical seqs
557         if (topdown) { sort(alignSeqs.begin(), alignSeqs.end(), comparePriorityTopDown);  }
558         else {  sort(alignSeqs.begin(), alignSeqs.end(), comparePriorityDownTop);  }
559                 
560                 int count = 0;
561                 int numSeqs = alignSeqs.size();
562                 
563                 //think about running through twice...
564                 for (int i = 0; i < numSeqs; i++) {
565                         
566                         //are you active
567                         //                      itActive = active.find(alignSeqs[i].seq.getName());
568                         
569                         if (alignSeqs[i].active) {  //this sequence has not been merged yet
570                                 
571                                 string chunk = alignSeqs[i].seq.getName() + "\t" + toString(alignSeqs[i].numIdentical) + "\t" + toString(0) + "\t" + alignSeqs[i].seq.getAligned() + "\n";
572                                 
573                                 //try to merge it with all smaller seqs
574                                 for (int j = i+1; j < numSeqs; j++) {
575                                         
576                                         if (m->control_pressed) { out.close(); return 0; }
577                                         
578                                         if (alignSeqs[j].active) {  //this sequence has not been merged yet
579                                                 //are you within "diff" bases
580                                                 int mismatch = calcMisMatches(alignSeqs[i].seq.getAligned(), alignSeqs[j].seq.getAligned());
581                                                 
582                                                 if (mismatch <= diffs) {
583                                                         //merge
584                                                         alignSeqs[i].names += ',' + alignSeqs[j].names;
585                                                         alignSeqs[i].numIdentical += alignSeqs[j].numIdentical;
586                                                         
587                                                         chunk += alignSeqs[j].seq.getName() + "\t" + toString(alignSeqs[j].numIdentical) + "\t" + toString(mismatch) + "\t" + alignSeqs[j].seq.getAligned() + "\n";
588                                                         
589                                                         alignSeqs[j].active = 0;
590                                                         alignSeqs[j].numIdentical = 0;
591                                                         count++;
592                                                 }
593                                         }//end if j active
594                                 }//end for loop j
595                                 
596                                 //remove from active list 
597                                 alignSeqs[i].active = 0;
598                                 
599                                 out << "ideal_seq_" << (i+1) << '\t' << alignSeqs[i].numIdentical << endl << chunk << endl;;
600                                 
601                         }//end if active i
602                         if(i % 100 == 0)        { m->mothurOut(toString(i) + "\t" + toString(numSeqs - count) + "\t" + toString(count)); m->mothurOutEndLine(); }
603                 }
604                 out.close();
605                 
606                 if(numSeqs % 100 != 0)  { m->mothurOut(toString(numSeqs) + "\t" + toString(numSeqs - count) + "\t" + toString(count)); m->mothurOutEndLine();   }       
607                 
608                 return count;
609                 
610         }
611         catch(exception& e) {
612                 m->errorOut(e, "PreClusterCommand", "process");
613                 exit(1);
614         }
615 }
616 /**************************************************************************************************/
617 int PreClusterCommand::readFASTA(){
618         try {
619                 //ifstream inNames;
620                 ifstream inFasta;
621                 
622                 m->openInputFile(fastafile, inFasta);
623                 set<int> lengths;
624                 
625                 while (!inFasta.eof()) {
626                         
627                         if (m->control_pressed) { inFasta.close(); return 0; }
628                                                 
629                         Sequence seq(inFasta);  m->gobble(inFasta);
630                         
631                         if (seq.getName() != "") {  //can get "" if commented line is at end of fasta file
632                                 if (namefile != "") {
633                                         itSize = sizes.find(seq.getName());
634                                         
635                                         if (itSize == sizes.end()) { m->mothurOut(seq.getName() + " is not in your names file, please correct."); m->mothurOutEndLine(); exit(1); }
636                                         else{
637                                                 seqPNode tempNode(itSize->second, seq, names[seq.getName()]);
638                                                 alignSeqs.push_back(tempNode);
639                                                 lengths.insert(seq.getAligned().length());
640                                         }       
641                                 }else { //no names file, you are identical to yourself 
642                     int numRep = 1;
643                     if (countfile != "") { numRep = ct.getNumSeqs(seq.getName()); }
644                                         seqPNode tempNode(numRep, seq, seq.getName());
645                                         alignSeqs.push_back(tempNode);
646                                         lengths.insert(seq.getAligned().length());
647                                 }
648                         }
649                 }
650                 inFasta.close();
651         
652         if (lengths.size() > 1) { m->control_pressed = true; m->mothurOut("[ERROR]: your sequences are not all the same length. pre.cluster requires sequences to be aligned."); m->mothurOutEndLine(); }
653         else if (lengths.size() == 1) { length = *(lengths.begin()); }
654         
655                 return alignSeqs.size();
656         }
657         
658         catch(exception& e) {
659                 m->errorOut(e, "PreClusterCommand", "readFASTA");
660                 exit(1);
661         }
662 }
663 /**************************************************************************************************/
664 int PreClusterCommand::loadSeqs(map<string, string>& thisName, vector<Sequence>& thisSeqs, string group){
665         try {
666                 set<int> lengths;
667                 alignSeqs.clear();
668                 map<string, string>::iterator it;
669                 bool error = false;
670         map<string, int> thisCount;
671         if (countfile != "") { thisCount = cparser->getCountTable(group);  }
672                 
673                 for (int i = 0; i < thisSeqs.size(); i++) {
674                         
675                         if (m->control_pressed) { return 0; }
676                                                 
677                         if (namefile != "") {
678                                 it = thisName.find(thisSeqs[i].getName());
679                                 
680                                 //should never be true since parser checks for this
681                                 if (it == thisName.end()) { m->mothurOut(thisSeqs[i].getName() + " is not in your names file, please correct."); m->mothurOutEndLine(); error = true; }
682                                 else{
683                                         //get number of reps
684                                         int numReps = 1;
685                                         for(int j=0;j<(it->second).length();j++){
686                                                 if((it->second)[j] == ','){     numReps++;      }
687                                         }
688                                         
689                                         seqPNode tempNode(numReps, thisSeqs[i], it->second);
690                                         alignSeqs.push_back(tempNode);
691                     lengths.insert(thisSeqs[i].getAligned().length());
692                                 }       
693                         }else { //no names file, you are identical to yourself 
694                 int numRep = 1;
695                 if (countfile != "") { 
696                     map<string, int>::iterator it2 = thisCount.find(thisSeqs[i].getName());
697                     
698                     //should never be true since parser checks for this
699                     if (it2 == thisCount.end()) { m->mothurOut(thisSeqs[i].getName() + " is not in your count file, please correct."); m->mothurOutEndLine(); error = true; }
700                     else { numRep = it2->second;  }
701                 }
702                                 seqPNode tempNode(numRep, thisSeqs[i], thisSeqs[i].getName());
703                                 alignSeqs.push_back(tempNode);
704                                 lengths.insert(thisSeqs[i].getAligned().length());
705                         }
706                 }
707     
708         if (lengths.size() > 1) { error = true; m->mothurOut("[ERROR]: your sequences are not all the same length. pre.cluster requires sequences to be aligned."); m->mothurOutEndLine(); }
709         else if (lengths.size() == 1) { length = *(lengths.begin()); }
710         
711                 //sanity check
712                 if (error) { m->control_pressed = true; }
713                 
714                 thisSeqs.clear();
715                 
716                 return alignSeqs.size();
717         }
718         
719         catch(exception& e) {
720                 m->errorOut(e, "PreClusterCommand", "loadSeqs");
721                 exit(1);
722         }
723 }
724                                 
725 /**************************************************************************************************/
726
727 int PreClusterCommand::calcMisMatches(string seq1, string seq2){
728         try {
729                 int numBad = 0;
730                 
731                 for (int i = 0; i < seq1.length(); i++) {
732                         //do they match
733                         if (seq1[i] != seq2[i]) { numBad++; }
734                         if (numBad > diffs) { return length;  } //to far to cluster
735                 }
736                 
737                 return numBad;
738         }
739         catch(exception& e) {
740                 m->errorOut(e, "PreClusterCommand", "calcMisMatches");
741                 exit(1);
742         }
743 }
744 /**************************************************************************************************/
745
746 int PreClusterCommand::mergeGroupCounts(string newcount, string newname, string newfasta){
747         try {
748                 ifstream inNames;
749         m->openInputFile(newname, inNames);
750         
751         string group, first, second;
752         set<string> uniqueNames;
753         while (!inNames.eof()) {
754             if (m->control_pressed) { break; }
755             inNames >> group; m->gobble(inNames);
756             inNames >> first; m->gobble(inNames);
757             inNames >> second; m->gobble(inNames);
758             
759             vector<string> names;
760             m->splitAtComma(second, names);
761             
762             uniqueNames.insert(first);
763             
764             int total = ct.getGroupCount(first, group);
765             for (int i = 1; i < names.size(); i++) {
766                 total += ct.getGroupCount(names[i], group);
767                 ct.setAbund(names[i], group, 0);
768             }
769             ct.setAbund(first, group, total);
770         }
771         inNames.close();
772         
773         vector<string> namesOfSeqs = ct.getNamesOfSeqs();
774         for (int i = 0; i < namesOfSeqs.size(); i++) {
775             if (ct.getNumSeqs(namesOfSeqs[i]) == 0) {
776                 ct.remove(namesOfSeqs[i]);
777             }
778         }
779         
780         ct.printTable(newcount); 
781         m->mothurRemove(newname);
782         
783         if (bygroup) { //if by group, must remove the duplicate seqs that are named the same
784             ifstream in;
785             m->openInputFile(newfasta, in);
786             
787             ofstream out;
788             m->openOutputFile(newfasta+"temp", out);
789             
790             int count = 0;
791             set<string> already;
792             while(!in.eof()) {
793                 if (m->control_pressed) { break; }
794                 
795                 Sequence seq(in); m->gobble(in);
796                 
797                 if (seq.getName() != "") {
798                     count++;
799                     if (already.count(seq.getName()) == 0) {
800                         seq.printSequence(out);
801                         already.insert(seq.getName());
802                     }
803                 }
804             }
805             in.close();
806             out.close();
807             m->mothurRemove(newfasta);
808             m->renameFile(newfasta+"temp", newfasta);
809         }
810                         return 0;
811                 
812         }
813         catch(exception& e) {
814                 m->errorOut(e, "PreClusterCommand", "mergeGroupCounts");
815                 exit(1);
816         }
817 }
818
819 /**************************************************************************************************/
820
821 void PreClusterCommand::printData(string newfasta, string newname, string group){
822         try {
823                 ofstream outFasta;
824                 ofstream outNames;
825                 
826                 if (bygroup) {
827                         m->openOutputFileAppend(newfasta, outFasta);
828                         m->openOutputFileAppend(newname, outNames);
829                 }else {
830                         m->openOutputFile(newfasta, outFasta);
831                         m->openOutputFile(newname, outNames);
832                 }
833                 
834         if ((countfile != "") && (group == ""))  { outNames << "Representative_Sequence\ttotal\n";  }
835                 for (int i = 0; i < alignSeqs.size(); i++) {
836                         if (alignSeqs[i].numIdentical != 0) {
837                                 alignSeqs[i].seq.printSequence(outFasta); 
838                                 if (countfile != "") {  
839                     if (group != "") {  outNames << group << '\t' << alignSeqs[i].seq.getName() << '\t' << alignSeqs[i].names << endl; }
840                     else {  outNames << alignSeqs[i].seq.getName() << '\t' << alignSeqs[i].numIdentical << endl;  }
841                 }else {  outNames << alignSeqs[i].seq.getName() << '\t' << alignSeqs[i].names << endl;  }
842                         }
843                 }
844                 
845                 outFasta.close();
846                 outNames.close();
847                 
848         }
849         catch(exception& e) {
850                 m->errorOut(e, "PreClusterCommand", "printData");
851                 exit(1);
852         }
853 }
854 /**************************************************************************************************/
855
856 void PreClusterCommand::readNameFile(){
857         try {
858                 ifstream in;
859                 m->openInputFile(namefile, in);
860                 string firstCol, secondCol;
861                                 
862                 while (!in.eof()) {
863                         in >> firstCol >> secondCol; m->gobble(in);
864                         names[firstCol] = secondCol;
865                         int size = 1;
866
867                         for(int i=0;i<secondCol.size();i++){
868                                 if(secondCol[i] == ','){        size++; }
869                         }
870                         sizes[firstCol] = size;
871                 }
872                 in.close();
873         }
874         catch(exception& e) {
875                 m->errorOut(e, "PreClusterCommand", "readNameFile");
876                 exit(1);
877         }
878 }
879
880 /**************************************************************************************************/
881
882