X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=sequence.cpp;h=d877f4b93f33d8123ff6a1a9f7f839dc680fcf61;hb=8da8321bc4d705f6c156248d6229c60a0204f750;hp=9cdbfb91cf6ba148dbf4e2f5b4252b33604c906c;hpb=b86361f726a0d1dfc9f2e91b795e402d97c46f9d;p=mothur.git diff --git a/sequence.cpp b/sequence.cpp index 9cdbfb9..d877f4b 100644 --- a/sequence.cpp +++ b/sequence.cpp @@ -191,6 +191,59 @@ Sequence::Sequence(ifstream& fastaFile){ } //******************************************************************************************************************** //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& extraInfo, bool getInfo){ + try { + m = MothurOut::getInstance(); + initialize(); + fastaFile >> name; + extraInfo = ""; + + if (name.length() != 0) { + + 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 info after sequence name + while (!fastaFile.eof()) { + char c = fastaFile.get(); + if (c == 10 || c == 13){ break; } + extraInfo += c; + } + + int numAmbig = 0; + sequence = getSequenceString(fastaFile, numAmbig); + + setAligned(sequence); + //setUnaligned removes any gap characters for us + setUnaligned(sequence); + + if ((numAmbig / (float) numBases) > 0.25) { m->mothurOut("[WARNING]: We found more than 25% of the bases in sequence " + name + " to be ambiguous. Mothur is not setup to process protein sequences."); m->mothurOutEndLine(); } + + }else{ m->mothurOut("Error in reading your fastafile, at position " + toString(fastaFile.tellg()) + ". Blank name."); m->mothurOutEndLine(); } + + } + 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(ifstream& fastaFile, string JustUnaligned){ try { m = MothurOut::getInstance();