]> git.donarmstrong.com Git - mothur.git/blob - preclustercommand.cpp
89e6cbfb9e2560e4860cae8dd6a0ee4632a687da
[mothur.git] / preclustercommand.cpp
1 /*
2  *  preclustercommand.cpp
3  *  Mothur
4  *
5  *  Created by westcott on 12/21/09.
6  *  Copyright 2009 Schloss Lab. All rights reserved.
7  *
8  */
9
10 #include "preclustercommand.h"
11
12 //**********************************************************************************************************************
13 inline bool comparePriority(seqPNode first, seqPNode second) {  return (first.numIdentical > second.numIdentical); }
14 //**********************************************************************************************************************
15
16 PreClusterCommand::PreClusterCommand(string option){
17         try {
18                 abort = false;
19                 
20                 //allow user to run help
21                 if(option == "help") { help(); abort = true; }
22                 
23                 else {
24                         //valid paramters for this command
25                         string Array[] =  {"fasta", "name", "diffs"};
26                         vector<string> myArray (Array, Array+(sizeof(Array)/sizeof(string)));
27                         
28                         OptionParser parser(option);
29                         map<string, string> parameters = parser.getParameters();
30                         
31                         ValidParameters validParameter;
32                 
33                         //check to make sure all parameters are valid for command
34                         for (map<string, string>::iterator it2 = parameters.begin(); it2 != parameters.end(); it2++) { 
35                                 if (validParameter.isValidParameter(it2->first, myArray, it2->second) != true) {  abort = true;  }
36                         }
37                         
38                         //check for required parameters
39                         fastafile = validParameter.validFile(parameters, "fasta", true);
40                         if (fastafile == "not found") { mothurOut("fasta is a required parameter for the pre.cluster command."); mothurOutEndLine(); abort = true; }
41                         else if (fastafile == "not open") { abort = true; }     
42                         
43                         //check for optional parameter and set defaults
44                         // ...at some point should added some additional type checking...
45                         namefile = validParameter.validFile(parameters, "name", true);
46
47                         if (namefile == "not found") { namefile =  "";  }
48                         else if (namefile == "not open") { abort = true; }      
49 //                      else {  readNameFile();  }
50                         
51                         string temp     = validParameter.validFile(parameters, "diffs", false);                         if(temp == "not found"){        temp = "1"; }
52                         convert(temp, diffs); 
53                 }
54                                 
55         }
56         catch(exception& e) {
57                 errorOut(e, "PreClusterCommand", "PreClusterCommand");
58                 exit(1);
59         }
60 }
61
62 //**********************************************************************************************************************
63 PreClusterCommand::~PreClusterCommand(){}       
64 //**********************************************************************************************************************
65
66 void PreClusterCommand::help(){
67         try {
68                 mothurOut("The pre.cluster command groups sequences that are within a given number of base mismatches.\n");
69                 mothurOut("The pre.cluster command outputs a new fasta and name file.\n");
70                 mothurOut("The pre.cluster command parameters are fasta, names and diffs. The fasta parameter is required. \n");
71                 mothurOut("The names parameter allows you to give a list of seqs that are identical. This file is 2 columns, first column is name or representative sequence, second column is a list of its identical sequences separated by commas.\n");
72                 mothurOut("The diffs parameter allows you to specify maximum number of mismatched bases allowed between sequences in a grouping. The default is 1.\n");
73                 mothurOut("The pre.cluster command should be in the following format: \n");
74                 mothurOut("pre.cluster(fasta=yourFastaFile, names=yourNamesFile, diffs=yourMaxDiffs) \n");
75                 mothurOut("Example pre.cluster(fasta=amazon.fasta, diffs=2).\n");
76                 mothurOut("Note: No spaces between parameter labels (i.e. fasta), '=' and parameters (i.e.yourFasta).\n\n");
77         }
78         catch(exception& e) {
79                 errorOut(e, "PreClusterCommand", "help");
80                 exit(1);
81         }
82 }
83 //**********************************************************************************************************************
84
85 int PreClusterCommand::execute(){
86         try {
87                 
88                 if (abort == true) { return 0; }
89                 
90                 //reads fasta file and return number of seqs
91                 int numSeqs = readNamesFASTA(); //fills alignSeqs and makes all seqs active
92         
93                 if (numSeqs == 0) { mothurOut("Error reading fasta file...please correct."); mothurOutEndLine(); return 0;  }
94                 if (diffs > length) { mothurOut("Error: diffs is greater than your sequence length."); mothurOutEndLine(); return 0;  }
95                 
96                 //clear sizes since you only needed this info to build the alignSeqs seqPNode structs
97 //              sizes.clear();
98         
99                 //sort seqs by number of identical seqs
100                 sort(alignSeqs.begin(), alignSeqs.end(), comparePriority);
101         
102                 int count = 0;
103
104                 //think about running through twice...
105                 for (int i = 0; i < numSeqs; i++) {
106                         
107                         //are you active
108                         //                      itActive = active.find(alignSeqs[i].seq.getName());
109                         
110                         if (alignSeqs[i].active) {  //this sequence has not been merged yet
111                                 
112                                 //try to merge it with all smaller seqs
113                                 for (int j = i+1; j < numSeqs; j++) {
114                                         if (alignSeqs[j].active) {  //this sequence has not been merged yet
115                                                 //are you within "diff" bases
116                                                 int mismatch = calcMisMatches(alignSeqs[i].seq.getAligned(), alignSeqs[j].seq.getAligned());
117                                                 
118                                                 if (mismatch <= diffs) {
119                                                         //merge
120                                                         alignSeqs[i].names += ',' + alignSeqs[j].names;
121                                                         alignSeqs[i].numIdentical += alignSeqs[j].numIdentical;
122
123                                                         alignSeqs[j].active = 0;
124                                                         alignSeqs[j].numIdentical = 0;
125                                                         count++;
126                                                 }
127                                         }//end if j active
128                                 }//end if i != j
129                         
130                         //remove from active list 
131                                 alignSeqs[i].active = 0;
132                         }//end if active i
133                         if(i % 100 == 0)        { cout << i << '\t' << numSeqs - count << '\t' << count << endl;        }
134                 }
135         
136                 string newFastaFile = getRootName(fastafile) + "precluster" + getExtension(fastafile);
137                 string newNamesFile = getRootName(fastafile) + "precluster.names";
138                 
139                 
140                 mothurOut("Total number of sequences before precluster was " + toString(alignSeqs.size()) + "."); mothurOutEndLine();
141                 mothurOut("pre.cluster removed " + toString(count) + " sequences."); mothurOutEndLine(); 
142                 printData(newFastaFile, newNamesFile);
143
144                 return 0;
145                 
146         }
147         catch(exception& e) {
148                 errorOut(e, "PreClusterCommand", "execute");
149                 exit(1);
150         }
151 }
152 /**************************************************************************************************/
153 int PreClusterCommand::readFASTA(){
154         try {
155 //              ifstream inFasta;
156 //              openInputFile(fastafile, inFasta);
157 //              length = 0;
158 ////            map<string, string>::iterator it;
159 //
160 //              while (!inFasta.eof()) {
161 //                      Sequence temp(inFasta);  //read seq
162 //                      
163 //                      if (temp.getName() != "") {  
164 //                              if (namefile != "") {
165 //                                      //make sure fasta and name files match
166 //                                      it = names.find(temp.getName());
167 //                                      if (it == names.end()) { mothurOut(temp.getName() + " is not in your names file, please correct."); mothurOutEndLine(); exit(1); }
168 //                              }else { sizes[temp.getName()] = 1; }
169 //                              
170 //                              seqPNode tempNode(sizes[temp.getName()], temp);
171 //                              alignSeqs.push_back(tempNode); 
172 //                              active[temp.getName()] = true;
173 //                      }
174 //                      gobble(inFasta);
175 //              }
176 //              inFasta.close();
177 //              
178 //              if (alignSeqs.size() != 0) {  length = alignSeqs[0].seq.getAligned().length();  }
179 //              
180                 return alignSeqs.size();
181         }
182         catch(exception& e) {
183                 errorOut(e, "PreClusterCommand", "readFASTA");
184                 exit(1);
185         }
186 }
187 /**************************************************************************************************/
188
189 int PreClusterCommand::readNamesFASTA(){
190         try {
191                 ifstream inNames;
192                 ifstream inFasta;
193                 
194                 openInputFile(namefile, inNames);
195                 openInputFile(fastafile, inFasta);
196                 
197                 string firstCol, secondCol, nameString;
198                 length = 0;
199                 
200                 while (inFasta && inNames) {
201         
202                         inNames >> firstCol >> secondCol;
203                         nameString = secondCol;
204                         
205                         gobble(inNames);
206                         int size = 1;
207                         while (secondCol.find_first_of(',') != -1) { 
208                                 size++;
209                                 secondCol = secondCol.substr(secondCol.find_first_of(',')+1, secondCol.length());
210                         }
211                         Sequence seq(inFasta);
212                         if (seq.getName() != firstCol) { mothurOut(seq.getName() + " is not in your names file, please correct."); mothurOutEndLine(); exit(1); }
213                         else{
214                                 seqPNode tempNode(size, seq, nameString);
215                                 alignSeqs.push_back(tempNode);
216                                 if (seq.getAligned().length() > length) {  length = alignSeqs[0].seq.getAligned().length();  }
217                         }                       
218                 }
219                 inFasta.close();
220                 inNames.close();
221                 return alignSeqs.size();
222         }
223         
224         catch(exception& e) {
225                 errorOut(e, "PreClusterCommand", "readNamesFASTA");
226                 exit(1);
227         }
228 }
229
230 /**************************************************************************************************/
231
232 int PreClusterCommand::calcMisMatches(string seq1, string seq2){
233         try {
234                 int numBad = 0;
235                 
236                 for (int i = 0; i < seq1.length(); i++) {
237                         //do they match
238                         if (seq1[i] != seq2[i]) { numBad++; }
239                         if (numBad > diffs) { return length;  } //to far to cluster
240                 }
241                 
242                 return numBad;
243         }
244         catch(exception& e) {
245                 errorOut(e, "PreClusterCommand", "calcMisMatches");
246                 exit(1);
247         }
248 }
249
250 /**************************************************************************************************/
251
252 void PreClusterCommand::printData(string newfasta, string newname){
253         try {
254                 ofstream outFasta;
255                 ofstream outNames;
256                 
257                 openOutputFile(newfasta, outFasta);
258                 openOutputFile(newname, outNames);
259                                 
260                 
261                 for (int i = 0; i < alignSeqs.size(); i++) {
262                         if (alignSeqs[i].numIdentical != 0) {
263                                 alignSeqs[i].seq.printSequence(outFasta); 
264                                 outNames << alignSeqs[i].seq.getName() << '\t' << alignSeqs[i].names << endl;
265                         }
266                 }
267                 
268                 outFasta.close();
269                 outNames.close();
270                 
271         }
272         catch(exception& e) {
273                 errorOut(e, "PreClusterCommand", "printData");
274                 exit(1);
275         }
276 }
277
278 /**************************************************************************************************/
279
280