]> git.donarmstrong.com Git - mothur.git/blob - chimeraslayercommand.cpp
629eca965b3ca1c084c3d837b6a2870ea8fa43ec
[mothur.git] / chimeraslayercommand.cpp
1 /*
2  *  chimeraslayercommand.cpp
3  *  Mothur
4  *
5  *  Created by westcott on 3/31/10.
6  *  Copyright 2010 Schloss Lab. All rights reserved.
7  *
8  */
9
10 #include "chimeraslayercommand.h"
11 #include "deconvolutecommand.h"
12 #include "referencedb.h"
13 #include "sequenceparser.h"
14
15 //**********************************************************************************************************************
16 vector<string> ChimeraSlayerCommand::setParameters(){   
17         try {
18                 CommandParameter ptemplate("reference", "InputTypes", "", "", "none", "none", "none",false,true); parameters.push_back(ptemplate);
19                 CommandParameter pfasta("fasta", "InputTypes", "", "", "none", "none", "none",false,true); parameters.push_back(pfasta);
20                 CommandParameter pname("name", "InputTypes", "", "", "none", "none", "none",false,false); parameters.push_back(pname);
21                 CommandParameter pgroup("group", "InputTypes", "", "", "none", "none", "none",false,false); parameters.push_back(pgroup);
22                 CommandParameter pwindow("window", "Number", "", "50", "", "", "",false,false); parameters.push_back(pwindow);
23                 CommandParameter pksize("ksize", "Number", "", "7", "", "", "",false,false); parameters.push_back(pksize);
24                 CommandParameter pmatch("match", "Number", "", "5.0", "", "", "",false,false); parameters.push_back(pmatch);
25                 CommandParameter pmismatch("mismatch", "Number", "", "-4.0", "", "", "",false,false); parameters.push_back(pmismatch);
26                 CommandParameter pminsim("minsim", "Number", "", "90", "", "", "",false,false); parameters.push_back(pminsim);
27                 CommandParameter pmincov("mincov", "Number", "", "70", "", "", "",false,false); parameters.push_back(pmincov);
28                 CommandParameter pminsnp("minsnp", "Number", "", "10", "", "", "",false,false); parameters.push_back(pminsnp);
29                 CommandParameter pminbs("minbs", "Number", "", "90", "", "", "",false,false); parameters.push_back(pminbs);
30                 CommandParameter psearch("search", "Multiple", "kmer-blast", "blast", "", "", "",false,false); parameters.push_back(psearch);
31                 CommandParameter pprocessors("processors", "Number", "", "1", "", "", "",false,false); parameters.push_back(pprocessors);
32                 CommandParameter prealign("realign", "Boolean", "", "T", "", "", "",false,false); parameters.push_back(prealign);
33                 CommandParameter ptrim("trim", "Boolean", "", "F", "", "", "",false,false); parameters.push_back(ptrim);
34                 CommandParameter psplit("split", "Boolean", "", "F", "", "", "",false,false); parameters.push_back(psplit);
35                 CommandParameter pnumwanted("numwanted", "Number", "", "15", "", "", "",false,false); parameters.push_back(pnumwanted);
36                 CommandParameter piters("iters", "Number", "", "1000", "", "", "",false,false); parameters.push_back(piters);
37                 CommandParameter pdivergence("divergence", "Number", "", "1.007", "", "", "",false,false); parameters.push_back(pdivergence);
38                 CommandParameter pparents("parents", "Number", "", "3", "", "", "",false,false); parameters.push_back(pparents);
39                 CommandParameter pincrement("increment", "Number", "", "5", "", "", "",false,false); parameters.push_back(pincrement);
40                 CommandParameter pblastlocation("blastlocation", "String", "", "", "", "", "",false,false); parameters.push_back(pblastlocation);
41                 CommandParameter pinputdir("inputdir", "String", "", "", "", "", "",false,false); parameters.push_back(pinputdir);
42                 CommandParameter poutputdir("outputdir", "String", "", "", "", "", "",false,false); parameters.push_back(poutputdir);
43                 CommandParameter psave("save", "Boolean", "", "F", "", "", "",false,false); parameters.push_back(psave);
44
45                 vector<string> myArray;
46                 for (int i = 0; i < parameters.size(); i++) {   myArray.push_back(parameters[i].name);          }
47                 return myArray;
48         }
49         catch(exception& e) {
50                 m->errorOut(e, "ChimeraSlayerCommand", "setParameters");
51                 exit(1);
52         }
53 }
54 //**********************************************************************************************************************
55 string ChimeraSlayerCommand::getHelpString(){   
56         try {
57                 string helpString = "";
58                 helpString += "The chimera.slayer command reads a fastafile and referencefile and outputs potentially chimeric sequences.\n";
59                 helpString += "This command was modeled after the chimeraSlayer written by the Broad Institute.\n";
60                 helpString += "The chimera.slayer command parameters are fasta, name, template, processors, trim, ksize, window, match, mismatch, divergence. minsim, mincov, minbs, minsnp, parents, search, iters, increment, numwanted, blastlocation and realign.\n";
61                 helpString += "The fasta parameter allows you to enter the fasta file containing your potentially chimeric sequences, and is required, unless you have a valid current fasta file. \n";
62                 helpString += "The name parameter allows you to provide a name file, if you are using reference=self. \n";
63                 helpString += "The group parameter allows you to provide a group file. The group file can be used with a namesfile and reference=self. When checking sequences, only sequences from the same group as the query sequence will be used as the reference. \n";
64                 helpString += "You may enter multiple fasta files by separating their names with dashes. ie. fasta=abrecovery.fasta-amazon.fasta \n";
65                 helpString += "The reference parameter allows you to enter a reference file containing known non-chimeric sequences, and is required. You may also set template=self, in this case the abundant sequences will be used as potential parents. \n";
66                 helpString += "The processors parameter allows you to specify how many processors you would like to use.  The default is 1. \n";
67 #ifdef USE_MPI
68                 helpString += "When using MPI, the processors parameter is set to the number of MPI processes running. \n";
69 #endif
70                 helpString += "The trim parameter allows you to output a new fasta file containing your sequences with the chimeric ones trimmed to include only their longest piece, default=F. \n";
71                 helpString += "The split parameter allows you to check both pieces of non-chimeric sequence for chimeras, thus looking for trimeras and quadmeras. default=F. \n";
72                 helpString += "The window parameter allows you to specify the window size for searching for chimeras, default=50. \n";
73                 helpString += "The increment parameter allows you to specify how far you move each window while finding chimeric sequences, default=5.\n";
74                 helpString += "The numwanted parameter allows you to specify how many sequences you would each query sequence compared with, default=15.\n";
75                 helpString += "The ksize parameter allows you to input kmersize, default is 7, used if search is kmer. \n";
76                 helpString += "The match parameter allows you to reward matched bases in blast search, default is 5. \n";
77                 helpString += "The parents parameter allows you to select the number of potential parents to investigate from the numwanted best matches after rating them, default is 3. \n";
78                 helpString += "The mismatch parameter allows you to penalize mismatched bases in blast search, default is -4. \n";
79                 helpString += "The divergence parameter allows you to set a cutoff for chimera determination, default is 1.007. \n";
80                 helpString += "The iters parameter allows you to specify the number of bootstrap iters to do with the chimeraslayer method, default=1000.\n";
81                 helpString += "The minsim parameter allows you to specify a minimum similarity with the parent fragments, default=90. \n";
82                 helpString += "The mincov parameter allows you to specify minimum coverage by closest matches found in template. Default is 70, meaning 70%. \n";
83                 helpString += "The minbs parameter allows you to specify minimum bootstrap support for calling a sequence chimeric. Default is 90, meaning 90%. \n";
84                 helpString += "The minsnp parameter allows you to specify percent of SNPs to sample on each side of breakpoint for computing bootstrap support (default: 10) \n";
85                 helpString += "The search parameter allows you to specify search method for finding the closest parent. Choices are blast, and kmer, default blast. \n";
86                 helpString += "The realign parameter allows you to realign the query to the potential parents. Choices are true or false, default true.  \n";
87                 helpString += "The blastlocation parameter allows you to specify the location of your blast executable. By default mothur will look in ./blast/bin relative to mothur's executable.  \n";
88                 helpString += "If the save parameter is set to true the reference sequences will be saved in memory, to clear them later you can use the clear.memory command. Default=f.";
89                 helpString += "The chimera.slayer command should be in the following format: \n";
90                 helpString += "chimera.slayer(fasta=yourFastaFile, reference=yourTemplate, search=yourSearch) \n";
91                 helpString += "Example: chimera.slayer(fasta=AD.align, reference=core_set_aligned.imputed.fasta, search=kmer) \n";
92                 helpString += "Note: No spaces between parameter labels (i.e. fasta), '=' and parameters (i.e.yourFastaFile).\n";       
93                 return helpString;
94         }
95         catch(exception& e) {
96                 m->errorOut(e, "ChimeraSlayerCommand", "getHelpString");
97                 exit(1);
98         }
99 }
100 //**********************************************************************************************************************
101 ChimeraSlayerCommand::ChimeraSlayerCommand(){   
102         try {
103                 abort = true; calledHelp = true;
104                 setParameters();
105                 vector<string> tempOutNames;
106                 outputTypes["chimera"] = tempOutNames;
107                 outputTypes["accnos"] = tempOutNames;
108                 outputTypes["fasta"] = tempOutNames;
109         }
110         catch(exception& e) {
111                 m->errorOut(e, "ChimeraSlayerCommand", "ChimeraSlayerCommand");
112                 exit(1);
113         }
114 }
115 //***************************************************************************************************************
116 ChimeraSlayerCommand::ChimeraSlayerCommand(string option)  {
117         try {
118                 abort = false; calledHelp = false;   
119                 ReferenceDB* rdb = ReferenceDB::getInstance();
120                 
121                 //allow user to run help
122                 if(option == "help") { help(); abort = true; calledHelp = true; }
123                 else if(option == "citation") { citation(); abort = true; calledHelp = true;}
124                 
125                 else {
126                         vector<string> myArray = setParameters();
127                         
128                         OptionParser parser(option);
129                         map<string,string> parameters = parser.getParameters();
130                         
131                         ValidParameters validParameter("chimera.slayer");
132                         map<string,string>::iterator it;
133                         
134                         //check to make sure all parameters are valid for command
135                         for (it = parameters.begin(); it != parameters.end(); it++) { 
136                                 if (validParameter.isValidParameter(it->first, myArray, it->second) != true) {  abort = true;  }
137                         }
138                         
139                         vector<string> tempOutNames;
140                         outputTypes["chimera"] = tempOutNames;
141                         outputTypes["accnos"] = tempOutNames;
142                         outputTypes["fasta"] = tempOutNames;
143                 
144                         //if the user changes the input directory command factory will send this info to us in the output parameter 
145                         string inputDir = validParameter.validFile(parameters, "inputdir", false);              
146                         if (inputDir == "not found"){   inputDir = "";          }
147                                                 
148                         //check for required parameters
149                         fastafile = validParameter.validFile(parameters, "fasta", false);
150                         if (fastafile == "not found") {                                 
151                                 //if there is a current fasta file, use it
152                                 string filename = m->getFastaFile(); 
153                                 if (filename != "") { fastaFileNames.push_back(filename); m->mothurOut("Using " + filename + " as input file for the fasta parameter."); m->mothurOutEndLine(); }
154                                 else {  m->mothurOut("You have no current fastafile and the fasta parameter is required."); m->mothurOutEndLine(); abort = true; }
155                         }else { 
156                                 m->splitAtDash(fastafile, fastaFileNames);
157                                 
158                                 //go through files and make sure they are good, if not, then disregard them
159                                 for (int i = 0; i < fastaFileNames.size(); i++) {
160                                         
161                                         bool ignore = false;
162                                         if (fastaFileNames[i] == "current") { 
163                                                 fastaFileNames[i] = m->getFastaFile(); 
164                                                 if (fastaFileNames[i] != "") {  m->mothurOut("Using " + fastaFileNames[i] + " as input file for the fasta parameter where you had given current."); m->mothurOutEndLine(); }
165                                                 else {  
166                                                         m->mothurOut("You have no current fastafile, ignoring current."); m->mothurOutEndLine(); ignore=true; 
167                                                         //erase from file list
168                                                         fastaFileNames.erase(fastaFileNames.begin()+i);
169                                                         i--;
170                                                 }
171                                         }
172                                         
173                                         if (!ignore) {
174                                                 
175                                                 if (inputDir != "") {
176                                                         string path = m->hasPath(fastaFileNames[i]);
177                                                         //if the user has not given a path then, add inputdir. else leave path alone.
178                                                         if (path == "") {       fastaFileNames[i] = inputDir + fastaFileNames[i];               }
179                                                 }
180                 
181                                                 int ableToOpen;
182                                                 ifstream in;
183                                                 
184                                                 ableToOpen = m->openInputFile(fastaFileNames[i], in, "noerror");
185                                         
186                                                 //if you can't open it, try default location
187                                                 if (ableToOpen == 1) {
188                                                         if (m->getDefaultPath() != "") { //default path is set
189                                                                 string tryPath = m->getDefaultPath() + m->getSimpleName(fastaFileNames[i]);
190                                                                 m->mothurOut("Unable to open " + fastaFileNames[i] + ". Trying default " + tryPath); m->mothurOutEndLine();
191                                                                 ifstream in2;
192                                                                 ableToOpen = m->openInputFile(tryPath, in2, "noerror");
193                                                                 in2.close();
194                                                                 fastaFileNames[i] = tryPath;
195                                                         }
196                                                 }
197                                                 
198                                                 if (ableToOpen == 1) {
199                                                         if (m->getOutputDir() != "") { //default path is set
200                                                                 string tryPath = m->getOutputDir() + m->getSimpleName(fastaFileNames[i]);
201                                                                 m->mothurOut("Unable to open " + fastaFileNames[i] + ". Trying output directory " + tryPath); m->mothurOutEndLine();
202                                                                 ifstream in2;
203                                                                 ableToOpen = m->openInputFile(tryPath, in2, "noerror");
204                                                                 in2.close();
205                                                                 fastaFileNames[i] = tryPath;
206                                                         }
207                                                 }
208                                                 
209                                                 in.close();
210                                                 
211                                                 if (ableToOpen == 1) { 
212                                                         m->mothurOut("Unable to open " + fastaFileNames[i] + ". It will be disregarded."); m->mothurOutEndLine(); 
213                                                         //erase from file list
214                                                         fastaFileNames.erase(fastaFileNames.begin()+i);
215                                                         i--;
216                                                 }else {
217                                                         m->setFastaFile(fastaFileNames[i]);
218                                                 }
219                                         }
220                                 }
221                                 
222                                 //make sure there is at least one valid file left
223                                 if (fastaFileNames.size() == 0) { m->mothurOut("[ERROR]: no valid files."); m->mothurOutEndLine(); abort = true; }
224                         }
225                         
226                         
227                         //check for required parameters
228                         bool hasName = true;
229                         namefile = validParameter.validFile(parameters, "name", false);
230                         if (namefile == "not found") { namefile = "";  hasName = false; }
231                         else { 
232                                 m->splitAtDash(namefile, nameFileNames);
233                                 
234                                 //go through files and make sure they are good, if not, then disregard them
235                                 for (int i = 0; i < nameFileNames.size(); i++) {
236                                         
237                                         bool ignore = false;
238                                         if (nameFileNames[i] == "current") { 
239                                                 nameFileNames[i] = m->getNameFile(); 
240                                                 if (nameFileNames[i] != "") {  m->mothurOut("Using " + nameFileNames[i] + " as input file for the name parameter where you had given current."); m->mothurOutEndLine(); }
241                                                 else {  
242                                                         m->mothurOut("You have no current namefile, ignoring current."); m->mothurOutEndLine(); ignore=true; 
243                                                         //erase from file list
244                                                         nameFileNames.erase(nameFileNames.begin()+i);
245                                                         i--;
246                                                 }
247                                         }
248                                         
249                                         if (!ignore) {
250                                                 
251                                                 if (inputDir != "") {
252                                                         string path = m->hasPath(nameFileNames[i]);
253                                                         //if the user has not given a path then, add inputdir. else leave path alone.
254                                                         if (path == "") {       nameFileNames[i] = inputDir + nameFileNames[i];         }
255                                                 }
256                                                 
257                                                 int ableToOpen;
258                                                 ifstream in;
259                                                 
260                                                 ableToOpen = m->openInputFile(nameFileNames[i], in, "noerror");
261                                                 
262                                                 //if you can't open it, try default location
263                                                 if (ableToOpen == 1) {
264                                                         if (m->getDefaultPath() != "") { //default path is set
265                                                                 string tryPath = m->getDefaultPath() + m->getSimpleName(nameFileNames[i]);
266                                                                 m->mothurOut("Unable to open " + nameFileNames[i] + ". Trying default " + tryPath); m->mothurOutEndLine();
267                                                                 ifstream in2;
268                                                                 ableToOpen = m->openInputFile(tryPath, in2, "noerror");
269                                                                 in2.close();
270                                                                 nameFileNames[i] = tryPath;
271                                                         }
272                                                 }
273                                                 
274                                                 if (ableToOpen == 1) {
275                                                         if (m->getOutputDir() != "") { //default path is set
276                                                                 string tryPath = m->getOutputDir() + m->getSimpleName(nameFileNames[i]);
277                                                                 m->mothurOut("Unable to open " + nameFileNames[i] + ". Trying output directory " + tryPath); m->mothurOutEndLine();
278                                                                 ifstream in2;
279                                                                 ableToOpen = m->openInputFile(tryPath, in2, "noerror");
280                                                                 in2.close();
281                                                                 nameFileNames[i] = tryPath;
282                                                         }
283                                                 }
284                                                 
285                                                 in.close();
286                                                 
287                                                 if (ableToOpen == 1) { 
288                                                         m->mothurOut("Unable to open " + nameFileNames[i] + ". It will be disregarded."); m->mothurOutEndLine(); 
289                                                         //erase from file list
290                                                         nameFileNames.erase(nameFileNames.begin()+i);
291                                                         i--;
292                                                 }else {
293                                                         m->setNameFile(nameFileNames[i]);
294                                                 }
295                                         }
296                                 }
297                                 
298                                 //make sure there is at least one valid file left
299                                 if (nameFileNames.size() == 0) { m->mothurOut("[ERROR]: no valid name files."); m->mothurOutEndLine(); abort = true; }
300                         }
301                         
302                         if (hasName && (nameFileNames.size() != fastaFileNames.size())) { m->mothurOut("[ERROR]: The number of namefiles does not match the number of fastafiles, please correct."); m->mothurOutEndLine(); abort=true; }
303                         
304                         bool hasGroup = true;
305                         groupfile = validParameter.validFile(parameters, "group", false);
306                         if (groupfile == "not found") { groupfile = "";  hasGroup = false; }
307                         else { 
308                                 m->splitAtDash(groupfile, groupFileNames);
309                                 
310                                 //go through files and make sure they are good, if not, then disregard them
311                                 for (int i = 0; i < groupFileNames.size(); i++) {
312                                         
313                                         bool ignore = false;
314                                         if (groupFileNames[i] == "current") { 
315                                                 groupFileNames[i] = m->getGroupFile(); 
316                                                 if (groupFileNames[i] != "") {  m->mothurOut("Using " + groupFileNames[i] + " as input file for the group parameter where you had given current."); m->mothurOutEndLine(); }
317                                                 else {  
318                                                         m->mothurOut("You have no current namefile, ignoring current."); m->mothurOutEndLine(); ignore=true; 
319                                                         //erase from file list
320                                                         groupFileNames.erase(groupFileNames.begin()+i);
321                                                         i--;
322                                                 }
323                                         }
324                                         
325                                         if (!ignore) {
326                                                 
327                                                 if (inputDir != "") {
328                                                         string path = m->hasPath(groupFileNames[i]);
329                                                         //if the user has not given a path then, add inputdir. else leave path alone.
330                                                         if (path == "") {       groupFileNames[i] = inputDir + groupFileNames[i];               }
331                                                 }
332                                                 
333                                                 int ableToOpen;
334                                                 ifstream in;
335                                                 
336                                                 ableToOpen = m->openInputFile(groupFileNames[i], in, "noerror");
337                                                 
338                                                 //if you can't open it, try default location
339                                                 if (ableToOpen == 1) {
340                                                         if (m->getDefaultPath() != "") { //default path is set
341                                                                 string tryPath = m->getDefaultPath() + m->getSimpleName(groupFileNames[i]);
342                                                                 m->mothurOut("Unable to open " + groupFileNames[i] + ". Trying default " + tryPath); m->mothurOutEndLine();
343                                                                 ifstream in2;
344                                                                 ableToOpen = m->openInputFile(tryPath, in2, "noerror");
345                                                                 in2.close();
346                                                                 groupFileNames[i] = tryPath;
347                                                         }
348                                                 }
349                                                 
350                                                 if (ableToOpen == 1) {
351                                                         if (m->getOutputDir() != "") { //default path is set
352                                                                 string tryPath = m->getOutputDir() + m->getSimpleName(groupFileNames[i]);
353                                                                 m->mothurOut("Unable to open " + groupFileNames[i] + ". Trying output directory " + tryPath); m->mothurOutEndLine();
354                                                                 ifstream in2;
355                                                                 ableToOpen = m->openInputFile(tryPath, in2, "noerror");
356                                                                 in2.close();
357                                                                 groupFileNames[i] = tryPath;
358                                                         }
359                                                 }
360                                                 
361                                                 in.close();
362                                                 
363                                                 if (ableToOpen == 1) { 
364                                                         m->mothurOut("Unable to open " + groupFileNames[i] + ". It will be disregarded."); m->mothurOutEndLine(); 
365                                                         //erase from file list
366                                                         groupFileNames.erase(groupFileNames.begin()+i);
367                                                         i--;
368                                                 }else {
369                                                         m->setGroupFile(groupFileNames[i]);
370                                                 }
371                                         }
372                                 }
373                                 
374                                 //make sure there is at least one valid file left
375                                 if (groupFileNames.size() == 0) { m->mothurOut("[ERROR]: no valid group files."); m->mothurOutEndLine(); abort = true; }
376                         }
377                         
378                         if (hasGroup && (groupFileNames.size() != fastaFileNames.size())) { m->mothurOut("[ERROR]: The number of groupfiles does not match the number of fastafiles, please correct."); m->mothurOutEndLine(); abort=true; }
379                         
380                         
381                         //if the user changes the output directory command factory will send this info to us in the output parameter 
382                         outputDir = validParameter.validFile(parameters, "outputdir", false);           if (outputDir == "not found"){  outputDir = ""; }
383                         
384                         string temp = validParameter.validFile(parameters, "processors", false);        if (temp == "not found"){       temp = m->getProcessors();      }
385                         m->setProcessors(temp);
386                         convert(temp, processors);
387                         
388                         temp = validParameter.validFile(parameters, "save", false);                     if (temp == "not found"){       temp = "f";                             }
389                         save = m->isTrue(temp); 
390                         rdb->save = save; 
391                         if (save) { //clear out old references
392                                 rdb->clearMemory();     
393                         }
394                         
395                         string path;
396                         it = parameters.find("reference");
397                         //user has given a template file
398                         if(it != parameters.end()){ 
399                                 if (it->second == "self") { 
400                                         templatefile = "self"; 
401                                         if (save) {
402                                                 m->mothurOut("[WARNING]: You can't save reference=self, ignoring save."); 
403                                                 m->mothurOutEndLine();
404                                                 save = false;
405                                         }
406                                 }
407                                 else {
408                                         path = m->hasPath(it->second);
409                                         //if the user has not given a path then, add inputdir. else leave path alone.
410                                         if (path == "") {       parameters["reference"] = inputDir + it->second;                }
411                                         
412                                         templatefile = validParameter.validFile(parameters, "reference", true);
413                                         if (templatefile == "not open") { abort = true; }
414                                         else if (templatefile == "not found") { //check for saved reference sequences
415                                                 if (rdb->referenceSeqs.size() != 0) {
416                                                         templatefile = "saved";
417                                                 }else {
418                                                         m->mothurOut("[ERROR]: You don't have any saved reference sequences and the reference parameter is a required."); 
419                                                         m->mothurOutEndLine();
420                                                         abort = true; 
421                                                 }
422                                         }else { if (save) {     rdb->setSavedReference(templatefile);   }       }       
423                                 }
424                         }else if (hasName) {  templatefile = "self"; 
425                                 if (save) {
426                                         m->mothurOut("[WARNING]: You can't save reference=self, ignoring save."); 
427                                         m->mothurOutEndLine();
428                                         save = false;
429                                 }
430                         }
431                         else { 
432                                 if (rdb->referenceSeqs.size() != 0) {
433                                         templatefile = "saved";
434                                 }else {
435                                         m->mothurOut("[ERROR]: You don't have any saved reference sequences and the reference parameter is a required."); 
436                                         m->mothurOutEndLine();
437                                         templatefile = ""; abort = true; 
438                                 } 
439                         }
440                         
441                         
442                         
443                         temp = validParameter.validFile(parameters, "ksize", false);                    if (temp == "not found") { temp = "7"; }
444                         convert(temp, ksize);
445                                                 
446                         temp = validParameter.validFile(parameters, "window", false);                   if (temp == "not found") { temp = "50"; }                       
447                         convert(temp, window);
448                         
449                         temp = validParameter.validFile(parameters, "match", false);                    if (temp == "not found") { temp = "5"; }
450                         convert(temp, match);
451                         
452                         temp = validParameter.validFile(parameters, "mismatch", false);                 if (temp == "not found") { temp = "-4"; }
453                         convert(temp, mismatch);
454                         
455                         temp = validParameter.validFile(parameters, "divergence", false);               if (temp == "not found") { temp = "1.007"; }
456                         convert(temp, divR);
457                         
458                         temp = validParameter.validFile(parameters, "minsim", false);                   if (temp == "not found") { temp = "90"; }
459                         convert(temp, minSimilarity);
460                         
461                         temp = validParameter.validFile(parameters, "mincov", false);                   if (temp == "not found") { temp = "70"; }
462                         convert(temp, minCoverage);
463                         
464                         temp = validParameter.validFile(parameters, "minbs", false);                    if (temp == "not found") { temp = "90"; }
465                         convert(temp, minBS);
466                         
467                         temp = validParameter.validFile(parameters, "minsnp", false);                   if (temp == "not found") { temp = "10"; }
468                         convert(temp, minSNP);
469
470                         temp = validParameter.validFile(parameters, "parents", false);                  if (temp == "not found") { temp = "3"; }
471                         convert(temp, parents); 
472                         
473                         temp = validParameter.validFile(parameters, "realign", false);                  if (temp == "not found") { temp = "t"; }
474                         realign = m->isTrue(temp); 
475                         
476                         temp = validParameter.validFile(parameters, "trim", false);                             if (temp == "not found") { temp = "f"; }
477                         trim = m->isTrue(temp); 
478                         
479                         temp = validParameter.validFile(parameters, "split", false);                    if (temp == "not found") { temp = "f"; }
480                         trimera = m->isTrue(temp); 
481                         
482                         search = validParameter.validFile(parameters, "search", false);                 if (search == "not found") { search = "blast"; }
483                         
484                         temp = validParameter.validFile(parameters, "iters", false);                    if (temp == "not found") { temp = "1000"; }             
485                         convert(temp, iters); 
486                          
487                         temp = validParameter.validFile(parameters, "increment", false);                if (temp == "not found") { temp = "5"; }
488                         convert(temp, increment);
489                         
490                         temp = validParameter.validFile(parameters, "numwanted", false);                if (temp == "not found") { temp = "15"; }               
491                         convert(temp, numwanted);
492                         
493                         blastlocation = validParameter.validFile(parameters, "blastlocation", false);   
494                         if (blastlocation == "not found") { blastlocation = ""; }
495                         else {
496                                 //add / to name if needed
497                                 string lastChar = blastlocation.substr(blastlocation.length()-1);
498 #if defined (__APPLE__) || (__MACH__) || (linux) || (__linux)
499                                 if (lastChar != "/") { blastlocation += "/"; }
500 #else
501                                 if (lastChar != "\\") { blastlocation += "\\"; }        
502 #endif
503                                 blastlocation = m->getFullPathName(blastlocation);
504                                 string formatdbCommand = "";
505 #if defined (__APPLE__) || (__MACH__) || (linux) || (__linux)
506                                 formatdbCommand = blastlocation + "formatdb";   
507 #else
508                                 formatdbCommand = blastlocation + "formatdb.exe";
509 #endif
510                                 
511                                 //test to make sure formatdb exists
512                                 ifstream in;
513                                 formatdbCommand = m->getFullPathName(formatdbCommand);
514                                 int ableToOpen = m->openInputFile(formatdbCommand, in, "no error"); in.close();
515                                 if(ableToOpen == 1) {   m->mothurOut("[ERROR]: " + formatdbCommand + " file does not exist. mothur requires formatdb.exe to run chimera.slayer."); m->mothurOutEndLine(); abort = true; }
516                                 
517                                 string blastCommand = "";
518 #if defined (__APPLE__) || (__MACH__) || (linux) || (__linux)
519                                 blastCommand = blastlocation + "megablast";     
520 #else
521                                 blastCommand = blastlocation + "megablast.exe";
522 #endif
523                                 //test to make sure formatdb exists
524                                 ifstream in2;
525                                 blastCommand = m->getFullPathName(blastCommand);
526                                 ableToOpen = m->openInputFile(blastCommand, in2, "no error"); in2.close();
527                                 if(ableToOpen == 1) {   m->mothurOut("[ERROR]: " + blastCommand + " file does not exist. mothur requires blastall.exe to run chimera.slayer."); m->mothurOutEndLine(); abort = true; }
528                         }
529
530                         if ((search != "blast") && (search != "kmer")) { m->mothurOut(search + " is not a valid search."); m->mothurOutEndLine(); abort = true;  }
531                         
532                         if (hasName && (templatefile != "self")) { m->mothurOut("You have provided a namefile and the reference parameter is not set to self. I am not sure what reference you are trying to use, aborting."); m->mothurOutEndLine(); abort=true; }
533                         if (hasGroup && (templatefile != "self")) { m->mothurOut("You have provided a group file and the reference parameter is not set to self. I am not sure what reference you are trying to use, aborting."); m->mothurOutEndLine(); abort=true; }
534
535                 }
536         }
537         catch(exception& e) {
538                 m->errorOut(e, "ChimeraSlayerCommand", "ChimeraSlayerCommand");
539                 exit(1);
540         }
541 }
542 //***************************************************************************************************************
543
544 int ChimeraSlayerCommand::execute(){
545         try{
546                 if (abort == true) { if (calledHelp) { return 0; }  return 2;   }
547                         
548                 for (int s = 0; s < fastaFileNames.size(); s++) {
549                                 
550                         m->mothurOut("Checking sequences from " + fastaFileNames[s] + " ..." ); m->mothurOutEndLine();
551                 
552                         int start = time(NULL); 
553                         
554                         //you provided a groupfile
555                         string groupFile = "";
556                         if (groupFileNames.size() != 0) { groupFile = groupFileNames[s]; }
557                         
558                         //maps a filename to priority map. 
559                         //if no groupfile this is fastafileNames[s] -> prioirity
560                         //if groupfile then this is each groups seqs -> priority
561                         map<string, map<string, int> > fileToPriority; 
562                         map<string, map<string, int> >::iterator itFile;
563                         map<string, string> fileGroup;
564                         map<string, int> priority;
565                         fileToPriority[fastaFileNames[s]] = priority; //default
566                         fileGroup[fastaFileNames[s]] = "noGroup";
567                         SequenceParser* parser = NULL;
568                         int totalSeqs = 0;
569                         int totalChimeras = 0;
570                         
571                         if ((templatefile == "self") && (groupFile == "")) { 
572                                 fileGroup.clear();
573                                 fileToPriority.clear();
574                                 if (processors != 1) { m->mothurOut("When using template=self, mothur can only use 1 processor, continuing."); m->mothurOutEndLine(); processors = 1; }
575                                 string nameFile = "";
576                                 if (nameFileNames.size() != 0) { //you provided a namefile and we don't need to create one
577                                         nameFile = nameFileNames[s];
578                                 }else {  nameFile = getNamesFile(fastaFileNames[s]); }
579                                 
580                                 //sort fastafile by abundance, returns new sorted fastafile name
581                                 m->mothurOut("Sorting fastafile according to abundance..."); cout.flush(); 
582                                 priority = sortFastaFile(fastaFileNames[s], nameFile);
583                                 m->mothurOut("Done."); m->mothurOutEndLine();
584                                 
585                                 fileToPriority[fastaFileNames[s]] = priority;
586                                 if (m->control_pressed) {  for (int j = 0; j < outputNames.size(); j++) {       m->mothurRemove(outputNames[j]);        }  return 0;    }
587                         }else if ((templatefile == "self") && (groupFile != "")) {
588                                 fileGroup.clear();
589                                 fileToPriority.clear();
590                                 string nameFile = "";
591                                 if (nameFileNames.size() != 0) { //you provided a namefile and we don't need to create one
592                                         nameFile = nameFileNames[s];
593                                 }else { nameFile = getNamesFile(fastaFileNames[s]); }
594                                 
595                                 //Parse sequences by group
596                                 parser = new SequenceParser(groupFile, fastaFileNames[s], nameFile);
597                                 vector<string> groups = parser->getNamesOfGroups();
598                                 
599                                 for (int i = 0; i < groups.size(); i++) {
600                                         vector<Sequence> thisGroupsSeqs = parser->getSeqs(groups[i]);
601                                         map<string, string> thisGroupsMap = parser->getNameMap(groups[i]);
602                                         string newFastaFile = outputDir + m->getRootName(m->getSimpleName(fastaFileNames[s])) + groups[i] + "-sortedTemp.fasta";
603                                         priority = sortFastaFile(thisGroupsSeqs, thisGroupsMap, newFastaFile); 
604                                         fileToPriority[newFastaFile] = priority;
605                                         fileGroup[newFastaFile] = groups[i];
606                                 }
607                         }
608                         
609                         if (outputDir == "") { outputDir = m->hasPath(fastaFileNames[s]);  }//if user entered a file with a path then preserve it                               
610                         string outputFileName = outputDir + m->getRootName(m->getSimpleName(fastaFileNames[s])) + "slayer.chimera";
611                         string accnosFileName = outputDir + m->getRootName(m->getSimpleName(fastaFileNames[s]))  + "slayer.accnos";
612                         string trimFastaFileName = outputDir + m->getRootName(m->getSimpleName(fastaFileNames[s]))  + "slayer.fasta";
613                         
614                         //clears files
615                         ofstream out, out1, out2;
616                         m->openOutputFile(outputFileName, out); out.close(); 
617                         m->openOutputFile(accnosFileName, out1); out1.close();
618                         if (trim) { m->openOutputFile(trimFastaFileName, out2); out2.close(); }
619                         outputNames.push_back(outputFileName); outputTypes["chimera"].push_back(outputFileName);
620                         outputNames.push_back(accnosFileName); outputTypes["accnos"].push_back(accnosFileName);
621                         if (trim) {  outputNames.push_back(trimFastaFileName); outputTypes["fasta"].push_back(trimFastaFileName); }
622                         
623                         
624                         for (itFile = fileToPriority.begin(); itFile != fileToPriority.end(); itFile++) {
625                                 
626                                 string thisFastaName = itFile->first;
627                                 map<string, int> thisPriority = itFile->second;
628                                 
629                                 //this is true when you have parsed by groups
630                                 if (fileToPriority.size() > 1) { m->mothurOutEndLine(); m->mothurOut("Checking sequences from group: " + fileGroup[thisFastaName] + "."); m->mothurOutEndLine();  }
631                                 
632                                 string thisoutputFileName = outputDir + m->getRootName(m->getSimpleName(thisFastaName)) + fileGroup[thisFastaName] + "slayer.chimera";
633                                 string thisaccnosFileName = outputDir + m->getRootName(m->getSimpleName(thisFastaName)) + fileGroup[thisFastaName] + "slayer.accnos";
634                                 string thistrimFastaFileName = outputDir + m->getRootName(m->getSimpleName(thisFastaName)) + fileGroup[thisFastaName] + "slayer.fasta";
635                                 
636                                 //create chimera here if you are mac or linux because fork will copy for you. Create in create processes instead if you are windows.
637                                 if (processors == 1) { templateSeqsLength = setupChimera(thisFastaName, thisPriority); }
638                                 else {
639                                         #if defined (__APPLE__) || (__MACH__) || (linux) || (__linux) || USE_MPI
640                                                 templateSeqsLength = setupChimera(thisFastaName, thisPriority);
641                                         #endif
642                                 }
643                                 
644                                 if (m->control_pressed) {  if (parser != NULL) { delete parser; } for (int j = 0; j < outputNames.size(); j++) {        m->mothurRemove(outputNames[j]);        }  return 0;    }
645                                 
646                         #ifdef USE_MPI  
647                                 MPIExecute(thisFastaName, thisoutputFileName, thisaccnosFileName, thistrimFastaFileName);
648                                 if (m->control_pressed) { outputTypes.clear();  for (int j = 0; j < outputNames.size(); j++) {  m->mothurRemove(outputNames[j]);        }  return 0;  }
649                         #else
650                                         //break up file
651                                         vector<unsigned long long> positions; 
652                                 #if defined (__APPLE__) || (__MACH__) || (linux) || (__linux)
653                                         positions = m->divideFile(thisFastaName, processors);
654                                         for (int i = 0; i < (positions.size()-1); i++) {        lines.push_back(new linePair(positions[i], positions[(i+1)]));  }
655                                 #else
656                                         if (processors == 1) {  lines.push_back(new linePair(0, 1000)); }
657                                         else {
658                                                 positions = m->setFilePosFasta(thisFastaName, numSeqs); 
659                                         
660                                                 //figure out how many sequences you have to process
661                                                 int numSeqsPerProcessor = numSeqs / processors;
662                                                 for (int i = 0; i < processors; i++) {
663                                                         int startIndex =  i * numSeqsPerProcessor;
664                                                         if(i == (processors - 1)){      numSeqsPerProcessor = numSeqs - i * numSeqsPerProcessor;        }
665                                                         lines.push_back(new linePair(positions[startIndex], numSeqsPerProcessor));
666                                                 }
667                                         }
668                                 #endif
669                                 
670                                 if(processors == 1){
671                                         numSeqs = driver(lines[0], thisoutputFileName, thisFastaName, thisaccnosFileName, thistrimFastaFileName);
672                                         
673                                         int numNoParents = chimera->getNumNoParents();
674                                         if (numNoParents == numSeqs) { m->mothurOut("[WARNING]: megablast returned 0 potential parents for all your sequences. This could be due to formatdb.exe not being setup properly, please check formatdb.log for errors."); m->mothurOutEndLine(); }
675                                         
676                                 }else{ numSeqs = createProcesses(thisoutputFileName, thisFastaName, thisaccnosFileName, thistrimFastaFileName); }
677                                 
678                                 if (m->control_pressed) { if (parser != NULL) { delete parser; }  outputTypes.clear(); if (trim) { m->mothurRemove(trimFastaFileName); } m->mothurRemove(outputFileName); m->mothurRemove(accnosFileName); for (int j = 0; j < outputNames.size(); j++) {       m->mothurRemove(outputNames[j]);        } for (int i = 0; i < lines.size(); i++) {  delete lines[i];  }  lines.clear(); delete chimera; return 0; }
679                                 
680                         #endif
681                                 
682                         #if defined (__APPLE__) || (__MACH__) || (linux) || (__linux) || USE_MPI
683                                 delete chimera;
684                         #endif
685                                 
686                                 for (int i = 0; i < lines.size(); i++) {  delete lines[i];  }  lines.clear();
687                                 
688                                 //append files
689                                 m->appendFiles(thisoutputFileName, outputFileName); m->mothurRemove(thisoutputFileName); 
690                                 totalChimeras = m->appendFiles(thisaccnosFileName, accnosFileName); m->mothurRemove(thisaccnosFileName);
691                                 if (trim) { m->appendFiles(thistrimFastaFileName, trimFastaFileName); m->mothurRemove(thistrimFastaFileName); }
692                                 
693                                 totalSeqs += numSeqs;
694                         }
695                         
696                         if (fileToPriority.size() > 1) { totalChimeras = deconvoluteResults(parser, outputFileName, accnosFileName, trimFastaFileName); }
697                         
698                         if (parser != NULL) { delete parser; } 
699                         
700                         m->mothurOutEndLine(); m->mothurOut(toString(totalChimeras) + " chimera found."); m->mothurOutEndLine(); m->mothurOut("It took " + toString(time(NULL) - start) + " secs to check " + toString(totalSeqs) + " sequences.");     m->mothurOutEndLine();
701                 }
702                 
703                 //set accnos file as new current accnosfile
704                 string current = "";
705                 itTypes = outputTypes.find("accnos");
706                 if (itTypes != outputTypes.end()) {
707                         if ((itTypes->second).size() != 0) { current = (itTypes->second)[0]; m->setAccnosFile(current); }
708                 }
709                 
710                 if (trim) {
711                         itTypes = outputTypes.find("fasta");
712                         if (itTypes != outputTypes.end()) {
713                                 if ((itTypes->second).size() != 0) { current = (itTypes->second)[0]; m->setFastaFile(current); }
714                         }
715                 }
716                 
717                 m->mothurOutEndLine();
718                 m->mothurOut("Output File Names: "); m->mothurOutEndLine();
719                 for (int i = 0; i < outputNames.size(); i++) {  m->mothurOut(outputNames[i]); m->mothurOutEndLine();    }       
720                 m->mothurOutEndLine();
721
722                 return 0;
723                 
724         }
725         catch(exception& e) {
726                 m->errorOut(e, "ChimeraSlayerCommand", "execute");
727                 exit(1);
728         }
729 }
730 //**********************************************************************************************************************
731 int ChimeraSlayerCommand::MPIExecute(string inputFile, string outputFileName, string accnosFileName, string trimFastaFileName){
732         try {
733                 
734 #ifdef USE_MPI  
735                 int pid, numSeqsPerProcessor; 
736                 int tag = 2001;
737                 vector<unsigned long long> MPIPos;
738                 
739                 MPI_Status status; 
740                 MPI_Comm_rank(MPI_COMM_WORLD, &pid); //find out who we are
741                 MPI_Comm_size(MPI_COMM_WORLD, &processors); 
742                 
743                 MPI_File inMPI;
744                 MPI_File outMPI;
745                 MPI_File outMPIAccnos;
746                 MPI_File outMPIFasta;
747                 
748                 int outMode=MPI_MODE_CREATE|MPI_MODE_WRONLY; 
749                 int inMode=MPI_MODE_RDONLY; 
750                 
751                 char outFilename[1024];
752                 strcpy(outFilename, outputFileName.c_str());
753                 
754                 char outAccnosFilename[1024];
755                 strcpy(outAccnosFilename, accnosFileName.c_str());
756                 
757                 char outFastaFilename[1024];
758                 strcpy(outFastaFilename, trimFastaFileName.c_str());
759                 
760                 char inFileName[1024];
761                 strcpy(inFileName, inputFile.c_str());
762                 
763                 MPI_File_open(MPI_COMM_WORLD, inFileName, inMode, MPI_INFO_NULL, &inMPI);  //comm, filename, mode, info, filepointer
764                 MPI_File_open(MPI_COMM_WORLD, outFilename, outMode, MPI_INFO_NULL, &outMPI);
765                 MPI_File_open(MPI_COMM_WORLD, outAccnosFilename, outMode, MPI_INFO_NULL, &outMPIAccnos);
766                 if (trim) { MPI_File_open(MPI_COMM_WORLD, outFastaFilename, outMode, MPI_INFO_NULL, &outMPIFasta); }
767                 
768                 if (m->control_pressed) {  MPI_File_close(&inMPI);  MPI_File_close(&outMPI); if (trim) {  MPI_File_close(&outMPIFasta);  } MPI_File_close(&outMPIAccnos);  delete chimera; return 0;  }
769                 
770                 if (pid == 0) { //you are the root process 
771                         m->mothurOutEndLine();
772                         m->mothurOut("Only reporting sequence supported by " + toString(minBS) + "% of bootstrapped results.");
773                         m->mothurOutEndLine();
774                         
775                         string outTemp = "Name\tLeftParent\tRightParent\tDivQLAQRB\tPerIDQLAQRB\tBootStrapA\tDivQLBQRA\tPerIDQLBQRA\tBootStrapB\tFlag\tLeftWindow\tRightWindow\n";
776                         
777                         //print header
778                         int length = outTemp.length();
779                         char* buf2 = new char[length];
780                         memcpy(buf2, outTemp.c_str(), length);
781                         
782                         MPI_File_write_shared(outMPI, buf2, length, MPI_CHAR, &status);
783                         delete buf2;
784                         
785                         MPIPos = m->setFilePosFasta(inputFile, numSeqs); //fills MPIPos, returns numSeqs
786                         
787                         if (templatefile != "self") { //if template=self we can only use 1 processor
788                                 //send file positions to all processes
789                                 for(int i = 1; i < processors; i++) { 
790                                         MPI_Send(&numSeqs, 1, MPI_INT, i, tag, MPI_COMM_WORLD);
791                                         MPI_Send(&MPIPos[0], (numSeqs+1), MPI_LONG, i, tag, MPI_COMM_WORLD);
792                                 }
793                         }
794                         //figure out how many sequences you have to align
795                         numSeqsPerProcessor = numSeqs / processors;
796                         int startIndex =  pid * numSeqsPerProcessor;
797                         if(pid == (processors - 1)){    numSeqsPerProcessor = numSeqs - pid * numSeqsPerProcessor;      }
798                         
799                         if (templatefile == "self") { //if template=self we can only use 1 processor
800                                 startIndex = 0;
801                                 numSeqsPerProcessor = numSeqs;
802                         }
803                         
804                         //do your part
805                         driverMPI(startIndex, numSeqsPerProcessor, inMPI, outMPI, outMPIAccnos, outMPIFasta, MPIPos);
806                         
807                         int numNoParents = chimera->getNumNoParents();
808                         int temp;
809                         for(int i = 1; i < processors; i++) { 
810                                 MPI_Recv(&temp, 1, MPI_INT, 1, tag, MPI_COMM_WORLD, &status);
811                                 numNoParents += temp;
812                         }
813                         
814                         
815                         if (numSeqs == numNoParents) {  m->mothurOut("[WARNING]: megablast returned 0 potential parents for all your sequences. This could be due to formatdb.exe not being setup properly, please check formatdb.log for errors."); m->mothurOutEndLine(); }
816                         
817                         if (m->control_pressed) {  MPI_File_close(&inMPI);  MPI_File_close(&outMPI); if (trim) { MPI_File_close(&outMPIFasta); }  MPI_File_close(&outMPIAccnos);  delete chimera; return 0;  }
818                         
819                 }else{ //you are a child process
820                         if (templatefile != "self") { //if template=self we can only use 1 processor
821                                 MPI_Recv(&numSeqs, 1, MPI_INT, 0, tag, MPI_COMM_WORLD, &status);
822                                 MPIPos.resize(numSeqs+1);
823                                 MPI_Recv(&MPIPos[0], (numSeqs+1), MPI_LONG, 0, tag, MPI_COMM_WORLD, &status);
824                                 
825                                 //figure out how many sequences you have to align
826                                 numSeqsPerProcessor = numSeqs / processors;
827                                 int startIndex =  pid * numSeqsPerProcessor;
828                                 if(pid == (processors - 1)){    numSeqsPerProcessor = numSeqs - pid * numSeqsPerProcessor;      }
829                                 
830                                 //do your part
831                                 driverMPI(startIndex, numSeqsPerProcessor, inMPI, outMPI, outMPIAccnos, outMPIFasta, MPIPos);
832                                 
833                                 int numNoParents = chimera->getNumNoParents();
834                                 MPI_Send(&numNoParents, 1, MPI_INT, 0, tag, MPI_COMM_WORLD);
835                                 
836                                 if (m->control_pressed) {  MPI_File_close(&inMPI);  MPI_File_close(&outMPI); if (trim) { MPI_File_close(&outMPIFasta); }  MPI_File_close(&outMPIAccnos);  delete chimera; return 0;  }
837                                 
838                         }
839                 }
840                 
841                 //close files 
842                 MPI_File_close(&inMPI);
843                 MPI_File_close(&outMPI);
844                 MPI_File_close(&outMPIAccnos); 
845                 if (trim) { MPI_File_close(&outMPIFasta); }
846                 MPI_Barrier(MPI_COMM_WORLD); //make everyone wait - just in case
847                 
848                 
849 #endif          
850                 return 0;
851         }
852         catch(exception& e) {
853                 m->errorOut(e, "ChimeraSlayerCommand", "MPIExecute");
854                 exit(1);
855         }
856 }
857 //**********************************************************************************************************************
858 int ChimeraSlayerCommand::deconvoluteResults(SequenceParser* parser, string outputFileName, string accnosFileName, string trimFileName){
859         try {
860                 map<string, string> uniqueNames = parser->getAllSeqsMap();
861                 map<string, string>::iterator itUnique;
862                 int total = 0;
863                 
864                 //edit accnos file
865                 ifstream in2; 
866                 m->openInputFile(accnosFileName, in2, "no error");
867                 
868                 ofstream out2;
869                 m->openOutputFile(accnosFileName+".temp", out2);
870                 
871                 string name; name = "";
872                 set<string> chimerasInFile;
873                 set<string>::iterator itChimeras;
874                 
875                 while (!in2.eof()) {
876                         if (m->control_pressed) { in2.close(); out2.close(); m->mothurRemove(outputFileName); m->mothurRemove((accnosFileName+".temp")); return 0; }
877                         
878                         in2 >> name; m->gobble(in2);
879                         
880                         //find unique name
881                         itUnique = uniqueNames.find(name);
882                         
883                         if (itUnique == uniqueNames.end()) { m->mothurOut("[ERROR]: trouble parsing accnos results. Cannot find "+ name + "."); m->mothurOutEndLine(); m->control_pressed = true; }
884                         else {
885                                 itChimeras = chimerasInFile.find((itUnique->second));
886                                 
887                                 if (itChimeras == chimerasInFile.end()) {
888                                         out2 << itUnique->second << endl;
889                                         chimerasInFile.insert((itUnique->second));
890                                         total++;
891                                 }
892                         }
893                 }
894                 in2.close();
895                 out2.close();
896                 
897                 m->mothurRemove(accnosFileName);
898                 rename((accnosFileName+".temp").c_str(), accnosFileName.c_str());
899                 
900                 
901                 //edit chimera file
902                 ifstream in; 
903                 m->openInputFile(outputFileName, in);
904                 
905                 ofstream out;
906                 m->openOutputFile(outputFileName+".temp", out); out.setf(ios::fixed, ios::floatfield); out.setf(ios::showpoint);
907
908                 string rest, parent1, parent2, line;
909                 set<string> namesInFile; //this is so if a sequence is found to be chimera in several samples we dont write it to the results file more than once
910                 set<string>::iterator itNames;
911                 
912                 //assumptions - in file each read will always look like...
913                 /*
914                  F11Fcsw_92754  no
915                  F11Fcsw_63104  F11Fcsw_33372   F11Fcsw_37007   0.89441 80.4469 0.2     1.03727 93.2961 52.2    no      0-241   243-369 
916                  */
917                 
918                 //get header line
919                 if (!in.eof()) {
920                         line = m->getline(in); m->gobble(in);
921                         out << line << endl;
922                 }
923                 
924                 //for the chimera file, we want to make sure if any group finds a sequence to be chimeric then all groups do, 
925                 //so if this is a report that did not find it to be chimeric, but it appears in the accnos file, 
926                 //then ignore this report and continue until we find the report that found it to be chimeric
927                 
928                 while (!in.eof()) {
929                         
930                         if (m->control_pressed) { in.close(); out.close(); m->mothurRemove((outputFileName+".temp")); return 0; }
931                         
932                         in >> name;             m->gobble(in);
933                         in >> parent1;  m->gobble(in);
934                         
935                         if (name == "Name") { //name = "Name" because we append the header line each time we add results from the groups
936                                 line = m->getline(in); m->gobble(in);
937                         }else {
938                                 if (parent1 == "no") {
939                                         //find unique name
940                                         itUnique = uniqueNames.find(name);
941                                         
942                                         if (itUnique == uniqueNames.end()) { m->mothurOut("[ERROR]: trouble parsing chimera results. Cannot find "+ name + "."); m->mothurOutEndLine(); m->control_pressed = true; }
943                                         else {
944                                                 //is this sequence really not chimeric??
945                                                 itChimeras = chimerasInFile.find(itUnique->second);
946                                                 
947                                                 if (itChimeras == chimerasInFile.end()) {
948                                                         itNames = namesInFile.find((itUnique->second));
949                                                         
950                                                         if (itNames == namesInFile.end()) {cout << itUnique->second << endl; out << itUnique->second << '\t' << "no" << endl; namesInFile.insert(itUnique->second); }
951                                                 }
952                                         }
953                                 }else { //read the rest of the line
954                                         double DivQLAQRB,PerIDQLAQRB,BootStrapA,DivQLBQRA,PerIDQLBQRA,BootStrapB;
955                                         string flag, range1, range2;
956                                         bool print = false;
957                                         in >> parent2 >> DivQLAQRB >> PerIDQLAQRB >> BootStrapA >> DivQLBQRA >> PerIDQLBQRA >> BootStrapB >> flag >> range1 >> range2;  m->gobble(in);
958                                         
959                                         //find unique name
960                                         itUnique = uniqueNames.find(name);
961                                         
962                                         if (itUnique == uniqueNames.end()) { m->mothurOut("[ERROR]: trouble parsing chimera results. Cannot find "+ name + "."); m->mothurOutEndLine(); m->control_pressed = true; }
963                                         else {
964                                                 name = itUnique->second;
965                                                 //is this name already in the file
966                                                 itNames = namesInFile.find((name));
967                                                 
968                                                 if (itNames == namesInFile.end()) { //no not in file
969                                                         if (flag == "no") { //are you really a no??
970                                                                 //is this sequence really not chimeric??
971                                                                 itChimeras = chimerasInFile.find(name);
972                                                                 
973                                                                 //then you really are a no so print, otherwise skip
974                                                                 if (itChimeras == chimerasInFile.end()) { print = true; }
975                                                         }else{ print = true; }
976                                                 }
977                                         }
978                                         
979                                         if (print) {
980                                                 out << name << '\t';
981                                                 cout << name<< endl;
982                                                 namesInFile.insert(name);
983
984                                                 //output parent1's name
985                                                 itUnique = uniqueNames.find(parent1);
986                                                 if (itUnique == uniqueNames.end()) { m->mothurOut("[ERROR]: trouble parsing chimera results. Cannot find parentA "+ parent1 + "."); m->mothurOutEndLine(); m->control_pressed = true; }
987                                                 else { out << itUnique->second << '\t'; }
988                                                 
989                                                 //output parent2's name
990                                                 itUnique = uniqueNames.find(parent2);
991                                                 if (itUnique == uniqueNames.end()) { m->mothurOut("[ERROR]: trouble parsing chimera results. Cannot find parentA "+ parent2 + "."); m->mothurOutEndLine(); m->control_pressed = true; }
992                                                 else { out << itUnique->second << '\t'; }
993                                                 
994                                                 out << DivQLAQRB << '\t' << PerIDQLAQRB << '\t' << BootStrapA << '\t' << DivQLBQRA << '\t' << PerIDQLBQRA << '\t' << BootStrapB << '\t' << flag << '\t' << range1 << '\t' << range2 << endl;
995                                         }
996                                 }                               
997                         }
998                 }
999                 in.close();
1000                 out.close();
1001                 
1002                 m->mothurRemove(outputFileName);
1003                 rename((outputFileName+".temp").c_str(), outputFileName.c_str());
1004                 
1005                 //edit fasta file
1006                 if (trim) {
1007                         ifstream in3; 
1008                         m->openInputFile(trimFileName, in3);
1009                         
1010                         ofstream out3;
1011                         m->openOutputFile(trimFileName+".temp", out3);
1012                         
1013                         namesInFile.clear();
1014                         
1015                         while (!in3.eof()) {
1016                                 if (m->control_pressed) { in3.close(); out3.close(); m->mothurRemove(outputFileName); m->mothurRemove(accnosFileName); m->mothurRemove((trimFileName+".temp")); return 0; }
1017                                 
1018                                 Sequence seq(in3); m->gobble(in3);
1019                                 
1020                                 if (seq.getName() != "") {
1021                                         //find unique name
1022                                         itUnique = uniqueNames.find(seq.getName());
1023                                         
1024                                         if (itUnique == uniqueNames.end()) { m->mothurOut("[ERROR]: trouble parsing accnos results. Cannot find "+ seq.getName() + "."); m->mothurOutEndLine(); m->control_pressed = true; }
1025                                         else {
1026                                                 itNames = namesInFile.find((itUnique->second));
1027                                                 
1028                                                 if (itNames == namesInFile.end()) {
1029                                                         seq.printSequence(out3);
1030                                                 }
1031                                         }
1032                                 }
1033                         }
1034                         in3.close();
1035                         out3.close();
1036                         
1037                         m->mothurRemove(trimFileName);
1038                         rename((trimFileName+".temp").c_str(), trimFileName.c_str());
1039                 }
1040                 
1041                 return total;
1042         }
1043         catch(exception& e) {
1044                 m->errorOut(e, "ChimeraSlayerCommand", "deconvoluteResults");
1045                 exit(1);
1046         }
1047 }       
1048 //**********************************************************************************************************************
1049 int ChimeraSlayerCommand::setupChimera(string inputFile, map<string, int>& priority){
1050         try {
1051                 if (templatefile != "self") { //you want to run slayer with a reference template
1052                         chimera = new ChimeraSlayer(inputFile, templatefile, trim, search, ksize, match, mismatch, window, divR, minSimilarity, minCoverage, minBS, minSNP, parents, iters, increment, numwanted, realign, blastlocation, rand());      
1053                 }else {
1054                         chimera = new ChimeraSlayer(inputFile, templatefile, trim, priority, search, ksize, match, mismatch, window, divR, minSimilarity, minCoverage, minBS, minSNP, parents, iters, increment, numwanted, realign, blastlocation, rand());    
1055                 }
1056                 
1057                 if (m->control_pressed) { delete chimera; return 0; }
1058                 
1059                 if (chimera->getUnaligned()) { delete chimera; m->mothurOut("Your template sequences are different lengths, please correct."); m->mothurOutEndLine(); m->control_pressed = true; return 0; }
1060                 
1061                 return (chimera->getLength());
1062         }
1063         catch(exception& e) {
1064                 m->errorOut(e, "ChimeraSlayerCommand", "setupChimera");
1065                 exit(1);
1066         }
1067 }
1068 //**********************************************************************************************************************
1069
1070 string ChimeraSlayerCommand::getNamesFile(string& inputFile){
1071         try {
1072                 string nameFile = "";
1073                 
1074                 m->mothurOutEndLine(); m->mothurOut("No namesfile given, running unique.seqs command to generate one."); m->mothurOutEndLine(); m->mothurOutEndLine();
1075                 
1076                 //use unique.seqs to create new name and fastafile
1077                 string inputString = "fasta=" + inputFile;
1078                 m->mothurOut("/******************************************/"); m->mothurOutEndLine(); 
1079                 m->mothurOut("Running command: unique.seqs(" + inputString + ")"); m->mothurOutEndLine(); 
1080                 
1081                 Command* uniqueCommand = new DeconvoluteCommand(inputString);
1082                 uniqueCommand->execute();
1083                 
1084                 map<string, vector<string> > filenames = uniqueCommand->getOutputFiles();
1085                 
1086                 delete uniqueCommand;
1087                 
1088                 m->mothurOut("/******************************************/"); m->mothurOutEndLine(); 
1089                 
1090                 nameFile = filenames["name"][0];
1091                 inputFile = filenames["fasta"][0];
1092                 
1093                 return nameFile;
1094         }
1095         catch(exception& e) {
1096                 m->errorOut(e, "ChimeraSlayerCommand", "getNamesFile");
1097                 exit(1);
1098         }
1099 }
1100 //**********************************************************************************************************************
1101
1102 int ChimeraSlayerCommand::driver(linePair* filePos, string outputFName, string filename, string accnos, string fasta){
1103         try {
1104                 ofstream out;
1105                 m->openOutputFile(outputFName, out);
1106                 
1107                 ofstream out2;
1108                 m->openOutputFile(accnos, out2);
1109                 
1110                 ofstream out3;
1111                 if (trim) {  m->openOutputFile(fasta, out3); }
1112                 
1113                 ifstream inFASTA;
1114                 m->openInputFile(filename, inFASTA);
1115
1116                 inFASTA.seekg(filePos->start);
1117                 
1118                 if (filePos->start == 0) { chimera->printHeader(out); }
1119
1120                 bool done = false;
1121                 int count = 0;
1122         
1123                 while (!done) {
1124                 
1125                         if (m->control_pressed) {       out.close(); out2.close(); if (trim) { out3.close(); } inFASTA.close(); return 1;       }
1126                 
1127                         Sequence* candidateSeq = new Sequence(inFASTA);  m->gobble(inFASTA);
1128                         string candidateAligned = candidateSeq->getAligned();
1129                         
1130                         if (candidateSeq->getName() != "") { //incase there is a commented sequence at the end of a file
1131                                 if (candidateSeq->getAligned().length() != templateSeqsLength) {  
1132                                         m->mothurOut(candidateSeq->getName() + " is not the same length as the template sequences. Skipping."); m->mothurOutEndLine();
1133                                 }else{
1134                                         //find chimeras
1135                                         chimera->getChimeras(candidateSeq);
1136                                         
1137                                         if (m->control_pressed) {       delete candidateSeq; return 1;  }
1138                                                 
1139                                         //if you are not chimeric, then check each half
1140                                         data_results wholeResults = chimera->getResults();
1141                                         
1142                                         //determine if we need to split
1143                                         bool isChimeric = false;
1144                                         
1145                                         if (wholeResults.flag == "yes") {
1146                                                 string chimeraFlag = "no";
1147                                                 if(  (wholeResults.results[0].bsa >= minBS && wholeResults.results[0].divr_qla_qrb >= divR)
1148                                                    ||
1149                                                    (wholeResults.results[0].bsb >= minBS && wholeResults.results[0].divr_qlb_qra >= divR) ) { chimeraFlag = "yes"; }
1150                                                 
1151                                                 
1152                                                 if (chimeraFlag == "yes") {     
1153                                                         if ((wholeResults.results[0].bsa >= minBS) || (wholeResults.results[0].bsb >= minBS)) { isChimeric = true; }
1154                                                 }
1155                                         }
1156                                         
1157                                         if ((!isChimeric) && trimera) {
1158                                                 
1159                                                 //split sequence in half by bases
1160                                                 string leftQuery, rightQuery;
1161                                                 Sequence tempSeq(candidateSeq->getName(), candidateAligned);
1162                                                 divideInHalf(tempSeq, leftQuery, rightQuery);
1163                                                 
1164                                                 //run chimeraSlayer on each piece
1165                                                 Sequence* left = new Sequence(candidateSeq->getName(), leftQuery);
1166                                                 Sequence* right = new Sequence(candidateSeq->getName(), rightQuery);
1167                                                 
1168                                                 //find chimeras
1169                                                 chimera->getChimeras(left);
1170                                                 data_results leftResults = chimera->getResults();
1171                                                 
1172                                                 chimera->getChimeras(right);
1173                                                 data_results rightResults = chimera->getResults();
1174                                                 
1175                                                 //if either piece is chimeric then report
1176                                                 Sequence trimmed = chimera->print(out, out2, leftResults, rightResults);
1177                                                 if (trim) { trimmed.printSequence(out3);  }
1178                                                 
1179                                                 delete left; delete right;
1180                                                 
1181                                         }else { //already chimeric
1182                                                 //print results
1183                                                 Sequence trimmed = chimera->print(out, out2);
1184                                                 if (trim) { trimmed.printSequence(out3);  }
1185                                         }
1186                                         
1187                                         
1188                                 }
1189                                 count++;
1190                         }
1191                         
1192                         #if defined (__APPLE__) || (__MACH__) || (linux) || (__linux)
1193                                 unsigned long long pos = inFASTA.tellg();
1194                                 if ((pos == -1) || (pos >= filePos->end)) { break; }
1195                         #else
1196                                 if (inFASTA.eof()) { break; }
1197                         #endif
1198                         
1199                         delete candidateSeq;
1200                         //report progress
1201                         if((count) % 100 == 0){ m->mothurOut("Processing sequence: " + toString(count)); m->mothurOutEndLine();         }
1202                 }
1203                 //report progress
1204                 if((count) % 100 != 0){ m->mothurOut("Processing sequence: " + toString(count)); m->mothurOutEndLine();         }
1205                 
1206                 out.close();
1207                 out2.close();
1208                 if (trim) { out3.close(); }
1209                 inFASTA.close();
1210                                 
1211                 return count;
1212         }
1213         catch(exception& e) {
1214                 m->errorOut(e, "ChimeraSlayerCommand", "driver");
1215                 exit(1);
1216         }
1217 }
1218 //**********************************************************************************************************************
1219 #ifdef USE_MPI
1220 int ChimeraSlayerCommand::driverMPI(int start, int num, MPI_File& inMPI, MPI_File& outMPI, MPI_File& outAccMPI, MPI_File& outFastaMPI, vector<unsigned long long>& MPIPos){
1221         try {                           
1222                 MPI_Status status; 
1223                 int pid;
1224                 MPI_Comm_rank(MPI_COMM_WORLD, &pid); //find out who we are
1225                 
1226                 for(int i=0;i<num;i++){
1227                         
1228                         if (m->control_pressed) {       return 1;       }
1229                         
1230                         //read next sequence
1231                         int length = MPIPos[start+i+1] - MPIPos[start+i];
1232
1233                         char* buf4 = new char[length];
1234                         MPI_File_read_at(inMPI, MPIPos[start+i], buf4, length, MPI_CHAR, &status);
1235         
1236                         string tempBuf = buf4;
1237                         if (tempBuf.length() > length) { tempBuf = tempBuf.substr(0, length);  }
1238                         istringstream iss (tempBuf,istringstream::in);
1239
1240                         delete buf4;
1241
1242                         Sequence* candidateSeq = new Sequence(iss);  m->gobble(iss);
1243                         string candidateAligned = candidateSeq->getAligned();
1244                 
1245                         if (candidateSeq->getName() != "") { //incase there is a commented sequence at the end of a file
1246                                 
1247                                 if (candidateSeq->getAligned().length() != templateSeqsLength) {  
1248                                         m->mothurOut(candidateSeq->getName() + " is not the same length as the template sequences. Skipping."); m->mothurOutEndLine();
1249                                 }else{
1250                 
1251                                         //find chimeras
1252                                         chimera->getChimeras(candidateSeq);
1253                         
1254                                         if (m->control_pressed) {       delete candidateSeq; return 1;  }
1255                                         
1256                                         //if you are not chimeric, then check each half
1257                                         data_results wholeResults = chimera->getResults();
1258                                         
1259                                         //determine if we need to split
1260                                         bool isChimeric = false;
1261                                         
1262                                         if (wholeResults.flag == "yes") {
1263                                                 string chimeraFlag = "no";
1264                                                 if(  (wholeResults.results[0].bsa >= minBS && wholeResults.results[0].divr_qla_qrb >= divR)
1265                                                    ||
1266                                                    (wholeResults.results[0].bsb >= minBS && wholeResults.results[0].divr_qlb_qra >= divR) ) { chimeraFlag = "yes"; }
1267                                                 
1268                                                 
1269                                                 if (chimeraFlag == "yes") {     
1270                                                         if ((wholeResults.results[0].bsa >= minBS) || (wholeResults.results[0].bsb >= minBS)) { isChimeric = true; }
1271                                                 }
1272                                         }
1273                                         
1274                                         if ((!isChimeric) && trimera) {                                                 
1275                                                 //split sequence in half by bases
1276                                                 string leftQuery, rightQuery;
1277                                                 Sequence tempSeq(candidateSeq->getName(), candidateAligned);
1278                                                 divideInHalf(tempSeq, leftQuery, rightQuery);
1279                                                 
1280                                                 //run chimeraSlayer on each piece
1281                                                 Sequence* left = new Sequence(candidateSeq->getName(), leftQuery);
1282                                                 Sequence* right = new Sequence(candidateSeq->getName(), rightQuery);
1283                                                 
1284                                                 //find chimeras
1285                                                 chimera->getChimeras(left);
1286                                                 data_results leftResults = chimera->getResults();
1287                                                 
1288                                                 chimera->getChimeras(right);
1289                                                 data_results rightResults = chimera->getResults();
1290                                                 
1291                                                 //if either piece is chimeric then report
1292                                                 Sequence trimmed = chimera->print(outMPI, outAccMPI, leftResults, rightResults);
1293                                                 if (trim) {  
1294                                                         string outputString = ">" + trimmed.getName() + "\n" + trimmed.getAligned() + "\n";
1295                                                         
1296                                                         //write to accnos file
1297                                                         int length = outputString.length();
1298                                                         char* buf2 = new char[length];
1299                                                         memcpy(buf2, outputString.c_str(), length);
1300                                                         
1301                                                         MPI_File_write_shared(outFastaMPI, buf2, length, MPI_CHAR, &status);
1302                                                         delete buf2;
1303                                                 }
1304                                                 
1305                                                 delete left; delete right;
1306                                                 
1307                                         }else { 
1308                                                 //print results
1309                                                 Sequence trimmed = chimera->print(outMPI, outAccMPI);
1310                                                 
1311                                                 if (trim) {  
1312                                                         string outputString = ">" + trimmed.getName() + "\n" + trimmed.getAligned() + "\n";
1313                                                         
1314                                                         //write to accnos file
1315                                                         int length = outputString.length();
1316                                                         char* buf2 = new char[length];
1317                                                         memcpy(buf2, outputString.c_str(), length);
1318                                                         
1319                                                         MPI_File_write_shared(outFastaMPI, buf2, length, MPI_CHAR, &status);
1320                                                         delete buf2;
1321                                                 }
1322                                         }
1323                                         
1324                                 }
1325                         }
1326                         delete candidateSeq;
1327                         
1328                         //report progress
1329                         if((i+1) % 100 == 0){  cout << "Processing sequence: " << (i+1) << endl;        m->mothurOutJustToLog("Processing sequence: " + toString(i+1) + "\n");          }
1330                 }
1331                 //report progress
1332                 if(num % 100 != 0){             cout << "Processing sequence: " << num << endl; m->mothurOutJustToLog("Processing sequence: " + toString(num) + "\n");  }
1333                 
1334                                 
1335                 return 0;
1336         }
1337         catch(exception& e) {
1338                 m->errorOut(e, "ChimeraSlayerCommand", "driverMPI");
1339                 exit(1);
1340         }
1341 }
1342 #endif
1343
1344 /**************************************************************************************************/
1345
1346 int ChimeraSlayerCommand::createProcesses(string outputFileName, string filename, string accnos, string fasta) {
1347         try {
1348                 int process = 0;
1349                 int num = 0;
1350                 int numNoParents = 0;
1351                 processIDS.clear();
1352                 
1353 #if defined (__APPLE__) || (__MACH__) || (linux) || (__linux)
1354                 //loop through and create all the processes you want
1355                 while (process != processors) {
1356                         int pid = fork();
1357                         
1358                         if (pid > 0) {
1359                                 processIDS.push_back(pid);  //create map from line number to pid so you can append files in correct order later
1360                                 process++;
1361                         }else if (pid == 0){
1362                                 num = driver(lines[process], outputFileName + toString(getpid()) + ".temp", filename, accnos + toString(getpid()) + ".temp", fasta + toString(getpid()) + ".temp");
1363                                 
1364                                 //pass numSeqs to parent
1365                                 ofstream out;
1366                                 string tempFile = outputFileName + toString(getpid()) + ".num.temp";
1367                                 m->openOutputFile(tempFile, out);
1368                                 out << num << '\t' << chimera->getNumNoParents() << endl;
1369                                 out.close();
1370                                 exit(0);
1371                         }else { 
1372                                 m->mothurOut("[ERROR]: unable to spawn the necessary processes."); m->mothurOutEndLine(); 
1373                                 for (int i = 0; i < processIDS.size(); i++) { kill (processIDS[i], SIGINT); }
1374                                 exit(0);
1375                         }
1376                 }
1377                 
1378                 //force parent to wait until all the processes are done
1379                 for (int i=0;i<processors;i++) { 
1380                         int temp = processIDS[i];
1381                         wait(&temp);
1382                 }
1383                 
1384                 for (int i = 0; i < processIDS.size(); i++) {
1385                         ifstream in;
1386                         string tempFile =  outputFileName + toString(processIDS[i]) + ".num.temp";
1387                         m->openInputFile(tempFile, in);
1388                         if (!in.eof()) { int tempNum = 0; int tempNumParents = 0; in >> tempNum >> tempNumParents; num += tempNum; numNoParents += tempNumParents; }
1389                         in.close(); m->mothurRemove(tempFile);
1390                 }
1391 #else
1392                 
1393                 //////////////////////////////////////////////////////////////////////////////////////////////////////
1394                 //Windows version shared memory, so be careful when passing variables through the slayerData struct. 
1395                 //Above fork() will clone, so memory is separate, but that's not the case with windows, 
1396                 //////////////////////////////////////////////////////////////////////////////////////////////////////
1397                 
1398                 vector<slayerData*> pDataArray; 
1399                 DWORD   dwThreadIdArray[processors];
1400                 HANDLE  hThreadArray[processors]; 
1401                 
1402                 //Create processor worker threads.
1403                 for( int i=0; i<processors; i++ ){
1404                         string extension = toString(i) + ".temp";
1405                         slayerData* tempslayer = new slayerData((outputFileName + extension), (fasta + extension), (accnos + extension), filename, templatefile, search, blastlocation, trimera, trim, realign, m, lines[i]->start, lines[i]->end, ksize, match, mismatch, window, minSimilarity, minCoverage, minBS, minSNP, parents, iters, increment, numwanted, divR, priority, i);
1406                         pDataArray.push_back(tempslayer);
1407                         processIDS.push_back(i);
1408                         
1409                         //MySeqSumThreadFunction is in header. It must be global or static to work with the threads.
1410                         //default security attributes, thread function name, argument to thread function, use default creation flags, returns the thread identifier
1411                         hThreadArray[i] = CreateThread(NULL, 0, MySlayerThreadFunction, pDataArray[i], 0, &dwThreadIdArray[i]);   
1412                 }
1413                                 
1414                 //Wait until all threads have terminated.
1415                 WaitForMultipleObjects(processors, hThreadArray, TRUE, INFINITE);
1416                 
1417                 //Close all thread handles and free memory allocations.
1418                 for(int i=0; i < pDataArray.size(); i++){
1419                         num += pDataArray[i]->count;
1420                         numNoParents += pDataArray[i]->numNoParents;
1421                         CloseHandle(hThreadArray[i]);
1422                         delete pDataArray[i];
1423                 }
1424 #endif  
1425                 if (num == numNoParents) {  m->mothurOut("[WARNING]: megablast returned 0 potential parents for all your sequences. This could be due to formatdb.exe not being setup properly, please check formatdb.log for errors."); m->mothurOutEndLine(); }
1426                 
1427                 rename((outputFileName + toString(processIDS[0]) + ".temp").c_str(), outputFileName.c_str());
1428                 rename((accnos + toString(processIDS[0]) + ".temp").c_str(), accnos.c_str());
1429                 if (trim) {  rename((fasta + toString(processIDS[0]) + ".temp").c_str(), fasta.c_str()); }
1430                 
1431                 //append output files
1432                 for(int i=1;i<processIDS.size();i++){
1433                         m->appendFiles((outputFileName + toString(processIDS[i]) + ".temp"), outputFileName);
1434                         m->mothurRemove((outputFileName + toString(processIDS[i]) + ".temp"));
1435                         
1436                         m->appendFiles((accnos + toString(processIDS[i]) + ".temp"), accnos);
1437                         m->mothurRemove((accnos + toString(processIDS[i]) + ".temp"));
1438                         
1439                         if (trim) {
1440                                 m->appendFiles((fasta + toString(processIDS[i]) + ".temp"), fasta);
1441                                 m->mothurRemove((fasta + toString(processIDS[i]) + ".temp"));
1442                         }
1443                 }
1444                 
1445                 
1446                 return num;
1447         }
1448         catch(exception& e) {
1449                 m->errorOut(e, "ChimeraSlayerCommand", "createProcesses");
1450                 exit(1);
1451         }
1452 }
1453
1454 /**************************************************************************************************/
1455
1456 int ChimeraSlayerCommand::divideInHalf(Sequence querySeq, string& leftQuery, string& rightQuery) {
1457         try {
1458                 
1459                 string queryUnAligned = querySeq.getUnaligned();
1460                 int numBases = int(queryUnAligned.length() * 0.5);
1461                 
1462                 string queryAligned = querySeq.getAligned();
1463                 leftQuery = querySeq.getAligned();
1464                 rightQuery = querySeq.getAligned();
1465                 
1466                 int baseCount = 0;
1467                 int leftSpot = 0;
1468                 for (int i = 0; i < queryAligned.length(); i++) {
1469                         //if you are a base
1470                         if (isalpha(queryAligned[i])) {         
1471                                 baseCount++; 
1472                         }
1473                         
1474                         //if you have half
1475                         if (baseCount >= numBases) {  leftSpot = i; break; } //first half
1476                 }
1477                 
1478                 //blank out right side
1479                 for (int i = leftSpot; i < leftQuery.length(); i++) { leftQuery[i] = '.'; }
1480                 
1481                 //blank out left side
1482                 for (int i = 0; i < leftSpot; i++) { rightQuery[i] = '.'; }
1483                 
1484                 return 0;
1485                 
1486         }
1487         catch(exception& e) {
1488                 m->errorOut(e, "ChimeraSlayerCommand", "divideInHalf");
1489                 exit(1);
1490         }
1491 }
1492 /**************************************************************************************************/
1493 map<string, int> ChimeraSlayerCommand::sortFastaFile(string fastaFile, string nameFile) {
1494         try {
1495                 map<string, int> nameAbund;
1496                 
1497                 //read through fastafile and store info
1498                 map<string, string> seqs;
1499                 ifstream in;
1500                 m->openInputFile(fastaFile, in);
1501                 
1502                 while (!in.eof()) {
1503                         
1504                         if (m->control_pressed) { in.close(); return nameAbund; }
1505                         
1506                         Sequence seq(in); m->gobble(in);
1507                         seqs[seq.getName()] = seq.getAligned();
1508                 }
1509                 
1510                 in.close();
1511                 
1512                 //read namefile
1513                 vector<seqPriorityNode> nameMapCount;
1514                 int error = m->readNames(nameFile, nameMapCount, seqs);
1515                 
1516                 if (m->control_pressed) { return nameAbund; }
1517                 
1518                 if (error == 1) { m->control_pressed = true; return nameAbund; }
1519                 if (seqs.size() != nameMapCount.size()) { m->mothurOut( "The number of sequences in your fastafile does not match the number of sequences in your namefile, aborting."); m->mothurOutEndLine(); m->control_pressed = true; return nameAbund; }
1520
1521                 sort(nameMapCount.begin(), nameMapCount.end(), compareSeqPriorityNodes);
1522                 
1523                 string newFasta = fastaFile + ".temp";
1524                 ofstream out;
1525                 m->openOutputFile(newFasta, out);
1526                 
1527                 //print new file in order of
1528                 for (int i = 0; i < nameMapCount.size(); i++) {
1529                         out << ">" << nameMapCount[i].name << endl << nameMapCount[i].seq << endl;
1530                         nameAbund[nameMapCount[i].name] = nameMapCount[i].numIdentical;
1531                 }
1532                 out.close();
1533                 
1534                 rename(newFasta.c_str(), fastaFile.c_str());
1535                                 
1536                 return nameAbund;
1537                 
1538         }
1539         catch(exception& e) {
1540                 m->errorOut(e, "ChimeraSlayerCommand", "sortFastaFile");
1541                 exit(1);
1542         }
1543 }
1544 /**************************************************************************************************/
1545 map<string, int> ChimeraSlayerCommand::sortFastaFile(vector<Sequence>& thisseqs, map<string, string>& nameMap, string newFile) {
1546         try {
1547                 map<string, int> nameAbund;
1548                 vector<seqPriorityNode> nameVector;
1549                 
1550                 //read through fastafile and store info
1551                 map<string, string> seqs;
1552                                 
1553                 for (int i = 0; i < thisseqs.size(); i++) {
1554                         
1555                         if (m->control_pressed) { return nameAbund; }
1556                         
1557                         map<string, string>::iterator itNameMap = nameMap.find(thisseqs[i].getName());
1558                         
1559                         if (itNameMap == nameMap.end()){
1560                                 m->control_pressed = true;
1561                                 m->mothurOut("[ERROR]: " + thisseqs[i].getName() + " is in your fastafile, but is not in your namesfile, please correct."); m->mothurOutEndLine();
1562                         }else {
1563                                 int num = m->getNumNames(itNameMap->second);
1564                                 
1565                                 seqPriorityNode temp(num, thisseqs[i].getAligned(), thisseqs[i].getName());
1566                                 nameVector.push_back(temp);
1567                         }
1568                 }
1569         
1570                 //sort by num represented
1571                 sort(nameVector.begin(), nameVector.end(), compareSeqPriorityNodes);
1572         
1573                 if (m->control_pressed) { return nameAbund; }
1574                 
1575                 if (thisseqs.size() != nameVector.size()) { m->mothurOut( "The number of sequences in your fastafile does not match the number of sequences in your namefile, aborting."); m->mothurOutEndLine(); m->control_pressed = true; return nameAbund; }
1576                                 
1577                 ofstream out;
1578                 m->openOutputFile(newFile, out);
1579                 
1580                 //print new file in order of
1581                 for (int i = 0; i < nameVector.size(); i++) {
1582                         out << ">" << nameVector[i].name << endl << nameVector[i].seq << endl;
1583                         nameAbund[nameVector[i].name] = nameVector[i].numIdentical;
1584                 }
1585                 out.close();
1586                 
1587                 return nameAbund;
1588                 
1589         }
1590         catch(exception& e) {
1591                 m->errorOut(e, "ChimeraSlayerCommand", "sortFastaFile");
1592                 exit(1);
1593         }
1594 }
1595 /**************************************************************************************************/
1596