X-Git-Url: https://git.donarmstrong.com/?p=mothur.git;a=blobdiff_plain;f=sharedordervector.cpp;h=80b8fb9bd45a8596e91afe30fdec3984b2411de6;hp=5231b3cd654ff6f1321bbc12f2cf4fe602a30553;hb=499f4ac6e321f9f03d4c3aa25c3b6880892c8b83;hpb=116bbb1533575666a682910a10ae1fa2fc5b605c diff --git a/sharedordervector.cpp b/sharedordervector.cpp index 5231b3c..80b8fb9 100644 --- a/sharedordervector.cpp +++ b/sharedordervector.cpp @@ -55,13 +55,13 @@ SharedOrderVector::SharedOrderVector(ifstream& f) : DataVector() { //reads in a //parse labels to save istringstream iStringStream(label); - m->binLabelsInFile.clear(); + m->sharedBinLabelsInFile.clear(); while(!iStringStream.eof()){ if (m->control_pressed) { break; } string temp; iStringStream >> temp; m->gobble(iStringStream); - m->binLabelsInFile.push_back(temp); + m->sharedBinLabelsInFile.push_back(temp); } f >> label; @@ -69,7 +69,7 @@ SharedOrderVector::SharedOrderVector(ifstream& f) : DataVector() { //reads in a }else { label = m->saveNextLabel; } //reset labels, currentLabels may have gotten changed as otus were eliminated because of group choices or sampling - m->currentBinLabels = m->binLabelsInFile; + m->currentSharedBinLabels = m->sharedBinLabelsInFile; //read in first row since you know there is at least 1 group. f >> groupN >> num;