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