X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=mergefilecommand.cpp;fp=mergefilecommand.cpp;h=d431dd32ff17dcef5e267b1e93a47c8fc93b324b;hb=8bc3e5b38c2317a1715f53be22fa96455868c281;hp=098da009eaeacfab076c9ad0f800f626158f4a15;hpb=f663afa231c9bc1b5e18e0ea3bdd2b2ee784f5b2;p=mothur.git diff --git a/mergefilecommand.cpp b/mergefilecommand.cpp index 098da00..d431dd3 100644 --- a/mergefilecommand.cpp +++ b/mergefilecommand.cpp @@ -9,6 +9,53 @@ #include "mergefilecommand.h" +//********************************************************************************************************************** +vector MergeFileCommand::getValidParameters(){ + try { + string Array[] = {"input", "output","outputdir","inputdir"}; + vector myArray (Array, Array+(sizeof(Array)/sizeof(string))); + return myArray; + } + catch(exception& e) { + m->errorOut(e, "MergeFileCommand", "getValidParameters"); + exit(1); + } +} +//********************************************************************************************************************** +MergeFileCommand::MergeFileCommand(){ + try { + //initialize outputTypes + vector tempOutNames; + outputTypes["merge"] = tempOutNames; + } + catch(exception& e) { + m->errorOut(e, "MergeFileCommand", "MergeFileCommand"); + exit(1); + } +} +//********************************************************************************************************************** +vector MergeFileCommand::getRequiredParameters(){ + try { + string Array[] = {"input","output"}; + vector myArray (Array, Array+(sizeof(Array)/sizeof(string))); + return myArray; + } + catch(exception& e) { + m->errorOut(e, "MergeFileCommand", "getRequiredParameters"); + exit(1); + } +} +//********************************************************************************************************************** +vector MergeFileCommand::getRequiredFiles(){ + try { + vector myArray; + return myArray; + } + catch(exception& e) { + m->errorOut(e, "MergeFileCommand", "getRequiredFiles"); + exit(1); + } +} //********************************************************************************************************************** MergeFileCommand::MergeFileCommand(string option) { @@ -34,6 +81,10 @@ MergeFileCommand::MergeFileCommand(string option) { if (validParameter.isValidParameter(it->first, myArray, it->second) != true) { abort = true; } } + //initialize outputTypes + vector tempOutNames; + outputTypes["merge"] = tempOutNames; + //if the user changes the input directory command factory will send this info to us in the output parameter string inputDir = validParameter.validFile(parameters, "inputdir", false); if (inputDir == "not found"){ inputDir = ""; } @@ -67,7 +118,7 @@ MergeFileCommand::MergeFileCommand(string option) { outputFileName = validParameter.validFile(parameters, "output", false); if (outputFileName == "not found") { m->mothurOut("you must enter an output file name"); m->mothurOutEndLine(); abort=true; } - else if (outputDir != "") { outputFileName = outputDir + m->getSimpleName(outputFileName); } + else if (outputDir != "") { outputFileName = outputDir + m->getSimpleName(outputFileName); } } } @@ -97,7 +148,7 @@ int MergeFileCommand::execute(){ m->openInputFile(fileNames[i], inputFile); while(!inputFile.eof()){ - if (m->control_pressed) { inputFile.close(); outputFile.close(); remove(outputFileName.c_str()); return 0; } + if (m->control_pressed) { outputTypes.clear(); inputFile.close(); outputFile.close(); remove(outputFileName.c_str()); return 0; } c = inputFile.get(); //-1 is eof char @@ -109,11 +160,11 @@ int MergeFileCommand::execute(){ outputFile.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["merge"].push_back(outputFileName); m->mothurOutEndLine(); return 0;