X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=listseqscommand.cpp;h=406085728838262b79100a70133600639e6c47a2;hb=e840ba0e90a2b2be39e0910e4be23dde6a14cbac;hp=3200137343e8691e2e8df3f70fcd1940f933b88c;hpb=14edc148cb299c5624f72bb681375b704aa74f43;p=mothur.git diff --git a/listseqscommand.cpp b/listseqscommand.cpp index 3200137..4060857 100644 --- a/listseqscommand.cpp +++ b/listseqscommand.cpp @@ -11,14 +11,61 @@ #include "sequence.hpp" #include "listvector.hpp" +//********************************************************************************************************************** +vector ListSeqsCommand::getValidParameters(){ + try { + string Array[] = {"fasta","name", "group", "alignreport","list","taxonomy","outputdir","inputdir"}; + vector myArray (Array, Array+(sizeof(Array)/sizeof(string))); + return myArray; + } + catch(exception& e) { + m->errorOut(e, "ListSeqsCommand", "getValidParameters"); + exit(1); + } +} +//********************************************************************************************************************** +ListSeqsCommand::ListSeqsCommand(){ + try { + abort = true; calledHelp = true; + vector tempOutNames; + outputTypes["accnos"] = tempOutNames; + } + catch(exception& e) { + m->errorOut(e, "ListSeqsCommand", "ListSeqsCommand"); + exit(1); + } +} +//********************************************************************************************************************** +vector ListSeqsCommand::getRequiredParameters(){ + try { + string Array[] = {"fasta","name", "group", "alignreport","list","taxonomy","or"}; + vector myArray (Array, Array+(sizeof(Array)/sizeof(string))); + return myArray; + } + catch(exception& e) { + m->errorOut(e, "ListSeqsCommand", "getRequiredParameters"); + exit(1); + } +} +//********************************************************************************************************************** +vector ListSeqsCommand::getRequiredFiles(){ + try { + vector myArray; + return myArray; + } + catch(exception& e) { + m->errorOut(e, "ListSeqsCommand", "getRequiredFiles"); + exit(1); + } +} //********************************************************************************************************************** ListSeqsCommand::ListSeqsCommand(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 @@ -36,6 +83,10 @@ ListSeqsCommand::ListSeqsCommand(string option) { if (validParameter.isValidParameter(it->first, myArray, it->second) != true) { abort = true; } } + //initialize outputTypes + vector tempOutNames; + outputTypes["accnos"] = tempOutNames; + //if the user changes the output directory command factory will send this info to us in the output parameter outputDir = validParameter.validFile(parameters, "outputdir", false); if (outputDir == "not found"){ outputDir = ""; } @@ -47,7 +98,7 @@ ListSeqsCommand::ListSeqsCommand(string option) { it = parameters.find("alignreport"); //user has given a template file if(it != parameters.end()){ - path = hasPath(it->second); + path = m->hasPath(it->second); //if the user has not given a path then, add inputdir. else leave path alone. if (path == "") { parameters["alignreport"] = inputDir + it->second; } } @@ -55,7 +106,7 @@ ListSeqsCommand::ListSeqsCommand(string option) { it = parameters.find("fasta"); //user has given a template file if(it != parameters.end()){ - path = hasPath(it->second); + path = m->hasPath(it->second); //if the user has not given a path then, add inputdir. else leave path alone. if (path == "") { parameters["fasta"] = inputDir + it->second; } } @@ -63,7 +114,7 @@ ListSeqsCommand::ListSeqsCommand(string option) { it = parameters.find("list"); //user has given a template file if(it != parameters.end()){ - path = hasPath(it->second); + path = m->hasPath(it->second); //if the user has not given a path then, add inputdir. else leave path alone. if (path == "") { parameters["list"] = inputDir + it->second; } } @@ -71,7 +122,7 @@ ListSeqsCommand::ListSeqsCommand(string option) { it = parameters.find("name"); //user has given a template file if(it != parameters.end()){ - path = hasPath(it->second); + path = m->hasPath(it->second); //if the user has not given a path then, add inputdir. else leave path alone. if (path == "") { parameters["name"] = inputDir + it->second; } } @@ -79,7 +130,7 @@ ListSeqsCommand::ListSeqsCommand(string option) { it = parameters.find("group"); //user has given a template file if(it != parameters.end()){ - path = hasPath(it->second); + path = m->hasPath(it->second); //if the user has not given a path then, add inputdir. else leave path alone. if (path == "") { parameters["group"] = inputDir + it->second; } } @@ -87,7 +138,7 @@ ListSeqsCommand::ListSeqsCommand(string option) { it = parameters.find("taxonomy"); //user has given a template file if(it != parameters.end()){ - path = hasPath(it->second); + path = m->hasPath(it->second); //if the user has not given a path then, add inputdir. else leave path alone. if (path == "") { parameters["taxonomy"] = inputDir + it->second; } } @@ -154,7 +205,7 @@ void ListSeqsCommand::help(){ int ListSeqsCommand::execute(){ try { - if (abort == true) { return 0; } + if (abort == true) { if (calledHelp) { return 0; } return 2; } //read functions fill names vector if (fastafile != "") { inputFileName = fastafile; readFasta(); } @@ -164,32 +215,32 @@ int ListSeqsCommand::execute(){ else if (listfile != "") { inputFileName = listfile; readList(); } else if (taxfile != "") { inputFileName = taxfile; readTax(); } - if (m->control_pressed) { return 0; } + if (m->control_pressed) { outputTypes.clear(); return 0; } //sort in alphabetical order sort(names.begin(), names.end()); - if (outputDir == "") { outputDir += hasPath(inputFileName); } + if (outputDir == "") { outputDir += m->hasPath(inputFileName); } - string outputFileName = outputDir + getRootName(getSimpleName(inputFileName)) + "accnos"; + string outputFileName = outputDir + m->getRootName(m->getSimpleName(inputFileName)) + "accnos"; ofstream out; - openOutputFile(outputFileName, out); + m->openOutputFile(outputFileName, out); //output to .accnos file for (int i = 0; i < names.size(); i++) { - if (m->control_pressed) { out.close(); remove(outputFileName.c_str()); return 0; } + if (m->control_pressed) { outputTypes.clear(); out.close(); remove(outputFileName.c_str()); return 0; } out << names[i] << endl; } out.close(); - if (m->control_pressed) { remove(outputFileName.c_str()); return 0; } + if (m->control_pressed) { outputTypes.clear(); remove(outputFileName.c_str()); return 0; } m->mothurOutEndLine(); m->mothurOut("Output File Name: "); m->mothurOutEndLine(); - m->mothurOut(outputFileName); m->mothurOutEndLine(); + m->mothurOut(outputFileName); m->mothurOutEndLine(); outputNames.push_back(outputFileName); outputTypes["accnos"].push_back(outputFileName); m->mothurOutEndLine(); return 0; @@ -206,7 +257,7 @@ int ListSeqsCommand::readFasta(){ try { ifstream in; - openInputFile(fastafile, in); + m->openInputFile(fastafile, in); string name; while(!in.eof()){ @@ -218,7 +269,7 @@ int ListSeqsCommand::readFasta(){ if (name != "") { names.push_back(name); } - gobble(in); + m->gobble(in); } in.close(); @@ -234,7 +285,7 @@ int ListSeqsCommand::readFasta(){ int ListSeqsCommand::readList(){ try { ifstream in; - openInputFile(listfile, in); + m->openInputFile(listfile, in); if(!in.eof()){ //read in list vector @@ -271,7 +322,7 @@ int ListSeqsCommand::readName(){ try { ifstream in; - openInputFile(namefile, in); + m->openInputFile(namefile, in); string name, firstCol, secondCol; while(!in.eof()){ @@ -291,7 +342,7 @@ int ListSeqsCommand::readName(){ //get name after last , names.push_back(secondCol); - gobble(in); + m->gobble(in); } in.close(); return 0; @@ -308,19 +359,19 @@ int ListSeqsCommand::readGroup(){ try { ifstream in; - openInputFile(groupfile, in); + m->openInputFile(groupfile, in); string name, group; while(!in.eof()){ if (m->control_pressed) { in.close(); return 0; } - in >> name; //read from first column + in >> name; m->gobble(in); //read from first column in >> group; //read from second column names.push_back(name); - gobble(in); + m->gobble(in); } in.close(); return 0; @@ -338,7 +389,7 @@ int ListSeqsCommand::readAlign(){ try { ifstream in; - openInputFile(alignfile, in); + m->openInputFile(alignfile, in); string name, junk; //read column headers @@ -362,7 +413,7 @@ int ListSeqsCommand::readAlign(){ names.push_back(name); - gobble(in); + m->gobble(in); } in.close(); @@ -380,7 +431,7 @@ int ListSeqsCommand::readTax(){ try { ifstream in; - openInputFile(taxfile, in); + m->openInputFile(taxfile, in); string name, firstCol, secondCol; while(!in.eof()){ @@ -392,7 +443,8 @@ int ListSeqsCommand::readTax(){ names.push_back(firstCol); - gobble(in); + m->gobble(in); + } in.close();