X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=fastamap.cpp;fp=fastamap.cpp;h=36b072121b044490332a8926f0f3f287bf816fab;hb=aa9238c0a9e6e7aa0ed8b8b606b08ad4fd7dcfe3;hp=2831ecbff9e2c2427ca551b0e08967ff738f8e7a;hpb=182db2b6f1747bc1e0b8cd3eceec8751abdd31d5;p=mothur.git diff --git a/fastamap.cpp b/fastamap.cpp index 2831ecb..36b0721 100644 --- a/fastamap.cpp +++ b/fastamap.cpp @@ -21,6 +21,8 @@ void FastaMap::readFastaFile(string inFileName) { string temp; while(!in.eof()){ + if (m->control_pressed) { break; } + Sequence currSeq(in); name = currSeq.getName(); @@ -59,6 +61,8 @@ void FastaMap::readFastaFile(string inFastaFile, string oldNameFileName){ //prin map oldNameMap; string name, list; while(!oldNameFile.eof()){ + if (m->control_pressed) { break; } + oldNameFile >> name >> list; oldNameMap[name] = list; gobble(oldNameFile); @@ -69,6 +73,8 @@ void FastaMap::readFastaFile(string inFastaFile, string oldNameFileName){ //prin openInputFile(inFastaFile, inFASTA); string sequence; while(!inFASTA.eof()){ + if (m->control_pressed) { break; } + Sequence currSeq(inFASTA); name = currSeq.getName(); @@ -145,6 +151,7 @@ void FastaMap::printNamesFile(string outFileName){ //prints data // two column file created with groupname and them list of identical sequence names for (map::iterator it = data.begin(); it != data.end(); it++) { + if (m->control_pressed) { break; } outFile << it->second.groupname << '\t' << it->second.names << endl; } outFile.close(); @@ -163,6 +170,7 @@ void FastaMap::printCondensedFasta(string outFileName){ //prints data openOutputFile(outFileName, out); //creates a fasta file for (map::iterator it = data.begin(); it != data.end(); it++) { + if (m->control_pressed) { break; } out << ">" << it->second.groupname << endl; out << it->first << endl; }