]> git.donarmstrong.com Git - mothur.git/blob - filterseqscommand.cpp
9096bb671c830a7f5b0b3638ef0ef0a1d0a5f65d
[mothur.git] / filterseqscommand.cpp
1 /*
2  *  filterseqscommand.cpp
3  *  Mothur
4  *
5  *  Created by Thomas Ryabin on 5/4/09.
6  *  Copyright 2009 Schloss Lab UMASS Amherst. All rights reserved.
7  *
8  */
9
10 #include "filterseqscommand.h"
11 #include "sequence.hpp"
12
13
14 //**********************************************************************************************************************
15 vector<string> FilterSeqsCommand::setParameters(){      
16         try {
17                 CommandParameter pfasta("fasta", "InputTypes", "", "", "none", "none", "none",false,true); parameters.push_back(pfasta);
18                 CommandParameter phard("hard", "InputTypes", "", "", "none", "none", "none",false,false); parameters.push_back(phard);
19                 CommandParameter ptrump("trump", "String", "", "*", "", "", "",false,false); parameters.push_back(ptrump);
20                 CommandParameter psoft("soft", "Number", "", "0", "", "", "",false,false); parameters.push_back(psoft);
21                 CommandParameter pvertical("vertical", "Boolean", "", "T", "", "", "",false,false); parameters.push_back(pvertical);
22                 CommandParameter pprocessors("processors", "Number", "", "1", "", "", "",false,false); parameters.push_back(pprocessors);
23                 CommandParameter pinputdir("inputdir", "String", "", "", "", "", "",false,false); parameters.push_back(pinputdir);
24                 CommandParameter poutputdir("outputdir", "String", "", "", "", "", "",false,false); parameters.push_back(poutputdir);
25                 
26                 vector<string> myArray;
27                 for (int i = 0; i < parameters.size(); i++) {   myArray.push_back(parameters[i].name);          }
28                 return myArray;
29         }
30         catch(exception& e) {
31                 m->errorOut(e, "FilterSeqsCommand", "setParameters");
32                 exit(1);
33         }
34 }
35 //**********************************************************************************************************************
36 string FilterSeqsCommand::getHelpString(){      
37         try {
38                 string helpString = "";
39                 helpString += "The filter.seqs command reads a file containing sequences and creates a .filter and .filter.fasta file.\n";
40                 helpString += "The filter.seqs command parameters are fasta, trump, soft, hard, processors and vertical. \n";
41                 helpString += "The fasta parameter is required, unless you have a valid current fasta file. You may enter several fasta files to build the filter from and filter, by separating their names with -'s.\n";
42                 helpString += "For example: fasta=abrecovery.fasta-amazon.fasta \n";
43                 helpString += "The trump option will remove a column if the trump character is found at that position in any sequence of the alignment. Default=*, meaning no trump. \n";
44                 helpString += "A soft mask removes any column where the dominant base (i.e. A, T, G, C, or U) does not occur in at least a designated percentage of sequences. Default=0.\n";
45                 helpString += "The hard parameter allows you to enter a file containing the filter you want to use.\n";
46                 helpString += "The vertical parameter removes columns where all sequences contain a gap character. The default is T.\n";
47                 helpString += "The processors parameter allows you to specify the number of processors to use. The default is 1.\n";
48                 helpString += "The filter.seqs command should be in the following format: \n";
49                 helpString += "filter.seqs(fasta=yourFastaFile, trump=yourTrump) \n";
50                 helpString += "Example filter.seqs(fasta=abrecovery.fasta, trump=.).\n";
51                 helpString += "Note: No spaces between parameter labels (i.e. fasta), '=' and parameters (i.e.yourFasta).\n";
52                 return helpString;
53         }
54         catch(exception& e) {
55                 m->errorOut(e, "FilterSeqsCommand", "getHelpString");
56                 exit(1);
57         }
58 }
59 //**********************************************************************************************************************
60 FilterSeqsCommand::FilterSeqsCommand(){ 
61         try {
62                 abort = true; calledHelp = true; 
63                 setParameters();
64                 vector<string> tempOutNames;
65                 outputTypes["fasta"] = tempOutNames;
66                 outputTypes["filter"] = tempOutNames;
67         }
68         catch(exception& e) {
69                 m->errorOut(e, "FilterSeqsCommand", "FilterSeqsCommand");
70                 exit(1);
71         }
72 }
73 /**************************************************************************************/
74 FilterSeqsCommand::FilterSeqsCommand(string option)  {
75         try {
76                 abort = false; calledHelp = false;   
77                 filterFileName = "";
78                 
79                 //allow user to run help
80                 if(option == "help") { help(); abort = true; calledHelp = true; }
81                 else if(option == "citation") { citation(); abort = true; calledHelp = true;}
82                 
83                 else {
84                         vector<string> myArray = setParameters();
85                         
86                         OptionParser parser(option);
87                         map<string,string> parameters = parser.getParameters();
88                         
89                         ValidParameters validParameter("filter.seqs");
90                         map<string,string>::iterator it;
91                         
92                         //check to make sure all parameters are valid for command
93                         for (it = parameters.begin(); it != parameters.end(); it++) { 
94                                 if (validParameter.isValidParameter(it->first, myArray, it->second) != true) {  abort = true;  }
95                         }
96                         
97                         //initialize outputTypes
98                         vector<string> tempOutNames;
99                         outputTypes["fasta"] = tempOutNames;
100                         outputTypes["filter"] = tempOutNames;
101                 
102                         //if the user changes the input directory command factory will send this info to us in the output parameter 
103                         string inputDir = validParameter.validFile(parameters, "inputdir", false);              
104                         if (inputDir == "not found"){   inputDir = "";          }
105                         else {
106                                 string path;
107                                 it = parameters.find("fasta");
108                                 //user has given a template file
109                                 if(it != parameters.end()){ 
110                                         path = m->hasPath(it->second);
111                                         //if the user has not given a path then, add inputdir. else leave path alone.
112                                         if (path == "") {       parameters["fasta"] = inputDir + it->second;            }
113                                 }
114                                 
115                                 it = parameters.find("hard");
116                                 //user has given a template file
117                                 if(it != parameters.end()){ 
118                                         path = m->hasPath(it->second);
119                                         //if the user has not given a path then, add inputdir. else leave path alone.
120                                         if (path == "") {       parameters["hard"] = inputDir + it->second;             }
121                                 }
122                         }
123                         
124                         //check for required parameters
125                         fasta = validParameter.validFile(parameters, "fasta", false);
126                         if (fasta == "not found") {                             
127                                 fasta = m->getFastaFile(); 
128                                 if (fasta != "") { fastafileNames.push_back(fasta);  m->mothurOut("Using " + fasta + " as input file for the fasta parameter."); m->mothurOutEndLine(); }
129                                 else {  m->mothurOut("You have no current fastafile and the fasta parameter is required."); m->mothurOutEndLine(); abort = true; }
130                         }
131                         else { 
132                                 m->splitAtDash(fasta, fastafileNames);
133                                 
134                                 //go through files and make sure they are good, if not, then disregard them
135                                 for (int i = 0; i < fastafileNames.size(); i++) {
136                                         
137                                         bool ignore = false;
138                                         if (fastafileNames[i] == "current") { 
139                                                 fastafileNames[i] = m->getFastaFile(); 
140                                                 if (fastafileNames[i] != "") {  m->mothurOut("Using " + fastafileNames[i] + " as input file for the fasta parameter where you had given current."); m->mothurOutEndLine(); }
141                                                 else {  
142                                                         m->mothurOut("You have no current fastafile, ignoring current."); m->mothurOutEndLine(); ignore=true; 
143                                                         //erase from file list
144                                                         fastafileNames.erase(fastafileNames.begin()+i);
145                                                         i--;
146                                                 }
147                                         }
148                                         
149                                         if (!ignore) {
150                                                 if (inputDir != "") {
151                                                         string path = m->hasPath(fastafileNames[i]);
152                                                         //if the user has not given a path then, add inputdir. else leave path alone.
153                                                         if (path == "") {       fastafileNames[i] = inputDir + fastafileNames[i];               }
154                                                 }
155
156                                                 ifstream in;
157                                                 int ableToOpen = m->openInputFile(fastafileNames[i], in, "noerror");
158                                         
159                                                 //if you can't open it, try default location
160                                                 if (ableToOpen == 1) {
161                                                         if (m->getDefaultPath() != "") { //default path is set
162                                                                 string tryPath = m->getDefaultPath() + m->getSimpleName(fastafileNames[i]);
163                                                                 m->mothurOut("Unable to open " + fastafileNames[i] + ". Trying default " + tryPath); m->mothurOutEndLine();
164                                                                 ifstream in2;
165                                                                 ableToOpen = m->openInputFile(tryPath, in2, "noerror");
166                                                                 in2.close();
167                                                                 fastafileNames[i] = tryPath;
168                                                         }
169                                                 }
170                                                 
171                                                 //if you can't open it, try default location
172                                                 if (ableToOpen == 1) {
173                                                         if (m->getOutputDir() != "") { //default path is set
174                                                                 string tryPath = m->getOutputDir() + m->getSimpleName(fastafileNames[i]);
175                                                                 m->mothurOut("Unable to open " + fastafileNames[i] + ". Trying output directory " + tryPath); m->mothurOutEndLine();
176                                                                 ifstream in2;
177                                                                 ableToOpen = m->openInputFile(tryPath, in2, "noerror");
178                                                                 in2.close();
179                                                                 fastafileNames[i] = tryPath;
180                                                         }
181                                                 }
182                                                 
183                                                 in.close();
184                                                 
185                                                 if (ableToOpen == 1) { 
186                                                         m->mothurOut("Unable to open " + fastafileNames[i] + ". It will be disregarded."); m->mothurOutEndLine();
187                                                         //erase from file list
188                                                         fastafileNames.erase(fastafileNames.begin()+i);
189                                                         i--;
190                                                 }else{  
191                                                         string simpleName = m->getSimpleName(fastafileNames[i]);
192                                                         filterFileName += simpleName.substr(0, simpleName.find_first_of('.'));
193                                                         m->setFastaFile(fastafileNames[i]);
194                                                 }
195                                                 in.close();
196                                         }
197                                 }
198                                 
199                                 //make sure there is at least one valid file left
200                                 if (fastafileNames.size() == 0) { m->mothurOut("no valid files."); m->mothurOutEndLine(); abort = true; }
201                         }
202                         
203                         if (!abort) {
204                                 //if the user changes the output directory command factory will send this info to us in the output parameter 
205                                 outputDir = validParameter.validFile(parameters, "outputdir", false);           if (outputDir == "not found"){  
206                                         outputDir = ""; 
207                                         outputDir += m->hasPath(fastafileNames[0]); //if user entered a file with a path then preserve it       
208                                 }
209                         }
210                         //check for optional parameter and set defaults
211                         // ...at some point should added some additional type checking...
212                         
213                         string temp;
214                         hard = validParameter.validFile(parameters, "hard", true);                              if (hard == "not found") { hard = ""; }
215                         else if (hard == "not open") { hard = ""; abort = true; }       
216
217                         temp = validParameter.validFile(parameters, "trump", false);                    if (temp == "not found") { temp = "*"; }
218                         trump = temp[0];
219                         
220                         temp = validParameter.validFile(parameters, "soft", false);                             if (temp == "not found") { soft = 0; }
221                         else {  soft = (float)atoi(temp.c_str()) / 100.0;  }
222                         
223                         temp = validParameter.validFile(parameters, "processors", false);       if (temp == "not found"){       temp = m->getProcessors();      }
224                         m->setProcessors(temp);
225                         m->mothurConvert(temp, processors); 
226                         
227                         vertical = validParameter.validFile(parameters, "vertical", false);             
228                         if (vertical == "not found") { 
229                                 if ((hard == "") && (trump == '*') && (soft == 0)) { vertical = "T"; } //you have not given a hard file or set the trump char.
230                                 else { vertical = "F";  }
231                         }
232                         
233                         numSeqs = 0;
234                 }
235                 
236         }
237         catch(exception& e) {
238                 m->errorOut(e, "FilterSeqsCommand", "FilterSeqsCommand");
239                 exit(1);
240         }
241 }
242 /**************************************************************************************/
243
244 int FilterSeqsCommand::execute() {      
245         try {
246         
247                 if (abort == true) { if (calledHelp) { return 0; }  return 2;   }
248                 
249                 ifstream inFASTA;
250                 m->openInputFile(fastafileNames[0], inFASTA);
251                 
252                 Sequence testSeq(inFASTA);
253                 alignmentLength = testSeq.getAlignLength();
254                 inFASTA.close();
255                 
256                 ////////////create filter/////////////////
257                 m->mothurOut("Creating Filter... "); m->mothurOutEndLine();
258                 
259                 filter = createFilter();
260                 
261                 m->mothurOutEndLine();  m->mothurOutEndLine();
262                 
263                 if (m->control_pressed) { outputTypes.clear(); return 0; }
264                 
265                 #ifdef USE_MPI
266                         int pid;
267                         MPI_Comm_rank(MPI_COMM_WORLD, &pid); 
268                                         
269                         if (pid == 0) { //only one process should output the filter
270                 #endif
271                 
272                 ofstream outFilter;
273                 
274                 //prevent giantic file name
275                 string filterFile;
276                 if (fastafileNames.size() > 3) { filterFile = outputDir + "merge.filter"; }
277                 else {  filterFile = outputDir + filterFileName + ".filter";  }
278                 
279                 m->openOutputFile(filterFile, outFilter);
280                 outFilter << filter << endl;
281                 outFilter.close();
282                 outputNames.push_back(filterFile); outputTypes["filter"].push_back(filterFile);
283                 
284                 #ifdef USE_MPI
285                         }
286                 #endif
287                 
288                 ////////////run filter/////////////////
289                 
290                 m->mothurOut("Running Filter... "); m->mothurOutEndLine();
291                 
292                 filterSequences();
293                 
294                 m->mothurOutEndLine();  m->mothurOutEndLine();
295                                         
296                 int filteredLength = 0;
297                 for(int i=0;i<alignmentLength;i++){
298                         if(filter[i] == '1'){   filteredLength++;       }
299                 }
300                 
301                 if (m->control_pressed) {  outputTypes.clear(); for(int i = 0; i < outputNames.size(); i++) { m->mothurRemove(outputNames[i]); }  return 0; }
302
303                 
304                 m->mothurOutEndLine();
305                 m->mothurOut("Length of filtered alignment: " + toString(filteredLength)); m->mothurOutEndLine();
306                 m->mothurOut("Number of columns removed: " + toString((alignmentLength-filteredLength))); m->mothurOutEndLine();
307                 m->mothurOut("Length of the original alignment: " + toString(alignmentLength)); m->mothurOutEndLine();
308                 m->mothurOut("Number of sequences used to construct filter: " + toString(numSeqs)); m->mothurOutEndLine();
309                 
310                 //set fasta file as new current fastafile
311                 string current = "";
312                 itTypes = outputTypes.find("fasta");
313                 if (itTypes != outputTypes.end()) {
314                         if ((itTypes->second).size() != 0) { current = (itTypes->second)[0]; m->setFastaFile(current); }
315                 }
316                 
317                 m->mothurOutEndLine();
318                 m->mothurOut("Output File Names: "); m->mothurOutEndLine();
319                 for(int i = 0; i < outputNames.size(); i++) {  m->mothurOut(outputNames[i]); m->mothurOutEndLine();      }
320                 m->mothurOutEndLine();
321                 
322                 return 0;
323                 
324         }
325         catch(exception& e) {
326                 m->errorOut(e, "FilterSeqsCommand", "execute");
327                 exit(1);
328         }
329 }
330 /**************************************************************************************/
331 int FilterSeqsCommand::filterSequences() {      
332         try {
333                 
334                 numSeqs = 0;
335                 
336                 for (int s = 0; s < fastafileNames.size(); s++) {
337                         
338                                 for (int i = 0; i < lines.size(); i++) {  delete lines[i];  }  lines.clear();
339                                 
340                                 string filteredFasta = outputDir + m->getRootName(m->getSimpleName(fastafileNames[s])) + "filter.fasta";
341 #ifdef USE_MPI  
342                                 int pid, numSeqsPerProcessor, num; 
343                                 int tag = 2001;
344                                 vector<unsigned long long>MPIPos;
345                                                 
346                                 MPI_Status status; 
347                                 MPI_Comm_size(MPI_COMM_WORLD, &processors); //set processors to the number of mpi processes running
348                                 MPI_Comm_rank(MPI_COMM_WORLD, &pid); //find out who we are
349                                 
350                                 MPI_File outMPI;
351                                 MPI_File inMPI;
352                                 int outMode=MPI_MODE_CREATE|MPI_MODE_WRONLY; 
353                                 int inMode=MPI_MODE_RDONLY; 
354                                 
355                                 char outFilename[1024];
356                                 strcpy(outFilename, filteredFasta.c_str());
357                         
358                                 char inFileName[1024];
359                                 strcpy(inFileName, fastafileNames[s].c_str());
360                                 
361                                 MPI_File_open(MPI_COMM_WORLD, inFileName, inMode, MPI_INFO_NULL, &inMPI);  //comm, filename, mode, info, filepointer
362                                 MPI_File_open(MPI_COMM_WORLD, outFilename, outMode, MPI_INFO_NULL, &outMPI);
363
364                                 if (m->control_pressed) {  MPI_File_close(&inMPI);  MPI_File_close(&outMPI);  return 0;  }
365
366                                 if (pid == 0) { //you are the root process 
367                                         
368                                         MPIPos = m->setFilePosFasta(fastafileNames[s], num); //fills MPIPos, returns numSeqs
369                                         numSeqs += num;
370                                         
371                                         //send file positions to all processes
372                                         for(int i = 1; i < processors; i++) { 
373                                                 MPI_Send(&num, 1, MPI_INT, i, tag, MPI_COMM_WORLD);
374                                                 MPI_Send(&MPIPos[0], (num+1), MPI_LONG, i, tag, MPI_COMM_WORLD);
375                                         }
376                                         
377                                         //figure out how many sequences you have to do
378                                         numSeqsPerProcessor = num / processors;
379                                         int startIndex =  pid * numSeqsPerProcessor;
380                                         if(pid == (processors - 1)){    numSeqsPerProcessor = num - pid * numSeqsPerProcessor;  }
381                                         
382                                 
383                                         //do your part
384                                         driverMPIRun(startIndex, numSeqsPerProcessor, inMPI, outMPI, MPIPos);
385                                         
386                                         if (m->control_pressed) {  MPI_File_close(&inMPI);  MPI_File_close(&outMPI);  return 0;  }
387                                         
388                                         //wait on chidren
389                                         for(int i = 1; i < processors; i++) { 
390                                                 char buf[5];
391                                                 MPI_Recv(buf, 5, MPI_CHAR, i, tag, MPI_COMM_WORLD, &status); 
392                                         }
393                                         
394                                 }else { //you are a child process
395                                         MPI_Recv(&num, 1, MPI_INT, 0, tag, MPI_COMM_WORLD, &status);
396                                         MPIPos.resize(num+1);
397                                         numSeqs += num;
398                                         MPI_Recv(&MPIPos[0], (num+1), MPI_LONG, 0, tag, MPI_COMM_WORLD, &status);
399                                         
400                                         //figure out how many sequences you have to align
401                                         numSeqsPerProcessor = num / processors;
402                                         int startIndex =  pid * numSeqsPerProcessor;
403                                         if(pid == (processors - 1)){    numSeqsPerProcessor = num - pid * numSeqsPerProcessor;  }
404                                         
405                                         
406                                         //align your part
407                                         driverMPIRun(startIndex, numSeqsPerProcessor, inMPI, outMPI, MPIPos);           
408                                         
409                                         if (m->control_pressed) {  MPI_File_close(&inMPI);  MPI_File_close(&outMPI);  return 0;  }
410                                         
411                                         char buf[5];
412                                         strcpy(buf, "done"); 
413                                         
414                                         //tell parent you are done.
415                                         MPI_Send(buf, 5, MPI_CHAR, 0, tag, MPI_COMM_WORLD);
416                                 }
417                                 
418                                 MPI_File_close(&outMPI);
419                                 MPI_File_close(&inMPI);
420                                 MPI_Barrier(MPI_COMM_WORLD); //make everyone wait - just in case
421                                 
422 #else
423             
424             vector<unsigned long long> positions;
425             if (savedPositions.size() != 0) { positions = savedPositions[s]; }
426             else {
427 #if defined (__APPLE__) || (__MACH__) || (linux) || (__linux)
428                                 positions = m->divideFile(fastafileNames[s], processors);
429 #else
430                 if(processors != 1){
431                     int numFastaSeqs = 0;
432                     positions = m->setFilePosFasta(fastafileNames[s], numFastaSeqs); 
433                 }
434 #endif
435             }
436                 #if defined (__APPLE__) || (__MACH__) || (linux) || (__linux)
437                         //vector<unsigned long long> positions = m->divideFile(fastafileNames[s], processors);
438                         
439                         for (int i = 0; i < (positions.size()-1); i++) {
440                                 lines.push_back(new linePair(positions[i], positions[(i+1)]));
441                         }       
442                         
443                                 if(processors == 1){
444                                         int numFastaSeqs = driverRunFilter(filter, filteredFasta, fastafileNames[s], lines[0]);
445                                         numSeqs += numFastaSeqs;
446                                 }else{
447                                         int numFastaSeqs = createProcessesRunFilter(filter, fastafileNames[s], filteredFasta); 
448                                         numSeqs += numFastaSeqs;
449                                 }
450                                 
451                                 if (m->control_pressed) {  return 1; }
452                 #else
453             if(processors == 1){
454                 lines.push_back(new linePair(0, 1000));
455                                 int numFastaSeqs = driverRunFilter(filter, filteredFasta, fastafileNames[s], lines[0]);
456                                 numSeqs += numFastaSeqs;
457             }else {
458                 int numFastaSeqs = positions.size()-1;
459                 //positions = m->setFilePosFasta(fastafileNames[s], numFastaSeqs); 
460                 
461                 //figure out how many sequences you have to process
462                 int numSeqsPerProcessor = numFastaSeqs / processors;
463                 for (int i = 0; i < processors; i++) {
464                     int startIndex =  i * numSeqsPerProcessor;
465                     if(i == (processors - 1)){  numSeqsPerProcessor = numFastaSeqs - i * numSeqsPerProcessor;   }
466                     lines.push_back(new linePair(positions[startIndex], numSeqsPerProcessor));
467                 }
468                 
469                 numFastaSeqs = createProcessesRunFilter(filter, fastafileNames[s], filteredFasta); 
470                 numSeqs += numFastaSeqs;
471             }
472
473                                 if (m->control_pressed) {  return 1; }
474                 #endif
475 #endif
476                         outputNames.push_back(filteredFasta); outputTypes["fasta"].push_back(filteredFasta);
477                 }
478
479                 return 0;
480         }
481         catch(exception& e) {
482                 m->errorOut(e, "FilterSeqsCommand", "filterSequences");
483                 exit(1);
484         }
485 }
486 #ifdef USE_MPI
487 /**************************************************************************************/
488 int FilterSeqsCommand::driverMPIRun(int start, int num, MPI_File& inMPI, MPI_File& outMPI, vector<unsigned long long>& MPIPos) {        
489         try {
490                 string outputString = "";
491                 int count = 0;
492                 MPI_Status status; 
493                 
494                 for(int i=0;i<num;i++){
495                 
496                         if (m->control_pressed) { return 0; }
497                 
498                         //read next sequence
499                         int length = MPIPos[start+i+1] - MPIPos[start+i];
500                         char* buf4 = new char[length];
501                         MPI_File_read_at(inMPI, MPIPos[start+i], buf4, length, MPI_CHAR, &status);
502                         
503                         string tempBuf = buf4;
504                         if (tempBuf.length() > length) { tempBuf = tempBuf.substr(0, length);  }
505                         istringstream iss (tempBuf,istringstream::in);
506                         delete buf4;
507         
508                         Sequence seq(iss);  m->gobble(iss);
509                         
510                         if (seq.getName() != "") {
511                                 string align = seq.getAligned();
512                                 string filterSeq = "";
513                                         
514                                 for(int j=0;j<alignmentLength;j++){
515                                         if(filter[j] == '1'){
516                                                 filterSeq += align[j];
517                                         }
518                                 }
519                                 
520                                 count++;
521                                 outputString += ">" + seq.getName() + "\n" + filterSeq + "\n";
522                                 
523                                 if(count % 10 == 0){ //output to file 
524                                         //send results to parent
525                                         int length = outputString.length();
526                                         char* buf = new char[length];
527                                         memcpy(buf, outputString.c_str(), length);
528                                 
529                                         MPI_File_write_shared(outMPI, buf, length, MPI_CHAR, &status);
530                                         outputString = "";
531                                         delete buf;
532                                 }
533
534                         }
535                         
536                         if((i+1) % 100 == 0){   cout << (i+1) << endl;   m->mothurOutJustToLog(toString(i+1) + "\n");   }
537                 }
538                 
539                 if(outputString != ""){ //output to file 
540                         //send results to parent
541                         int length = outputString.length();
542                         char* buf = new char[length];
543                         memcpy(buf, outputString.c_str(), length);
544                         
545                         MPI_File_write_shared(outMPI, buf, length, MPI_CHAR, &status);
546                         outputString = "";
547                         delete buf;
548                 }
549                 
550                 if((num) % 100 != 0){   cout << (num) << endl;   m->mothurOutJustToLog(toString(num) + "\n");   }
551                         
552                 return 0;
553         }
554         catch(exception& e) {
555                 m->errorOut(e, "FilterSeqsCommand", "driverRunFilter");
556                 exit(1);
557         }
558 }
559 #endif
560 /**************************************************************************************/
561 int FilterSeqsCommand::driverRunFilter(string F, string outputFilename, string inputFilename, linePair* filePos) {      
562         try {
563                 ofstream out;
564                 m->openOutputFile(outputFilename, out);
565                 
566                 ifstream in;
567                 m->openInputFile(inputFilename, in);
568                                 
569                 in.seekg(filePos->start);
570
571                 bool done = false;
572                 int count = 0;
573         
574                 while (!done) {
575                                 
576                                 if (m->control_pressed) { in.close(); out.close(); return 0; }
577                                 
578                                 Sequence seq(in); m->gobble(in);
579                                 if (seq.getName() != "") {
580                                         string align = seq.getAligned();
581                                         string filterSeq = "";
582                                         
583                                         for(int j=0;j<alignmentLength;j++){
584                                                 if(filter[j] == '1'){
585                                                         filterSeq += align[j];
586                                                 }
587                                         }
588                                         
589                                         out << '>' << seq.getName() << endl << filterSeq << endl;
590                                 count++;
591                         }
592                         
593                         #if defined (__APPLE__) || (__MACH__) || (linux) || (__linux)
594                                 unsigned long long pos = in.tellg();
595                                 if ((pos == -1) || (pos >= filePos->end)) { break; }
596                         #else
597                                 if (in.eof()) { break; }
598                         #endif
599                         
600                         //report progress
601                         if((count) % 100 == 0){ m->mothurOut(toString(count)); m->mothurOutEndLine();           }
602                 }
603                 //report progress
604                 if((count) % 100 != 0){ m->mothurOut(toString(count)); m->mothurOutEndLine();           }
605                 
606                 
607                 out.close();
608                 in.close();
609                 
610                 return count;
611         }
612         catch(exception& e) {
613                 m->errorOut(e, "FilterSeqsCommand", "driverRunFilter");
614                 exit(1);
615         }
616 }
617 /**************************************************************************************************/
618
619 int FilterSeqsCommand::createProcessesRunFilter(string F, string filename, string filteredFastaName) {
620         try {
621         
622         int process = 1;
623                 int num = 0;
624                 processIDS.clear();
625         
626 #if defined (__APPLE__) || (__MACH__) || (linux) || (__linux)
627                 
628                 
629                 //loop through and create all the processes you want
630                 while (process != processors) {
631                         int pid = fork();
632                         
633                         if (pid > 0) {
634                                 processIDS.push_back(pid);  //create map from line number to pid so you can append files in correct order later
635                                 process++;
636                         }else if (pid == 0){
637                                 string filteredFasta = filename + toString(getpid()) + ".temp";
638                                 num = driverRunFilter(F, filteredFasta, filename, lines[process]);
639                                 
640                                 //pass numSeqs to parent
641                                 ofstream out;
642                                 string tempFile = filename +  toString(getpid()) + ".num.temp";
643                                 m->openOutputFile(tempFile, out);
644                                 out << num << endl;
645                                 out.close();
646                                 
647                                 exit(0);
648                         }else { 
649                                 m->mothurOut("[ERROR]: unable to spawn the necessary processes."); m->mothurOutEndLine(); 
650                                 for (int i = 0; i < processIDS.size(); i++) { kill (processIDS[i], SIGINT); }
651                                 exit(0);
652                         }
653                 }
654                 
655         num = driverRunFilter(F, filteredFastaName, filename, lines[0]);
656         
657                 //force parent to wait until all the processes are done
658                 for (int i=0;i<processIDS.size();i++) { 
659                         int temp = processIDS[i];
660                         wait(&temp);
661                 }       
662                                         
663                 for (int i = 0; i < processIDS.size(); i++) {
664                         ifstream in;
665                         string tempFile =  filename + toString(processIDS[i]) + ".num.temp";
666                         m->openInputFile(tempFile, in);
667                         if (!in.eof()) { int tempNum = 0; in >> tempNum; num += tempNum; }
668                         in.close(); m->mothurRemove(tempFile);
669             
670             m->appendFiles((filename + toString(processIDS[i]) + ".temp"), filteredFastaName);
671             m->mothurRemove((filename + toString(processIDS[i]) + ".temp"));
672                 }
673                
674 #else
675         
676         //////////////////////////////////////////////////////////////////////////////////////////////////////
677                 //Windows version shared memory, so be careful when passing variables through the filterData struct. 
678                 //Above fork() will clone, so memory is separate, but that's not the case with windows, 
679                 //Taking advantage of shared memory to allow both threads to add info to F.
680                 //////////////////////////////////////////////////////////////////////////////////////////////////////
681                 
682                 vector<filterRunData*> pDataArray; 
683                 DWORD   dwThreadIdArray[processors-1];
684                 HANDLE  hThreadArray[processors-1]; 
685                 
686                 //Create processor worker threads.
687                 for( int i=0; i<processors-1; i++){
688                         
689             string extension = "";
690                         if (i != 0) { extension = toString(i) + ".temp"; }
691             
692                         filterRunData* tempFilter = new filterRunData(filter, filename, (filteredFastaName + extension), m, lines[i]->start, lines[i]->end, alignmentLength, i);
693                         pDataArray.push_back(tempFilter);
694                         processIDS.push_back(i);
695             
696                         hThreadArray[i] = CreateThread(NULL, 0, MyRunFilterThreadFunction, pDataArray[i], 0, &dwThreadIdArray[i]);   
697                 }
698         
699         num = driverRunFilter(F, (filteredFastaName + toString(processors-1) + ".temp"), filename, lines[processors-1]);
700         
701                 //Wait until all threads have terminated.
702                 WaitForMultipleObjects(processors-1, hThreadArray, TRUE, INFINITE);
703                 
704                 //Close all thread handles and free memory allocations.
705                 for(int i=0; i < pDataArray.size(); i++){
706                         num += pDataArray[i]->count;
707             CloseHandle(hThreadArray[i]);
708                         delete pDataArray[i];
709                 }
710         
711         for (int i = 1; i < processors; i++) {
712             m->appendFiles((filteredFastaName + toString(i) + ".temp"), filteredFastaName);
713             m->mothurRemove((filteredFastaName + toString(i) + ".temp"));
714                 }
715 #endif  
716         
717         return num;
718         
719         }
720         catch(exception& e) {
721                 m->errorOut(e, "FilterSeqsCommand", "createProcessesRunFilter");
722                 exit(1);
723         }
724 }
725 /**************************************************************************************/
726 string FilterSeqsCommand::createFilter() {      
727         try {
728                 string filterString = "";                       
729                 Filters F;
730                 
731                 if (soft != 0)                  {  F.setSoft(soft);             }
732                 if (trump != '*')               {  F.setTrump(trump);   }
733                 
734                 F.setLength(alignmentLength);
735                 
736                 if(trump != '*' || m->isTrue(vertical) || soft != 0){
737                         F.initialize();
738                 }
739                 
740                 if(hard.compare("") != 0)       {       F.doHard(hard);         }
741                 else                                            {       F.setFilter(string(alignmentLength, '1'));      }
742                 
743                 numSeqs = 0;
744                 if(trump != '*' || m->isTrue(vertical) || soft != 0){
745                         for (int s = 0; s < fastafileNames.size(); s++) {
746                         
747                                 for (int i = 0; i < lines.size(); i++) {  delete lines[i];  }  lines.clear();
748                         
749 #ifdef USE_MPI  
750                                 int pid, numSeqsPerProcessor, num; 
751                                 int tag = 2001;
752                                 vector<unsigned long long> MPIPos;
753                                 
754                                 MPI_Status status; 
755                                 MPI_File inMPI; 
756                                 MPI_Comm_size(MPI_COMM_WORLD, &processors);
757                                 MPI_Comm_rank(MPI_COMM_WORLD, &pid); 
758                                                         
759                                 //char* tempFileName = new char(fastafileNames[s].length());
760                                 //tempFileName = &(fastafileNames[s][0]);
761                                 
762                                 char tempFileName[1024];
763                                 strcpy(tempFileName, fastafileNames[s].c_str());
764                 
765                                 MPI_File_open(MPI_COMM_WORLD, tempFileName, MPI_MODE_RDONLY, MPI_INFO_NULL, &inMPI);  //comm, filename, mode, info, filepointer
766                                 
767                                 if (m->control_pressed) {  MPI_File_close(&inMPI);  return 0;  }
768                                 
769                                 if (pid == 0) { //you are the root process
770                                                 MPIPos = m->setFilePosFasta(fastafileNames[s], num); //fills MPIPos, returns numSeqs
771                                                 numSeqs += num;
772                                                 
773                                                 //send file positions to all processes
774                                                 for(int i = 1; i < processors; i++) { 
775                                                         MPI_Send(&num, 1, MPI_INT, i, tag, MPI_COMM_WORLD);
776                                                         MPI_Send(&MPIPos[0], (num+1), MPI_LONG, i, tag, MPI_COMM_WORLD);
777                                                 }
778                                                                 
779                                                 //figure out how many sequences you have to do
780                                                 numSeqsPerProcessor = num / processors;
781                                                 int startIndex =  pid * numSeqsPerProcessor;
782                                                 if(pid == (processors - 1)){    numSeqsPerProcessor = num - pid * numSeqsPerProcessor;  }
783                                                 
784                                 
785                                                 //do your part
786                                                 MPICreateFilter(startIndex, numSeqsPerProcessor, F, inMPI, MPIPos);
787                                                 
788                                                 if (m->control_pressed) {  MPI_File_close(&inMPI);  return 0;  }
789                                                                                                 
790                                 }else { //i am the child process
791                                         MPI_Recv(&num, 1, MPI_INT, 0, tag, MPI_COMM_WORLD, &status);
792                                         MPIPos.resize(num+1);
793                                         numSeqs += num;
794                                         MPI_Recv(&MPIPos[0], (num+1), MPI_LONG, 0, tag, MPI_COMM_WORLD, &status);
795                                         
796                                         //figure out how many sequences you have to align
797                                         numSeqsPerProcessor = num / processors;
798                                         int startIndex =  pid * numSeqsPerProcessor;
799                                         if(pid == (processors - 1)){    numSeqsPerProcessor = num - pid * numSeqsPerProcessor;  }
800                                         
801                                         
802                                         //do your part
803                                         MPICreateFilter(startIndex, numSeqsPerProcessor, F, inMPI,  MPIPos);
804                                         
805                                         if (m->control_pressed) {  MPI_File_close(&inMPI);  return 0;  }
806                                 }
807                                 
808                                 MPI_File_close(&inMPI);
809                                 MPI_Barrier(MPI_COMM_WORLD); //make everyone wait - just in case
810                                 
811 #else
812                                 
813                 vector<unsigned long long> positions;
814                 #if defined (__APPLE__) || (__MACH__) || (linux) || (__linux)
815                                 positions = m->divideFile(fastafileNames[s], processors);
816                                 for (int i = 0; i < (positions.size()-1); i++) {
817                                         lines.push_back(new linePair(positions[i], positions[(i+1)]));
818                                 }       
819                                 
820                                 if(processors == 1){
821                                         int numFastaSeqs = driverCreateFilter(F, fastafileNames[s], lines[0]);
822                                         numSeqs += numFastaSeqs;
823                                 }else{
824                                         int numFastaSeqs = createProcessesCreateFilter(F, fastafileNames[s]); 
825                                         numSeqs += numFastaSeqs;
826                                 }
827                 #else
828                 if(processors == 1){
829                     lines.push_back(new linePair(0, 1000));
830                     int numFastaSeqs = driverCreateFilter(F, fastafileNames[s], lines[0]);
831                     numSeqs += numFastaSeqs;
832                                 }else {
833                     int numFastaSeqs = 0;
834                     positions = m->setFilePosFasta(fastafileNames[s], numFastaSeqs); 
835                     
836                     //figure out how many sequences you have to process
837                     int numSeqsPerProcessor = numFastaSeqs / processors;
838                     for (int i = 0; i < processors; i++) {
839                         int startIndex =  i * numSeqsPerProcessor;
840                         if(i == (processors - 1)){      numSeqsPerProcessor = numFastaSeqs - i * numSeqsPerProcessor;   }
841                         lines.push_back(new linePair(positions[startIndex], numSeqsPerProcessor));
842                     }
843                     
844                     numFastaSeqs = createProcessesCreateFilter(F, fastafileNames[s]); 
845                                         numSeqs += numFastaSeqs;
846                 }
847                 #endif
848                 //save the file positions so we can reuse them in the runFilter function
849                 savedPositions[s] = positions;
850                 
851                                 if (m->control_pressed) {  return filterString; }
852 #endif
853                         
854                         }
855                 }
856
857
858 #ifdef USE_MPI  
859                 int pid;
860                 int Atag = 1; int Ttag = 2; int Ctag = 3; int Gtag = 4; int Gaptag = 5;
861                 MPI_Status status;
862                 
863                 MPI_Comm_rank(MPI_COMM_WORLD, &pid); 
864                 
865                 if(trump != '*' || m->isTrue(vertical) || soft != 0){
866                         
867                         if (pid == 0) { //only one process should output the filter
868                         
869                                 vector<int> temp; temp.resize(alignmentLength+1);
870                                                                 
871                                 //get the frequencies from the child processes
872                                 for(int i = 1; i < processors; i++) { 
873                                 
874                                         for (int j = 0; j < 5; j++) {
875                                         
876                                                 MPI_Recv(&temp[0], (alignmentLength+1), MPI_INT, i, 2001, MPI_COMM_WORLD, &status); 
877                                                 int receiveTag = temp[temp.size()-1];  //child process added a int to the end to indicate what letter count this is for
878                                                 
879                                                 if (receiveTag == Atag) { //you are recieveing the A frequencies
880                                                         for (int k = 0; k < alignmentLength; k++) {             F.a[k] += temp[k];      }
881                                                 }else if (receiveTag == Ttag) { //you are recieveing the T frequencies
882                                                         for (int k = 0; k < alignmentLength; k++) {             F.t[k] += temp[k];      }
883                                                 }else if (receiveTag == Ctag) { //you are recieveing the C frequencies
884                                                         for (int k = 0; k < alignmentLength; k++) {             F.c[k] += temp[k];      }
885                                                 }else if (receiveTag == Gtag) { //you are recieveing the G frequencies
886                                                         for (int k = 0; k < alignmentLength; k++) {             F.g[k] += temp[k];      }
887                                                 }else if (receiveTag == Gaptag) { //you are recieveing the gap frequencies
888                                                         for (int k = 0; k < alignmentLength; k++) {             F.gap[k] += temp[k];    }
889                                                 }
890                                         }
891                                 } 
892                         }else{
893                         
894                                 //send my fequency counts
895                                 F.a.push_back(Atag);
896                                 int ierr = MPI_Send(&(F.a[0]), (alignmentLength+1), MPI_INT, 0, 2001, MPI_COMM_WORLD);
897                                 F.t.push_back(Ttag);
898                                 ierr = MPI_Send (&(F.t[0]), (alignmentLength+1), MPI_INT, 0, 2001, MPI_COMM_WORLD);
899                                 F.c.push_back(Ctag);
900                                 ierr = MPI_Send(&(F.c[0]), (alignmentLength+1), MPI_INT, 0, 2001, MPI_COMM_WORLD);
901                                 F.g.push_back(Gtag);
902                                 ierr = MPI_Send(&(F.g[0]), (alignmentLength+1), MPI_INT, 0, 2001, MPI_COMM_WORLD);
903                                 F.gap.push_back(Gaptag);
904                                 ierr = MPI_Send(&(F.gap[0]), (alignmentLength+1), MPI_INT, 0, 2001, MPI_COMM_WORLD);
905                         }
906                         
907                 }
908                 
909                 MPI_Barrier(MPI_COMM_WORLD); //make everyone wait - just in case
910                 
911                 if (pid == 0) { //only one process should output the filter
912 #endif
913
914                 F.setNumSeqs(numSeqs);
915                 if(m->isTrue(vertical) == 1)    {       F.doVertical(); }
916                 if(soft != 0)                           {       F.doSoft();             }
917                 filterString = F.getFilter();
918                 
919 #ifdef USE_MPI
920                 //send filter string to kids
921                 //for(int i = 1; i < processors; i++) { 
922                 //      MPI_Send(&filterString[0], alignmentLength, MPI_CHAR, i, 2001, MPI_COMM_WORLD);
923                 //}
924                 MPI_Bcast(&filterString[0], alignmentLength, MPI_CHAR, 0, MPI_COMM_WORLD);
925         }else{
926                 //recieve filterString
927                 char* tempBuf = new char[alignmentLength];
928                 //MPI_Recv(&tempBuf[0], alignmentLength, MPI_CHAR, 0, 2001, MPI_COMM_WORLD, &status);
929                 MPI_Bcast(tempBuf, alignmentLength, MPI_CHAR, 0, MPI_COMM_WORLD);
930                 
931                 filterString = tempBuf;
932                 if (filterString.length() > alignmentLength) { filterString = filterString.substr(0, alignmentLength);  }
933                 delete tempBuf; 
934         }
935         
936         MPI_Barrier(MPI_COMM_WORLD);
937 #endif
938             
939                 return filterString;
940         }
941         catch(exception& e) {
942                 m->errorOut(e, "FilterSeqsCommand", "createFilter");
943                 exit(1);
944         }
945 }
946 /**************************************************************************************/
947 int FilterSeqsCommand::driverCreateFilter(Filters& F, string filename, linePair* filePos) {     
948         try {
949                 
950                 ifstream in;
951                 m->openInputFile(filename, in);
952                                 
953                 in.seekg(filePos->start);
954
955                 bool done = false;
956                 int count = 0;
957         
958                 while (!done) {
959                                 
960                         if (m->control_pressed) { in.close(); return 1; }
961                                         
962                         Sequence seq(in); m->gobble(in);
963                         if (seq.getName() != "") {
964                                         if (seq.getAligned().length() != alignmentLength) { m->mothurOut("Sequences are not all the same length, please correct."); m->mothurOutEndLine(); m->control_pressed = true;  }
965                                         
966                                         if(trump != '*')                        {       F.doTrump(seq);         }
967                                         if(m->isTrue(vertical) || soft != 0)    {       F.getFreqs(seq);        }
968                                         cout.flush();
969                                         count++;
970                         }
971                         
972                         #if defined (__APPLE__) || (__MACH__) || (linux) || (__linux)
973                                 unsigned long long pos = in.tellg();
974                                 if ((pos == -1) || (pos >= filePos->end)) { break; }
975                         #else
976                                 if (in.eof()) { break; }
977                         #endif
978                         
979                         //report progress
980                         if((count) % 100 == 0){ m->mothurOut(toString(count)); m->mothurOutEndLine();           }
981                 }
982                 //report progress
983                 if((count) % 100 != 0){ m->mothurOut(toString(count)); m->mothurOutEndLine();           }
984                 in.close();
985                 
986                 return count;
987         }
988         catch(exception& e) {
989                 m->errorOut(e, "FilterSeqsCommand", "driverCreateFilter");
990                 exit(1);
991         }
992 }
993 #ifdef USE_MPI
994 /**************************************************************************************/
995 int FilterSeqsCommand::MPICreateFilter(int start, int num, Filters& F, MPI_File& inMPI, vector<unsigned long long>& MPIPos) {   
996         try {
997                 
998                 MPI_Status status; 
999                 int pid;
1000                 MPI_Comm_rank(MPI_COMM_WORLD, &pid); //find out who we are
1001                 
1002                 for(int i=0;i<num;i++){
1003                         
1004                         if (m->control_pressed) { return 0; }
1005                         
1006                         //read next sequence
1007                         int length = MPIPos[start+i+1] - MPIPos[start+i];
1008         
1009                         char* buf4 = new char[length];
1010                         MPI_File_read_at(inMPI, MPIPos[start+i], buf4, length, MPI_CHAR, &status);
1011                         
1012                         string tempBuf = buf4;
1013                         if (tempBuf.length() > length) { tempBuf = tempBuf.substr(0, length);  }
1014                         istringstream iss (tempBuf,istringstream::in);
1015                         delete buf4;
1016
1017                         Sequence seq(iss);  
1018
1019                         if (seq.getAligned().length() != alignmentLength) {  cout << "Alignment length is " << alignmentLength << " and sequence " << seq.getName() << " has length " << seq.getAligned().length() << ", please correct." << endl; exit(1);  }
1020                         
1021                         if(trump != '*'){       F.doTrump(seq); }
1022                         if(m->isTrue(vertical) || soft != 0){   F.getFreqs(seq);        }
1023                         cout.flush();
1024                                                 
1025                         //report progress
1026                         if((i+1) % 100 == 0){   cout << (i+1) << endl;   m->mothurOutJustToLog(toString(i+1) + "\n");   }
1027                 }
1028                 
1029                 //report progress
1030                 if((num) % 100 != 0){   cout << num << endl; m->mothurOutJustToLog(toString(num) + "\n");       }
1031                 
1032                 return 0;
1033         }
1034         catch(exception& e) {
1035                 m->errorOut(e, "FilterSeqsCommand", "MPICreateFilter");
1036                 exit(1);
1037         }
1038 }
1039 #endif
1040 /**************************************************************************************************/
1041
1042 int FilterSeqsCommand::createProcessesCreateFilter(Filters& F, string filename) {
1043         try {
1044         int process = 1;
1045                 int num = 0;
1046                 processIDS.clear();
1047
1048 #if defined (__APPLE__) || (__MACH__) || (linux) || (__linux)
1049                                 
1050                 //loop through and create all the processes you want
1051                 while (process != processors) {
1052                         int pid = fork();
1053                         
1054                         if (pid > 0) {
1055                                 processIDS.push_back(pid);  //create map from line number to pid so you can append files in correct order later
1056                                 process++;
1057                         }else if (pid == 0){
1058                                 //reset child's filter counts to 0;
1059                                 F.a.clear(); F.a.resize(alignmentLength, 0);
1060                                 F.t.clear(); F.t.resize(alignmentLength, 0);
1061                                 F.g.clear(); F.g.resize(alignmentLength, 0);
1062                                 F.c.clear(); F.c.resize(alignmentLength, 0);
1063                                 F.gap.clear(); F.gap.resize(alignmentLength, 0);
1064                                 
1065                                 num = driverCreateFilter(F, filename, lines[process]);
1066                                 
1067                                 //write out filter counts to file
1068                                 filename += toString(getpid()) + "filterValues.temp";
1069                                 ofstream out;
1070                                 m->openOutputFile(filename, out);
1071                                 
1072                                 out << num << endl;
1073                                 out << F.getFilter() << endl;
1074                                 for (int k = 0; k < alignmentLength; k++) {             out << F.a[k] << '\t'; }  out << endl;
1075                                 for (int k = 0; k < alignmentLength; k++) {             out << F.t[k] << '\t'; }  out << endl;
1076                                 for (int k = 0; k < alignmentLength; k++) {             out << F.g[k] << '\t'; }  out << endl;
1077                                 for (int k = 0; k < alignmentLength; k++) {             out << F.c[k] << '\t'; }  out << endl;
1078                                 for (int k = 0; k < alignmentLength; k++) {             out << F.gap[k] << '\t'; }  out << endl;
1079
1080                                 //cout << F.getFilter() << endl;
1081                                 out.close();
1082                                 
1083                                 exit(0);
1084                         }else { 
1085                                 m->mothurOut("[ERROR]: unable to spawn the necessary processes."); m->mothurOutEndLine(); 
1086                                 for (int i = 0; i < processIDS.size(); i++) { kill (processIDS[i], SIGINT); }
1087                                 exit(0);
1088                         }
1089                 }
1090                 
1091                 //parent do your part
1092                 num = driverCreateFilter(F, filename, lines[0]);
1093                 
1094                 //force parent to wait until all the processes are done
1095                 for (int i=0;i<(processors-1);i++) { 
1096                         int temp = processIDS[i];
1097                         wait(&temp);
1098                 }
1099                 
1100                 //parent reads in and combines Filter info
1101                 for (int i = 0; i < processIDS.size(); i++) {
1102                         string tempFilename = filename + toString(processIDS[i]) + "filterValues.temp";
1103                         ifstream in;
1104                         m->openInputFile(tempFilename, in);
1105                         
1106                         int temp, tempNum;
1107                         string tempFilterString;
1108
1109                         in >> tempNum; m->gobble(in); num += tempNum;
1110
1111                         in >> tempFilterString;
1112                         F.mergeFilter(tempFilterString);
1113
1114                         for (int k = 0; k < alignmentLength; k++) {             in >> temp; F.a[k] += temp; }           m->gobble(in);
1115                         for (int k = 0; k < alignmentLength; k++) {             in >> temp; F.t[k] += temp; }           m->gobble(in);
1116                         for (int k = 0; k < alignmentLength; k++) {             in >> temp; F.g[k] += temp; }           m->gobble(in);
1117                         for (int k = 0; k < alignmentLength; k++) {             in >> temp; F.c[k] += temp; }           m->gobble(in);
1118                         for (int k = 0; k < alignmentLength; k++) {             in >> temp; F.gap[k] += temp; } m->gobble(in);
1119                                 
1120                         in.close();
1121                         m->mothurRemove(tempFilename);
1122                 }
1123                 
1124                 
1125 #else
1126         
1127         //////////////////////////////////////////////////////////////////////////////////////////////////////
1128                 //Windows version shared memory, so be careful when passing variables through the filterData struct. 
1129                 //Above fork() will clone, so memory is separate, but that's not the case with windows, 
1130                 //Taking advantage of shared memory to allow both threads to add info to F.
1131                 //////////////////////////////////////////////////////////////////////////////////////////////////////
1132                 
1133                 vector<filterData*> pDataArray; 
1134                 DWORD   dwThreadIdArray[processors];
1135                 HANDLE  hThreadArray[processors]; 
1136                 
1137                 //Create processor worker threads.
1138                 for( int i=0; i<processors; i++ ){
1139                         
1140                         filterData* tempFilter = new filterData(filename, m, lines[i]->start, lines[i]->end, alignmentLength, trump, vertical, soft, hard, i);
1141                         pDataArray.push_back(tempFilter);
1142                         processIDS.push_back(i);
1143             
1144                         hThreadArray[i] = CreateThread(NULL, 0, MyCreateFilterThreadFunction, pDataArray[i], 0, &dwThreadIdArray[i]);   
1145                 }
1146         
1147                 //Wait until all threads have terminated.
1148                 WaitForMultipleObjects(processors, hThreadArray, TRUE, INFINITE);
1149                 
1150                 //Close all thread handles and free memory allocations.
1151                 for(int i=0; i < pDataArray.size(); i++){
1152                         num += pDataArray[i]->count;
1153             F.mergeFilter(pDataArray[i]->F.getFilter());
1154             
1155                         for (int k = 0; k < alignmentLength; k++) {      F.a[k] += pDataArray[i]->F.a[k];       }
1156                         for (int k = 0; k < alignmentLength; k++) {      F.t[k] += pDataArray[i]->F.t[k];       }
1157                         for (int k = 0; k < alignmentLength; k++) {      F.g[k] += pDataArray[i]->F.g[k];       }
1158                         for (int k = 0; k < alignmentLength; k++) {      F.c[k] += pDataArray[i]->F.c[k];       }
1159                         for (int k = 0; k < alignmentLength; k++) {      F.gap[k] += pDataArray[i]->F.gap[k];   }
1160
1161                         CloseHandle(hThreadArray[i]);
1162                         delete pDataArray[i];
1163                 }
1164                 
1165 #endif  
1166         return num;
1167         
1168         }
1169         catch(exception& e) {
1170                 m->errorOut(e, "FilterSeqsCommand", "createProcessesCreateFilter");
1171                 exit(1);
1172         }
1173 }
1174 /**************************************************************************************/