]> git.donarmstrong.com Git - mothur.git/blob - blastdb.cpp
started work on classify.seqs command. changed the database class so that it does...
[mothur.git] / blastdb.cpp
1 /*
2  *  blastdb.cpp
3  *  
4  *
5  *  Created by Pat Schloss on 12/22/08.
6  *  Copyright 2008 Patrick D. Schloss. All rights reserved.
7  *
8  */
9
10
11 #include "database.hpp"
12 #include "sequence.hpp"
13 #include "blastdb.hpp"
14
15 /**************************************************************************************************/
16
17 BlastDB::BlastDB(float gO, float gE, float m, float mM) : Database(), 
18 gapOpen(gO), gapExtend(gE), match(m), misMatch(mM) {
19         
20         globaldata = GlobalData::getInstance();
21         count = 0;
22
23         int randNumber = rand();
24         dbFileName = toString(randNumber) + ".template.unaligned.fasta";
25         queryFileName = toString(randNumber) + ".candidate.unaligned.fasta";
26         blastFileName = toString(randNumber) + ".blast";
27
28 }
29
30 /**************************************************************************************************/
31
32 BlastDB::~BlastDB(){
33         remove(queryFileName.c_str());                          //      let's clean stuff up and remove the temp files
34         remove(dbFileName.c_str());                                     //      let's clean stuff up and remove the temp files
35         remove(blastFileName.c_str());                          //      let's clean stuff up and remove the temp files
36 }
37 /**************************************************************************************************/
38 //assumes you have added all the template sequences using the addSequence function and run generateDB.
39 vector<int> BlastDB::findClosestSequences(Sequence* seq, int n) {
40         try{
41                 vector<int> topMatches;
42                 
43                 ofstream queryFile;
44                 openOutputFile(queryFileName, queryFile);
45                 queryFile << '>' << seq->getName() << endl;
46                 queryFile << seq->getUnaligned() << endl;
47                 queryFile.close();
48                                 
49                 //      the goal here is to quickly survey the database to find the closest match.  To do this we are using the default
50                 //      wordsize used in megablast.  I'm sure we're sacrificing accuracy for speed, but anyother way would take way too
51                 //      long.  With this setting, it seems comparable in speed to the suffix tree approach.
52                 
53                 string blastCommand = path + "blast/bin/blastall -p blastn -d " + dbFileName + " -b 1 -m 8 -W 28 -v " + toString(n);
54                 blastCommand += (" -i " + queryFileName + " -o " + blastFileName);
55                 system(blastCommand.c_str());
56                 
57                 ifstream m8FileHandle;
58                 openInputFile(blastFileName, m8FileHandle);
59                 
60                 string dummy;
61                 int templateAccession;
62                 gobble(m8FileHandle);
63                 
64                 while(!m8FileHandle.eof()){
65                         m8FileHandle >> dummy >> templateAccession >> searchScore;
66                         
67                         //get rest of junk in line
68                         while (!m8FileHandle.eof())     {       char c = m8FileHandle.get(); if (c == 10 || c == 13){   break;  }       } 
69                         
70                         gobble(m8FileHandle);
71                         topMatches.push_back(templateAccession);
72                 }
73                 m8FileHandle.close();
74                 
75                 return topMatches;
76         }
77         catch(exception& e) {
78                 errorOut(e, "BlastDB", "findClosestSequences");
79                 exit(1);
80         }
81
82 }
83 /**************************************************************************************************/
84 void BlastDB::addSequence(Sequence seq) {
85         try {
86         
87                 ofstream unalignedFastaFile;
88                 openOutputFileAppend(dbFileName, unalignedFastaFile);                           
89         
90                 //      generating a fasta file with unaligned template
91                 unalignedFastaFile << '>' << count << endl;                                     //      sequences, which will be input to formatdb
92                 unalignedFastaFile << seq.getUnaligned() << endl;
93                 unalignedFastaFile.close();
94                 
95                 count++;
96         }
97         catch(exception& e) {
98                 errorOut(e, "BlastDB", "addSequence");
99                 exit(1);
100         }
101 }
102 /**************************************************************************************************/
103 void BlastDB::generateDB() {
104         try {
105         
106                 mothurOut("Generating the temporary BLAST database...\t");      cout.flush();
107                 
108                 path = globaldata->argv;
109                 path = path.substr(0, (path.find_last_of('m')));
110         
111                 string formatdbCommand = path + "blast/bin/formatdb -p F -o T -i " + dbFileName;        //      format the database, -o option gives us the ability
112                 system(formatdbCommand.c_str());                                                                //      to get the right sequence names, i think. -p F
113                                                                                                                                         //      option tells formatdb that seqs are DNA, not prot
114                 mothurOut("DONE."); mothurOutEndLine(); mothurOutEndLine(); cout.flush();
115         }
116         catch(exception& e) {
117                 errorOut(e, "BlastDB", "generateDB");
118                 exit(1);
119         }
120 }
121
122 /**************************************************************************************************/
123