]> git.donarmstrong.com Git - mothur.git/blob - knn.cpp
added multiple processors option for Windows users to align.seqs, dist.seqs, summary...
[mothur.git] / knn.cpp
1 /*
2  *  knn.cpp
3  *  Mothur
4  *
5  *  Created by westcott on 11/4/09.
6  *  Copyright 2009 Schloss Lab. All rights reserved.
7  *
8  */
9
10 #include "knn.h"
11
12 /**************************************************************************************************/
13 Knn::Knn(string tfile, string tempFile, string method, int kmerSize, float gapOpen, float gapExtend, float match, float misMatch, int n, int tid) 
14 : Classify(), num(n), search(method) {
15         try {
16                 threadID = tid;
17                 
18                 //create search database and names vector
19                 generateDatabaseAndNames(tfile, tempFile, method, kmerSize, gapOpen, gapExtend, match, misMatch);
20         }
21         catch(exception& e) {
22                 m->errorOut(e, "Knn", "Knn");
23                 exit(1);
24         }
25 }
26 /**************************************************************************************************/
27 void Knn::setDistName(string s) {
28         try {
29                 outDistName = s;
30                 ofstream outDistance;
31                 m->openOutputFile(outDistName, outDistance);
32                 outDistance << "Name\tBestMatch\tDistance" << endl;
33                 outDistance.close();
34         }
35         catch(exception& e) {
36                 m->errorOut(e, "Knn", "setDistName");
37                 exit(1);
38         }
39 }
40 /**************************************************************************************************/
41 Knn::~Knn() {
42         try {
43                  delete phyloTree; 
44                  if (database != NULL) {  delete database; }
45         }
46         catch(exception& e) {
47                 m->errorOut(e, "Knn", "~Knn");
48                 exit(1);
49         }
50 }
51 /**************************************************************************************************/
52 string Knn::getTaxonomy(Sequence* seq) {
53         try {
54                 string tax;
55                 
56                 //use database to find closest seq
57                 vector<int> closest = database->findClosestSequences(seq, num);
58         
59                 if (search == "distance") { ofstream outDistance; m->openOutputFileAppend(outDistName, outDistance); outDistance << seq->getName() << '\t' << database->getName(closest[0]) << '\t' << database->getSearchScore() << endl; outDistance.close();  }
60         
61                 if (m->control_pressed) { return tax; }
62
63                 vector<string> closestNames;
64                 for (int i = 0; i < closest.size(); i++) {
65                         //find that sequences taxonomy in map
66                         it = taxonomy.find(names[closest[i]]);
67                 
68                         //is this sequence in the taxonomy file
69                         if (it == taxonomy.end()) { //error not in file
70                                 m->mothurOut("Error: sequence " + names[closest[i]] + " is not in the taxonomy file.  It will be eliminated as a match to sequence " + seq->getName() + "."); m->mothurOutEndLine();
71                         }else{   closestNames.push_back(it->first);     }
72                 }
73                 
74                 if (closestNames.size() == 0) {
75                         m->mothurOut("Error: All the matches for sequence " + seq->getName() + " have been eliminated. " + seq->getName() + " will be disregarded."); m->mothurOutEndLine();
76                         tax = "bad seq";
77                 }else{
78                         tax = findCommonTaxonomy(closestNames);
79                         if (tax == "") { m->mothurOut("There are no common levels for sequence " + seq->getName() + ". " + seq->getName() + " will be disregarded."); m->mothurOutEndLine(); tax = "bad seq"; }
80                 }
81                 
82                 simpleTax = tax;
83                 return tax;     
84         }
85         catch(exception& e) {
86                 m->errorOut(e, "Knn", "getTaxonomy");
87                 exit(1);
88         }
89 }
90 /**************************************************************************************************/
91 string Knn::findCommonTaxonomy(vector<string> closest)  {
92         try {
93                 vector< vector<string> > taxons;  //taxon[0] = vector of taxonomy info for closest[0].
94                                                                                 //so if closest[0] taxonomy is Bacteria;Alphaproteobacteria;Rhizobiales;Azorhizobium_et_rel.;Methylobacterium_et_rel.;Bosea;
95                                                                                 //taxon[0][0] = Bacteria, taxon[0][1] = Alphaproteobacteria....
96                                                                                 
97                 taxons.resize(closest.size());
98                 int smallest = 100;
99                 
100                 for (int i = 0; i < closest.size(); i++) {
101                         if (m->control_pressed) { return "control"; }
102                 
103                         string tax = taxonomy[closest[i]];  //we know its there since we checked in getTaxonomy
104                 
105                         taxons[i] = parseTax(tax);
106                 
107                         //figure out who has the shortest taxonomy info. so you can start comparing there
108                         if (taxons[i].size() < smallest) {
109                                 smallest = taxons[i].size();
110                         }
111                 }
112         
113                 //start at the highest level all the closest seqs have
114                 string common = "";
115                 for (int i = (smallest-1); i >= 0; i--) {
116                         if (m->control_pressed) { return "control"; }
117
118                         string thistax = taxons[0][i];
119                         int num = 0;
120                         for (int j = 1; j < taxons.size(); j++) {
121                                 if (taxons[j][i] != thistax) { break; }
122                                 num = j;
123                         }
124                 
125                         if (num == (taxons.size()-1)) { //they all match at this level
126                                 for (int k = 0; k <= i; k++) {
127                                         common += taxons[0][k] + ';';
128                                 }
129                                 break;
130                         }
131                 }
132         
133                 return common;
134         }
135         catch(exception& e) {
136                 m->errorOut(e, "Knn", "findCommonTaxonomy");
137                 exit(1);
138         }
139 }
140 /**************************************************************************************************/
141