]> git.donarmstrong.com Git - mothur.git/blob - distancecommand.cpp
cluster.split fix
[mothur.git] / distancecommand.cpp
1 /*
2  *  distancecommand.cpp
3  *  Mothur
4  *
5  *  Created by Sarah Westcott on 5/7/09.
6  *  Copyright 2009 Schloss Lab UMASS Amherst. All rights reserved.
7  *
8  */
9
10 #include "distancecommand.h"
11 #include "ignoregaps.h"
12 #include "eachgapdist.h"
13 #include "eachgapignore.h"
14 #include "onegapdist.h"
15 #include "onegapignore.h"
16
17 //**********************************************************************************************************************
18 vector<string> DistanceCommand::getValidParameters(){   
19         try {
20                 string Array[] =  {"fasta","oldfasta","column", "output", "calc", "countends", "cutoff", "processors", "outputdir","inputdir","compress"};
21                 vector<string> myArray (Array, Array+(sizeof(Array)/sizeof(string)));
22                 return myArray;
23         }
24         catch(exception& e) {
25                 m->errorOut(e, "DistanceCommand", "getValidParameters");
26                 exit(1);
27         }
28 }
29 //**********************************************************************************************************************
30 DistanceCommand::DistanceCommand(){     
31         try {
32                 abort = true;
33                 //initialize outputTypes
34                 vector<string> tempOutNames;
35                 outputTypes["phylip"] = tempOutNames;
36                 outputTypes["column"] = tempOutNames;
37         }
38         catch(exception& e) {
39                 m->errorOut(e, "DistanceCommand", "DistanceCommand");
40                 exit(1);
41         }
42 }
43 //**********************************************************************************************************************
44 vector<string> DistanceCommand::getRequiredParameters(){        
45         try {
46                 string Array[] =  {"fasta"};
47                 vector<string> myArray (Array, Array+(sizeof(Array)/sizeof(string)));
48                 return myArray;
49         }
50         catch(exception& e) {
51                 m->errorOut(e, "ChopSeqsCommand", "getRequiredParameters");
52                 exit(1);
53         }
54 }
55 //**********************************************************************************************************************
56 vector<string> DistanceCommand::getRequiredFiles(){     
57         try {
58                 vector<string> myArray;
59                 return myArray;
60         }
61         catch(exception& e) {
62                 m->errorOut(e, "DistanceCommand", "getRequiredFiles");
63                 exit(1);
64         }
65 }
66 //**********************************************************************************************************************
67 DistanceCommand::DistanceCommand(string option) {
68         try {
69                 abort = false;
70                 Estimators.clear();
71                                 
72                 //allow user to run help
73                 if(option == "help") { help(); abort = true; }
74                 
75                 else {
76                         //valid paramters for this command
77                         string Array[] =  {"fasta","oldfasta","column", "output", "calc", "countends", "cutoff", "processors", "outputdir","inputdir","compress"};
78
79                         vector<string> myArray (Array, Array+(sizeof(Array)/sizeof(string)));
80                         
81                         OptionParser parser(option);
82                         map<string, string> parameters = parser.getParameters();
83                         
84                         ValidParameters validParameter("dist.seqs");
85                         map<string, string>::iterator it2;
86                 
87                         //check to make sure all parameters are valid for command
88                         for (it2 = parameters.begin(); it2 != parameters.end(); it2++) { 
89                                 if (validParameter.isValidParameter(it2->first, myArray, it2->second) != true) {  abort = true;  }
90                         }
91                         
92                         //initialize outputTypes
93                         vector<string> tempOutNames;
94                         outputTypes["phylip"] = tempOutNames;
95                         outputTypes["column"] = tempOutNames;
96                 
97                         //if the user changes the input directory command factory will send this info to us in the output parameter 
98                         string inputDir = validParameter.validFile(parameters, "inputdir", false);              
99                         if (inputDir == "not found"){   inputDir = "";          }
100                         else {
101                                 string path;
102                                 it2 = parameters.find("fasta");
103                                 //user has given a template file
104                                 if(it2 != parameters.end()){ 
105                                         path = m->hasPath(it2->second);
106                                         //if the user has not given a path then, add inputdir. else leave path alone.
107                                         if (path == "") {       parameters["fasta"] = inputDir + it2->second;           }
108                                 }
109                                 
110                                 it2 = parameters.find("oldfasta");
111                                 //user has given a template file
112                                 if(it2 != parameters.end()){ 
113                                         path = m->hasPath(it2->second);
114                                         //if the user has not given a path then, add inputdir. else leave path alone.
115                                         if (path == "") {       parameters["oldfasta"] = inputDir + it2->second;                }
116                                 }
117                                 
118                                 it2 = parameters.find("column");
119                                 //user has given a template file
120                                 if(it2 != parameters.end()){ 
121                                         path = m->hasPath(it2->second);
122                                         //if the user has not given a path then, add inputdir. else leave path alone.
123                                         if (path == "") {       parameters["column"] = inputDir + it2->second;          }
124                                 }
125                         }
126
127                         //check for required parameters
128                         fastafile = validParameter.validFile(parameters, "fasta", true);
129                         if (fastafile == "not found") { m->mothurOut("fasta is a required parameter for the dist.seqs command."); m->mothurOutEndLine(); abort = true; }
130                         else if (fastafile == "not open") { abort = true; }     
131                         else{
132                                 ifstream inFASTA;
133                                 m->openInputFile(fastafile, inFASTA);
134                                 alignDB = SequenceDB(inFASTA); 
135                                 inFASTA.close();
136                         }
137                         
138                         oldfastafile = validParameter.validFile(parameters, "oldfasta", true);
139                         if (oldfastafile == "not found") { oldfastafile = ""; }
140                         else if (oldfastafile == "not open") { abort = true; }  
141                         
142                         column = validParameter.validFile(parameters, "column", true);
143                         if (column == "not found") { column = ""; }
144                         else if (column == "not open") { abort = true; }        
145                         
146                         //if the user changes the output directory command factory will send this info to us in the output parameter 
147                         outputDir = validParameter.validFile(parameters, "outputdir", false);           if (outputDir == "not found"){  
148                                 outputDir = ""; 
149                                 outputDir += m->hasPath(fastafile); //if user entered a file with a path then preserve it       
150                         }
151
152                         //check for optional parameter and set defaults
153                         // ...at some point should added some additional type checking...
154                         calc = validParameter.validFile(parameters, "calc", false);                     
155                         if (calc == "not found") { calc = "onegap";  }
156                         else { 
157                                  if (calc == "default")  {  calc = "onegap";  }
158                         }
159                         m->splitAtDash(calc, Estimators);
160
161                         string temp;
162                         temp = validParameter.validFile(parameters, "countends", false);        if(temp == "not found"){        temp = "T";     }
163                         convert(temp, countends); 
164                         
165                         temp = validParameter.validFile(parameters, "cutoff", false);           if(temp == "not found"){        temp = "1.0"; }
166                         convert(temp, cutoff); 
167                         
168                         temp = validParameter.validFile(parameters, "processors", false);       if(temp == "not found"){        temp = "1"; }
169                         convert(temp, processors); 
170                         
171                         temp = validParameter.validFile(parameters, "compress", false);         if(temp == "not found"){  temp = "F"; }
172                         convert(temp, compress);
173
174                         output = validParameter.validFile(parameters, "output", false);         if(output == "not found"){      output = "column"; }
175                         
176                         if (((column != "") && (oldfastafile == "")) || ((column == "") && (oldfastafile != ""))) { m->mothurOut("If you provide column or oldfasta, you must provide both."); m->mothurOutEndLine(); abort=true; }
177                         
178                         if ((column != "") && (oldfastafile != "") && (output != "column")) { m->mothurOut("You have provided column and oldfasta, indicating you want to append distances to your column file. Your output must be in column format to do so."); m->mothurOutEndLine(); abort=true; }
179                         
180                         if ((output != "column") && (output != "lt") && (output != "square")) { m->mothurOut(output + " is not a valid output form. Options are column, lt and square. I will use column."); m->mothurOutEndLine(); output = "column"; }
181                         
182                         ValidCalculators validCalculator;
183                         
184                         if (m->isTrue(countends) == true) {
185                                 for (int i=0; i<Estimators.size(); i++) {
186                                         if (validCalculator.isValidCalculator("distance", Estimators[i]) == true) { 
187                                                 if (Estimators[i] == "nogaps")                  {       distCalculator = new ignoreGaps();      }
188                                                 else if (Estimators[i] == "eachgap")    {       distCalculator = new eachGapDist();     }
189                                                 else if (Estimators[i] == "onegap")             {       distCalculator = new oneGapDist();      }
190                                         }
191                                 }
192                         }else {
193                                 for (int i=0; i<Estimators.size(); i++) {
194                                         if (validCalculator.isValidCalculator("distance", Estimators[i]) == true) { 
195                                                 if (Estimators[i] == "nogaps")          {       distCalculator = new ignoreGaps();                                      }
196                                                 else if (Estimators[i] == "eachgap"){   distCalculator = new eachGapIgnoreTermGapDist();        }
197                                                 else if (Estimators[i] == "onegap")     {       distCalculator = new oneGapIgnoreTermGapDist();         }
198                                         }
199                                 }
200                         }
201
202                 }
203                                 
204         }
205         catch(exception& e) {
206                 m->errorOut(e, "DistanceCommand", "DistanceCommand");
207                 exit(1);
208         }
209 }
210
211 //**********************************************************************************************************************
212
213 DistanceCommand::~DistanceCommand(){
214         
215         for(int i=0;i<lines.size();i++){
216                 delete lines[i];
217         }
218         
219 }
220         
221 //**********************************************************************************************************************
222
223 void DistanceCommand::help(){
224         try {
225                 m->mothurOut("The dist.seqs command reads a file containing sequences and creates a distance file.\n");
226                 m->mothurOut("The dist.seqs command parameters are fasta, oldfasta, column, calc, countends, output, compress, cutoff and processors.  \n");
227                 m->mothurOut("The fasta parameter is required.\n");
228                 m->mothurOut("The oldfasta and column parameters allow you to append the distances calculated to the column file.\n");
229                 m->mothurOut("The calc parameter allows you to specify the method of calculating the distances.  Your options are: nogaps, onegap or eachgap. The default is onegap.\n");
230                 m->mothurOut("The countends parameter allows you to specify whether to include terminal gaps in distance.  Your options are: T or F. The default is T.\n");
231                 m->mothurOut("The cutoff parameter allows you to specify maximum distance to keep. The default is 1.0.\n");
232                 m->mothurOut("The output parameter allows you to specify format of your distance matrix. Options are column, lt, and square. The default is column.\n");
233                 m->mothurOut("The processors parameter allows you to specify number of processors to use.  The default is 1.\n");
234                 m->mothurOut("The compress parameter allows you to indicate that you want the resulting distance file compressed.  The default is false.\n");
235                 m->mothurOut("The dist.seqs command should be in the following format: \n");
236                 m->mothurOut("dist.seqs(fasta=yourFastaFile, calc=yourCalc, countends=yourEnds, cutoff= yourCutOff, processors=yourProcessors) \n");
237                 m->mothurOut("Example dist.seqs(fasta=amazon.fasta, calc=eachgap, countends=F, cutoff= 2.0, processors=3).\n");
238                 m->mothurOut("Note: No spaces between parameter labels (i.e. calc), '=' and parameters (i.e.yourCalc).\n\n");
239         }
240         catch(exception& e) {
241                 m->errorOut(e, "DistanceCommand", "help");
242                 exit(1);
243         }
244 }
245 //**********************************************************************************************************************
246
247 int DistanceCommand::execute(){
248         try {
249                 
250                 if (abort == true) { return 0; }
251                 
252                 int startTime = time(NULL);
253                 
254                 //save number of new sequence
255                 numNewFasta = alignDB.getNumSeqs();
256                 
257                 //sanity check the oldfasta and column file as well as add oldfasta sequences to alignDB
258                 if ((oldfastafile != "") && (column != ""))  {  if (!(sanityCheck())) { return 0; }  }
259                 
260                 if (m->control_pressed) { return 0; }
261                 
262                 int numSeqs = alignDB.getNumSeqs();
263                 cutoff += 0.005;
264                 
265                 string outputFile;
266                                 
267                 if (output == "lt") { //does the user want lower triangle phylip formatted file 
268                         outputFile = outputDir + m->getRootName(m->getSimpleName(fastafile)) + "phylip.dist";
269                         remove(outputFile.c_str()); outputTypes["phylip"].push_back(outputFile);
270                         
271                         //output numSeqs to phylip formatted dist file
272                 }else if (output == "column") { //user wants column format
273                         outputFile = outputDir + m->getRootName(m->getSimpleName(fastafile)) + "dist";
274                         outputTypes["column"].push_back(outputFile);
275                         
276                         //so we don't accidentally overwrite
277                         if (outputFile == column) { 
278                                 string tempcolumn = column + ".old"; 
279                                 rename(column.c_str(), tempcolumn.c_str());
280                         }
281                         
282                         remove(outputFile.c_str());
283                 }else { //assume square
284                         outputFile = outputDir + m->getRootName(m->getSimpleName(fastafile)) + "square.dist";
285                         remove(outputFile.c_str());
286                         outputTypes["phylip"].push_back(outputFile);
287                 }
288                 
289
290 #ifdef USE_MPI
291                 
292                 int pid, start, end; 
293                 int tag = 2001;
294                                 
295                 MPI_Status status; 
296                 MPI_Comm_size(MPI_COMM_WORLD, &processors); //set processors to the number of mpi processes running
297                 MPI_Comm_rank(MPI_COMM_WORLD, &pid); //find out who we are
298                 
299                 //each process gets where it should start and stop in the file
300                 if (output != "square") {
301                         start = int (sqrt(float(pid)/float(processors)) * numSeqs);
302                         end = int (sqrt(float(pid+1)/float(processors)) * numSeqs);
303                 }else{
304                         start = int ((float(pid)/float(processors)) * numSeqs);
305                         end = int ((float(pid+1)/float(processors)) * numSeqs);
306                 }
307                 
308                 if (output == "column") {
309                         MPI_File outMPI;
310                         int amode=MPI_MODE_CREATE|MPI_MODE_WRONLY; 
311
312                         //char* filename = new char[outputFile.length()];
313                         //memcpy(filename, outputFile.c_str(), outputFile.length());
314                         
315                         char filename[1024];
316                         strcpy(filename, outputFile.c_str());
317                         
318                         MPI_File_open(MPI_COMM_WORLD, filename, amode, MPI_INFO_NULL, &outMPI);
319                         //delete filename;
320
321                         if (pid == 0) { //you are the root process 
322                         
323                                 //do your part
324                                 string outputMyPart;
325                                 
326                                 driverMPI(start, end, outMPI, cutoff); 
327                                 
328                                 if (m->control_pressed) { outputTypes.clear(); MPI_File_close(&outMPI); delete distCalculator;  return 0; }
329                         
330                                 //wait on chidren
331                                 for(int i = 1; i < processors; i++) { 
332                                         if (m->control_pressed) { outputTypes.clear();  MPI_File_close(&outMPI);  delete distCalculator;  return 0; }
333                                         
334                                         char buf[5];
335                                         MPI_Recv(buf, 5, MPI_CHAR, i, tag, MPI_COMM_WORLD, &status); 
336                                 }
337                         }else { //you are a child process
338                                 //do your part
339                                 driverMPI(start, end, outMPI, cutoff); 
340                                 
341                                 if (m->control_pressed) { outputTypes.clear();  MPI_File_close(&outMPI);  delete distCalculator;  return 0; }
342                         
343                                 char buf[5];
344                                 strcpy(buf, "done"); 
345                                 //tell parent you are done.
346                                 MPI_Send(buf, 5, MPI_CHAR, 0, tag, MPI_COMM_WORLD);
347                         }
348                         
349                         MPI_File_close(&outMPI);
350                         
351                 }else { //lower triangle format
352                         if (pid == 0) { //you are the root process 
353                         
354                                 //do your part
355                                 string outputMyPart;
356                                 unsigned long int mySize;
357                                 
358                                 if (output != "square"){ driverMPI(start, end, outputFile, mySize); }
359                                 else { driverMPI(start, end, outputFile, mySize, output); }
360         
361                                 if (m->control_pressed) {  outputTypes.clear();  delete distCalculator;  return 0; }
362                                 
363                                 int amode=MPI_MODE_APPEND|MPI_MODE_WRONLY|MPI_MODE_CREATE; //
364                                 MPI_File outMPI;
365                                 MPI_File inMPI;
366
367                                 //char* filename = new char[outputFile.length()];
368                                 //memcpy(filename, outputFile.c_str(), outputFile.length());
369                                 
370                                 char filename[1024];
371                                 strcpy(filename, outputFile.c_str());
372
373                                 MPI_File_open(MPI_COMM_SELF, filename, amode, MPI_INFO_NULL, &outMPI);
374                                 //delete filename;
375
376                                 //wait on chidren
377                                 for(int b = 1; b < processors; b++) { 
378                                         unsigned long int fileSize;
379                                         
380                                         if (m->control_pressed) { outputTypes.clear();  MPI_File_close(&outMPI);  delete distCalculator;  return 0; }
381                                         
382                                         MPI_Recv(&fileSize, 1, MPI_LONG, b, tag, MPI_COMM_WORLD, &status); 
383                                         
384                                         string outTemp = outputFile + toString(b) + ".temp";
385
386                                         char* buf = new char[outTemp.length()];
387                                         memcpy(buf, outTemp.c_str(), outTemp.length());
388                                         
389                                         MPI_File_open(MPI_COMM_SELF, buf, MPI_MODE_DELETE_ON_CLOSE|MPI_MODE_RDONLY, MPI_INFO_NULL, &inMPI);
390                                         delete buf;
391
392                                         int count = 0;
393                                         while (count < fileSize) { 
394                                                 char buf2[1];
395                                                 MPI_File_read(inMPI, buf2, 1, MPI_CHAR, &status);
396                                                 MPI_File_write(outMPI, buf2, 1, MPI_CHAR, &status);
397                                                 count += 1;
398                                         }
399                                         
400                                         MPI_File_close(&inMPI); //deleted on close
401                                 }
402                                 
403                                 MPI_File_close(&outMPI);
404                         }else { //you are a child process
405                                 //do your part
406                                 unsigned long int size;
407                                 if (output != "square"){ driverMPI(start, end, (outputFile + toString(pid) + ".temp"), size); }
408                                 else { driverMPI(start, end, (outputFile + toString(pid) + ".temp"), size, output); }
409                                 
410                                 if (m->control_pressed) { delete distCalculator;  return 0; }
411                         
412                                 //tell parent you are done.
413                                 MPI_Send(&size, 1, MPI_LONG, 0, tag, MPI_COMM_WORLD);
414                         }
415                 }
416                 MPI_Barrier(MPI_COMM_WORLD); //make everyone wait - just in case
417 #else           
418                                 
419         #if defined (__APPLE__) || (__MACH__) || (linux) || (__linux)
420                 //if you don't need to fork anything
421                 if(processors == 1){
422                         if (output != "square") {  driver(0, numSeqs, outputFile, cutoff); }
423                         else { driver(0, numSeqs, outputFile, "square");  }
424                 }else{ //you have multiple processors
425                         
426                         unsigned long int numDists = 0;
427                         
428                         if (output == "square") {
429                                  numDists = numSeqs * numSeqs;
430                         }else {
431                                 for(int i=0;i<numSeqs;i++){
432                                         for(int j=0;j<i;j++){
433                                                 numDists++;
434                                                 if (numDists > processors) { break; }
435                                         }
436                                 }
437                         }
438                         
439                         if (numDists < processors) { processors = numDists; }
440                         
441                         for (int i = 0; i < processors; i++) {
442                                 lines.push_back(new linePair());
443                                 if (output != "square") {
444                                         lines[i]->start = int (sqrt(float(i)/float(processors)) * numSeqs);
445                                         lines[i]->end = int (sqrt(float(i+1)/float(processors)) * numSeqs);
446                                 }else{
447                                         lines[i]->start = int ((float(i)/float(processors)) * numSeqs);
448                                         lines[i]->end = int ((float(i+1)/float(processors)) * numSeqs);
449                                 }
450                                 //cout << i << '\t' << lines[i]->start << '\t' << lines[i]->end << endl;
451                         }
452
453                         createProcesses(outputFile); 
454                 }
455         #else
456                 //ifstream inFASTA;
457                 if (output != "square") {  driver(0, numSeqs, outputFile, cutoff); }
458                 else { driver(0, numSeqs, outputFile, "square");  }
459         #endif
460         
461 #endif
462                 if (m->control_pressed) { outputTypes.clear();  delete distCalculator; remove(outputFile.c_str()); return 0; }
463                 
464                 #ifdef USE_MPI
465                         MPI_Comm_rank(MPI_COMM_WORLD, &pid); 
466                                         
467                         if (pid == 0) { //only one process should output to screen
468                 #endif
469                 
470                 //if (output == "square") {  convertMatrix(outputFile); }
471                 
472                 ifstream fileHandle;
473                 fileHandle.open(outputFile.c_str());
474                 if(fileHandle) {
475                         m->gobble(fileHandle);
476                         if (fileHandle.eof()) { m->mothurOut(outputFile + " is blank. This can result if there are no distances below your cutoff.");  m->mothurOutEndLine(); }
477                 }
478                 
479                 //append the old column file to the new one
480                 if ((oldfastafile != "") && (column != ""))  {
481                         //we had to rename the column file so we didnt overwrite above, but we want to keep old name
482                         if (outputFile == column) { 
483                                 string tempcolumn = column + ".old";
484                                 m->appendFiles(tempcolumn, outputFile);
485                                 remove(tempcolumn.c_str());
486                         }else{
487                                 m->appendFiles(outputFile, column);
488                                 remove(outputFile.c_str());
489                                 outputFile = column;
490                         }
491                         
492                         if (outputDir != "") { 
493                                 string newOutputName = outputDir + m->getSimpleName(outputFile);
494                                 rename(outputFile.c_str(), newOutputName.c_str());
495                                 remove(outputFile.c_str());
496                                 outputFile = newOutputName;
497                         }
498                 }
499
500                 
501                 #ifdef USE_MPI
502                         }
503                 #endif
504                 
505                 if (m->control_pressed) { outputTypes.clear();  delete distCalculator; remove(outputFile.c_str()); return 0; }
506                 
507                 delete distCalculator;
508                 
509                 m->mothurOutEndLine();
510                 m->mothurOut("Output File Name: "); m->mothurOutEndLine();
511                 m->mothurOut(outputFile); m->mothurOutEndLine();
512                 m->mothurOutEndLine();
513                 m->mothurOut("It took " + toString(time(NULL) - startTime) + " to calculate the distances for " + toString(numSeqs) + " sequences."); m->mothurOutEndLine();
514
515
516                 if (m->isTrue(compress)) {
517                         m->mothurOut("Compressing..."); m->mothurOutEndLine();
518                         m->mothurOut("(Replacing " + outputFile + " with " + outputFile + ".gz)"); m->mothurOutEndLine();
519                         system(("gzip -v " + outputFile).c_str());
520                         outputNames.push_back(outputFile + ".gz");
521                 }else { outputNames.push_back(outputFile); }
522
523                 return 0;
524                 
525         }
526         catch(exception& e) {
527                 m->errorOut(e, "DistanceCommand", "execute");
528                 exit(1);
529         }
530 }
531 /**************************************************************************************************/
532 void DistanceCommand::createProcesses(string filename) {
533         try {
534 #if defined (__APPLE__) || (__MACH__) || (linux) || (__linux)
535                 int process = 1;
536                 processIDS.clear();
537                 
538                 //loop through and create all the processes you want
539                 while (process != processors) {
540                         int pid = fork();
541                         
542                         if (pid > 0) {
543                                 processIDS[lines[process]->end] = pid;  //create map from line number to pid so you can append files in correct order later
544                                 process++;
545                         }else if (pid == 0){
546                                 if (output != "square") {  driver(lines[process]->start, lines[process]->end, filename + toString(getpid()) + ".temp", cutoff); }
547                                 else { driver(lines[process]->start, lines[process]->end, filename + toString(getpid()) + ".temp", "square"); }
548                                 exit(0);
549                         }else { 
550                                 m->mothurOut("[ERROR]: unable to spawn the necessary processes. Error code: " + toString(pid)); m->mothurOutEndLine(); 
551                                 for (map<int, int>::iterator it = processIDS.begin(); it != processIDS.end(); it++) { int temp = it->second; kill (temp, SIGINT); }
552                                 exit(0);
553                         }
554                 }
555                 
556                 //parent does its part
557                 if (output != "square") {  driver(lines[0]->start, lines[0]->end, filename, cutoff); }
558                 else { driver(lines[0]->start, lines[0]->end, filename, "square"); }
559                 
560                 
561                 //force parent to wait until all the processes are done
562                 for (map<int, int>::iterator it = processIDS.begin(); it != processIDS.end(); it++) { 
563                         int temp = it->second;
564                         wait(&temp);
565                 }
566                 
567                 //append and remove temp files
568                 for (map<int, int>::iterator it = processIDS.begin(); it != processIDS.end(); it++) {
569                         m->appendFiles((filename + toString(it->second) + ".temp"), filename);
570                         remove((filename + toString(it->second) + ".temp").c_str());
571                 }
572 #endif
573         }
574         catch(exception& e) {
575                 m->errorOut(e, "DistanceCommand", "createProcesses");
576                 exit(1);
577         }
578 }
579
580 /**************************************************************************************************/
581 /////// need to fix to work with calcs and sequencedb
582 int DistanceCommand::driver(int startLine, int endLine, string dFileName, float cutoff){
583         try {
584
585                 int startTime = time(NULL);
586                 
587                 //column file
588                 ofstream outFile(dFileName.c_str(), ios::trunc);
589                 outFile.setf(ios::fixed, ios::showpoint);
590                 outFile << setprecision(4);
591                 
592                 if((output == "lt") && startLine == 0){ outFile << alignDB.getNumSeqs() << endl;        }
593                 
594                 for(int i=startLine;i<endLine;i++){
595                         if(output == "lt")      {       
596                                 string name = alignDB.get(i).getName();
597                                 if (name.length() < 10) { //pad with spaces to make compatible
598                                         while (name.length() < 10) {  name += " ";  }
599                                 }
600                                 outFile << name << '\t';        
601                         }
602                         for(int j=0;j<i;j++){
603                                 
604                                 if (m->control_pressed) { outFile.close(); return 0;  }
605                                 
606                                 //if there was a column file given and we are appending, we don't want to calculate the distances that are already in the column file
607                                 //the alignDB contains the new sequences and then the old, so if i an oldsequence and j is an old sequence then break out of this loop
608                                 if ((i >= numNewFasta) && (j >= numNewFasta)) { break; }
609                                 
610                                 distCalculator->calcDist(alignDB.get(i), alignDB.get(j));
611                                 double dist = distCalculator->getDist();
612                                 
613                                 if(dist <= cutoff){
614                                         if (output == "column") { outFile << alignDB.get(i).getName() << ' ' << alignDB.get(j).getName() << ' ' << dist << endl; }
615                                 }
616                                 if (output == "lt") {  outFile << dist << '\t'; }
617                         }
618                         
619                         if (output == "lt") { outFile << endl; }
620                         
621                         if(i % 100 == 0){
622                                 m->mothurOut(toString(i) + "\t" + toString(time(NULL) - startTime)); m->mothurOutEndLine();
623                         }
624                         
625                 }
626                 m->mothurOut(toString(endLine-1) + "\t" + toString(time(NULL) - startTime)); m->mothurOutEndLine();
627                 
628                 outFile.close();
629                 
630                 return 1;
631         }
632         catch(exception& e) {
633                 m->errorOut(e, "DistanceCommand", "driver");
634                 exit(1);
635         }
636 }
637 /**************************************************************************************************/
638 /////// need to fix to work with calcs and sequencedb
639 int DistanceCommand::driver(int startLine, int endLine, string dFileName, string square){
640         try {
641
642                 int startTime = time(NULL);
643                 
644                 //column file
645                 ofstream outFile(dFileName.c_str(), ios::trunc);
646                 outFile.setf(ios::fixed, ios::showpoint);
647                 outFile << setprecision(4);
648                 
649                 if(startLine == 0){     outFile << alignDB.getNumSeqs() << endl;        }
650                 
651                 for(int i=startLine;i<endLine;i++){
652                                 
653                         string name = alignDB.get(i).getName();
654                         //pad with spaces to make compatible
655                         if (name.length() < 10) { while (name.length() < 10) {  name += " ";  } }
656                                 
657                         outFile << name << '\t';        
658                         
659                         for(int j=0;j<alignDB.getNumSeqs();j++){
660                                 
661                                 if (m->control_pressed) { outFile.close(); return 0;  }
662                                 
663                                 distCalculator->calcDist(alignDB.get(i), alignDB.get(j));
664                                 double dist = distCalculator->getDist();
665                                 
666                                 outFile << dist << '\t'; 
667                         }
668                         
669                         outFile << endl; 
670                         
671                         if(i % 100 == 0){
672                                 m->mothurOut(toString(i) + "\t" + toString(time(NULL) - startTime)); m->mothurOutEndLine();
673                         }
674                         
675                 }
676                 m->mothurOut(toString(endLine-1) + "\t" + toString(time(NULL) - startTime)); m->mothurOutEndLine();
677                 
678                 outFile.close();
679                 
680                 return 1;
681         }
682         catch(exception& e) {
683                 m->errorOut(e, "DistanceCommand", "driver");
684                 exit(1);
685         }
686 }
687 #ifdef USE_MPI
688 /**************************************************************************************************/
689 /////// need to fix to work with calcs and sequencedb
690 int DistanceCommand::driverMPI(int startLine, int endLine, MPI_File& outMPI, float cutoff){
691         try {
692                 MPI_Status status;
693                 int startTime = time(NULL);
694                 
695                 string outputString = "";
696                 
697                 for(int i=startLine;i<endLine;i++){
698         
699                         for(int j=0;j<i;j++){
700                                 
701                                 if (m->control_pressed) {  return 0;  }
702                                 
703                                 //if there was a column file given and we are appending, we don't want to calculate the distances that are already in the column file
704                                 //the alignDB contains the new sequences and then the old, so if i an oldsequence and j is an old sequence then break out of this loop
705                                 if ((i >= numNewFasta) && (j >= numNewFasta)) { break; }
706                                 
707                                 distCalculator->calcDist(alignDB.get(i), alignDB.get(j));
708                                 double dist = distCalculator->getDist();
709                                 
710                                 if(dist <= cutoff){
711                                          outputString += (alignDB.get(i).getName() + ' ' + alignDB.get(j).getName() + ' ' + toString(dist) + '\n'); 
712                                 }
713                         }
714                         
715                         if(i % 100 == 0){
716                                 //m->mothurOut(toString(i) + "\t" + toString(time(NULL) - startTime)); m->mothurOutEndLine();
717                                 cout << i << '\t' << (time(NULL) - startTime) << endl;
718                         }
719                         
720                          
721                         //send results to parent
722                         int length = outputString.length();
723
724                         char* buf = new char[length];
725                         memcpy(buf, outputString.c_str(), length);
726                         
727                         MPI_File_write_shared(outMPI, buf, length, MPI_CHAR, &status);
728                         outputString = "";
729                         delete buf;
730                         
731                 }
732                 
733                 //m->mothurOut(toString(endLine-1) + "\t" + toString(time(NULL) - startTime)); m->mothurOutEndLine();
734                 cout << (endLine-1) << '\t' << (time(NULL) - startTime) << endl;                
735                 return 1;
736         }
737         catch(exception& e) {
738                 m->errorOut(e, "DistanceCommand", "driverMPI");
739                 exit(1);
740         }
741 }
742 /**************************************************************************************************/
743 /////// need to fix to work with calcs and sequencedb
744 int DistanceCommand::driverMPI(int startLine, int endLine, string file, unsigned long int& size){
745         try {
746                 MPI_Status status;
747                 
748                 MPI_File outMPI;
749                 int amode=MPI_MODE_CREATE|MPI_MODE_WRONLY; 
750
751                 //char* filename = new char[file.length()];
752                 //memcpy(filename, file.c_str(), file.length());
753                 
754                 char filename[1024];
755                 strcpy(filename, file.c_str());
756
757                 MPI_File_open(MPI_COMM_SELF, filename, amode, MPI_INFO_NULL, &outMPI);
758                 //delete filename;
759
760                 int startTime = time(NULL);
761                 
762                 string outputString = "";
763                 size = 0;
764                 
765                 if(startLine == 0){     outputString += toString(alignDB.getNumSeqs()) + "\n";  }
766                 
767                 for(int i=startLine;i<endLine;i++){
768                                 
769                         string name = alignDB.get(i).getName();
770                         if (name.length() < 10) { //pad with spaces to make compatible
771                                 while (name.length() < 10) {  name += " ";  }
772                         }
773                         outputString += name + "\t";    
774                         
775                         for(int j=0;j<i;j++){
776                                 
777                                 if (m->control_pressed) {  return 0;  }
778                                 
779                                 distCalculator->calcDist(alignDB.get(i), alignDB.get(j));
780                                 double dist = distCalculator->getDist();
781                                 
782                                 outputString += toString(dist) + "\t"; 
783                         }
784                         
785                         outputString += "\n"; 
786
787                 
788                         if(i % 100 == 0){
789                                 //m->mothurOut(toString(i) + "\t" + toString(time(NULL) - startTime)); m->mothurOutEndLine();
790                                 cout << i << '\t' << (time(NULL) - startTime) << endl;
791                         }
792                         
793                         
794                         //send results to parent
795                         int length = outputString.length();
796                         char* buf = new char[length];
797                         memcpy(buf, outputString.c_str(), length);
798                         
799                         MPI_File_write(outMPI, buf, length, MPI_CHAR, &status);
800                         size += outputString.length();
801                         outputString = "";
802                         delete buf;
803                 }
804                 
805                 //m->mothurOut(toString(endLine-1) + "\t" + toString(time(NULL) - startTime)); m->mothurOutEndLine();
806                 cout << (endLine-1) << '\t' << (time(NULL) - startTime) << endl;
807                 MPI_File_close(&outMPI);
808                 
809                 return 1;
810         }
811         catch(exception& e) {
812                 m->errorOut(e, "DistanceCommand", "driverMPI");
813                 exit(1);
814         }
815 }
816 /**************************************************************************************************/
817 /////// need to fix to work with calcs and sequencedb
818 int DistanceCommand::driverMPI(int startLine, int endLine, string file, unsigned long int& size, string square){
819         try {
820                 MPI_Status status;
821                 
822                 MPI_File outMPI;
823                 int amode=MPI_MODE_CREATE|MPI_MODE_WRONLY; 
824
825                 //char* filename = new char[file.length()];
826                 //memcpy(filename, file.c_str(), file.length());
827                 
828                 char filename[1024];
829                 strcpy(filename, file.c_str());
830
831                 MPI_File_open(MPI_COMM_SELF, filename, amode, MPI_INFO_NULL, &outMPI);
832                 //delete filename;
833
834                 int startTime = time(NULL);
835                 
836                 string outputString = "";
837                 size = 0;
838                 
839                 if(startLine == 0){     outputString += toString(alignDB.getNumSeqs()) + "\n";  }
840                 
841                 for(int i=startLine;i<endLine;i++){
842                                 
843                         string name = alignDB.get(i).getName();
844                         if (name.length() < 10) { //pad with spaces to make compatible
845                                 while (name.length() < 10) {  name += " ";  }
846                         }
847                         outputString += name + "\t";    
848                         
849                         for(int j=0;j<alignDB.getNumSeqs();j++){
850                                 
851                                 if (m->control_pressed) {  return 0;  }
852                                 
853                                 distCalculator->calcDist(alignDB.get(i), alignDB.get(j));
854                                 double dist = distCalculator->getDist();
855                                 
856                                 outputString += toString(dist) + "\t"; 
857                         }
858                         
859                         outputString += "\n"; 
860
861                 
862                         if(i % 100 == 0){
863                                 //m->mothurOut(toString(i) + "\t" + toString(time(NULL) - startTime)); m->mothurOutEndLine();
864                                 cout << i << '\t' << (time(NULL) - startTime) << endl;
865                         }
866                         
867                         
868                         //send results to parent
869                         int length = outputString.length();
870                         char* buf = new char[length];
871                         memcpy(buf, outputString.c_str(), length);
872                         
873                         MPI_File_write(outMPI, buf, length, MPI_CHAR, &status);
874                         size += outputString.length();
875                         outputString = "";
876                         delete buf;
877                 }
878                 
879                 //m->mothurOut(toString(endLine-1) + "\t" + toString(time(NULL) - startTime)); m->mothurOutEndLine();
880                 cout << (endLine-1) << '\t' << (time(NULL) - startTime) << endl;
881                 MPI_File_close(&outMPI);
882                 
883                 return 1;
884         }
885         catch(exception& e) {
886                 m->errorOut(e, "DistanceCommand", "driverMPI");
887                 exit(1);
888         }
889 }
890 #endif
891 /**************************************************************************************************
892 int DistanceCommand::convertMatrix(string outputFile) {
893         try{
894
895                 //sort file by first column so the distances for each row are together
896                 string outfile = m->getRootName(outputFile) + "sorted.dist.temp";
897                 
898                 //use the unix sort 
899                 #if defined (__APPLE__) || (__MACH__) || (linux) || (__linux)
900                         string command = "sort -n " + outputFile + " -o " + outfile;
901                         system(command.c_str());
902                 #else //sort using windows sort
903                         string command = "sort " + outputFile + " /O " + outfile;
904                         system(command.c_str());
905                 #endif
906                 
907
908                 //output to new file distance for each row and save positions in file where new row begins
909                 ifstream in;
910                 m->openInputFile(outfile, in);
911                 
912                 ofstream out;
913                 m->openOutputFile(outputFile, out);
914                 
915                 out.setf(ios::fixed, ios::floatfield); out.setf(ios::showpoint);
916
917                 out << alignDB.getNumSeqs() << endl;
918                 
919                 //get first currentRow
920                 string first, currentRow, second;
921                 float dist;
922                 map<string, float> rowDists; //take advantage of the fact that maps are already sorted by key 
923                 map<string, float>::iterator it;
924                 
925                 in >> first;
926                 currentRow = first;
927                 
928                 rowDists[first] = 0.00; //distance to yourself is 0.0
929                 
930                 in.seekg(0);
931                 //m->openInputFile(outfile, in);
932                 
933                 while(!in.eof()) {
934                         if (m->control_pressed) { in.close(); remove(outfile.c_str()); out.close(); return 0; }
935                         
936                         in >> first >> second >> dist; m->gobble(in);
937                                 
938                         if (first != currentRow) {
939                                 //print out last row
940                                 out << currentRow << '\t'; //print name
941
942                                 //print dists
943                                 for (it = rowDists.begin(); it != rowDists.end(); it++) {
944                                         out << it->second << '\t';
945                                 }
946                                 out << endl;
947                                 
948                                 //start new row
949                                 currentRow = first;
950                                 rowDists.clear();
951                                 rowDists[first] = 0.00;
952                                 rowDists[second] = dist;
953                         }else{
954                                 rowDists[second] = dist;
955                         }
956                 }
957                 //print out last row
958                 out << currentRow << '\t'; //print name
959                                 
960                 //print dists
961                 for (it = rowDists.begin(); it != rowDists.end(); it++) {
962                         out << it->second << '\t';
963                 }
964                 out << endl;
965                 
966                 in.close();
967                 out.close();
968                 
969                 remove(outfile.c_str());
970                 
971                 return 1;
972                 
973         }
974         catch(exception& e) {
975                 m->errorOut(e, "DistanceCommand", "convertMatrix");
976                 exit(1);
977         }
978 }
979 /**************************************************************************************************
980 int DistanceCommand::convertToLowerTriangle(string outputFile) {
981         try{
982
983                 //sort file by first column so the distances for each row are together
984                 string outfile = m->getRootName(outputFile) + "sorted.dist.temp";
985                 
986                 //use the unix sort 
987                 #if defined (__APPLE__) || (__MACH__) || (linux) || (__linux)
988                         string command = "sort -n " + outputFile + " -o " + outfile;
989                         system(command.c_str());
990                 #else //sort using windows sort
991                         string command = "sort " + outputFile + " /O " + outfile;
992                         system(command.c_str());
993                 #endif
994                 
995
996                 //output to new file distance for each row and save positions in file where new row begins
997                 ifstream in;
998                 m->openInputFile(outfile, in);
999                 
1000                 ofstream out;
1001                 m->openOutputFile(outputFile, out);
1002                 
1003                 out.setf(ios::fixed, ios::floatfield); out.setf(ios::showpoint);
1004
1005                 out << alignDB.getNumSeqs() << endl;
1006                 
1007                 //get first currentRow
1008                 string first, currentRow, second;
1009                 float dist;
1010                 int i, j;
1011                 i = 0; j = 0;
1012                 map<string, float> rowDists; //take advantage of the fact that maps are already sorted by key 
1013                 map<string, float>::iterator it;
1014                 
1015                 in >> first;
1016                 currentRow = first;
1017                 
1018                 rowDists[first] = 0.00; //distance to yourself is 0.0
1019                 
1020                 in.seekg(0);
1021                 //m->openInputFile(outfile, in);
1022                 
1023                 while(!in.eof()) {
1024                         if (m->control_pressed) { in.close(); remove(outfile.c_str()); out.close(); return 0; }
1025                         
1026                         in >> first >> second >> dist; m->gobble(in);
1027                                 
1028                         if (first != currentRow) {
1029                                 //print out last row
1030                                 out << currentRow << '\t'; //print name
1031
1032                                 //print dists
1033                                 for (it = rowDists.begin(); it != rowDists.end(); it++) {
1034                                         if (j >= i) { break; }
1035                                         out << it->second << '\t';
1036                                         j++;
1037                                 }
1038                                 out << endl;
1039                                 
1040                                 //start new row
1041                                 currentRow = first;
1042                                 rowDists.clear();
1043                                 rowDists[first] = 0.00;
1044                                 rowDists[second] = dist;
1045                                 j = 0;
1046                                 i++;
1047                         }else{
1048                                 rowDists[second] = dist;
1049                         }
1050                 }
1051                 //print out last row
1052                 out << currentRow << '\t'; //print name
1053                                 
1054                 //print dists
1055                 for (it = rowDists.begin(); it != rowDists.end(); it++) {
1056                         out << it->second << '\t';
1057                 }
1058                 out << endl;
1059                 
1060                 in.close();
1061                 out.close();
1062                 
1063                 remove(outfile.c_str());
1064                 
1065                 return 1;
1066                 
1067         }
1068         catch(exception& e) {
1069                 m->errorOut(e, "DistanceCommand", "convertToLowerTriangle");
1070                 exit(1);
1071         }
1072 }
1073 /**************************************************************************************************/
1074 //its okay if the column file does not contain all the names in the fasta file, since some distance may have been above a cutoff,
1075 //but no sequences can be in the column file that are not in oldfasta. also, if a distance is above the cutoff given then remove it.
1076 //also check to make sure the 2 files have the same alignment length.
1077 bool DistanceCommand::sanityCheck() {
1078         try{
1079                 bool good = true;
1080                 
1081                 //make sure the 2 fasta files have the same alignment length
1082                 ifstream in;
1083                 m->openInputFile(fastafile, in);
1084                 int fastaAlignLength = 0;
1085                 if (in) { 
1086                         Sequence tempIn(in);
1087                         fastaAlignLength = tempIn.getAligned().length();
1088                 }
1089                 in.close();
1090                 
1091                 ifstream in2;
1092                 m->openInputFile(oldfastafile, in2);
1093                 int oldfastaAlignLength = 0;
1094                 if (in2) { 
1095                         Sequence tempIn2(in2);
1096                         oldfastaAlignLength = tempIn2.getAligned().length();
1097                 }
1098                 in2.close();
1099                 
1100                 if (fastaAlignLength != oldfastaAlignLength) { m->mothurOut("fasta files do not have the same alignment length."); m->mothurOutEndLine(); return false;  }
1101                 
1102                 //read fasta file and save names as well as adding them to the alignDB
1103                 set<string> namesOldFasta;
1104                 
1105                 ifstream inFasta;
1106                 m->openInputFile(oldfastafile, inFasta);
1107                 
1108                 while (!inFasta.eof()) {
1109                         if (m->control_pressed) {  inFasta.close(); return good;  }
1110                 
1111                         Sequence temp(inFasta);
1112                         
1113                         if (temp.getName() != "") {
1114                                 namesOldFasta.insert(temp.getName());  //save name
1115                                 alignDB.push_back(temp);  //add to DB
1116                         }
1117                         
1118                         m->gobble(inFasta);
1119                 }
1120                 
1121                 inFasta.close();
1122                 
1123                 //read through the column file checking names and removing distances above the cutoff
1124                 ifstream inDist;
1125                 m->openInputFile(column, inDist);
1126                 
1127                 ofstream outDist;
1128                 string outputFile = column + ".temp";
1129                 m->openOutputFile(outputFile, outDist);
1130                 
1131                 string name1, name2;
1132                 float dist;
1133                 while (!inDist.eof()) {
1134                         if (m->control_pressed) {  inDist.close(); outDist.close(); remove(outputFile.c_str()); return good;  }
1135                 
1136                         inDist >> name1 >> name2 >> dist; m->gobble(inDist);
1137                         
1138                         //both names are in fasta file and distance is below cutoff
1139                         if ((namesOldFasta.count(name1) == 0) || (namesOldFasta.count(name2) == 0)) {  good = false; break;  }
1140                         else{
1141                                 if (dist <= cutoff) {
1142                                         outDist << name1 << '\t' << name2 << '\t' << dist << endl;
1143                                 }
1144                         }
1145                 }
1146                 
1147                 inDist.close();
1148                 outDist.close();
1149                 
1150                 if (good) {
1151                         remove(column.c_str());
1152                         rename(outputFile.c_str(), column.c_str());
1153                 }else{
1154                         remove(outputFile.c_str()); //temp file is bad because file mismatch above
1155                 }
1156                 
1157         }
1158         catch(exception& e) {
1159                 m->errorOut(e, "DistanceCommand", "m->appendFiles");
1160                 exit(1);
1161         }
1162 }
1163 /**************************************************************************************************/
1164
1165
1166
1167