]> git.donarmstrong.com Git - mothur.git/blob - chimeraccodecommand.cpp
paralellized screen.seqs and added mpi code to it. fixed bug with all mpi commands...
[mothur.git] / chimeraccodecommand.cpp
1 /*
2  *  chimeraccodecommand.cpp
3  *  Mothur
4  *
5  *  Created by westcott on 3/30/10.
6  *  Copyright 2010 Schloss Lab. All rights reserved.
7  *
8  */
9
10 #include "chimeraccodecommand.h"
11 #include "ccode.h"
12
13 //***************************************************************************************************************
14
15 ChimeraCcodeCommand::ChimeraCcodeCommand(string option)  {
16         try {
17                 abort = false;
18                 
19                 //allow user to run help
20                 if(option == "help") { help(); abort = true; }
21                 
22                 else {
23                         //valid paramters for this command
24                         string Array[] =  {"fasta", "filter", "processors", "window", "template", "mask", "numwanted", "outputdir","inputdir", };
25                         vector<string> myArray (Array, Array+(sizeof(Array)/sizeof(string)));
26                         
27                         OptionParser parser(option);
28                         map<string,string> parameters = parser.getParameters();
29                         
30                         ValidParameters validParameter;
31                         map<string,string>::iterator it;
32                         
33                         //check to make sure all parameters are valid for command
34                         for (it = parameters.begin(); it != parameters.end(); it++) { 
35                                 if (validParameter.isValidParameter(it->first, myArray, it->second) != true) {  abort = true;  }
36                         }
37                         
38                         //if the user changes the input directory command factory will send this info to us in the output parameter 
39                         string inputDir = validParameter.validFile(parameters, "inputdir", false);              
40                         if (inputDir == "not found"){   inputDir = "";          }
41                         else {
42                                 string path;
43                                 it = parameters.find("fasta");
44                                 //user has given a template file
45                                 if(it != parameters.end()){ 
46                                         path = hasPath(it->second);
47                                         //if the user has not given a path then, add inputdir. else leave path alone.
48                                         if (path == "") {       parameters["fasta"] = inputDir + it->second;            }
49                                 }
50                                 
51                                 it = parameters.find("template");
52                                 //user has given a template file
53                                 if(it != parameters.end()){ 
54                                         path = hasPath(it->second);
55                                         //if the user has not given a path then, add inputdir. else leave path alone.
56                                         if (path == "") {       parameters["template"] = inputDir + it->second;         }
57                                 }
58                         }
59
60                         
61                         //check for required parameters
62                         fastafile = validParameter.validFile(parameters, "fasta", true);
63                         if (fastafile == "not open") { abort = true; }
64                         else if (fastafile == "not found") { fastafile = ""; m->mothurOut("fasta is a required parameter for the chimera.ccode command."); m->mothurOutEndLine(); abort = true;  }      
65                         
66                         //if the user changes the output directory command factory will send this info to us in the output parameter 
67                         outputDir = validParameter.validFile(parameters, "outputdir", false);           if (outputDir == "not found"){  
68                                 outputDir = ""; 
69                                 outputDir += hasPath(fastafile); //if user entered a file with a path then preserve it  
70                         }
71
72                         templatefile = validParameter.validFile(parameters, "template", true);
73                         if (templatefile == "not open") { abort = true; }
74                         else if (templatefile == "not found") { templatefile = ""; m->mothurOut("template is a required parameter for the chimera.ccode command."); m->mothurOutEndLine(); abort = true;  }             
75                         
76                         maskfile = validParameter.validFile(parameters, "mask", false);
77                         if (maskfile == "not found") { maskfile = "";  }        
78                         else if (maskfile != "default")  { 
79                                 if (inputDir != "") {
80                                         string path = hasPath(maskfile);
81                                         //if the user has not given a path then, add inputdir. else leave path alone.
82                                         if (path == "") {       maskfile = inputDir + maskfile;         }
83                                 }
84
85                                 ifstream in;
86                                 int     ableToOpen = openInputFile(maskfile, in);
87                                 if (ableToOpen == 1) { abort = true; }
88                                 in.close();
89                         }
90                         
91                         string temp;
92                         temp = validParameter.validFile(parameters, "filter", false);                   if (temp == "not found") { temp = "F"; }
93                         filter = isTrue(temp);
94                         
95                         temp = validParameter.validFile(parameters, "processors", false);               if (temp == "not found") { temp = "1"; }
96                         convert(temp, processors);
97                         
98                         temp = validParameter.validFile(parameters, "window", false);                   if (temp == "not found") { temp = "0"; }
99                         convert(temp, window);
100                         
101                         temp = validParameter.validFile(parameters, "numwanted", false);                if (temp == "not found") { temp = "20"; }
102                         convert(temp, numwanted);
103
104                 }
105         }
106         catch(exception& e) {
107                 m->errorOut(e, "ChimeraCcodeCommand", "ChimeraCcodeCommand");
108                 exit(1);
109         }
110 }
111 //**********************************************************************************************************************
112
113 void ChimeraCcodeCommand::help(){
114         try {
115         
116                 m->mothurOut("The chimera.ccode command reads a fastafile and templatefile and outputs potentially chimeric sequences.\n");
117                 m->mothurOut("This command was created using the algorythms described in the 'Evaluating putative chimeric sequences from PCR-amplified products' paper by Juan M. Gonzalez, Johannes Zimmerman and Cesareo Saiz-Jimenez.\n");
118                 m->mothurOut("The chimera.ccode command parameters are fasta, template, filter, mask, processors, window and numwanted.\n");
119                 m->mothurOut("The fasta parameter allows you to enter the fasta file containing your potentially chimeric sequences, and is required. \n");
120                 m->mothurOut("The template parameter allows you to enter a template file containing known non-chimeric sequences, and is required. \n");
121                 m->mothurOut("The filter parameter allows you to specify if you would like to apply a vertical and 50% soft filter. \n");
122                 m->mothurOut("The processors parameter allows you to specify how many processors you would like to use.  The default is 1. \n");
123                 #ifdef USE_MPI
124                 m->mothurOut("When using MPI, the processors parameter is set to the number of MPI processes running. \n");
125                 #endif
126                 m->mothurOut("The mask parameter allows you to specify a file containing one sequence you wish to use as a mask for the your sequences. \n");
127                 m->mothurOut("The window parameter allows you to specify the window size for searching for chimeras. \n");
128                 m->mothurOut("The numwanted parameter allows you to specify how many sequences you would each query sequence compared with.\n");
129                 m->mothurOut("The chimera.ccode command should be in the following format: \n");
130                 m->mothurOut("chimera.ccode(fasta=yourFastaFile, template=yourTemplate) \n");
131                 m->mothurOut("Example: chimera.seqs(fasta=AD.align, template=core_set_aligned.imputed.fasta) \n");
132                 m->mothurOut("Note: No spaces between parameter labels (i.e. fasta), '=' and parameters (i.e.yourFastaFile).\n\n");     
133         }
134         catch(exception& e) {
135                 m->errorOut(e, "ChimeraCcodeCommand", "help");
136                 exit(1);
137         }
138 }
139
140 //***************************************************************************************************************
141
142 ChimeraCcodeCommand::~ChimeraCcodeCommand(){    /*      do nothing      */      }
143
144 //***************************************************************************************************************
145
146 int ChimeraCcodeCommand::execute(){
147         try{
148                 
149                 if (abort == true) { return 0; }
150                 
151                 int start = time(NULL); 
152                 
153                 //set user options
154                 if (maskfile == "default") { m->mothurOut("I am using the default 236627 EU009184.1 Shigella dysenteriae str. FBD013."); m->mothurOutEndLine();  }
155
156                 chimera = new Ccode(fastafile, templatefile, filter, maskfile, window, numwanted, outputDir);   
157                 
158                 //is your template aligned?
159                 if (chimera->getUnaligned()) { m->mothurOut("Your template sequences are different lengths, please correct."); m->mothurOutEndLine(); delete chimera; return 0; }
160                 templateSeqsLength = chimera->getLength();
161                 
162                 string outputFileName, accnosFileName;
163                 if (maskfile != "") {
164                         outputFileName = outputDir + getRootName(getSimpleName(fastafile)) + maskfile + ".ccode.chimeras";
165                         accnosFileName = outputDir + getRootName(getSimpleName(fastafile)) + maskfile + ".ccode.accnos";
166                 }else {
167                         outputFileName = outputDir + getRootName(getSimpleName(fastafile))  + "ccode.chimeras";
168                         accnosFileName = outputDir + getRootName(getSimpleName(fastafile))  + "ccode.accnos";
169                 }
170
171                 string mapInfo = outputDir + getRootName(getSimpleName(fastafile)) + "mapinfo";
172                 bool hasAccnos = true;
173                 
174                 if (m->control_pressed) { delete chimera;       return 0;       }
175                 
176         #ifdef USE_MPI
177         
178                         int pid, end, numSeqsPerProcessor; 
179                         int tag = 2001;
180                         vector<long> MPIPos;
181                         MPIWroteAccnos = false;
182                         
183                         MPI_Status status; 
184                         MPI_Comm_rank(MPI_COMM_WORLD, &pid); //find out who we are
185                         MPI_Comm_size(MPI_COMM_WORLD, &processors); 
186
187                         MPI_File inMPI;
188                         MPI_File outMPI;
189                         MPI_File outMPIAccnos;
190                         
191                         int outMode=MPI_MODE_CREATE|MPI_MODE_WRONLY; 
192                         int inMode=MPI_MODE_RDONLY; 
193
194                         //char* outFilename = new char[outputFileName.length()];
195                         //memcpy(outFilename, outputFileName.c_str(), outputFileName.length());
196                         
197                         char outFilename[1024];
198                         strcpy(outFilename, outputFileName.c_str());
199                         
200                         //char* outAccnosFilename = new char[accnosFileName.length()];
201                         //memcpy(outAccnosFilename, accnosFileName.c_str(), accnosFileName.length());
202                         
203                         char outAccnosFilename[1024];
204                         strcpy(outAccnosFilename, accnosFileName.c_str());
205
206                         //char* inFileName = new char[fastafile.length()];
207                         //memcpy(inFileName, fastafile.c_str(), fastafile.length());
208                         
209                         char inFileName[1024];
210                         strcpy(inFileName, fastafile.c_str());
211
212                         MPI_File_open(MPI_COMM_WORLD, inFileName, inMode, MPI_INFO_NULL, &inMPI);  //comm, filename, mode, info, filepointer
213                         MPI_File_open(MPI_COMM_WORLD, outFilename, outMode, MPI_INFO_NULL, &outMPI);
214                         MPI_File_open(MPI_COMM_WORLD, outAccnosFilename, outMode, MPI_INFO_NULL, &outMPIAccnos);
215                         
216                         //delete inFileName;
217                         //delete outFilename;
218                         //delete outAccnosFilename;
219
220                         if (m->control_pressed) {  MPI_File_close(&inMPI);  MPI_File_close(&outMPI);   MPI_File_close(&outMPIAccnos);  delete chimera; return 0;  }
221                 
222                         if (pid == 0) { //you are the root process 
223                                 string outTemp = "For full window mapping info refer to " + mapInfo + "\n\n";
224                                 
225                                 //print header
226                                 int length = outTemp.length();
227                                 char* buf2 = new char[length];
228                                 memcpy(buf2, outTemp.c_str(), length);
229
230                                 MPI_File_write_shared(outMPI, buf2, length, MPI_CHAR, &status);
231                                 delete buf2;
232
233                                 MPIPos = setFilePosFasta(fastafile, numSeqs); //fills MPIPos, returns numSeqs
234                                 
235                                 //send file positions to all processes
236                                 MPI_Bcast(&numSeqs, 1, MPI_INT, 0, MPI_COMM_WORLD);  //send numSeqs
237                                 MPI_Bcast(&MPIPos[0], (numSeqs+1), MPI_LONG, 0, MPI_COMM_WORLD); //send file pos        
238                                 
239                                 //figure out how many sequences you have to align
240                                 numSeqsPerProcessor = numSeqs / processors;
241                                 int startIndex =  pid * numSeqsPerProcessor;
242                                 if(pid == (processors - 1)){    numSeqsPerProcessor = numSeqs - pid * numSeqsPerProcessor;      }
243                                 
244                         
245                                 //align your part
246                                 driverMPI(startIndex, numSeqsPerProcessor, inMPI, outMPI, outMPIAccnos, MPIPos);
247                                 
248                                 if (m->control_pressed) {  MPI_File_close(&inMPI);  MPI_File_close(&outMPI);   MPI_File_close(&outMPIAccnos);  remove(outputFileName.c_str());  remove(accnosFileName.c_str());  delete chimera; return 0;  }
249
250                                 for (int i = 1; i < processors; i++) {
251                                         bool tempResult;
252                                         MPI_Recv(&tempResult, 1, MPI_INT, i, tag, MPI_COMM_WORLD, &status);
253                                         if (tempResult != 0) { MPIWroteAccnos = true; }
254                                 }
255                         }else{ //you are a child process
256                                 MPI_Bcast(&numSeqs, 1, MPI_INT, 0, MPI_COMM_WORLD); //get numSeqs
257                                 MPIPos.resize(numSeqs+1);
258                                 MPI_Bcast(&MPIPos[0], (numSeqs+1), MPI_LONG, 0, MPI_COMM_WORLD); //get file positions
259                                 
260                                 //figure out how many sequences you have to align
261                                 numSeqsPerProcessor = numSeqs / processors;
262                                 int startIndex =  pid * numSeqsPerProcessor;
263                                 if(pid == (processors - 1)){    numSeqsPerProcessor = numSeqs - pid * numSeqsPerProcessor;      }
264                                 
265                                 
266                                 //align your part
267                                 driverMPI(startIndex, numSeqsPerProcessor, inMPI, outMPI, outMPIAccnos, MPIPos);
268                                 
269                                 if (m->control_pressed) {  MPI_File_close(&inMPI);  MPI_File_close(&outMPI);   MPI_File_close(&outMPIAccnos);  delete chimera; return 0;  }
270                                 
271                                 MPI_Send(&MPIWroteAccnos, 1, MPI_INT, 0, tag, MPI_COMM_WORLD); 
272                         }
273                         
274                         //close files 
275                         MPI_File_close(&inMPI);
276                         MPI_File_close(&outMPI);
277                         MPI_File_close(&outMPIAccnos);
278                         
279                         //delete accnos file if blank
280                         if (pid == 0) {
281                                 if (!MPIWroteAccnos) { 
282                                         //MPI_Info info;
283                                         //MPI_File_delete(outAccnosFilename, info);
284                                         hasAccnos = false;      
285                                         remove(accnosFileName.c_str()); 
286                                 }
287                         }
288                                 
289         #else
290                 ofstream outHeader;
291                 string tempHeader = outputDir + getRootName(getSimpleName(fastafile)) + maskfile + "ccode.chimeras.tempHeader";
292                 openOutputFile(tempHeader, outHeader);
293                 
294                 outHeader << "For full window mapping info refer to " << mapInfo << endl << endl;
295
296                 outHeader.close();
297                 
298                 //break up file
299                 #if defined (__APPLE__) || (__MACH__) || (linux) || (__linux)
300                         if(processors == 1){
301                                 ifstream inFASTA;
302                                 openInputFile(fastafile, inFASTA);
303                                 numSeqs=count(istreambuf_iterator<char>(inFASTA),istreambuf_iterator<char>(), '>');
304                                 inFASTA.close();
305                                 
306                                 lines.push_back(new linePair(0, numSeqs));
307                                 
308                                 driver(lines[0], outputFileName, fastafile, accnosFileName);
309                                 
310                                 if (m->control_pressed) { 
311                                         remove(outputFileName.c_str()); 
312                                         remove(tempHeader.c_str()); 
313                                         remove(accnosFileName.c_str());
314                                         for (int i = 0; i < lines.size(); i++) {  delete lines[i];  }  lines.clear();
315                                         delete chimera;
316                                         return 0;
317                                 }
318                                 
319                                 //delete accnos file if its blank 
320                                 if (isBlank(accnosFileName)) {  remove(accnosFileName.c_str());  hasAccnos = false; }
321                                                                 
322                         }else{
323                                 vector<int> positions;
324                                 processIDS.resize(0);
325                                 
326                                 ifstream inFASTA;
327                                 openInputFile(fastafile, inFASTA);
328                                 
329                                 string input;
330                                 while(!inFASTA.eof()){
331                                         input = getline(inFASTA);
332                                         if (input.length() != 0) {
333                                                 if(input[0] == '>'){    long int pos = inFASTA.tellg(); positions.push_back(pos - input.length() - 1);  }
334                                         }
335                                 }
336                                 inFASTA.close();
337                                 
338                                 numSeqs = positions.size();
339                                 
340                                 int numSeqsPerProcessor = numSeqs / processors;
341                                 
342                                 for (int i = 0; i < processors; i++) {
343                                         long int startPos = positions[ i * numSeqsPerProcessor ];
344                                         if(i == processors - 1){
345                                                 numSeqsPerProcessor = numSeqs - i * numSeqsPerProcessor;
346                                         }
347                                         lines.push_back(new linePair(startPos, numSeqsPerProcessor));
348                                 }
349                                 
350                                 
351                                 createProcesses(outputFileName, fastafile, accnosFileName); 
352                         
353                                 rename((outputFileName + toString(processIDS[0]) + ".temp").c_str(), outputFileName.c_str());
354                                         
355                                 //append output files
356                                 for(int i=1;i<processors;i++){
357                                         appendFiles((outputFileName + toString(processIDS[i]) + ".temp"), outputFileName);
358                                         remove((outputFileName + toString(processIDS[i]) + ".temp").c_str());
359                                 }
360                                 
361                                 vector<string> nonBlankAccnosFiles;
362                                 //delete blank accnos files generated with multiple processes
363                                 for(int i=0;i<processors;i++){  
364                                         if (!(isBlank(accnosFileName + toString(processIDS[i]) + ".temp"))) {
365                                                 nonBlankAccnosFiles.push_back(accnosFileName + toString(processIDS[i]) + ".temp");
366                                         }else { remove((accnosFileName + toString(processIDS[i]) + ".temp").c_str());  }
367                                 }
368                                 
369                                 //append accnos files
370                                 if (nonBlankAccnosFiles.size() != 0) { 
371                                         rename(nonBlankAccnosFiles[0].c_str(), accnosFileName.c_str());
372                                         
373                                         for (int h=1; h < nonBlankAccnosFiles.size(); h++) {
374                                                 appendFiles(nonBlankAccnosFiles[h], accnosFileName);
375                                                 remove(nonBlankAccnosFiles[h].c_str());
376                                         }
377                                 }else{ hasAccnos = false;  }
378                                 
379                                 if (m->control_pressed) { 
380                                         remove(outputFileName.c_str()); 
381                                         remove(accnosFileName.c_str());
382                                         for (int i = 0; i < lines.size(); i++) {  delete lines[i];  }  lines.clear();
383                                         delete chimera;
384                                         return 0;
385                                 }
386
387                         }
388
389                 #else
390                         ifstream inFASTA;
391                         openInputFile(fastafile, inFASTA);
392                         numSeqs=count(istreambuf_iterator<char>(inFASTA),istreambuf_iterator<char>(), '>');
393                         inFASTA.close();
394                         lines.push_back(new linePair(0, numSeqs));
395                         
396                         driver(lines[0], outputFileName, fastafile, accnosFileName);
397                         
398                         if (m->control_pressed) { 
399                                         remove(outputFileName.c_str()); 
400                                         remove(tempHeader.c_str()); 
401                                         remove(accnosFileName.c_str());
402                                         for (int i = 0; i < lines.size(); i++) {  delete lines[i];  }  lines.clear();
403                                         delete chimera;
404                                         return 0;
405                         }
406                         
407                         //delete accnos file if its blank 
408                         if (isBlank(accnosFileName)) {  remove(accnosFileName.c_str());  hasAccnos = false; }
409                 #endif
410                 
411                 //m->mothurOut("Output File Names: ");
412                 //if ((filter) && (method == "bellerophon")) { m->mothurOut(
413                 //if (outputDir == "") { fastafile = getRootName(fastafile) + "filter.fasta"; }
414                 //      else                             { fastafile = outputDir + getRootName(getSimpleName(fastafile)) + "filter.fasta"; }
415         
416                 appendFiles(outputFileName, tempHeader);
417         
418                 remove(outputFileName.c_str());
419                 rename(tempHeader.c_str(), outputFileName.c_str());
420         #endif
421         
422                 delete chimera;
423                 
424                 
425                 m->mothurOutEndLine();
426                 m->mothurOut("Output File Names: "); m->mothurOutEndLine();
427                 m->mothurOut(outputFileName); m->mothurOutEndLine();    
428                 if (hasAccnos) {  m->mothurOut(accnosFileName); m->mothurOutEndLine();  }
429                 m->mothurOutEndLine();
430
431                 for (int i = 0; i < lines.size(); i++) {  delete lines[i];  }  lines.clear();
432                 
433                 m->mothurOutEndLine(); m->mothurOut("It took " + toString(time(NULL) - start) + " secs to check " + toString(numSeqs) + " sequences."); m->mothurOutEndLine();
434                 
435                 return 0;
436                 
437         }
438         catch(exception& e) {
439                 m->errorOut(e, "ChimeraCcodeCommand", "execute");
440                 exit(1);
441         }
442 }
443 //**********************************************************************************************************************
444
445 int ChimeraCcodeCommand::driver(linePair* line, string outputFName, string filename, string accnos){
446         try {
447                 ofstream out;
448                 openOutputFile(outputFName, out);
449                 
450                 ofstream out2;
451                 openOutputFile(accnos, out2);
452                 
453                 ifstream inFASTA;
454                 openInputFile(filename, inFASTA);
455
456                 inFASTA.seekg(line->start);
457                 
458                 for(int i=0;i<line->numSeqs;i++){
459                 
460                         if (m->control_pressed) {       return 1;       }
461                 
462                         Sequence* candidateSeq = new Sequence(inFASTA);  gobble(inFASTA);
463                                 
464                         if (candidateSeq->getName() != "") { //incase there is a commented sequence at the end of a file
465                                 
466                                 if (candidateSeq->getAligned().length() != templateSeqsLength) {  
467                                         m->mothurOut(candidateSeq->getName() + " is not the same length as the template sequences. Skipping."); m->mothurOutEndLine();
468                                 }else{
469                                         //find chimeras
470                                         chimera->getChimeras(candidateSeq);
471                                         
472                                         if (m->control_pressed) {       delete candidateSeq; return 1;  }
473                 
474                                         //print results
475                                         chimera->print(out, out2);
476                                 }
477                         }
478                         delete candidateSeq;
479                         
480                         //report progress
481                         if((i+1) % 100 == 0){   m->mothurOut("Processing sequence: " + toString(i+1)); m->mothurOutEndLine();           }
482                 }
483                 //report progress
484                 if((line->numSeqs) % 100 != 0){ m->mothurOut("Processing sequence: " + toString(line->numSeqs)); m->mothurOutEndLine();         }
485                 
486                 out.close();
487                 out2.close();
488                 inFASTA.close();
489                                 
490                 return 0;
491         }
492         catch(exception& e) {
493                 m->errorOut(e, "ChimeraCcodeCommand", "driver");
494                 exit(1);
495         }
496 }
497 //**********************************************************************************************************************
498 #ifdef USE_MPI
499 int ChimeraCcodeCommand::driverMPI(int start, int num, MPI_File& inMPI, MPI_File& outMPI, MPI_File& outAccMPI, vector<long>& MPIPos){
500         try {
501                                 
502                 MPI_Status status; 
503                 int pid;
504                 MPI_Comm_rank(MPI_COMM_WORLD, &pid); //find out who we are
505                 
506                 for(int i=0;i<num;i++){
507                 
508                         if (m->control_pressed) { return 0; }
509                         
510                         //read next sequence
511                         int length = MPIPos[start+i+1] - MPIPos[start+i];
512         
513                         char* buf4 = new char[length];
514                                 
515                         MPI_File_read_at(inMPI, MPIPos[start+i], buf4, length, MPI_CHAR, &status);
516                         
517                         string tempBuf = buf4;
518                         if (tempBuf.length() > length) { tempBuf = tempBuf.substr(0, length);  }
519                         istringstream iss (tempBuf,istringstream::in);
520                         delete buf4;
521
522                         Sequence* candidateSeq = new Sequence(iss);  gobble(iss);
523                                 
524                         if (candidateSeq->getName() != "") { //incase there is a commented sequence at the end of a file
525                                 
526                                 if (candidateSeq->getAligned().length() != templateSeqsLength) {  
527                                         m->mothurOut(candidateSeq->getName() + " is not the same length as the template sequences. Skipping."); m->mothurOutEndLine();
528                                 }else{
529                                         //find chimeras
530                                         chimera->getChimeras(candidateSeq);
531                                         
532                                         if (m->control_pressed) {       delete candidateSeq; return 1;  }
533                 
534                                         //print results
535                                         bool isChimeric = chimera->print(outMPI, outAccMPI);
536                                         if (isChimeric) { MPIWroteAccnos = true;  }
537                                 }
538                         }
539                         delete candidateSeq;
540                         
541                         //report progress
542                         if((i+1) % 100 == 0){  cout << "Processing sequence: " << (i+1) << endl;        m->mothurOutJustToLog("Processing sequence: " + toString(i+1) + "\n");          }
543                 }
544                 //report progress
545                 if(num % 100 != 0){             cout << "Processing sequence: " << num << endl; m->mothurOutJustToLog("Processing sequence: " + toString(num) + "\n");  }
546                 
547                                 
548                 return 0;
549         }
550         catch(exception& e) {
551                 m->errorOut(e, "ChimeraCcodeCommand", "driverMPI");
552                 exit(1);
553         }
554 }
555 #endif
556
557 /**************************************************************************************************/
558
559 int ChimeraCcodeCommand::createProcesses(string outputFileName, string filename, string accnos) {
560         try {
561 #if defined (__APPLE__) || (__MACH__) || (linux) || (__linux)
562                 int process = 0;
563                 //              processIDS.resize(0);
564                 
565                 //loop through and create all the processes you want
566                 while (process != processors) {
567                         int pid = fork();
568                         
569                         if (pid > 0) {
570                                 processIDS.push_back(pid);  //create map from line number to pid so you can append files in correct order later
571                                 process++;
572                         }else if (pid == 0){
573                                 driver(lines[process], outputFileName + toString(getpid()) + ".temp", filename, accnos + toString(getpid()) + ".temp");
574                                 exit(0);
575                         }else { m->mothurOut("unable to spawn the necessary processes."); m->mothurOutEndLine(); exit(0); }
576                 }
577                 
578                 //force parent to wait until all the processes are done
579                 for (int i=0;i<processors;i++) { 
580                         int temp = processIDS[i];
581                         wait(&temp);
582                 }
583                 
584                 return 0;
585 #endif          
586         }
587         catch(exception& e) {
588                 m->errorOut(e, "ChimeraCcodeCommand", "createProcesses");
589                 exit(1);
590         }
591 }
592 //**********************************************************************************************************************
593