X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=classify.cpp;fp=classify.cpp;h=4c6c6d8c8f0d628653ff772a367b07cdbadecced;hb=fc1ed1ae1b022719176910ab71993bd6535810ad;hp=1642f0bb037f609971797812575aa109e35aed28;hpb=c651c46022761aef61644f78462365d8f767ff0b;p=mothur.git diff --git a/classify.cpp b/classify.cpp index 1642f0b..4c6c6d8 100644 --- a/classify.cpp +++ b/classify.cpp @@ -123,7 +123,7 @@ void Classify::generateDatabaseAndNames(string tfile, string tempFile, string me //create database if(method == "kmer") { database = new KmerDB(tempFile, kmerSize); } else if(method == "suffix") { database = new SuffixDB(numSeqs); } - else if(method == "blast") { database = new BlastDB(tempFile.substr(0,tempFile.find_last_of(".")+1), gapOpen, gapExtend, match, misMatch); } + else if(method == "blast") { database = new BlastDB(tempFile.substr(0,tempFile.find_last_of(".")+1), gapOpen, gapExtend, match, misMatch, ""); } else if(method == "distance") { database = new DistanceDB(); } else { m->mothurOut(method + " is not a valid search option. I will run the command using kmer, ksize=8."); m->mothurOutEndLine();