]> git.donarmstrong.com Git - mothur.git/blob - consensusseqscommand.cpp
Merge remote-tracking branch 'mothur/master'
[mothur.git] / consensusseqscommand.cpp
1 /*
2  *  consensusseqscommand.cpp
3  *  Mothur
4  *
5  *  Created by westcott on 11/23/10.
6  *  Copyright 2010 Schloss Lab. All rights reserved.
7  *
8  */
9
10 #include "consensusseqscommand.h"
11 #include "sequence.hpp"
12 #include "inputdata.h"
13
14 //**********************************************************************************************************************
15 vector<string> ConsensusSeqsCommand::setParameters(){   
16         try {
17                 CommandParameter pfasta("fasta", "InputTypes", "", "", "none", "none", "none","fasta-name",false,true,true); parameters.push_back(pfasta);
18                 CommandParameter pname("name", "InputTypes", "", "", "namecount", "none", "none","name",false,false,true); parameters.push_back(pname);
19         CommandParameter pcount("count", "InputTypes", "", "", "namecount", "none", "none","count",false,false,true); parameters.push_back(pcount);
20                 CommandParameter plist("list", "InputTypes", "", "", "none", "none", "none","fasta-name",false,false,true); parameters.push_back(plist);
21                 CommandParameter plabel("label", "String", "", "", "", "", "","",false,false); parameters.push_back(plabel);
22                 CommandParameter pcutoff("cutoff", "Number", "", "100", "", "", "","",false,false); parameters.push_back(pcutoff);
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, "ConsensusSeqsCommand", "setParameters");
32                 exit(1);
33         }
34 }
35 //**********************************************************************************************************************
36 string ConsensusSeqsCommand::getHelpString(){   
37         try {
38                 string helpString = "";
39                 helpString += "The consensus.seqs command can be used in 2 ways: create a consensus sequence from a fastafile, or with a listfile create a consensus sequence for each otu. Sequences must be aligned.\n";
40                 helpString += "The consensus.seqs command parameters are fasta, list, name, count, cutoff and label.\n";
41                 helpString += "The fasta parameter allows you to enter the fasta file containing your sequences, and is required, unless you have a valid current fasta file. \n";
42                 helpString += "The list parameter allows you to enter a your list file. \n";
43                 helpString += "The name parameter allows you to enter a names file associated with the fasta file. \n";
44                 helpString += "The label parameter allows you to select what distance levels you would like output files for, and are separated by dashes.\n";
45                 helpString += "The cutoff parameter allows you set a percentage of sequences that support the base. For example: cutoff=97 would only return a sequence that only showed ambiguities for bases that were not supported by at least 97% of sequences.\n";
46                 helpString += "The consensus.seqs command should be in the following format: \n";
47                 helpString += "consensus.seqs(fasta=yourFastaFile, list=yourListFile) \n";      
48                 helpString += "Example: consensus.seqs(fasta=abrecovery.align, list=abrecovery.fn.list) \n";
49                 helpString += "Note: No spaces between parameter labels (i.e. fasta), '=' and parameters (i.e.yourFastaFile).\n";       
50                 return helpString;
51         }
52         catch(exception& e) {
53                 m->errorOut(e, "ConsensusSeqsCommand", "getHelpString");
54                 exit(1);
55         }
56 }
57 //**********************************************************************************************************************
58 string ConsensusSeqsCommand::getOutputPattern(string type) {
59     try {
60         string pattern = "";
61         
62         if (type == "fasta") {  pattern = "[filename],cons.fasta-[filename],[tag],cons.fasta"; } 
63         else if (type == "name") {  pattern = "[filename],cons.names-[filename],[tag],cons.names"; } 
64         else if (type == "count") {  pattern = "[filename],cons.count_table-[filename],[tag],cons.count_table"; }
65         else if (type == "summary") {  pattern = "[filename],cons.summary-[filename],[tag],cons.summary"; }
66         else { m->mothurOut("[ERROR]: No definition for type " + type + " output pattern.\n"); m->control_pressed = true;  }
67         
68         return pattern;
69     }
70     catch(exception& e) {
71         m->errorOut(e, "ConsensusSeqsCommand", "getOutputPattern");
72         exit(1);
73     }
74 }
75 //**********************************************************************************************************************
76 ConsensusSeqsCommand::ConsensusSeqsCommand(){   
77         try {
78                 abort = true; calledHelp = true; 
79                 setParameters();
80                 vector<string> tempOutNames;
81                 outputTypes["fasta"] = tempOutNames;
82                 outputTypes["name"] = tempOutNames;
83         outputTypes["count"] = tempOutNames;
84                 outputTypes["summary"] = tempOutNames;
85         }
86         catch(exception& e) {
87                 m->errorOut(e, "ConsensusSeqsCommand", "ConsensusSeqsCommand");
88                 exit(1);
89         }
90 }
91 //***************************************************************************************************************
92 ConsensusSeqsCommand::ConsensusSeqsCommand(string option)  {
93         try {
94                 abort = false; calledHelp = false;   
95                 allLines = 1;
96                 
97                 //allow user to run help
98                 if(option == "help") { help(); abort = true; calledHelp = true; }
99                 else if(option == "citation") { citation(); abort = true; calledHelp = true;}
100                 
101                 else {
102                         
103                         vector<string> myArray = setParameters();
104                         
105                         OptionParser parser(option);
106                         map<string,string> parameters = parser.getParameters();
107                         
108                         ValidParameters validParameter;
109                         map<string,string>::iterator it;
110                         
111                         //check to make sure all parameters are valid for command
112                         for (it = parameters.begin(); it != parameters.end(); it++) { 
113                                 if (validParameter.isValidParameter(it->first, myArray, it->second) != true) {  abort = true;  }
114                         }
115                         
116                         //initialize outputTypes
117                         vector<string> tempOutNames;
118                         outputTypes["fasta"] = tempOutNames;
119                         outputTypes["name"] = tempOutNames;
120             outputTypes["count"] = tempOutNames;
121                         outputTypes["summary"] = tempOutNames;
122                         
123                                                 
124                         //if the user changes the input directory command factory will send this info to us in the output parameter 
125                         string inputDir = validParameter.validFile(parameters, "inputdir", false);      
126                         if (inputDir == "not found"){   inputDir = "";          }
127                         else {
128                                 string path;
129                                 it = parameters.find("fasta");
130                                 //user has given a template file
131                                 if(it != parameters.end()){ 
132                                         path = m->hasPath(it->second);
133                                         //if the user has not given a path then, add inputdir. else leave path alone.
134                                         if (path == "") {       parameters["fasta"] = inputDir + it->second;            }
135                                 }
136                                 
137                                 it = parameters.find("name");
138                                 //user has given a template file
139                                 if(it != parameters.end()){ 
140                                         path = m->hasPath(it->second);
141                                         //if the user has not given a path then, add inputdir. else leave path alone.
142                                         if (path == "") {       parameters["name"] = inputDir + it->second;             }
143                                 }
144                                 
145                                 it = parameters.find("list");
146                                 //user has given a template file
147                                 if(it != parameters.end()){ 
148                                         path = m->hasPath(it->second);
149                                         //if the user has not given a path then, add inputdir. else leave path alone.
150                                         if (path == "") {       parameters["list"] = inputDir + it->second;             }
151                                 }
152                 
153                 it = parameters.find("count");
154                                 //user has given a template file
155                                 if(it != parameters.end()){ 
156                                         path = m->hasPath(it->second);
157                                         //if the user has not given a path then, add inputdir. else leave path alone.
158                                         if (path == "") {       parameters["count"] = inputDir + it->second;            }
159                                 }
160                         }
161                         
162                         
163                         //check for parameters
164                         fastafile = validParameter.validFile(parameters, "fasta", true);
165                         if (fastafile == "not open") { abort = true; }
166                         else if (fastafile == "not found") {                    
167                                 fastafile = m->getFastaFile(); 
168                                 if (fastafile != "") { m->mothurOut("Using " + fastafile + " as input file for the fasta parameter."); m->mothurOutEndLine(); }
169                                 else {  m->mothurOut("You have no current fastafile and the fasta parameter is required."); m->mothurOutEndLine(); abort = true; }
170                         }else { m->setFastaFile(fastafile); }   
171                         
172                         namefile = validParameter.validFile(parameters, "name", true);
173                         if (namefile == "not open") { namefile = ""; abort = true; }
174                         else if (namefile == "not found") { namefile = ""; }
175                         else { m->setNameFile(namefile); }
176                         
177             countfile = validParameter.validFile(parameters, "count", true);
178                         if (countfile == "not open") { abort = true; countfile = ""; }  
179                         else if (countfile == "not found") { countfile = ""; }
180                         else { m->setCountTableFile(countfile); }
181                         
182             if ((countfile != "") && (namefile != "")) { m->mothurOut("You must enter ONLY ONE of the following: count or name."); m->mothurOutEndLine(); abort = true; }
183             
184                         listfile = validParameter.validFile(parameters, "list", true);
185                         if (listfile == "not open") { abort = true; }
186                         else if (listfile == "not found") { listfile = "";  }   
187                         else { m->setListFile(listfile); }
188                         
189                         label = validParameter.validFile(parameters, "label", false);                   
190                         if (label == "not found") { label = ""; }
191                         else { 
192                                 if(label != "all") {  m->splitAtDash(label, labels);  allLines = 0;  }
193                                 else { allLines = 1;  }
194                         }
195                         
196                         string temp = validParameter.validFile(parameters, "cutoff", false);  if (temp == "not found") { temp = "100"; }
197                         m->mothurConvert(temp, cutoff); 
198                         
199                         //if the user changes the output directory command factory will send this info to us in the output parameter 
200                         outputDir = validParameter.validFile(parameters, "outputdir", false);           if (outputDir == "not found"){  outputDir = m->hasPath(fastafile);      }
201                         
202             if (countfile == "") {
203                 if (namefile == ""){
204                     vector<string> files; files.push_back(fastafile); 
205                     parser.getNameFile(files);
206                 }
207             }
208                 }
209         }
210         catch(exception& e) {
211                 m->errorOut(e, "ConsensusSeqsCommand", "ConsensusSeqsCommand");
212                 exit(1);
213         }
214 }
215 //***************************************************************************************************************
216
217 int ConsensusSeqsCommand::execute(){
218         try{
219                 
220                 if (abort == true) { if (calledHelp) { return 0; }  return 2;   }
221                 
222         int start = time(NULL);
223         
224                 readFasta();
225                 
226                 if (m->control_pressed) { return 0; }
227                 
228                 if (namefile != "") { readNames(); }
229         if (countfile != "") { ct.readTable(countfile);  }
230                 
231                 if (m->control_pressed) { return 0; }
232                 
233                                 
234                 if (listfile == "") {
235                         
236                         ofstream outSummary;
237             map<string, string> variables; 
238             variables["[filename]"] = outputDir + m->getRootName(m->getSimpleName(fastafile));
239                         string outputSummaryFile = getOutputFileName("summary", variables);
240                         m->openOutputFile(outputSummaryFile, outSummary);
241                         outSummary.setf(ios::fixed, ios::floatfield); outSummary.setf(ios::showpoint);
242                         outputNames.push_back(outputSummaryFile); outputTypes["summary"].push_back(outputSummaryFile);
243                         
244                         outSummary << "PositioninAlignment\tA\tT\tG\tC\tGap\tNumberofSeqs\tConsensusBase" << endl;
245                         
246                         ofstream outFasta;
247                         string outputFastaFile = getOutputFileName("fasta", variables);
248                         m->openOutputFile(outputFastaFile, outFasta);
249                         outputNames.push_back(outputFastaFile); outputTypes["fasta"].push_back(outputFastaFile);
250         
251                         vector< vector<float> > percentages; percentages.resize(5);
252                         for (int j = 0; j < percentages.size(); j++) { percentages[j].resize(seqLength, 0.0); }
253                         
254                         string consSeq = "";
255             int thisCount;
256                         //get counts
257                         for (int j = 0; j < seqLength; j++) {
258                                 
259                                 if (m->control_pressed) { outSummary.close(); outFasta.close(); for (int i = 0; i < outputNames.size(); i++) {  m->mothurRemove(outputNames[i]); } return 0; }
260                                 
261                                 vector<int> counts; counts.resize(5, 0); //A,T,G,C,Gap
262                                 int numDots = 0;
263                                 thisCount = 0;
264                                 for (map<string, string>::iterator it = fastaMap.begin(); it != fastaMap.end(); it++) {
265                                         
266                     string thisSeq = it->second;
267                     int size = 0;
268                     
269                     if (countfile != "") { size = ct.getNumSeqs(it->first); }
270                     else {
271                         map<string, int>::iterator itCount = nameFileMap.find(it->first);
272                         if (itCount != nameFileMap.end()) {
273                             size = itCount->second;
274                         }else { m->mothurOut("[ERROR]: file mismatch, aborting.\n"); m->control_pressed = true; break; }
275                     }
276                     
277                     for (int k = 0; k < size; k++) {
278                         if (thisSeq[j] == '.') { numDots++; }
279                         
280                         char base = toupper(thisSeq[j]);
281                         if (base == 'A') { counts[0]++; }
282                         else if (base == 'T') { counts[1]++; }
283                         else if (base == 'G') { counts[2]++; }
284                         else if (base == 'C') { counts[3]++; }
285                         else { counts[4]++; }
286                         thisCount++;
287                     }
288                                 }
289                                 
290                                 char conBase = '.';
291                                 if (numDots != thisCount) { conBase = getBase(counts, thisCount); }
292                                 
293                                 consSeq += conBase;
294                                 
295                                 percentages[0][j] = counts[0] / (float) thisCount;
296                                 percentages[1][j] = counts[1] / (float) thisCount;
297                                 percentages[2][j] = counts[2] / (float) thisCount;
298                                 percentages[3][j] = counts[3] / (float) thisCount;
299                                 percentages[4][j] = counts[4] / (float) thisCount;
300                         }
301                         
302                         for (int j = 0; j < seqLength; j++) { 
303                                 outSummary << (j+1) << '\t' << percentages[0][j] << '\t'<< percentages[1][j] << '\t'<< percentages[2][j] << '\t' << percentages[3][j] << '\t' << percentages[4][j] << '\t' << thisCount << '\t' << consSeq[j] << endl;
304                         }
305                         
306                                 
307                         outFasta << ">conseq" << endl << consSeq << endl;
308                         
309                         outSummary.close(); outFasta.close();
310             
311                         if (m->control_pressed) {  for (int i = 0; i < outputNames.size(); i++) {       m->mothurRemove(outputNames[i]); } return 0; }
312                 
313                 }else {
314                         
315                                                 
316                         InputData* input = new InputData(listfile, "list");
317                         ListVector* list = input->getListVector();
318                         
319                         string lastLabel = list->getLabel();
320                         set<string> processedLabels;
321                         set<string> userLabels = labels;
322
323                         //as long as you are not at the end of the file or done wih the lines you want
324                         while((list != NULL) && ((allLines == 1) || (userLabels.size() != 0))) {
325                                 
326                                 if (m->control_pressed) {  for (int i = 0; i < outputNames.size(); i++) {       m->mothurRemove(outputNames[i]); } delete list; delete input;  return 0;  }
327                                 
328                                 if(allLines == 1 || labels.count(list->getLabel()) == 1){                       
329                                         
330                                         m->mothurOut(list->getLabel()); m->mothurOutEndLine();
331                                         
332                                         processList(list);
333                                         
334                                         processedLabels.insert(list->getLabel());
335                                         userLabels.erase(list->getLabel());
336                                 }
337                                 
338                                 if ((m->anyLabelsToProcess(list->getLabel(), userLabels, "") == true) && (processedLabels.count(lastLabel) != 1)) {
339                                         string saveLabel = list->getLabel();
340                                         
341                                         delete list; 
342                                         
343                                         list = input->getListVector(lastLabel);
344                                         m->mothurOut(list->getLabel()); m->mothurOutEndLine();
345                                         
346                                         processList(list);
347                                         
348                                         processedLabels.insert(list->getLabel());
349                                         userLabels.erase(list->getLabel());
350                                         
351                                         //restore real lastlabel to save below
352                                         list->setLabel(saveLabel);
353                                 }
354                                 
355                                 lastLabel = list->getLabel();
356                                 
357                                 delete list; list = NULL;
358                                 
359                                 //get next line to process
360                                 list = input->getListVector();                          
361                         }
362                         
363                         
364                         if (m->control_pressed) { for (int i = 0; i < outputNames.size(); i++) {        m->mothurRemove(outputNames[i]); } if (list != NULL) { delete list; } delete input; return 0;  }
365                         
366                         //output error messages about any remaining user labels
367                         set<string>::iterator it;
368                         bool needToRun = false;
369                         for (it = userLabels.begin(); it != userLabels.end(); it++) {  
370                                 m->mothurOut("Your file does not include the label " + *it); 
371                                 if (processedLabels.count(lastLabel) != 1) {
372                                         m->mothurOut(". I will use " + lastLabel + "."); m->mothurOutEndLine();
373                                         needToRun = true;
374                                 }else {
375                                         m->mothurOut(". Please refer to " + lastLabel + "."); m->mothurOutEndLine();
376                                 }
377                         }
378                         
379                         //run last label if you need to
380                         if (needToRun == true)  {
381                                 if (list != NULL) { delete list; }
382                                 
383                                 list = input->getListVector(lastLabel);
384                                 
385                                 m->mothurOut(list->getLabel()); m->mothurOutEndLine();
386                                 
387                                 processList(list);
388                                 
389                                 delete list; list = NULL;
390                         }
391                         
392                         if (list != NULL) { delete list; }
393                         delete input;
394                 }
395                 
396         m->mothurOut("It took " + toString(time(NULL) - start) + " secs to find the consensus sequences.");
397         
398                 m->mothurOutEndLine();
399                 m->mothurOut("Output File Names: "); m->mothurOutEndLine();
400                 for (int i = 0; i < outputNames.size(); i++) {  m->mothurOut(outputNames[i]); m->mothurOutEndLine();    }       
401                 m->mothurOutEndLine();
402                 
403                 
404                 return 0;
405                 
406         }
407         catch(exception& e) {
408                 m->errorOut(e, "ConsensusSeqsCommand", "execute");
409                 exit(1);
410         }
411 }
412 //***************************************************************************************************************
413
414 int ConsensusSeqsCommand::processList(ListVector*& list){
415         try{
416                 
417                 ofstream outSummary;
418         map<string, string> variables; 
419         variables["[filename]"] = outputDir + m->getRootName(m->getSimpleName(fastafile));
420         variables["[tag]"] = list->getLabel();
421                 string outputSummaryFile = getOutputFileName("summary", variables);
422                 m->openOutputFile(outputSummaryFile, outSummary);
423                 outSummary.setf(ios::fixed, ios::floatfield); outSummary.setf(ios::showpoint);
424                 outputNames.push_back(outputSummaryFile); outputTypes["summary"].push_back(outputSummaryFile);
425                 
426                 ofstream outName;
427                 string outputNameFile = getOutputFileName("name",variables);
428                 m->openOutputFile(outputNameFile, outName);
429                 outputNames.push_back(outputNameFile); outputTypes["name"].push_back(outputNameFile);
430                 
431                 ofstream outFasta;
432                 string outputFastaFile = getOutputFileName("fasta",variables);
433                 m->openOutputFile(outputFastaFile, outFasta);
434                 outputNames.push_back(outputFastaFile); outputTypes["fasta"].push_back(outputFastaFile);
435                 
436                 outSummary << "OTU#\tPositioninAlignment\tA\tT\tG\tC\tGap\tNumberofSeqs\tConsensusBase" << endl;
437                 
438                 for (int i = 0; i < list->getNumBins(); i++) {
439                         
440                         if (m->control_pressed) { outSummary.close(); outName.close(); outFasta.close(); return 0; }
441                         
442                         string bin = list->get(i);
443                         string consSeq = getConsSeq(bin, outSummary, i);
444                         
445                         outFasta << ">seq" << (i+1) << endl << consSeq << endl;
446                         outName << "seq" << (i+1) << '\t' << "seq" << (i+1) << "," << bin << endl;
447                 }
448                 
449                 outSummary.close(); outName.close(); outFasta.close();
450                 
451                 return 0;
452                 
453         }
454         catch(exception& e) {
455                 m->errorOut(e, "ConsensusSeqsCommand", "processList");
456                 exit(1);
457         }
458 }
459
460 //***************************************************************************************************************
461 string ConsensusSeqsCommand::getConsSeq(string bin, ofstream& outSummary, int binNumber){
462         try{
463                 
464                 string consSeq = "";
465                 bool error = false;
466         int totalSize=0;
467                                 
468                 vector<string> binNames;
469                 m->splitAtComma(bin, binNames);
470         
471         vector< vector<float> > percentages; percentages.resize(5);
472                 for (int j = 0; j < percentages.size(); j++) { percentages[j].resize(seqLength, 0.0); }
473
474         if (countfile != "") {
475             //get counts
476             for (int j = 0; j < seqLength; j++) {
477                 
478                 if (m->control_pressed) { return consSeq; }
479                 
480                 vector<int> counts; counts.resize(5, 0); //A,T,G,C,Gap
481                 int numDots = 0;
482                 totalSize = 0;
483                  for (int i = 0; i < binNames.size(); i++) {
484                      if (m->control_pressed) { return consSeq; }
485                      
486                      string thisSeq = "";
487                      map<string, string>::iterator itFasta = fastaMap.find(binNames[i]);
488                      if (itFasta != fastaMap.end()) {
489                          thisSeq = itFasta->second;
490                      }else { m->mothurOut("[ERROR]: " + binNames[i] + " is not in your fasta file, please correct."); m->mothurOutEndLine(); m->control_pressed = true; }
491                      
492                      int size = ct.getNumSeqs(binNames[i]);
493                      if (size != 0) {
494                          for (int k = 0; k < size; k++) {
495                              if (thisSeq[j] == '.') { numDots++; }
496                              
497                              char base = toupper(thisSeq[j]);
498                              if (base == 'A') { counts[0]++; }
499                              else if (base == 'T') { counts[1]++; }
500                              else if (base == 'G') { counts[2]++; }
501                              else if (base == 'C') { counts[3]++; }
502                              else { counts[4]++; }
503                              totalSize++;
504                          }
505                      }else { m->mothurOut("[ERROR]: " + binNames[i] + " is not in your count file, please correct."); m->mothurOutEndLine(); m->control_pressed = true; }
506                  }
507                 char conBase = '.';
508                 if (numDots != totalSize) { conBase = getBase(counts, totalSize); }
509                 
510                 consSeq += conBase;
511                 
512                 percentages[0][j] = counts[0] / (float) totalSize;
513                 percentages[1][j] = counts[1] / (float) totalSize;
514                 percentages[2][j] = counts[2] / (float) totalSize;
515                 percentages[3][j] = counts[3] / (float) totalSize;
516                 percentages[4][j] = counts[4] / (float) totalSize;
517             }
518
519         }else {
520                 
521             //get sequence strings for each name in the bin
522             vector<string> seqs;
523             for (int i = 0; i < binNames.size(); i++) {
524                 
525                 map<string, string>::iterator it;
526                 it = nameMap.find(binNames[i]);
527                 if (it == nameMap.end()) { 
528                     if (namefile == "") { m->mothurOut("[ERROR]: " + binNames[i] + " is not in your fasta file, please correct."); m->mothurOutEndLine(); error = true; }
529                     else { m->mothurOut("[ERROR]: " + binNames[i] + " is not in your fasta or name file, please correct."); m->mothurOutEndLine(); error = true; }
530                     break;
531                 }else {
532                     //add sequence string to seqs vector to process below
533                     map<string, string>::iterator itFasta = fastaMap.find(it->second);
534                     
535                     if (itFasta != fastaMap.end()) {
536                         string seq = itFasta->second;
537                         seqs.push_back(seq);
538                     }else { m->mothurOut("[ERROR]: file mismatch, aborting. \n"); }
539                 }
540             }
541             
542             if (error) { m->control_pressed = true; return consSeq; }
543             totalSize = seqs.size();
544             //get counts
545             for (int j = 0; j < seqLength; j++) {
546                 
547                 if (m->control_pressed) { return consSeq; }
548                 
549                 vector<int> counts; counts.resize(5, 0); //A,T,G,C,Gap
550                 int numDots = 0;
551                 
552                 for (int i = 0; i < seqs.size(); i++) {
553                     
554                     if (seqs[i][j] == '.') { numDots++; }
555                     
556                     char base = toupper(seqs[i][j]);
557                     if (base == 'A') { counts[0]++; }
558                     else if (base == 'T') { counts[1]++; }
559                     else if (base == 'G') { counts[2]++; }
560                     else if (base == 'C') { counts[3]++; }
561                     else { counts[4]++; }
562                 }
563                 
564                 char conBase = '.';
565                 if (numDots != seqs.size()) { conBase = getBase(counts, seqs.size()); }
566                 
567                 consSeq += conBase;
568                 
569                 percentages[0][j] = counts[0] / (float) seqs.size();
570                 percentages[1][j] = counts[1] / (float) seqs.size();
571                 percentages[2][j] = counts[2] / (float) seqs.size();
572                 percentages[3][j] = counts[3] / (float) seqs.size();
573                 percentages[4][j] = counts[4] / (float) seqs.size();
574                 
575             }
576                 }
577         
578         
579         
580                 for (int j = 0; j < seqLength; j++) { 
581                         outSummary << (binNumber + 1) << '\t' << (j+1) << '\t' << percentages[0][j] << '\t'<< percentages[1][j] << '\t'<< percentages[2][j] << '\t' << percentages[3][j] << '\t' << percentages[4][j] << '\t' << totalSize << '\t' << consSeq[j] << endl;
582                 }
583                 
584                 return consSeq;
585                 
586         }
587         catch(exception& e) {
588                 m->errorOut(e, "ConsensusSeqsCommand", "getConsSeq");
589                 exit(1);
590         }
591 }
592 //***************************************************************************************************************
593
594 char ConsensusSeqsCommand::getBase(vector<int> counts, int size){  //A,T,G,C,Gap
595         try{
596                 /* A = adenine
597                 * C = cytosine
598                 * G = guanine
599                 * T = thymine
600                 * R = G A (purine)
601                 * Y = T C (pyrimidine)
602                 * K = G T (keto)
603                 * M = A C (amino)
604                 * S = G C (strong bonds)
605                 * W = A T (weak bonds)
606                 * B = G T C (all but A)
607                 * D = G A T (all but C)
608                 * H = A C T (all but G)
609                 * V = G C A (all but T)
610                 * N = A G C T (any) */
611                 
612                 char conBase = 'N';
613                 
614                 //zero out counts that don't make the cutoff
615                 float percentage = (100.0 - cutoff) / 100.0;
616         
617                 for (int i = 0; i < counts.size(); i++) {
618             float countPercentage = counts[i] / (float) size;
619                         if (countPercentage < percentage) { counts[i] = 0; }
620                 }
621                 
622                 //any
623                 if ((counts[0] != 0) && (counts[1] != 0) && (counts[2] != 0) && (counts[3] != 0) && (counts[4] != 0)) {  conBase = 'n'; }
624                 //any no gap
625                 else if ((counts[0] != 0) && (counts[1] != 0) && (counts[2] != 0) && (counts[3] != 0) && (counts[4] == 0)) {  conBase = 'N'; }
626                 //all but T
627                 else if ((counts[0] != 0) && (counts[1] == 0) && (counts[2] != 0) && (counts[3] != 0) && (counts[4] != 0)) {  conBase = 'v'; }  
628                 //all but T no gap
629                 else if ((counts[0] != 0) && (counts[1] == 0) && (counts[2] != 0) && (counts[3] != 0) && (counts[4] == 0)) {  conBase = 'V'; }  
630                 //all but G
631                 else if ((counts[0] != 0) && (counts[1] != 0) && (counts[2] == 0) && (counts[3] != 0) && (counts[4] != 0)) {  conBase = 'h'; }  
632                 //all but G no gap
633                 else if ((counts[0] != 0) && (counts[1] != 0) && (counts[2] == 0) && (counts[3] != 0) && (counts[4] == 0)) {  conBase = 'H'; }  
634                 //all but C
635                 else if ((counts[0] != 0) && (counts[1] != 0) && (counts[2] != 0) && (counts[3] == 0) && (counts[4] != 0)) {  conBase = 'd'; }  
636                 //all but C no gap
637                 else if ((counts[0] != 0) && (counts[1] != 0) && (counts[2] != 0) && (counts[3] == 0) && (counts[4] == 0)) {  conBase = 'D'; }  
638                 //all but A
639                 else if ((counts[0] == 0) && (counts[1] != 0) && (counts[2] != 0) && (counts[3] != 0) && (counts[4] != 0)) {  conBase = 'b'; }  
640                 //all but A no gap
641                 else if ((counts[0] == 0) && (counts[1] != 0) && (counts[2] != 0) && (counts[3] != 0) && (counts[4] == 0)) {  conBase = 'B'; }  
642                 //W = A T (weak bonds)
643                 else if ((counts[0] != 0) && (counts[1] != 0) && (counts[2] == 0) && (counts[3] == 0) && (counts[4] != 0)) {  conBase = 'w'; }  
644                 //W = A T (weak bonds) no gap
645                 else if ((counts[0] != 0) && (counts[1] != 0) && (counts[2] == 0) && (counts[3] == 0) && (counts[4] == 0)) {  conBase = 'W'; }  
646                 //S = G C (strong bonds)
647                 else if ((counts[0] == 0) && (counts[1] == 0) && (counts[2] != 0) && (counts[3] != 0) && (counts[4] != 0)) {  conBase = 's'; }  
648                 //S = G C (strong bonds) no gap
649                 else if ((counts[0] == 0) && (counts[1] == 0) && (counts[2] != 0) && (counts[3] != 0) && (counts[4] == 0)) {  conBase = 'S'; }  
650                 //M = A C (amino)
651                 else if ((counts[0] != 0) && (counts[1] == 0) && (counts[2] == 0) && (counts[3] != 0) && (counts[4] != 0)) {  conBase = 'm'; }  
652                 //M = A C (amino) no gap
653                 else if ((counts[0] != 0) && (counts[1] == 0) && (counts[2] == 0) && (counts[3] != 0) && (counts[4] == 0)) {  conBase = 'M'; }  
654                 //K = G T (keto)
655                 else if ((counts[0] == 0) && (counts[1] != 0) && (counts[2] != 0) && (counts[3] == 0) && (counts[4] != 0)) {  conBase = 'k'; }  
656                 //K = G T (keto) no gap
657                 else if ((counts[0] == 0) && (counts[1] != 0) && (counts[2] != 0) && (counts[3] == 0) && (counts[4] == 0)) {  conBase = 'K'; }  
658                 //Y = T C (pyrimidine)
659                 else if ((counts[0] == 0) && (counts[1] != 0) && (counts[2] == 0) && (counts[3] != 0) && (counts[4] != 0)) {  conBase = 'y'; }  
660                 //Y = T C (pyrimidine) no gap
661                 else if ((counts[0] == 0) && (counts[1] != 0) && (counts[2] == 0) && (counts[3] != 0) && (counts[4] == 0)) {  conBase = 'Y'; }  
662                 //R = G A (purine)
663                 else if ((counts[0] != 0) && (counts[1] == 0) && (counts[2] != 0) && (counts[3] == 0) && (counts[4] != 0)) {  conBase = 'r'; }  
664                 //R = G A (purine) no gap
665                 else if ((counts[0] != 0) && (counts[1] == 0) && (counts[2] != 0) && (counts[3] == 0) && (counts[4] == 0)) {  conBase = 'R'; }  
666                 //only A
667                 else if ((counts[0] != 0) && (counts[1] == 0) && (counts[2] == 0) && (counts[3] == 0) && (counts[4] != 0)) {  conBase = 'a'; }  
668                 //only A no gap
669                 else if ((counts[0] != 0) && (counts[1] == 0) && (counts[2] == 0) && (counts[3] == 0) && (counts[4] == 0)) {  conBase = 'A'; }  
670                 //only T
671                 else if ((counts[0] == 0) && (counts[1] != 0) && (counts[2] == 0) && (counts[3] == 0) && (counts[4] != 0)) {  conBase = 't'; }  
672                 //only T no gap
673                 else if ((counts[0] == 0) && (counts[1] != 0) && (counts[2] == 0) && (counts[3] == 0) && (counts[4] == 0)) {  conBase = 'T'; }  
674                 //only G
675                 else if ((counts[0] == 0) && (counts[1] == 0) && (counts[2] != 0) && (counts[3] == 0) && (counts[4] != 0)) {  conBase = 'g'; }  
676                 //only G no gap
677                 else if ((counts[0] == 0) && (counts[1] == 0) && (counts[2] != 0) && (counts[3] == 0) && (counts[4] == 0)) {  conBase = 'G'; }  
678                 //only C
679                 else if ((counts[0] == 0) && (counts[1] == 0) && (counts[2] == 0) && (counts[3] != 0) && (counts[4] != 0)) {  conBase = 'c'; }  
680                 //only C no gap
681                 else if ((counts[0] == 0) && (counts[1] == 0) && (counts[2] == 0) && (counts[3] != 0) && (counts[4] == 0)) {  conBase = 'C'; }  
682                 //only gap
683                 else if ((counts[0] == 0) && (counts[1] == 0) && (counts[2] == 0) && (counts[3] == 0) && (counts[4] != 0)) {  conBase = '-'; }
684                 //cutoff removed all counts
685                 else if ((counts[0] == 0) && (counts[1] == 0) && (counts[2] == 0) && (counts[3] == 0) && (counts[4] == 0)) {  conBase = 'N'; }
686                 else{ m->mothurOut("[ERROR]: cannot find consensus base."); m->mothurOutEndLine(); }
687                 
688                 return conBase;
689                 
690         }
691         catch(exception& e) {
692                 m->errorOut(e, "ConsensusSeqsCommand", "getBase");
693                 exit(1);
694         }
695 }
696
697 //***************************************************************************************************************
698
699 int ConsensusSeqsCommand::readFasta(){
700         try{
701                 
702                 ifstream in;
703                 m->openInputFile(fastafile, in);
704                 seqLength = 0;
705         
706                 while (!in.eof()) {
707                         
708                         if (m->control_pressed) { break; }
709                         
710                         Sequence seq(in); m->gobble(in);
711                         string name = seq.getName();
712                         
713                         if (name != "") {
714                                 fastaMap[name] = seq.getAligned();
715                                 nameMap[name] = name; //set nameMap incase no names file
716                                 nameFileMap[name] = 1;
717                 
718                 if (seqLength == 0) { seqLength = seq.getAligned().length(); }
719                                 else if (seqLength != seq.getAligned().length()) { m->mothurOut("[ERROR]: sequence are not the same length, please correct."); m->mothurOutEndLine(); m->control_pressed = true; break; }
720                         }
721                 }
722                 
723                 in.close();
724                 
725                 return 0;
726                 
727         }
728         catch(exception& e) {
729                 m->errorOut(e, "ConsensusSeqsCommand", "readFasta");
730                 exit(1);
731         }
732 }
733 //***************************************************************************************************************
734
735 int ConsensusSeqsCommand::readNames(){
736          try{
737          map<string, string> temp;
738          map<string, string>::iterator it;
739          bool error = false;
740          
741          m->readNames(namefile, temp); //use central buffered read
742          
743          for (map<string, string>::iterator itTemp = temp.begin(); itTemp != temp.end(); itTemp++) {
744              string thisname, repnames;
745              thisname = itTemp->first;
746              repnames = itTemp->second;
747              
748              it = nameMap.find(thisname);
749                          if (it != nameMap.end()) { //then this sequence was in the fastafile
750                                  nameFileMap[thisname] = m->getNumNames(repnames);      //for later when outputting the new namesFile if the list file is unique
751                  
752                                  vector<string> splitRepNames;
753                                  m->splitAtComma(repnames, splitRepNames);
754                                  
755                                  for (int i = 0; i < splitRepNames.size(); i++) { nameMap[splitRepNames[i]] = thisname; }
756                                  
757                          }else{ m->mothurOut("[ERROR]: " + thisname + " is not in the fasta file, please correct."); m->mothurOutEndLine(); error = true; }
758          }
759          
760                  if (error) { m->control_pressed = true; }
761  
762                  return 0;
763  
764         }
765          catch(exception& e) {
766                  m->errorOut(e, "ConsensusSeqsCommand", "readNames");
767                  exit(1);
768          }
769  }
770  
771 //***************************************************************************************************************
772
773