X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=blastalign.cpp;h=bb7192ad498c405fc476ae722db2478fa1b407ab;hb=6b32d112bb60e9f7eb6d4407a4eed4c49b67bced;hp=5e7fb61aa77e7c34ca7367393766b1a5455c9213;hpb=260ae19c36cb11a53ddc5a75b5e507f8dd8b31d6;p=mothur.git diff --git a/blastalign.cpp b/blastalign.cpp index 5e7fb61..bb7192a 100644 --- a/blastalign.cpp +++ b/blastalign.cpp @@ -18,12 +18,11 @@ //**************************************************************************************************/ -BlastAlignment::BlastAlignment(float go, float ge, float m, float mm) : - match(m), // This is the score to award for two nucleotides matching (match >= 0) +BlastAlignment::BlastAlignment(float go, float ge, float ma, float mm) : + match(ma), // This is the score to award for two nucleotides matching (match >= 0) mismatch(mm) // This is the penalty to assess for a mismatch (mismatch <= 0) { - globaldata = GlobalData::getInstance(); - path = globaldata->argv; + path = m->argv; path = path.substr(0, (path.find_last_of('m'))); gapOpen = abs(go); // This is the penalty to assess for opening a gap (gapOpen >= 0) @@ -38,9 +37,9 @@ BlastAlignment::BlastAlignment(float go, float ge, float m, float mm) : //**************************************************************************************************/ BlastAlignment::~BlastAlignment(){ // The desctructor should clean up by removing the temporary - remove(candidateFileName.c_str()); // files used to run bl2seq - remove(templateFileName.c_str()); - remove(blastFileName.c_str()); + m->mothurRemove(candidateFileName); // files used to run bl2seq + m->mothurRemove(templateFileName); + m->mothurRemove(blastFileName); } //**************************************************************************************************/