From: westcott Date: Mon, 10 May 2010 17:48:22 +0000 (+0000) Subject: fixed problem with class.fy.seqs where group totals did not add up. added constructo... X-Git-Url: https://git.donarmstrong.com/?p=mothur.git;a=commitdiff_plain;h=b447f829850ae054e42560c7c3ed71b14f3f40bb fixed problem with class.fy.seqs where group totals did not add up. added constructors to sequence class to allow for just setting the unaligned field to save space. --- diff --git a/classifyseqscommand.cpp b/classifyseqscommand.cpp index 8588328..7ae2ee5 100644 --- a/classifyseqscommand.cpp +++ b/classifyseqscommand.cpp @@ -526,6 +526,11 @@ int ClassifySeqsCommand::execute(){ #endif #endif + m->mothurOutEndLine(); + m->mothurOut("It took " + toString(time(NULL) - start) + " secs to classify " + toString(numFastaSeqs) + " sequences."); m->mothurOutEndLine(); m->mothurOutEndLine(); + start = time(NULL); + + #ifdef USE_MPI if (pid == 0) { //this part does not need to be paralellized @@ -556,10 +561,6 @@ int ClassifySeqsCommand::execute(){ } #endif - m->mothurOutEndLine(); - m->mothurOut("It took " + toString(time(NULL) - start) + " secs to classify " + toString(numFastaSeqs) + " sequences."); m->mothurOutEndLine(); m->mothurOutEndLine(); - start = time(NULL); - string group = ""; if (groupfile != "") { group = groupfileNames[s]; } diff --git a/sequence.cpp b/sequence.cpp index 136e893..71dd3a9 100644 --- a/sequence.cpp +++ b/sequence.cpp @@ -10,14 +10,11 @@ #include "sequence.hpp" /***********************************************************************/ - Sequence::Sequence(){ m = MothurOut::getInstance(); initialize(); } - /***********************************************************************/ - Sequence::Sequence(string newName, string sequence) { try { m = MothurOut::getInstance(); @@ -33,6 +30,22 @@ Sequence::Sequence(string newName, string sequence) { exit(1); } } +/***********************************************************************/ +Sequence::Sequence(string newName, string sequence, string justUnAligned) { + try { + m = MothurOut::getInstance(); + initialize(); + name = newName; + + //setUnaligned removes any gap characters for us + setUnaligned(sequence); + } + catch(exception& e) { + m->errorOut(e, "Sequence", "Sequence"); + exit(1); + } +} + //******************************************************************************************************************** //this function will jump over commented out sequences, but if the last sequence in a file is commented out it makes a blank seq Sequence::Sequence(istringstream& fastaString){ @@ -70,6 +83,44 @@ Sequence::Sequence(istringstream& fastaString){ exit(1); } } +//******************************************************************************************************************** +//this function will jump over commented out sequences, but if the last sequence in a file is commented out it makes a blank seq +Sequence::Sequence(istringstream& fastaString, string JustUnaligned){ + try { + m = MothurOut::getInstance(); + + initialize(); + fastaString >> name; + name = name.substr(1); + string sequence; + + //read comments + while ((name[0] == '#') && fastaString) { + while (!fastaString.eof()) { char c = fastaString.get(); if (c == 10 || c == 13){ break; } } // get rest of line if there's any crap there + sequence = getCommentString(fastaString); + + if (fastaString) { + fastaString >> name; + name = name.substr(1); + }else { + name = ""; + break; + } + } + + while (!fastaString.eof()) { char c = fastaString.get(); if (c == 10 || c == 13){ break; } } // get rest of line if there's any crap there + + sequence = getSequenceString(fastaString); + + //setUnaligned removes any gap characters for us + setUnaligned(sequence); + } + catch(exception& e) { + m->errorOut(e, "Sequence", "Sequence"); + exit(1); + } +} + //******************************************************************************************************************** //this function will jump over commented out sequences, but if the last sequence in a file is commented out it makes a blank seq @@ -109,6 +160,44 @@ Sequence::Sequence(ifstream& fastaFile){ exit(1); } } +//******************************************************************************************************************** +//this function will jump over commented out sequences, but if the last sequence in a file is commented out it makes a blank seq +Sequence::Sequence(ifstream& fastaFile, string JustUnaligned){ + try { + m = MothurOut::getInstance(); + initialize(); + fastaFile >> name; + name = name.substr(1); + string sequence; + + //read comments + while ((name[0] == '#') && fastaFile) { + while (!fastaFile.eof()) { char c = fastaFile.get(); if (c == 10 || c == 13){ break; } } // get rest of line if there's any crap there + sequence = getCommentString(fastaFile); + + if (fastaFile) { + fastaFile >> name; + name = name.substr(1); + }else { + name = ""; + break; + } + } + + //read real sequence + while (!fastaFile.eof()) { char c = fastaFile.get(); if (c == 10 || c == 13){ break; } } // get rest of line if there's any crap there + + sequence = getSequenceString(fastaFile); + + //setUnaligned removes any gap characters for us + setUnaligned(sequence); + } + catch(exception& e) { + m->errorOut(e, "Sequence", "Sequence"); + exit(1); + } +} + //******************************************************************************************************************** string Sequence::getSequenceString(ifstream& fastaFile) { try { @@ -314,7 +403,8 @@ string Sequence::getName(){ //******************************************************************************************************************** string Sequence::getAligned(){ - return aligned; + if(isAligned == 0) { return unaligned; } + else { return aligned; } } //******************************************************************************************************************** @@ -443,31 +533,4 @@ void Sequence::reverseComplement(){ aligned = temp; } -#ifdef USE_MPI -//******************************************************************************************************************** -int Sequence::MPISend(int receiver) { - try { - - - return 0; - - } - catch(exception& e) { - m->errorOut(e, "Sequence", "MPISend"); - exit(1); - } -} -/**************************************************************************************************/ -int Sequence::MPIRecv(int sender) { - try { - - return 0; - - } - catch(exception& e) { - m->errorOut(e, "Sequence", "MPIRecv"); - exit(1); - } -} -#endif /**************************************************************************************************/ diff --git a/sequence.hpp b/sequence.hpp index 21b4c38..95c3e51 100644 --- a/sequence.hpp +++ b/sequence.hpp @@ -26,6 +26,11 @@ public: Sequence(ifstream&); Sequence(istringstream&); + //these constructors just set the unaligned string to save space + Sequence(string, string, string); + Sequence(ifstream&, string); + Sequence(istringstream&, string); + void setName(string); void setUnaligned(string); void setPairwise(string); @@ -47,9 +52,6 @@ public: bool getIsAligned(); void printSequence(ostream&); - int MPISend(int); //not working at the moment... - int MPIRecv(int); //not working at the moment... - private: MothurOut* m; void initialize();