]> git.donarmstrong.com Git - mothur.git/blob - preclustercommand.cpp
f2fbc80088b1adf2927ee78d5b1e02fbf9691cb1
[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",false,true); parameters.push_back(pfasta);
17                 CommandParameter pname("name", "InputTypes", "", "", "none", "none", "none",false,false); parameters.push_back(pname);
18                 CommandParameter pgroup("group", "InputTypes", "", "", "none", "none", "none",false,false); parameters.push_back(pgroup);
19                 CommandParameter pdiffs("diffs", "Number", "", "0", "", "", "",false,false); parameters.push_back(pdiffs);
20                 CommandParameter pprocessors("processors", "Number", "", "1", "", "", "",false,false); parameters.push_back(pprocessors);
21                 CommandParameter pinputdir("inputdir", "String", "", "", "", "", "",false,false); parameters.push_back(pinputdir);
22                 CommandParameter poutputdir("outputdir", "String", "", "", "", "", "",false,false); parameters.push_back(poutputdir);
23                 
24                 vector<string> myArray;
25                 for (int i = 0; i < parameters.size(); i++) {   myArray.push_back(parameters[i].name);          }
26                 return myArray;
27         }
28         catch(exception& e) {
29                 m->errorOut(e, "PreClusterCommand", "setParameters");
30                 exit(1);
31         }
32 }
33 //**********************************************************************************************************************
34 string PreClusterCommand::getHelpString(){      
35         try {
36                 string helpString = "";
37                 helpString += "The pre.cluster command groups sequences that are within a given number of base mismatches.\n";
38                 helpString += "The pre.cluster command outputs a new fasta and name file.\n";
39                 helpString += "The pre.cluster command parameters are fasta, names and diffs. The fasta parameter is required. \n";
40                 helpString += "The names 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";
41                 helpString += "The group parameter allows you to provide a group file so you can cluster by group. \n";
42                 helpString += "The diffs parameter allows you to specify maximum number of mismatched bases allowed between sequences in a grouping. The default is 1.\n";
43                 helpString += "The pre.cluster command should be in the following format: \n";
44                 helpString += "pre.cluster(fasta=yourFastaFile, names=yourNamesFile, diffs=yourMaxDiffs) \n";
45                 helpString += "Example pre.cluster(fasta=amazon.fasta, diffs=2).\n";
46                 helpString += "Note: No spaces between parameter labels (i.e. fasta), '=' and parameters (i.e.yourFasta).\n";
47                 return helpString;
48         }
49         catch(exception& e) {
50                 m->errorOut(e, "PreClusterCommand", "getHelpString");
51                 exit(1);
52         }
53 }
54
55 //**********************************************************************************************************************
56 PreClusterCommand::PreClusterCommand(){ 
57         try {
58                 abort = true; calledHelp = true; 
59                 setParameters();
60                 vector<string> tempOutNames;
61                 outputTypes["fasta"] = tempOutNames;
62                 outputTypes["name"] = tempOutNames;
63                 outputTypes["map"] = tempOutNames;
64         }
65         catch(exception& e) {
66                 m->errorOut(e, "PreClusterCommand", "PreClusterCommand");
67                 exit(1);
68         }
69 }
70 //**********************************************************************************************************************
71
72 PreClusterCommand::PreClusterCommand(string option) {
73         try {
74                 abort = false; calledHelp = false;   
75                 
76                 //allow user to run help
77                 if(option == "help") { help(); abort = true; calledHelp = true; }
78                 else if(option == "citation") { citation(); abort = true; calledHelp = true;}
79                 
80                 else {
81                         vector<string> myArray = setParameters();
82                         
83                         OptionParser parser(option);
84                         map<string, string> parameters = parser.getParameters();
85                         
86                         ValidParameters validParameter;
87                         map<string, string>::iterator it;
88                 
89                         //check to make sure all parameters are valid for command
90                         for (map<string, string>::iterator it2 = parameters.begin(); it2 != parameters.end(); it2++) { 
91                                 if (validParameter.isValidParameter(it2->first, myArray, it2->second) != true) {  abort = true;  }
92                         }
93                         
94                         //initialize outputTypes
95                         vector<string> tempOutNames;
96                         outputTypes["fasta"] = tempOutNames;
97                         outputTypes["name"] = tempOutNames;
98                         outputTypes["map"] = tempOutNames;
99                 
100                         //if the user changes the input directory command factory will send this info to us in the output parameter 
101                         string inputDir = validParameter.validFile(parameters, "inputdir", false);              
102                         if (inputDir == "not found"){   inputDir = "";          }
103                         else {
104                                 string path;
105                                 it = parameters.find("fasta");
106                                 //user has given a template file
107                                 if(it != parameters.end()){ 
108                                         path = m->hasPath(it->second);
109                                         //if the user has not given a path then, add inputdir. else leave path alone.
110                                         if (path == "") {       parameters["fasta"] = inputDir + it->second;            }
111                                 }
112                                 
113                                 it = parameters.find("name");
114                                 //user has given a template file
115                                 if(it != parameters.end()){ 
116                                         path = m->hasPath(it->second);
117                                         //if the user has not given a path then, add inputdir. else leave path alone.
118                                         if (path == "") {       parameters["name"] = inputDir + it->second;             }
119                                 }
120                                 
121                                 it = parameters.find("group");
122                                 //user has given a template file
123                                 if(it != parameters.end()){ 
124                                         path = m->hasPath(it->second);
125                                         //if the user has not given a path then, add inputdir. else leave path alone.
126                                         if (path == "") {       parameters["group"] = inputDir + it->second;            }
127                                 }
128                         }
129
130                         //check for required parameters
131                         fastafile = validParameter.validFile(parameters, "fasta", true);
132                         if (fastafile == "not found") {                                 
133                                 fastafile = m->getFastaFile(); 
134                                 if (fastafile != "") { m->mothurOut("Using " + fastafile + " as input file for the fasta parameter."); m->mothurOutEndLine(); }
135                                 else {  m->mothurOut("You have no current fastafile and the fasta parameter is required."); m->mothurOutEndLine(); abort = true; }
136                         }
137                         else if (fastafile == "not open") { abort = true; }     
138                         else { m->setFastaFile(fastafile); }
139                         
140                         //if the user changes the output directory command factory will send this info to us in the output parameter 
141                         outputDir = validParameter.validFile(parameters, "outputdir", false);           if (outputDir == "not found"){  
142                                 outputDir = ""; 
143                                 outputDir += m->hasPath(fastafile); //if user entered a file with a path then preserve it       
144                         }
145
146                         //check for optional parameter and set defaults
147                         // ...at some point should added some additional type checking...
148                         namefile = validParameter.validFile(parameters, "name", true);
149                         if (namefile == "not found") { namefile =  "";  }
150                         else if (namefile == "not open") { namefile = ""; abort = true; }       
151                         else {  m->setNameFile(namefile); }
152                         
153                         groupfile = validParameter.validFile(parameters, "group", true);
154                         if (groupfile == "not found") { groupfile =  "";  bygroup = false; }
155                         else if (groupfile == "not open") { abort = true; groupfile =  ""; }    
156                         else {   m->setGroupFile(groupfile); bygroup = true;  }
157                         
158                         string temp     = validParameter.validFile(parameters, "diffs", false);         if(temp == "not found"){        temp = "1"; }
159                         m->mothurConvert(temp, diffs); 
160                         
161                         temp = validParameter.validFile(parameters, "processors", false);       if (temp == "not found"){       temp = m->getProcessors();      }
162                         m->setProcessors(temp);
163                         m->mothurConvert(temp, processors);
164                         
165                         if (namefile == "") {
166                                 vector<string> files; files.push_back(fastafile);
167                                 parser.getNameFile(files);
168                         }
169                 }
170                                 
171         }
172         catch(exception& e) {
173                 m->errorOut(e, "PreClusterCommand", "PreClusterCommand");
174                 exit(1);
175         }
176 }
177 //**********************************************************************************************************************
178
179 int PreClusterCommand::execute(){
180         try {
181                 
182                 if (abort == true) { if (calledHelp) { return 0; }  return 2;   }
183                 
184                 int start = time(NULL);
185                 
186                 string fileroot = outputDir + m->getRootName(m->getSimpleName(fastafile));
187                 string newFastaFile = fileroot + "precluster" + m->getExtension(fastafile);
188                 string newNamesFile = fileroot + "precluster.names";
189                 string newMapFile = fileroot + "precluster.map"; //add group name if by group
190                 outputNames.push_back(newFastaFile); outputTypes["fasta"].push_back(newFastaFile);
191                 outputNames.push_back(newNamesFile); outputTypes["name"].push_back(newNamesFile);
192                 
193                 
194                 if (bygroup) {
195                         //clear out old files
196                         ofstream outFasta; m->openOutputFile(newFastaFile, outFasta); outFasta.close();
197                         ofstream outNames; m->openOutputFile(newNamesFile, outNames);  outNames.close();
198                         newMapFile = fileroot + "precluster.";
199                         
200                         //parse fasta and name file by group
201                         SequenceParser* parser;
202                         if (namefile != "") { parser = new SequenceParser(groupfile, fastafile, namefile);      }
203                         else                            { parser = new SequenceParser(groupfile, fastafile);                    }
204                         
205                         vector<string> groups = parser->getNamesOfGroups();
206                         
207                         if(processors == 1)     {       driverGroups(parser, newFastaFile, newNamesFile, newMapFile, 0, groups.size(), groups); }
208                         else                            {       createProcessesGroups(parser, newFastaFile, newNamesFile, newMapFile, groups);                  }
209                         
210                         delete parser;
211                         
212                         if (m->control_pressed) { for (int i = 0; i < outputNames.size(); i++) {        m->mothurRemove(outputNames[i]);        }        return 0; }
213                         
214                         //run unique.seqs for deconvolute results
215                         string inputString = "fasta=" + newFastaFile;
216                         if (namefile != "") { inputString += ", name=" + newNamesFile; }
217                         m->mothurOutEndLine(); 
218                         m->mothurOut("/******************************************/"); m->mothurOutEndLine(); 
219                         m->mothurOut("Running command: unique.seqs(" + inputString + ")"); m->mothurOutEndLine(); 
220                         m->mothurCalling = true;
221             
222                         Command* uniqueCommand = new DeconvoluteCommand(inputString);
223                         uniqueCommand->execute();
224                         
225                         map<string, vector<string> > filenames = uniqueCommand->getOutputFiles();
226                         
227                         delete uniqueCommand;
228                         m->mothurCalling = false;
229                         m->mothurOut("/******************************************/"); m->mothurOutEndLine(); 
230                         
231                         m->renameFile(filenames["fasta"][0], newFastaFile);
232             m->renameFile(filenames["name"][0], newNamesFile);
233                         
234                         m->mothurOut("It took " + toString(time(NULL) - start) + " secs to run pre.cluster."); m->mothurOutEndLine(); 
235                                 
236                 }else {
237                         if (namefile != "") { readNameFile(); }
238                 
239                         //reads fasta file and return number of seqs
240                         int numSeqs = readFASTA(); //fills alignSeqs and makes all seqs active
241                 
242                         if (m->control_pressed) { for (int i = 0; i < outputNames.size(); i++) {        m->mothurRemove(outputNames[i]);        } return 0; }
243         
244                         if (numSeqs == 0) { m->mothurOut("Error reading fasta file...please correct."); m->mothurOutEndLine(); return 0;  }
245                         if (diffs > length) { m->mothurOut("Error: diffs is greater than your sequence length."); m->mothurOutEndLine(); return 0;  }
246                         
247                         int count = process(newMapFile);
248                         outputNames.push_back(newMapFile); outputTypes["map"].push_back(newMapFile);
249                         
250                         if (m->control_pressed) { for (int i = 0; i < outputNames.size(); i++) {        m->mothurRemove(outputNames[i]);        } return 0; }   
251                         
252                         m->mothurOut("Total number of sequences before precluster was " + toString(alignSeqs.size()) + "."); m->mothurOutEndLine();
253                         m->mothurOut("pre.cluster removed " + toString(count) + " sequences."); m->mothurOutEndLine(); m->mothurOutEndLine(); 
254                         printData(newFastaFile, newNamesFile);
255                         
256                         m->mothurOut("It took " + toString(time(NULL) - start) + " secs to cluster " + toString(numSeqs) + " sequences."); m->mothurOutEndLine(); 
257                 }
258                                 
259                 if (m->control_pressed) { for (int i = 0; i < outputNames.size(); i++) {        m->mothurRemove(outputNames[i]);        } return 0; }
260                 
261                 m->mothurOutEndLine();
262                 m->mothurOut("Output File Names: "); m->mothurOutEndLine();
263                 for (int i = 0; i < outputNames.size(); i++) {  m->mothurOut(outputNames[i]); m->mothurOutEndLine();    }               
264                 m->mothurOutEndLine();
265                 
266                 //set fasta file as new current fastafile
267                 string current = "";
268                 itTypes = outputTypes.find("fasta");
269                 if (itTypes != outputTypes.end()) {
270                         if ((itTypes->second).size() != 0) { current = (itTypes->second)[0]; m->setFastaFile(current); }
271                 }
272                 
273                 itTypes = outputTypes.find("name");
274                 if (itTypes != outputTypes.end()) {
275                         if ((itTypes->second).size() != 0) { current = (itTypes->second)[0]; m->setNameFile(current); }
276                 }
277                 
278                 return 0;
279                 
280         }
281         catch(exception& e) {
282                 m->errorOut(e, "PreClusterCommand", "execute");
283                 exit(1);
284         }
285 }
286 /**************************************************************************************************/
287 int PreClusterCommand::createProcessesGroups(SequenceParser* parser, string newFName, string newNName, string newMFile, vector<string> groups) {
288         try {
289                 
290                 vector<int> processIDS;
291                 int process = 1;
292                 int num = 0;
293                 
294                 //sanity check
295                 if (groups.size() < processors) { processors = groups.size(); }
296                 
297                 //divide the groups between the processors
298                 vector<linePair> lines;
299                 int numGroupsPerProcessor = groups.size() / processors;
300                 for (int i = 0; i < processors; i++) {
301                         int startIndex =  i * numGroupsPerProcessor;
302                         int endIndex = (i+1) * numGroupsPerProcessor;
303                         if(i == (processors - 1)){      endIndex = groups.size();       }
304                         lines.push_back(linePair(startIndex, endIndex));
305                 }
306                 
307 #if defined (__APPLE__) || (__MACH__) || (linux) || (__linux) || (__linux__) || (__unix__) || (__unix)          
308                 
309                 //loop through and create all the processes you want
310                 while (process != processors) {
311                         int pid = fork();
312                         
313                         if (pid > 0) {
314                                 processIDS.push_back(pid);  //create map from line number to pid so you can append files in correct order later
315                                 process++;
316                         }else if (pid == 0){
317                                 num = driverGroups(parser, newFName + toString(getpid()) + ".temp", newNName + toString(getpid()) + ".temp", newMFile, lines[process].start, lines[process].end, groups);
318                                 exit(0);
319                         }else { 
320                                 m->mothurOut("[ERROR]: unable to spawn the necessary processes."); m->mothurOutEndLine(); 
321                                 for (int i = 0; i < processIDS.size(); i++) { kill (processIDS[i], SIGINT); }
322                                 exit(0);
323                         }
324                 }
325                 
326                 //do my part
327                 num = driverGroups(parser, newFName, newNName, newMFile, lines[0].start, lines[0].end, groups);
328                 
329                 //force parent to wait until all the processes are done
330                 for (int i=0;i<processIDS.size();i++) { 
331                         int temp = processIDS[i];
332                         wait(&temp);
333                 }
334                 
335 #else
336                 
337                 //////////////////////////////////////////////////////////////////////////////////////////////////////
338                 //Windows version shared memory, so be careful when passing variables through the preClusterData struct. 
339                 //Above fork() will clone, so memory is separate, but that's not the case with windows, 
340                 //////////////////////////////////////////////////////////////////////////////////////////////////////
341                 
342                 vector<preClusterData*> pDataArray; 
343                 DWORD   dwThreadIdArray[processors-1];
344                 HANDLE  hThreadArray[processors-1]; 
345                 
346                 //Create processor worker threads.
347                 for( int i=1; i<processors; i++ ){
348                         // Allocate memory for thread data.
349                         string extension = toString(i) + ".temp";
350                         
351                         preClusterData* tempPreCluster = new preClusterData(fastafile, namefile, groupfile, (newFName+extension), (newNName+extension), newMFile, groups, m, lines[i].start, lines[i].end, diffs, i);
352                         pDataArray.push_back(tempPreCluster);
353                         processIDS.push_back(i);
354                         
355                         //MySeqSumThreadFunction is in header. It must be global or static to work with the threads.
356                         //default security attributes, thread function name, argument to thread function, use default creation flags, returns the thread identifier
357                         hThreadArray[i-1] = CreateThread(NULL, 0, MyPreclusterThreadFunction, pDataArray[i-1], 0, &dwThreadIdArray[i-1]);   
358                 }
359                 
360                                 
361                 //using the main process as a worker saves time and memory
362                 num = driverGroups(parser, newFName, newNName, newMFile, lines[0].start, lines[0].end, groups);
363                 
364                 //Wait until all threads have terminated.
365                 WaitForMultipleObjects(processors-1, hThreadArray, TRUE, INFINITE);
366                 
367                 //Close all thread handles and free memory allocations.
368                 for(int i=0; i < pDataArray.size(); i++){
369                         for (int j = 0; j < pDataArray[i]->mapFileNames.size(); j++) {
370                                 outputNames.push_back(pDataArray[i]->mapFileNames[j]); outputTypes["map"].push_back(pDataArray[i]->mapFileNames[j]); 
371                         }
372                         CloseHandle(hThreadArray[i]);
373                         delete pDataArray[i];
374                 }
375                 
376 #endif          
377                 
378                 //append output files
379                 for(int i=0;i<processIDS.size();i++){
380                         //newFName = m->getFullPathName(".\\" + newFName);
381                         //newNName = m->getFullPathName(".\\" + newNName);
382                         
383                         m->appendFiles((newFName + toString(processIDS[i]) + ".temp"), newFName);
384                         m->mothurRemove((newFName + toString(processIDS[i]) + ".temp"));
385                         
386                         m->appendFiles((newNName + toString(processIDS[i]) + ".temp"), newNName);
387                         m->mothurRemove((newNName + toString(processIDS[i]) + ".temp"));
388                 }
389                 
390                 return num;     
391                 
392         }
393         catch(exception& e) {
394                 m->errorOut(e, "PreClusterCommand", "createProcessesGroups");
395                 exit(1);
396         }
397 }
398 /**************************************************************************************************/
399 int PreClusterCommand::driverGroups(SequenceParser* parser, string newFFile, string newNFile, string newMFile, int start, int end, vector<string> groups){
400         try {
401                 
402                 int numSeqs = 0;
403                 
404                 //precluster each group
405                 for (int i = start; i < end; i++) {
406                         
407                         start = time(NULL);
408                         
409                         if (m->control_pressed) {  return 0; }
410                         
411                         m->mothurOutEndLine(); m->mothurOut("Processing group " + groups[i] + ":"); m->mothurOutEndLine();
412                         
413                         map<string, string> thisNameMap;
414                         if (namefile != "") { thisNameMap = parser->getNameMap(groups[i]); }
415                         vector<Sequence> thisSeqs = parser->getSeqs(groups[i]);
416                         
417                         //fill alignSeqs with this groups info.
418                         numSeqs = loadSeqs(thisNameMap, thisSeqs);
419                         
420                         if (m->control_pressed) {   return 0; }
421                         
422                         if (diffs > length) { m->mothurOut("Error: diffs is greater than your sequence length."); m->mothurOutEndLine(); m->control_pressed = true; return 0;  }
423                         
424                         int count = process(newMFile+groups[i]+".map");
425                         outputNames.push_back(newMFile+groups[i]+".map"); outputTypes["map"].push_back(newMFile+groups[i]+".map");
426                         
427                         if (m->control_pressed) {  return 0; }
428                         
429                         m->mothurOut("Total number of sequences before pre.cluster was " + toString(alignSeqs.size()) + "."); m->mothurOutEndLine();
430                         m->mothurOut("pre.cluster removed " + toString(count) + " sequences."); m->mothurOutEndLine(); m->mothurOutEndLine(); 
431                         printData(newFFile, newNFile);
432                         
433                         m->mothurOut("It took " + toString(time(NULL) - start) + " secs to cluster " + toString(numSeqs) + " sequences."); m->mothurOutEndLine(); 
434                         
435                 }
436                 
437                 return numSeqs;
438         }
439         catch(exception& e) {
440                 m->errorOut(e, "PreClusterCommand", "driverGroups");
441                 exit(1);
442         }
443 }
444 /**************************************************************************************************/
445 int PreClusterCommand::process(string newMapFile){
446         try {
447                 ofstream out;
448                 m->openOutputFile(newMapFile, out);
449                 
450                 //sort seqs by number of identical seqs
451                 sort(alignSeqs.begin(), alignSeqs.end(), comparePriority);
452                 
453                 int count = 0;
454                 int numSeqs = alignSeqs.size();
455                 
456                 //think about running through twice...
457                 for (int i = 0; i < numSeqs; i++) {
458                         
459                         //are you active
460                         //                      itActive = active.find(alignSeqs[i].seq.getName());
461                         
462                         if (alignSeqs[i].active) {  //this sequence has not been merged yet
463                                 
464                                 string chunk = alignSeqs[i].seq.getName() + "\t" + toString(alignSeqs[i].numIdentical) + "\t" + toString(0) + "\t" + alignSeqs[i].seq.getAligned() + "\n";
465                                 
466                                 //try to merge it with all smaller seqs
467                                 for (int j = i+1; j < numSeqs; j++) {
468                                         
469                                         if (m->control_pressed) { out.close(); return 0; }
470                                         
471                                         if (alignSeqs[j].active) {  //this sequence has not been merged yet
472                                                 //are you within "diff" bases
473                                                 int mismatch = calcMisMatches(alignSeqs[i].seq.getAligned(), alignSeqs[j].seq.getAligned());
474                                                 
475                                                 if (mismatch <= diffs) {
476                                                         //merge
477                                                         alignSeqs[i].names += ',' + alignSeqs[j].names;
478                                                         alignSeqs[i].numIdentical += alignSeqs[j].numIdentical;
479                                                         
480                                                         chunk += alignSeqs[j].seq.getName() + "\t" + toString(alignSeqs[j].numIdentical) + "\t" + toString(mismatch) + "\t" + alignSeqs[j].seq.getAligned() + "\n";
481                                                         
482                                                         alignSeqs[j].active = 0;
483                                                         alignSeqs[j].numIdentical = 0;
484                                                         count++;
485                                                 }
486                                         }//end if j active
487                                 }//end for loop j
488                                 
489                                 //remove from active list 
490                                 alignSeqs[i].active = 0;
491                                 
492                                 out << "ideal_seq_" << (i+1) << '\t' << alignSeqs[i].numIdentical << endl << chunk << endl;;
493                                 
494                         }//end if active i
495                         if(i % 100 == 0)        { m->mothurOut(toString(i) + "\t" + toString(numSeqs - count) + "\t" + toString(count)); m->mothurOutEndLine(); }
496                 }
497                 out.close();
498                 
499                 if(numSeqs % 100 != 0)  { m->mothurOut(toString(numSeqs) + "\t" + toString(numSeqs - count) + "\t" + toString(count)); m->mothurOutEndLine();   }       
500                 
501                 return count;
502                 
503         }
504         catch(exception& e) {
505                 m->errorOut(e, "PreClusterCommand", "process");
506                 exit(1);
507         }
508 }
509 /**************************************************************************************************/
510 int PreClusterCommand::readFASTA(){
511         try {
512                 //ifstream inNames;
513                 ifstream inFasta;
514                 
515                 //m->openInputFile(namefile, inNames);
516                 m->openInputFile(fastafile, inFasta);
517                 
518                 //string firstCol, secondCol, nameString;
519                 set<int> lengths;
520                 
521                 while (!inFasta.eof()) {
522                         
523                         if (m->control_pressed) { inFasta.close(); return 0; }
524                         
525                         //inNames >> firstCol >> secondCol;
526                         //nameString = secondCol;
527                         
528                         //m->gobble(inNames);
529                         //int size = 1;
530                         //while (secondCol.find_first_of(',') != -1) { 
531                         //      size++;
532                         //      secondCol = secondCol.substr(secondCol.find_first_of(',')+1, secondCol.length());
533                         //}
534                         
535                         Sequence seq(inFasta);  m->gobble(inFasta);
536                         
537                         if (seq.getName() != "") {  //can get "" if commented line is at end of fasta file
538                                 if (namefile != "") {
539                                         itSize = sizes.find(seq.getName());
540                                         
541                                         if (itSize == sizes.end()) { m->mothurOut(seq.getName() + " is not in your names file, please correct."); m->mothurOutEndLine(); exit(1); }
542                                         else{
543                                                 seqPNode tempNode(itSize->second, seq, names[seq.getName()]);
544                                                 alignSeqs.push_back(tempNode);
545                                                 lengths.insert(seq.getAligned().length());
546                                         }       
547                                 }else { //no names file, you are identical to yourself 
548                                         seqPNode tempNode(1, seq, seq.getName());
549                                         alignSeqs.push_back(tempNode);
550                                         lengths.insert(seq.getAligned().length());
551                                 }
552                         }
553                 }
554                 inFasta.close();
555                 //inNames.close();
556         
557         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(); }
558         else if (lengths.size() == 1) { length = *(lengths.begin()); }
559         
560                 return alignSeqs.size();
561         }
562         
563         catch(exception& e) {
564                 m->errorOut(e, "PreClusterCommand", "readFASTA");
565                 exit(1);
566         }
567 }
568 /**************************************************************************************************/
569 int PreClusterCommand::loadSeqs(map<string, string>& thisName, vector<Sequence>& thisSeqs){
570         try {
571                 set<int> lengths;
572                 alignSeqs.clear();
573                 map<string, string>::iterator it;
574                 bool error = false;
575                         
576                 for (int i = 0; i < thisSeqs.size(); i++) {
577                         
578                         if (m->control_pressed) { return 0; }
579                                                 
580                         if (namefile != "") {
581                                 it = thisName.find(thisSeqs[i].getName());
582                                 
583                                 //should never be true since parser checks for this
584                                 if (it == thisName.end()) { m->mothurOut(thisSeqs[i].getName() + " is not in your names file, please correct."); m->mothurOutEndLine(); error = true; }
585                                 else{
586                                         //get number of reps
587                                         int numReps = 1;
588                                         for(int j=0;j<(it->second).length();j++){
589                                                 if((it->second)[j] == ','){     numReps++;      }
590                                         }
591                                         
592                                         seqPNode tempNode(numReps, thisSeqs[i], it->second);
593                                         alignSeqs.push_back(tempNode);
594                     lengths.insert(thisSeqs[i].getAligned().length());
595                                 }       
596                         }else { //no names file, you are identical to yourself 
597                                 seqPNode tempNode(1, thisSeqs[i], thisSeqs[i].getName());
598                                 alignSeqs.push_back(tempNode);
599                                 lengths.insert(thisSeqs[i].getAligned().length());
600                         }
601                 }
602                 
603         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(); }
604         else if (lengths.size() == 1) { length = *(lengths.begin()); }
605         
606                 //sanity check
607                 if (error) { m->control_pressed = true; }
608                 
609                 thisSeqs.clear();
610                 
611                 return alignSeqs.size();
612         }
613         
614         catch(exception& e) {
615                 m->errorOut(e, "PreClusterCommand", "loadSeqs");
616                 exit(1);
617         }
618 }
619                                 
620 /**************************************************************************************************/
621
622 int PreClusterCommand::calcMisMatches(string seq1, string seq2){
623         try {
624                 int numBad = 0;
625                 
626                 for (int i = 0; i < seq1.length(); i++) {
627                         //do they match
628                         if (seq1[i] != seq2[i]) { numBad++; }
629                         if (numBad > diffs) { return length;  } //to far to cluster
630                 }
631                 
632                 return numBad;
633         }
634         catch(exception& e) {
635                 m->errorOut(e, "PreClusterCommand", "calcMisMatches");
636                 exit(1);
637         }
638 }
639
640 /**************************************************************************************************/
641
642 void PreClusterCommand::printData(string newfasta, string newname){
643         try {
644                 ofstream outFasta;
645                 ofstream outNames;
646                 
647                 if (bygroup) {
648                         m->openOutputFileAppend(newfasta, outFasta);
649                         m->openOutputFileAppend(newname, outNames);
650                 }else {
651                         m->openOutputFile(newfasta, outFasta);
652                         m->openOutputFile(newname, outNames);
653                 }
654                 
655                 for (int i = 0; i < alignSeqs.size(); i++) {
656                         if (alignSeqs[i].numIdentical != 0) {
657                                 alignSeqs[i].seq.printSequence(outFasta); 
658                                 outNames << alignSeqs[i].seq.getName() << '\t' << alignSeqs[i].names << endl;
659                         }
660                 }
661                 
662                 outFasta.close();
663                 outNames.close();
664                 
665         }
666         catch(exception& e) {
667                 m->errorOut(e, "PreClusterCommand", "printData");
668                 exit(1);
669         }
670 }
671 /**************************************************************************************************/
672
673 void PreClusterCommand::readNameFile(){
674         try {
675                 ifstream in;
676                 m->openInputFile(namefile, in);
677                 string firstCol, secondCol;
678                                 
679                 while (!in.eof()) {
680                         in >> firstCol >> secondCol; m->gobble(in);
681                         names[firstCol] = secondCol;
682                         int size = 1;
683
684                         for(int i=0;i<secondCol.size();i++){
685                                 if(secondCol[i] == ','){        size++; }
686                         }
687                         sizes[firstCol] = size;
688                 }
689                 in.close();
690         }
691         catch(exception& e) {
692                 m->errorOut(e, "PreClusterCommand", "readNameFile");
693                 exit(1);
694         }
695 }
696
697 /**************************************************************************************************/
698
699