X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=getlineagecommand.cpp;h=2a5505f149241c88b0591f1622a50d6a2fc89577;hb=a4f05f09c250323132a4b9427f41a3ededaec634;hp=8a825a1ca76c077cade0e6aecd078eb3fa72ea38;hpb=8f89a92f4ada82a2b3bf51b23b6a977770f2b9e2;p=mothur.git diff --git a/getlineagecommand.cpp b/getlineagecommand.cpp index 8a825a1..2a5505f 100644 --- a/getlineagecommand.cpp +++ b/getlineagecommand.cpp @@ -27,8 +27,7 @@ vector GetLineageCommand::getValidParameters(){ //********************************************************************************************************************** GetLineageCommand::GetLineageCommand(){ try { - abort = true; - //initialize outputTypes + abort = true; calledHelp = true; vector tempOutNames; outputTypes["fasta"] = tempOutNames; outputTypes["taxonomy"] = tempOutNames; @@ -68,10 +67,10 @@ vector GetLineageCommand::getRequiredFiles(){ //********************************************************************************************************************** GetLineageCommand::GetLineageCommand(string option) { try { - abort = false; + abort = false; calledHelp = false; //allow user to run help - if(option == "help") { help(); abort = true; } + if(option == "help") { help(); abort = true; calledHelp = true; } else { //valid paramters for this command @@ -238,7 +237,7 @@ void GetLineageCommand::help(){ int GetLineageCommand::execute(){ try { - if (abort == true) { return 0; } + if (abort == true) { if (calledHelp) { return 0; } return 2; } if (m->control_pressed) { return 0; } @@ -258,6 +257,33 @@ int GetLineageCommand::execute(){ m->mothurOut("Output File Names: "); m->mothurOutEndLine(); for (int i = 0; i < outputNames.size(); i++) { m->mothurOut(outputNames[i]); m->mothurOutEndLine(); } m->mothurOutEndLine(); + + //set fasta file as new current fastafile + string current = ""; + itTypes = outputTypes.find("fasta"); + if (itTypes != outputTypes.end()) { + if ((itTypes->second).size() != 0) { current = (itTypes->second)[0]; m->setFastaFile(current); } + } + + itTypes = outputTypes.find("name"); + if (itTypes != outputTypes.end()) { + if ((itTypes->second).size() != 0) { current = (itTypes->second)[0]; m->setNameFile(current); } + } + + itTypes = outputTypes.find("group"); + if (itTypes != outputTypes.end()) { + if ((itTypes->second).size() != 0) { current = (itTypes->second)[0]; m->setGroupFile(current); } + } + + itTypes = outputTypes.find("list"); + if (itTypes != outputTypes.end()) { + if ((itTypes->second).size() != 0) { current = (itTypes->second)[0]; m->setListFile(current); } + } + + itTypes = outputTypes.find("taxonomy"); + if (itTypes != outputTypes.end()) { + if ((itTypes->second).size() != 0) { current = (itTypes->second)[0]; m->setTaxonomyFile(current); } + } } return 0; @@ -542,10 +568,10 @@ int GetLineageCommand::readTax(){ m->openInputFile(taxfile, in); string name, tax; - bool wroteSomething = false; + //bool wroteSomething = false; bool taxonsHasConfidence = false; - vector< map > searchTaxons; + vector< map > searchTaxons; string noConfidenceTaxons = taxons; int hasConPos = taxons.find_first_of('('); if (hasConPos != string::npos) { @@ -603,7 +629,7 @@ int GetLineageCommand::readTax(){ if (pos != string::npos) { //if yes, then are the confidences okay bool good = true; - vector< map > usersTaxon = getTaxons(newtax); + vector< map > usersTaxon = getTaxons(newtax); //the usersTaxon is most likely longer than the searchTaxons, and searchTaxon[0] may relate to userTaxon[4] //we want to "line them up", so we will find the the index where the searchstring starts @@ -665,10 +691,10 @@ int GetLineageCommand::readTax(){ } } /**************************************************************************************************/ -vector< map > GetLineageCommand::getTaxons(string tax) { +vector< map > GetLineageCommand::getTaxons(string tax) { try { - vector< map > t; + vector< map > t; string taxon = ""; int taxLength = tax.length(); for(int i=0;i > GetLineageCommand::getTaxons(string tax) { int openParen = taxon.find_first_of('('); int closeParen = taxon.find_last_of(')'); - string newtaxon = taxon.substr(0, openParen); //rip off confidence - string confidence = taxon.substr((openParen+1), (closeParen-openParen-1)); - int con = 0; + string newtaxon, confidence; + if ((openParen != string::npos) && (closeParen != string::npos)) { + newtaxon = taxon.substr(0, openParen); //rip off confidence + confidence = taxon.substr((openParen+1), (closeParen-openParen-1)); + }else{ + newtaxon = taxon; + confidence = "0"; + } + float con = 0; convert(confidence, con); - map temp; + map temp; temp[newtaxon] = con; t.push_back(temp);