X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=blastalign.cpp;fp=blastalign.cpp;h=e4d5e8ac039d60f9f1352d6408121246f9d9864d;hb=74c78f9abd9e733f0c2f812efec97a76632fcbf8;hp=a4773138bd6f8102acaea659291fa675ea25a6fc;hpb=544469443afe44920bdf279aefd26d29534cabaf;p=mothur.git diff --git a/blastalign.cpp b/blastalign.cpp index a477313..e4d5e8a 100644 --- a/blastalign.cpp +++ b/blastalign.cpp @@ -11,7 +11,6 @@ * */ -using namespace std; #include "alignment.hpp" #include "blastalign.hpp" @@ -83,10 +82,10 @@ void BlastAlignment::setPairwiseSeqs(){ // This method call assigns the blast ge string candidateName, templateName; - while(d=blastFile.get() != '='){}; + while(d=blastFile.get() != '='){} blastFile >> candidateName; // Get the candidate sequence name from flatfile - while(d=blastFile.get() != '('){}; + while(d=blastFile.get() != '('){} blastFile >> candidateLength; // Get the candidate sequence length from flatfile while(d=blastFile.get()){ @@ -115,10 +114,10 @@ void BlastAlignment::setPairwiseSeqs(){ // This method call assigns the blast ge } } - while(d=blastFile.get() != '='){}; + while(d=blastFile.get() != '='){} blastFile >> templateLength; // Get the template sequence length from flatfile - while(d=blastFile.get() != 'Q'){}; // Suck up everything else until we get to the start of the alignment + while(d=blastFile.get() != 'Q'){} // Suck up everything else until we get to the start of the alignment int queryStart, sbjctStart, queryEnd, sbjctEnd; string queryLabel, sbjctLabel, query, sbjct;