X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=venncommand.cpp;h=519e6cbec1be64d87fbb1af2f54208df1e04e46f;hb=a8f5a612bba54ceb74e17efc027d3a7f5aa93c9a;hp=e9cb47aca2c0b6291cbf57902ceb56808137704e;hpb=d59f91eb1230d2c7867a92cb86138b7003100ab4;p=mothur.git diff --git a/venncommand.cpp b/venncommand.cpp index e9cb47a..519e6cb 100644 --- a/venncommand.cpp +++ b/venncommand.cpp @@ -80,13 +80,16 @@ VennCommand::~VennCommand(){ delete input; delete read; delete venn; + for (int i = 0; i < vennCalculators.size(); i++) { delete vennCalculators[i]; } } //********************************************************************************************************************** int VennCommand::execute(){ try { - int count = 1; + int count = 1; + SAbundVector* lastSAbund; + vector lastLookup; //if the users entered no valid calculators don't execute command if (vennCalculators.size() == 0) { return 0; } @@ -98,64 +101,138 @@ int VennCommand::execute(){ input = globaldata->ginput; lookup = input->getSharedRAbundVectors(); - }else if (format == "shared") { - //you are using a list and a groupfile - read = new ReadOTUFile(globaldata->inputFileName); - read->read(&*globaldata); - - input = globaldata->ginput; - SharedList = globaldata->gSharedList; - lookup = SharedList->getSharedRAbundVector(); + lastLookup = lookup; }else if (format == "list") { //you are using just a list file and have only one group read = new ReadOTUFile(globaldata->inputFileName); read->read(&*globaldata); sabund = globaldata->sabund; + lastSAbund = globaldata->sabund; input = globaldata->ginput; } - + + //if the users enters label "0.06" and there is no "0.06" in their file use the next lowest label. + set processedLabels; + set userLabels = globaldata->labels; if (format != "list") { - while(lookup[0] != NULL){ + //as long as you are not at the end of the file or done wih the lines you want + while((lookup[0] != NULL) && ((globaldata->allLines == 1) || (userLabels.size() != 0))) { if(globaldata->allLines == 1 || globaldata->lines.count(count) == 1 || globaldata->labels.count(lookup[0]->getLabel()) == 1){ - cout << lookup[0]->getLabel() << '\t' << count << endl; + processedLabels.insert(lookup[0]->getLabel()); + userLabels.erase(lookup[0]->getLabel()); if (lookup.size() > 4) { cout << "Error: Too many groups chosen. You may use up to 4 groups with the venn command. I will use the first four groups in your groupfile." << endl; - for (int i = lookup.size(); i > 3; i--) { delete lookup[i]; lookup.pop_back(); } + for (int i = lookup.size(); i > 4; i--) { lookup.pop_back(); } //no memmory leak because pop_back calls destructor } - - //util->getSharedVectors(globaldata->Groups, lookup, order); //fills group vectors from order vector. venn->getPic(lookup, vennCalculators); } + + if ((anyLabelsToProcess(lookup[0]->getLabel(), userLabels, "") == true) && (processedLabels.count(lastLookup[0]->getLabel()) != 1)) { + cout << lastLookup[0]->getLabel() << '\t' << count << endl; + processedLabels.insert(lastLookup[0]->getLabel()); + userLabels.erase(lastLookup[0]->getLabel()); + + if (lastLookup.size() > 4) { + cout << "Error: Too many groups chosen. You may use up to 4 groups with the venn command. I will use the first four groups in your groupfile." << endl; + for (int i = lastLookup.size(); i > 4; i--) { lastLookup.pop_back(); } //no memmory leak because pop_back calls destructor + } + venn->getPic(lastLookup, vennCalculators); + } + + //prevent memory leak + if (count != 1) { for (int i = 0; i < lastLookup.size(); i++) { delete lastLookup[i]; } } + lastLookup = lookup; //get next line to process lookup = input->getSharedRAbundVectors(); count++; } + //output error messages about any remaining user labels + set::iterator it; + bool needToRun = false; + for (it = userLabels.begin(); it != userLabels.end(); it++) { + cout << "Your file does not include the label "<< *it; + if (processedLabels.count(lastLookup[0]->getLabel()) != 1) { + cout << ". I will use " << lastLookup[0]->getLabel() << "." << endl; + needToRun = true; + }else { + cout << ". Please refer to " << lastLookup[0]->getLabel() << "." << endl; + } + } + + //run last line if you need to + if (needToRun == true) { + cout << lastLookup[0]->getLabel() << '\t' << count << endl; + if (lastLookup.size() > 4) { + cout << "Error: Too many groups chosen. You may use up to 4 groups with the venn command. I will use the first four groups in your groupfile." << endl; + for (int i = lastLookup.size(); i > 3; i--) { delete lastLookup[i]; lastLookup.pop_back(); } + } + venn->getPic(lastLookup, vennCalculators); + } + + for (int i = 0; i < lastLookup.size(); i++) { delete lastLookup[i]; } + //reset groups parameter globaldata->Groups.clear(); }else{ - while(sabund != NULL){ + while((sabund != NULL) && ((globaldata->allLines == 1) || (userLabels.size() != 0))) { if(globaldata->allLines == 1 || globaldata->lines.count(count) == 1 || globaldata->labels.count(sabund->getLabel()) == 1){ cout << sabund->getLabel() << '\t' << count << endl; venn->getPic(sabund, vennCalculators); + + processedLabels.insert(sabund->getLabel()); + userLabels.erase(sabund->getLabel()); } + if ((anyLabelsToProcess(sabund->getLabel(), userLabels, "") == true) && (processedLabels.count(lastSAbund->getLabel()) != 1)) { + + cout << lastSAbund->getLabel() << '\t' << count << endl; + venn->getPic(lastSAbund, vennCalculators); + + processedLabels.insert(lastSAbund->getLabel()); + userLabels.erase(lastSAbund->getLabel()); + } + + if (count != 1) { delete lastSAbund; } + lastSAbund = sabund; + sabund = input->getSAbundVector(); count++; } + + //output error messages about any remaining user labels + set::iterator it; + bool needToRun = false; + for (it = userLabels.begin(); it != userLabels.end(); it++) { + cout << "Your file does not include the label "<< *it; + if (processedLabels.count(lastSAbund->getLabel()) != 1) { + cout << ". I will use " << lastSAbund->getLabel() << "." << endl; + needToRun = true; + }else { + cout << ". Please refer to " << lastSAbund->getLabel() << "." << endl; + } + } + + //run last line if you need to + if (needToRun == true) { + cout << lastSAbund->getLabel() << '\t' << count << endl; + venn->getPic(lastSAbund, vennCalculators); + } + delete lastSAbund; } + globaldata->setGroups(""); return 0; }