]> git.donarmstrong.com Git - mothur.git/blob - classifyseqscommand.cpp
worked on trim.seqs
[mothur.git] / classifyseqscommand.cpp
1 /*
2  *  classifyseqscommand.cpp
3  *  Mothur
4  *
5  *  Created by westcott on 11/2/09.
6  *  Copyright 2009 Schloss Lab. All rights reserved.
7  *
8  */
9
10 #include "classifyseqscommand.h"
11 #include "sequence.hpp"
12 #include "bayesian.h"
13 #include "phylotree.h"
14 #include "phylosummary.h"
15 #include "knn.h"
16
17 //**********************************************************************************************************************
18
19 ClassifySeqsCommand::ClassifySeqsCommand(string option)  {
20         try {
21                 abort = false;
22                 
23                 //allow user to run help
24                 if(option == "help") { help(); abort = true; }
25                 
26                 else {
27                         
28                         //valid paramters for this command
29                         string AlignArray[] =  {"template","fasta","name","group","search","ksize","method","processors","taxonomy","match","mismatch","gapopen","gapextend","numwanted","cutoff","probs","iters", "outputdir","inputdir"};
30                         vector<string> myArray (AlignArray, AlignArray+(sizeof(AlignArray)/sizeof(string)));
31                         
32                         OptionParser parser(option);
33                         map<string, string> parameters = parser.getParameters(); 
34                         
35                         ValidParameters validParameter;
36                         map<string, string>::iterator it;
37                         
38                         //check to make sure all parameters are valid for command
39                         for (it = parameters.begin(); it != parameters.end(); it++) { 
40                                 if (validParameter.isValidParameter(it->first, myArray, it->second) != true) {  abort = true;  }
41                         }
42                         
43                         //if the user changes the output directory command factory will send this info to us in the output parameter 
44                         outputDir = validParameter.validFile(parameters, "outputdir", false);           if (outputDir == "not found"){  outputDir = "";         }
45                         
46                         //if the user changes the input directory command factory will send this info to us in the output parameter 
47                         string inputDir = validParameter.validFile(parameters, "inputdir", false);              
48                         if (inputDir == "not found"){   inputDir = "";          }
49                         else {
50                                 string path;
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                                 it = parameters.find("taxonomy");
60                                 //user has given a template file
61                                 if(it != parameters.end()){ 
62                                         path = hasPath(it->second);
63                                         //if the user has not given a path then, add inputdir. else leave path alone.
64                                         if (path == "") {       parameters["taxonomy"] = inputDir + it->second;         }
65                                 }
66                                 
67                                 it = parameters.find("group");
68                                 //user has given a template file
69                                 if(it != parameters.end()){ 
70                                         path = hasPath(it->second);
71                                         //if the user has not given a path then, add inputdir. else leave path alone.
72                                         if (path == "") {       parameters["group"] = inputDir + it->second;            }
73                                 }
74                         }
75
76                         //check for required parameters
77                         templateFileName = validParameter.validFile(parameters, "template", true);
78                         if (templateFileName == "not found") { 
79                                 m->mothurOut("template is a required parameter for the classify.seqs command."); 
80                                 m->mothurOutEndLine();
81                                 abort = true; 
82                         }
83                         else if (templateFileName == "not open") { abort = true; }      
84                         
85                                                 
86                         fastaFileName = validParameter.validFile(parameters, "fasta", false);
87                         if (fastaFileName == "not found") { m->mothurOut("fasta is a required parameter for the classify.seqs command."); m->mothurOutEndLine(); abort = true;  }
88                         else { 
89                                 splitAtDash(fastaFileName, fastaFileNames);
90                                 
91                                 //go through files and make sure they are good, if not, then disregard them
92                                 for (int i = 0; i < fastaFileNames.size(); i++) {
93                                         if (inputDir != "") {
94                                                 string path = hasPath(fastaFileNames[i]);
95                                                 //if the user has not given a path then, add inputdir. else leave path alone.
96                                                 if (path == "") {       fastaFileNames[i] = inputDir + fastaFileNames[i];               }
97                                         }
98                                         
99                                         int ableToOpen;
100                                         
101                                         #ifdef USE_MPI  
102                                                 int pid;
103                                                 MPI_Comm_size(MPI_COMM_WORLD, &processors); //set processors to the number of mpi processes running
104                                                 MPI_Comm_rank(MPI_COMM_WORLD, &pid); //find out who we are
105                                 
106                                                 if (pid == 0) {
107                                         #endif
108                                         
109                                         ifstream in;
110                                         ableToOpen = openInputFile(fastaFileNames[i], in);
111                                         in.close();
112                                         
113                                         #ifdef USE_MPI  
114                                                         for (int j = 1; j < processors; j++) {
115                                                                 MPI_Send(&ableToOpen, 1, MPI_INT, j, 2001, MPI_COMM_WORLD); 
116                                                         }
117                                                 }else{
118                                                         MPI_Status status;
119                                                         MPI_Recv(&ableToOpen, 1, MPI_INT, 0, 2001, MPI_COMM_WORLD, &status);
120                                                 }
121                                                 
122                                         #endif
123                                         
124                                         if (ableToOpen == 1) { 
125                                                 m->mothurOut(fastaFileNames[i] + " will be disregarded."); m->mothurOutEndLine(); 
126                                                 //erase from file list
127                                                 fastaFileNames.erase(fastaFileNames.begin()+i);
128                                                 i--;
129                                         }
130                                         
131                                 }
132                                 
133                                 //make sure there is at least one valid file left
134                                 if (fastaFileNames.size() == 0) { m->mothurOut("no valid files."); m->mothurOutEndLine(); abort = true; }
135                         }
136
137                         
138                         taxonomyFileName = validParameter.validFile(parameters, "taxonomy", true);
139                         if (taxonomyFileName == "not found") { 
140                                 m->mothurOut("taxonomy is a required parameter for the classify.seqs command."); 
141                                 m->mothurOutEndLine();
142                                 abort = true; 
143                         }
144                         else if (taxonomyFileName == "not open") { abort = true; }      
145                         
146                         
147                         namefile = validParameter.validFile(parameters, "name", false);
148                         if (namefile == "not found") { namefile = "";  }
149
150                         else { 
151                                 splitAtDash(namefile, namefileNames);
152                                 
153                                 //go through files and make sure they are good, if not, then disregard them
154                                 for (int i = 0; i < namefileNames.size(); i++) {
155                                         if (inputDir != "") {
156                                                 string path = hasPath(namefileNames[i]);
157                                                 //if the user has not given a path then, add inputdir. else leave path alone.
158                                                 if (path == "") {       namefileNames[i] = inputDir + namefileNames[i];         }
159                                         }
160                                         int ableToOpen;
161                                         
162                                         #ifdef USE_MPI  
163                                                 int pid;
164                                                 MPI_Comm_size(MPI_COMM_WORLD, &processors); //set processors to the number of mpi processes running
165                                                 MPI_Comm_rank(MPI_COMM_WORLD, &pid); //find out who we are
166                                 
167                                                 if (pid == 0) {
168                                         #endif
169
170                                         ifstream in;
171                                         ableToOpen = openInputFile(namefileNames[i], in);
172                                         in.close();
173                                         
174                                         #ifdef USE_MPI  
175                                                         for (int j = 1; j < processors; j++) {
176                                                                 MPI_Send(&ableToOpen, 1, MPI_INT, j, 2001, MPI_COMM_WORLD); 
177                                                         }
178                                                 }else{
179                                                         MPI_Status status;
180                                                         MPI_Recv(&ableToOpen, 1, MPI_INT, 0, 2001, MPI_COMM_WORLD, &status);
181                                                 }
182                                                 
183                                         #endif
184                                         if (ableToOpen == 1) {  m->mothurOut("Unable to match name file with fasta file."); m->mothurOutEndLine(); abort = true;        }
185                                         
186                                 }
187                         }
188
189                         if (namefile != "") {
190                                 if (namefileNames.size() != fastaFileNames.size()) { abort = true; m->mothurOut("If you provide a name file, you must have one for each fasta file."); m->mothurOutEndLine(); }
191                         }
192                         
193                         groupfile = validParameter.validFile(parameters, "group", false);
194                         if (groupfile == "not found") { groupfile = "";  }
195                         else { 
196                                 splitAtDash(groupfile, groupfileNames);
197                                 
198                                 //go through files and make sure they are good, if not, then disregard them
199                                 for (int i = 0; i < groupfileNames.size(); i++) {
200                                         if (inputDir != "") {
201                                                 string path = hasPath(groupfileNames[i]);
202                                                 //if the user has not given a path then, add inputdir. else leave path alone.
203                                                 if (path == "") {       groupfileNames[i] = inputDir + groupfileNames[i];               }
204                                         }
205                                         int ableToOpen;
206                                         
207                                         #ifdef USE_MPI  
208                                                 int pid;
209                                                 MPI_Comm_size(MPI_COMM_WORLD, &processors); //set processors to the number of mpi processes running
210                                                 MPI_Comm_rank(MPI_COMM_WORLD, &pid); //find out who we are
211                                 
212                                                 if (pid == 0) {
213                                         #endif
214
215                                         ifstream in;
216                                         ableToOpen = openInputFile(groupfileNames[i], in);
217                                         in.close();
218                                         
219                                         #ifdef USE_MPI  
220                                                         for (int j = 1; j < processors; j++) {
221                                                                 MPI_Send(&ableToOpen, 1, MPI_INT, j, 2001, MPI_COMM_WORLD); 
222                                                         }
223                                                 }else{
224                                                         MPI_Status status;
225                                                         MPI_Recv(&ableToOpen, 1, MPI_INT, 0, 2001, MPI_COMM_WORLD, &status);
226                                                 }
227                                                 
228                                         #endif
229                                         if (ableToOpen == 1) {  m->mothurOut("Unable to match group file with fasta file, not using " + groupfileNames[i] + "."); m->mothurOutEndLine(); groupfileNames[i] = "";        }
230                                         
231                                 }
232                         }
233
234                         if (groupfile != "") {
235                                 if (groupfileNames.size() != fastaFileNames.size()) { abort = true; m->mothurOut("If you provide a group file, you must have one for each fasta file."); m->mothurOutEndLine(); }
236                         }else {
237                                 for (int i = 0; i < fastaFileNames.size(); i++) {  groupfileNames.push_back("");  }
238                         }
239                         
240                         //check for optional parameter and set defaults
241                         // ...at some point should added some additional type checking...
242                         string temp;
243                         temp = validParameter.validFile(parameters, "ksize", false);            if (temp == "not found"){       temp = "8";                             }
244                         convert(temp, kmerSize); 
245                         
246                         temp = validParameter.validFile(parameters, "processors", false);       if (temp == "not found"){       temp = "1";                             }
247                         convert(temp, processors); 
248                         
249                         search = validParameter.validFile(parameters, "search", false);         if (search == "not found"){     search = "kmer";                }
250                         
251                         method = validParameter.validFile(parameters, "method", false);         if (method == "not found"){     method = "bayesian";    }
252                         
253                         temp = validParameter.validFile(parameters, "match", false);            if (temp == "not found"){       temp = "1.0";                   }
254                         convert(temp, match);  
255                         
256                         temp = validParameter.validFile(parameters, "mismatch", false);         if (temp == "not found"){       temp = "-1.0";                  }
257                         convert(temp, misMatch);  
258                         
259                         temp = validParameter.validFile(parameters, "gapopen", false);          if (temp == "not found"){       temp = "-2.0";                  }
260                         convert(temp, gapOpen);  
261                         
262                         temp = validParameter.validFile(parameters, "gapextend", false);        if (temp == "not found"){       temp = "-1.0";                  }
263                         convert(temp, gapExtend); 
264                         
265                         temp = validParameter.validFile(parameters, "numwanted", false);        if (temp == "not found"){       temp = "10";                    }
266                         convert(temp, numWanted);
267                         
268                         temp = validParameter.validFile(parameters, "cutoff", false);           if (temp == "not found"){       temp = "0";                             }
269                         convert(temp, cutoff);
270                         
271                         temp = validParameter.validFile(parameters, "probs", false);            if (temp == "not found"){       temp = "true";                  }
272                         probs = isTrue(temp);
273                         
274                         temp = validParameter.validFile(parameters, "iters", false);            if (temp == "not found") { temp = "100";                        }
275                         convert(temp, iters); 
276
277
278                         
279                         if ((method == "bayesian") && (search != "kmer"))  { 
280                                 m->mothurOut("The bayesian method requires the kmer search." + search + "will be disregarded." ); m->mothurOutEndLine();
281                                 search = "kmer";
282                         }
283                 }
284                 
285         }
286         catch(exception& e) {
287                 m->errorOut(e, "ClassifySeqsCommand", "ClassifySeqsCommand");
288                 exit(1);
289         }
290 }
291
292 //**********************************************************************************************************************
293
294 ClassifySeqsCommand::~ClassifySeqsCommand(){    
295
296         if (abort == false) {
297                 for (int i = 0; i < lines.size(); i++) {  delete lines[i];  }  lines.clear();
298         }
299 }
300
301 //**********************************************************************************************************************
302
303 void ClassifySeqsCommand::help(){
304         try {
305                 m->mothurOut("The classify.seqs command reads a fasta file containing sequences and creates a .taxonomy file and a .tax.summary file.\n");
306                 m->mothurOut("The classify.seqs command parameters are template, fasta, name, search, ksize, method, taxonomy, processors, match, mismatch, gapopen, gapextend, numwanted and probs.\n");
307                 m->mothurOut("The template, fasta and taxonomy parameters are required. You may enter multiple fasta files by separating their names with dashes. ie. fasta=abrecovery.fasta-amzon.fasta \n");
308                 m->mothurOut("The search parameter allows you to specify the method to find most similar template.  Your options are: suffix, kmer, blast and distance. The default is kmer.\n");
309                 m->mothurOut("The name parameter allows you add a names file with your fasta file, if you enter multiple fasta files, you must enter matching names files for them.\n");
310                 m->mothurOut("The group parameter allows you add a group file so you can have the summary totals broken up by group.\n");
311                 m->mothurOut("The method parameter allows you to specify classification method to use.  Your options are: bayesian and knn. The default is bayesian.\n");
312                 m->mothurOut("The ksize parameter allows you to specify the kmer size for finding most similar template to candidate.  The default is 8.\n");
313                 m->mothurOut("The processors parameter allows you to specify the number of processors to use. The default is 1.\n");
314                 #ifdef USE_MPI
315                 m->mothurOut("When using MPI, the processors parameter is set to the number of MPI processes running. \n");
316                 #endif
317                 m->mothurOut("The match parameter allows you to specify the bonus for having the same base. The default is 1.0.\n");
318                 m->mothurOut("The mistmatch parameter allows you to specify the penalty for having different bases.  The default is -1.0.\n");
319                 m->mothurOut("The gapopen parameter allows you to specify the penalty for opening a gap in an alignment. The default is -2.0.\n");
320                 m->mothurOut("The gapextend parameter allows you to specify the penalty for extending a gap in an alignment.  The default is -1.0.\n");
321                 m->mothurOut("The numwanted parameter allows you to specify the number of sequence matches you want with the knn method.  The default is 10.\n");
322                 m->mothurOut("The cutoff parameter allows you to specify a bootstrap confidence threshold for your taxonomy.  The default is 0.\n");
323                 m->mothurOut("The probs parameter shut off the bootstrapping results for the bayesian method. The default is true, meaning you want the bootstrapping to be run.\n");
324                 m->mothurOut("The iters parameter allows you to specify how many iterations to do when calculating the bootstrap confidence score for your taxonomy with the bayesian method.  The default is 100.\n");
325                 m->mothurOut("The classify.seqs command should be in the following format: \n");
326                 m->mothurOut("classify.seqs(template=yourTemplateFile, fasta=yourFastaFile, method=yourClassificationMethod, search=yourSearchmethod, ksize=yourKmerSize, taxonomy=yourTaxonomyFile, processors=yourProcessors) \n");
327                 m->mothurOut("Example classify.seqs(fasta=amazon.fasta, template=core.filtered, method=knn, search=gotoh, ksize=8, processors=2)\n");
328                 m->mothurOut("The .taxonomy file consists of 2 columns: 1 = your sequence name, 2 = the taxonomy for your sequence. \n");
329                 m->mothurOut("The .tax.summary is a summary of the different taxonomies represented in your fasta file. \n");
330                 m->mothurOut("Note: No spaces between parameter labels (i.e. fasta), '=' and parameters (i.e.yourFastaFile).\n\n");
331         }
332         catch(exception& e) {
333                 m->errorOut(e, "ClassifySeqsCommand", "help");
334                 exit(1);
335         }
336 }
337
338
339 //**********************************************************************************************************************
340
341 int ClassifySeqsCommand::execute(){
342         try {
343                 if (abort == true) {    return 0;       }
344                 
345                 if(method == "bayesian"){       classify = new Bayesian(taxonomyFileName, templateFileName, search, kmerSize, cutoff, iters);           }
346                 else if(method == "knn"){       classify = new Knn(taxonomyFileName, templateFileName, search, kmerSize, gapOpen, gapExtend, match, misMatch, numWanted);                               }
347                 else {
348                         m->mothurOut(search + " is not a valid method option. I will run the command using bayesian.");
349                         m->mothurOutEndLine();
350                         classify = new Bayesian(taxonomyFileName, templateFileName, search, kmerSize, cutoff, iters);   
351                 }
352                 
353                 if (m->control_pressed) { delete classify; return 0; }
354                 
355                 vector<string> outputNames;
356                                 
357                 for (int s = 0; s < fastaFileNames.size(); s++) {
358                 
359                         m->mothurOut("Classifying sequences from " + fastaFileNames[s] + " ..." ); m->mothurOutEndLine();
360                         
361                         if (outputDir == "") { outputDir += hasPath(fastaFileNames[s]); }
362                         string newTaxonomyFile = outputDir + getRootName(getSimpleName(fastaFileNames[s])) + getRootName(getSimpleName(taxonomyFileName)) + "taxonomy";
363                         string tempTaxonomyFile = outputDir + getRootName(getSimpleName(fastaFileNames[s])) + "taxonomy.temp";
364                         string taxSummary = outputDir + getRootName(getSimpleName(fastaFileNames[s])) + getRootName(getSimpleName(taxonomyFileName)) + "tax.summary";
365                         
366                         outputNames.push_back(newTaxonomyFile);
367                         outputNames.push_back(taxSummary);
368                         
369                         int start = time(NULL);
370                         int numFastaSeqs = 0;
371                         for (int i = 0; i < lines.size(); i++) {  delete lines[i];  }  lines.clear();
372                         
373 #ifdef USE_MPI  
374                                 int pid, end, numSeqsPerProcessor; 
375                                 int tag = 2001;
376                                 vector<long> MPIPos;
377                                 
378                                 MPI_Status status; 
379                                 MPI_Comm_rank(MPI_COMM_WORLD, &pid); //find out who we are
380                                 MPI_Comm_size(MPI_COMM_WORLD, &processors); 
381
382                                 MPI_File inMPI;
383                                 MPI_File outMPINewTax;
384                                 MPI_File outMPITempTax;
385                                                         
386                                 int outMode=MPI_MODE_CREATE|MPI_MODE_WRONLY; 
387                                 int inMode=MPI_MODE_RDONLY; 
388                                 
389                                 //char* outNewTax = new char[newTaxonomyFile.length()];
390                                 //memcpy(outNewTax, newTaxonomyFile.c_str(), newTaxonomyFile.length());
391                                 
392                                 char outNewTax[1024];
393                                 strcpy(outNewTax, newTaxonomyFile.c_str());
394
395                                 //char* outTempTax = new char[tempTaxonomyFile.length()];
396                                 //memcpy(outTempTax, tempTaxonomyFile.c_str(), tempTaxonomyFile.length());
397                                 
398                                 char outTempTax[1024];
399                                 strcpy(outTempTax, tempTaxonomyFile.c_str());
400
401                                 //char* inFileName = new char[fastaFileNames[s].length()];
402                                 //memcpy(inFileName, fastaFileNames[s].c_str(), fastaFileNames[s].length());
403                                 
404                                 char inFileName[1024];
405                                 strcpy(inFileName, fastaFileNames[s].c_str());
406
407                                 MPI_File_open(MPI_COMM_WORLD, inFileName, inMode, MPI_INFO_NULL, &inMPI);  //comm, filename, mode, info, filepointer
408                                 MPI_File_open(MPI_COMM_WORLD, outNewTax, outMode, MPI_INFO_NULL, &outMPINewTax);
409                                 MPI_File_open(MPI_COMM_WORLD, outTempTax, outMode, MPI_INFO_NULL, &outMPITempTax);
410                                 
411                                 //delete outNewTax;
412                                 //delete outTempTax;
413                                 //delete inFileName;
414
415                                 if (m->control_pressed) {  MPI_File_close(&inMPI);  MPI_File_close(&outMPINewTax);   MPI_File_close(&outMPITempTax);  delete classify; return 0;  }
416
417                                 if(namefile != "") {  MPIReadNamesFile(namefileNames[s]);  }
418                                 
419                                 if (pid == 0) { //you are the root process 
420                                         
421                                         MPIPos = setFilePosFasta(fastaFileNames[s], numFastaSeqs); //fills MPIPos, returns numSeqs
422                                         
423                                         //send file positions to all processes
424                                         MPI_Bcast(&numFastaSeqs, 1, MPI_INT, 0, MPI_COMM_WORLD);  //send numSeqs
425                                         MPI_Bcast(&MPIPos[0], (numFastaSeqs+1), MPI_LONG, 0, MPI_COMM_WORLD); //send file pos   
426                                         
427                                         //figure out how many sequences you have to align
428                                         numSeqsPerProcessor = numFastaSeqs / processors;
429                                         int startIndex =  pid * numSeqsPerProcessor;
430                                         if(pid == (processors - 1)){    numSeqsPerProcessor = numFastaSeqs - pid * numSeqsPerProcessor;         }
431                                         
432                                 
433                                         //align your part
434                                         driverMPI(startIndex, numSeqsPerProcessor, inMPI, outMPINewTax, outMPITempTax, MPIPos);
435                                         
436                                         if (m->control_pressed) {  MPI_File_close(&inMPI);  MPI_File_close(&outMPINewTax);   MPI_File_close(&outMPITempTax);  for (int i = 0; i < outputNames.size(); i++) {    remove(outputNames[i].c_str()); } delete classify; return 0;  }
437                                         
438                                         for (int i = 1; i < processors; i++) {
439                                                 int done;
440                                                 MPI_Recv(&done, 1, MPI_INT, i, tag, MPI_COMM_WORLD, &status);
441                                         }
442                                 }else{ //you are a child process
443                                         MPI_Bcast(&numFastaSeqs, 1, MPI_INT, 0, MPI_COMM_WORLD); //get numSeqs
444                                         MPIPos.resize(numFastaSeqs+1);
445                                         MPI_Bcast(&MPIPos[0], (numFastaSeqs+1), MPI_LONG, 0, MPI_COMM_WORLD); //get file positions
446                                         
447                                         //figure out how many sequences you have to align
448                                         numSeqsPerProcessor = numFastaSeqs / processors;
449                                         int startIndex =  pid * numSeqsPerProcessor;
450                                         if(pid == (processors - 1)){    numSeqsPerProcessor = numFastaSeqs - pid * numSeqsPerProcessor;         }
451                                         
452                                         
453                                         //align your part
454                                         driverMPI(startIndex, numSeqsPerProcessor, inMPI, outMPINewTax, outMPITempTax, MPIPos);
455                                         
456                                         if (m->control_pressed) {  MPI_File_close(&inMPI);  MPI_File_close(&outMPINewTax);   MPI_File_close(&outMPITempTax);  delete classify; return 0;  }
457
458                                         int done = 0;
459                                         MPI_Send(&done, 1, MPI_INT, 0, tag, MPI_COMM_WORLD); 
460                                 }
461                                 
462                                 //close files 
463                                 MPI_File_close(&inMPI);
464                                 MPI_File_close(&outMPINewTax);
465                                 MPI_File_close(&outMPITempTax);
466                                 
467 #else
468                         //read namefile
469                         if(namefile != "") {
470                                 nameMap.clear(); //remove old names
471                                 
472                                 ifstream inNames;
473                                 openInputFile(namefileNames[s], inNames);
474                                 
475                                 string firstCol, secondCol;
476                                 while(!inNames.eof()) {
477                                         inNames >> firstCol >> secondCol; gobble(inNames);
478                                         nameMap[firstCol] = getNumNames(secondCol);  //ex. seq1 seq1,seq3,seq5 -> seq1 = 3.
479                                 }
480                                 inNames.close();
481                         }
482
483         #if defined (__APPLE__) || (__MACH__) || (linux) || (__linux)
484                         if(processors == 1){
485                                 ifstream inFASTA;
486                                 openInputFile(fastaFileNames[s], inFASTA);
487                                 numFastaSeqs=count(istreambuf_iterator<char>(inFASTA),istreambuf_iterator<char>(), '>');
488                                 inFASTA.close();
489                                 
490                                 lines.push_back(new linePair(0, numFastaSeqs));
491                                 
492                                 driver(lines[0], newTaxonomyFile, tempTaxonomyFile, fastaFileNames[s]);
493                         }
494                         else{
495                                 vector<int> positions;
496                                 processIDS.resize(0);
497                                 
498                                 ifstream inFASTA;
499                                 openInputFile(fastaFileNames[s], inFASTA);
500                                 
501                                 string input;
502                                 while(!inFASTA.eof()){
503                                         input = getline(inFASTA);
504                                         if (input.length() != 0) {
505                                                 if(input[0] == '>'){    int pos = inFASTA.tellg(); positions.push_back(pos - input.length() - 1);       }
506                                         }
507                                 }
508                                 inFASTA.close();
509                                 
510                                 numFastaSeqs = positions.size();
511                                 
512                                 int numSeqsPerProcessor = numFastaSeqs / processors;
513                                 
514                                 for (int i = 0; i < processors; i++) {
515                                         int startPos = positions[ i * numSeqsPerProcessor ];
516                                         if(i == processors - 1){
517                                                 numSeqsPerProcessor = numFastaSeqs - i * numSeqsPerProcessor;
518                                         }
519                                         lines.push_back(new linePair(startPos, numSeqsPerProcessor));
520                                 }
521                                 createProcesses(newTaxonomyFile, tempTaxonomyFile, fastaFileNames[s]); 
522                                 
523                                 rename((newTaxonomyFile + toString(processIDS[0]) + ".temp").c_str(), newTaxonomyFile.c_str());
524                                 rename((tempTaxonomyFile + toString(processIDS[0]) + ".temp").c_str(), tempTaxonomyFile.c_str());
525                                 
526                                 for(int i=1;i<processors;i++){
527                                         appendTaxFiles((newTaxonomyFile + toString(processIDS[i]) + ".temp"), newTaxonomyFile);
528                                         appendTaxFiles((tempTaxonomyFile + toString(processIDS[i]) + ".temp"), tempTaxonomyFile);
529                                         remove((newTaxonomyFile + toString(processIDS[i]) + ".temp").c_str());
530                                         remove((tempTaxonomyFile + toString(processIDS[i]) + ".temp").c_str());
531                                 }
532                                 
533                         }
534         #else
535                         ifstream inFASTA;
536                         openInputFile(fastaFileNames[s], inFASTA);
537                         numFastaSeqs=count(istreambuf_iterator<char>(inFASTA),istreambuf_iterator<char>(), '>');
538                         inFASTA.close();
539                         
540                         lines.push_back(new linePair(0, numFastaSeqs));
541                         
542                         driver(lines[0], newTaxonomyFile, tempTaxonomyFile, fastaFileNames[s]);
543         #endif  
544 #endif
545
546                 #ifdef USE_MPI  
547                         if (pid == 0) {  //this part does not need to be paralellized
548                 #endif
549
550                         m->mothurOutEndLine();
551                         m->mothurOut("It took " + toString(time(NULL) - start) + " secs to classify " + toString(numFastaSeqs) + " sequences."); m->mothurOutEndLine(); m->mothurOutEndLine();
552                         start = time(NULL);
553                         
554                         string group = "";
555                         if (groupfile != "") {  group = groupfileNames[s]; }
556                         
557                         PhyloSummary taxaSum(taxonomyFileName, group);
558                         
559                         if (m->control_pressed) {  for (int i = 0; i < outputNames.size(); i++) {       remove(outputNames[i].c_str()); } delete classify; return 0; }
560                         
561                         if (namefile == "") {  taxaSum.summarize(tempTaxonomyFile);  }
562                         else {
563                                 ifstream in;
564                                 openInputFile(tempTaxonomyFile, in);
565                                 
566                                 //read in users taxonomy file and add sequences to tree
567                                 string name, taxon;
568                                 while(!in.eof()){
569                                         in >> name >> taxon; gobble(in);
570                                         
571                                         itNames = nameMap.find(name);
572                 
573                                         if (itNames == nameMap.end()) { 
574                                                 m->mothurOut(name + " is not in your name file please correct."); m->mothurOutEndLine(); exit(1);
575                                         }else{
576                                                 for (int i = 0; i < itNames->second; i++) { 
577                                                         taxaSum.addSeqToTree(name, taxon);  //add it as many times as there are identical seqs
578                                                 }
579                                         }
580                                 }
581                                 in.close();
582                         }
583                         remove(tempTaxonomyFile.c_str());
584                         
585                         if (m->control_pressed) {  for (int i = 0; i < outputNames.size(); i++) {       remove(outputNames[i].c_str()); } delete classify; return 0; }
586                         
587                         //print summary file
588                         ofstream outTaxTree;
589                         openOutputFile(taxSummary, outTaxTree);
590                         taxaSum.print(outTaxTree);
591                         outTaxTree.close();
592                         
593                         //output taxonomy with the unclassified bins added
594                         ifstream inTax;
595                         openInputFile(newTaxonomyFile, inTax);
596                         
597                         ofstream outTax;
598                         string unclass = newTaxonomyFile + ".unclass.temp";
599                         openOutputFile(unclass, outTax);
600                         
601                         //get maxLevel from phylotree so you know how many 'unclassified's to add
602                         int maxLevel = taxaSum.getMaxLevel();
603                         
604                         //read taxfile - this reading and rewriting is done to preserve the confidence scores.
605                         string name, taxon;
606                         while (!inTax.eof()) {
607                                 if (m->control_pressed) {  for (int i = 0; i < outputNames.size(); i++) {       remove(outputNames[i].c_str()); } remove(unclass.c_str()); delete classify; return 0; }
608
609                                 inTax >> name >> taxon; gobble(inTax);
610                                 
611                                 string newTax = addUnclassifieds(taxon, maxLevel);
612                                 
613                                 outTax << name << '\t' << newTax << endl;
614                         }
615                         inTax.close();  
616                         outTax.close();
617                         
618                         remove(newTaxonomyFile.c_str());
619                         rename(unclass.c_str(), newTaxonomyFile.c_str());
620                         
621                         m->mothurOutEndLine();
622                         m->mothurOut("It took " + toString(time(NULL) - start) + " secs to create the summary file for  " + toString(numFastaSeqs) + " sequences."); m->mothurOutEndLine(); m->mothurOutEndLine();
623                         
624                         #ifdef USE_MPI  
625                                 }
626                         #endif
627
628                         m->mothurOutEndLine();
629                         m->mothurOut("Output File Names: "); m->mothurOutEndLine();
630                         for (int i = 0; i < outputNames.size(); i++) {  m->mothurOut(outputNames[i]); m->mothurOutEndLine();    }
631                         m->mothurOutEndLine();
632                 }
633                 
634                 delete classify;
635                 return 0;
636         }
637         catch(exception& e) {
638                 m->errorOut(e, "ClassifySeqsCommand", "execute");
639                 exit(1);
640         }
641 }
642
643 /**************************************************************************************************/
644 string ClassifySeqsCommand::addUnclassifieds(string tax, int maxlevel) {
645         try{
646                 string newTax, taxon;
647                 int level = 0;
648                 
649                 //keep what you have counting the levels
650                 while (tax.find_first_of(';') != -1) {
651                         //get taxon
652                         taxon = tax.substr(0,tax.find_first_of(';'))+';';
653                         tax = tax.substr(tax.find_first_of(';')+1, tax.length());
654                         newTax += taxon;
655                         level++;
656                 }
657                 
658                 //add "unclassified" until you reach maxLevel
659                 while (level < maxlevel) {
660                         newTax += "unclassified;";
661                         level++;
662                 }
663                 
664                 return newTax;
665         }
666         catch(exception& e) {
667                 m->errorOut(e, "ClassifySeqsCommand", "addUnclassifieds");
668                 exit(1);
669         }
670 }
671
672 /**************************************************************************************************/
673
674 void ClassifySeqsCommand::createProcesses(string taxFileName, string tempTaxFile, string filename) {
675         try {
676 #if defined (__APPLE__) || (__MACH__) || (linux) || (__linux)
677                 int process = 0;
678                 //              processIDS.resize(0);
679                 
680                 //loop through and create all the processes you want
681                 while (process != processors) {
682                         int pid = fork();
683                         
684                         if (pid > 0) {
685                                 processIDS.push_back(pid);  //create map from line number to pid so you can append files in correct order later
686                                 process++;
687                         }else if (pid == 0){
688                                 driver(lines[process], taxFileName + toString(getpid()) + ".temp", tempTaxFile + toString(getpid()) + ".temp", filename);
689                                 exit(0);
690                         }else { m->mothurOut("unable to spawn the necessary processes."); m->mothurOutEndLine(); exit(0); }
691                 }
692                 
693                 //force parent to wait until all the processes are done
694                 for (int i=0;i<processors;i++) { 
695                         int temp = processIDS[i];
696                         wait(&temp);
697                 }
698 #endif          
699         }
700         catch(exception& e) {
701                 m->errorOut(e, "ClassifySeqsCommand", "createProcesses");
702                 exit(1);
703         }
704 }
705 /**************************************************************************************************/
706
707 void ClassifySeqsCommand::appendTaxFiles(string temp, string filename) {
708         try{
709                 
710                 ofstream output;
711                 ifstream input;
712                 openOutputFileAppend(filename, output);
713                 openInputFile(temp, input);
714                 
715                 while(char c = input.get()){
716                         if(input.eof())         {       break;                  }
717                         else                            {       output << c;    }
718                 }
719                 
720                 input.close();
721                 output.close();
722         }
723         catch(exception& e) {
724                 m->errorOut(e, "ClassifySeqsCommand", "appendTaxFiles");
725                 exit(1);
726         }
727 }
728
729 //**********************************************************************************************************************
730
731 int ClassifySeqsCommand::driver(linePair* line, string taxFName, string tempTFName, string filename){
732         try {
733                 ofstream outTax;
734                 openOutputFile(taxFName, outTax);
735                 
736                 ofstream outTaxSimple;
737                 openOutputFile(tempTFName, outTaxSimple);
738         
739                 ifstream inFASTA;
740                 openInputFile(filename, inFASTA);
741
742                 inFASTA.seekg(line->start);
743                 
744                 string taxonomy;
745
746                 for(int i=0;i<line->numSeqs;i++){
747                         if (m->control_pressed) { return 0; }
748                         
749                         Sequence* candidateSeq = new Sequence(inFASTA);
750                         
751                         if (candidateSeq->getName() != "") {
752                                 taxonomy = classify->getTaxonomy(candidateSeq);
753                                 
754                                 if (m->control_pressed) { delete candidateSeq; return 0; }
755
756                                 if (taxonomy != "bad seq") {
757                                         //output confidence scores or not
758                                         if (probs) {
759                                                 outTax << candidateSeq->getName() << '\t' << taxonomy << endl;
760                                         }else{
761                                                 outTax << candidateSeq->getName() << '\t' << classify->getSimpleTax() << endl;
762                                         }
763                                         
764                                         outTaxSimple << candidateSeq->getName() << '\t' << classify->getSimpleTax() << endl;
765                                 }
766                         }                               
767                         delete candidateSeq;
768                         
769                         if((i+1) % 100 == 0){
770                                 m->mothurOut("Classifying sequence " + toString(i+1)); m->mothurOutEndLine();
771                         }
772                 }
773                 
774                 inFASTA.close();
775                 outTax.close();
776                 outTaxSimple.close();
777                 
778                 return 1;
779         }
780         catch(exception& e) {
781                 m->errorOut(e, "ClassifySeqsCommand", "driver");
782                 exit(1);
783         }
784 }
785 //**********************************************************************************************************************
786 #ifdef USE_MPI
787 int ClassifySeqsCommand::driverMPI(int start, int num, MPI_File& inMPI, MPI_File& newFile, MPI_File& tempFile, vector<long>& MPIPos){
788         try {
789                 MPI_Status statusNew; 
790                 MPI_Status statusTemp; 
791                 MPI_Status status; 
792                 
793                 int pid;
794                 MPI_Comm_rank(MPI_COMM_WORLD, &pid); //find out who we are
795         
796                 string taxonomy;
797                 string outputString;
798
799                 for(int i=0;i<num;i++){
800                 
801                         if (m->control_pressed) { return 0; }
802                 
803                         //read next sequence
804                         int length = MPIPos[start+i+1] - MPIPos[start+i];
805                         char* buf4 = new char[length];
806                         MPI_File_read_at(inMPI, MPIPos[start+i], buf4, length, MPI_CHAR, &status);
807                         
808                         string tempBuf = buf4;
809                         if (tempBuf.length() > length) { tempBuf = tempBuf.substr(0, length);  }
810                         istringstream iss (tempBuf,istringstream::in);
811                         delete buf4;
812
813                         Sequence* candidateSeq = new Sequence(iss);
814                         
815                         if (candidateSeq->getName() != "") {
816                                 taxonomy = classify->getTaxonomy(candidateSeq);
817                                 
818                                 if (taxonomy != "bad seq") {
819                                         //output confidence scores or not
820                                         if (probs) {
821                                                 outputString =  candidateSeq->getName() + "\t" + taxonomy + "\n";
822                                         }else{
823                                                 outputString =  candidateSeq->getName() + "\t" + classify->getSimpleTax() + "\n";
824                                         }
825                                         
826                                         int length = outputString.length();
827                                         char* buf2 = new char[length];
828                                         memcpy(buf2, outputString.c_str(), length);
829                                 
830                                         MPI_File_write_shared(newFile, buf2, length, MPI_CHAR, &statusNew);
831                                         delete buf2;
832
833                                         outputString =  candidateSeq->getName() + "\t" + classify->getSimpleTax() + "\n";
834                                         length = outputString.length();
835                                         char* buf = new char[length];
836                                         memcpy(buf, outputString.c_str(), length);
837                                 
838                                         MPI_File_write_shared(tempFile, buf, length, MPI_CHAR, &statusTemp);
839                                         delete buf;
840                                 }
841                         }                               
842                         delete candidateSeq;
843                         
844                         if((i+1) % 100 == 0){   cout << "Classifying sequence " << (i+1) << endl;       }
845                 }
846                 
847                 if(num % 100 != 0){     cout << "Classifying sequence " << (num) << endl;       }
848                 
849                 
850                 return 1;
851         }
852         catch(exception& e) {
853                 m->errorOut(e, "ClassifySeqsCommand", "driverMPI");
854                 exit(1);
855         }
856 }
857
858 //**********************************************************************************************************************
859 int ClassifySeqsCommand::MPIReadNamesFile(string nameFilename){
860         try {
861         
862                 nameMap.clear(); //remove old names
863                 
864                 MPI_File inMPI;
865                 MPI_Offset size;
866                 MPI_Status status;
867
868                 //char* inFileName = new char[nameFilename.length()];
869                 //memcpy(inFileName, nameFilename.c_str(), nameFilename.length());
870                 
871                 char inFileName[1024];
872                 strcpy(inFileName, nameFilename.c_str());
873
874                 MPI_File_open(MPI_COMM_WORLD, inFileName, MPI_MODE_RDONLY, MPI_INFO_NULL, &inMPI);  
875                 MPI_File_get_size(inMPI, &size);
876                 //delete inFileName;
877
878                 char* buffer = new char[size];
879                 MPI_File_read(inMPI, buffer, size, MPI_CHAR, &status);
880
881                 string tempBuf = buffer;
882                 if (tempBuf.length() > size) { tempBuf = tempBuf.substr(0, size);  }
883                 istringstream iss (tempBuf,istringstream::in);
884                 delete buffer;
885                 
886                 string firstCol, secondCol;
887                 while(!iss.eof()) {
888                         iss >> firstCol >> secondCol; gobble(iss);
889                         nameMap[firstCol] = getNumNames(secondCol);  //ex. seq1 seq1,seq3,seq5 -> seq1 = 3.
890                 }
891         
892                 MPI_File_close(&inMPI);
893                 
894                 return 1;
895         }
896         catch(exception& e) {
897                 m->errorOut(e, "ClassifySeqsCommand", "MPIReadNamesFile");
898                 exit(1);
899         }
900 }
901 #endif
902 /**************************************************************************************************/