X-Git-Url: https://git.donarmstrong.com/?p=mothur.git;a=blobdiff_plain;f=setdircommand.cpp;h=4536d9516688fe6db1d9c10e709e789c40abe93c;hp=fc411ae61120ae90c4efb396de928b028432965f;hb=1a968f34ae2d2680eaf189a197d1a21b8dfd6c03;hpb=1d898dc6edaf9e9f287fab53bf1f21fb29757a17 diff --git a/setdircommand.cpp b/setdircommand.cpp index fc411ae..4536d95 100644 --- a/setdircommand.cpp +++ b/setdircommand.cpp @@ -12,11 +12,12 @@ //********************************************************************************************************************** vector SetDirectoryCommand::setParameters(){ try { - CommandParameter ptempdefault("tempdefault", "String", "", "", "", "", "",false,false); parameters.push_back(ptempdefault); - CommandParameter pinput("input", "String", "", "", "", "", "",false,false); parameters.push_back(pinput); - CommandParameter poutput("output", "String", "", "", "", "", "",false,false); parameters.push_back(poutput); - CommandParameter pinputdir("inputdir", "String", "", "", "", "", "",false,false); parameters.push_back(pinputdir); - CommandParameter poutputdir("outputdir", "String", "", "", "", "", "",false,false); parameters.push_back(poutputdir); + CommandParameter ptempdefault("tempdefault", "String", "", "", "", "", "","",false,false); parameters.push_back(ptempdefault); + CommandParameter pdebug("debug", "Boolean", "", "F", "", "", "","",false,false); parameters.push_back(pdebug); + CommandParameter pinput("input", "String", "", "", "", "", "","",false,false,true); parameters.push_back(pinput); + CommandParameter poutput("output", "String", "", "", "", "", "","",false,false,true); parameters.push_back(poutput); + CommandParameter pinputdir("inputdir", "String", "", "", "", "", "","",false,false); parameters.push_back(pinputdir); + CommandParameter poutputdir("outputdir", "String", "", "", "", "", "","",false,false); parameters.push_back(poutputdir); vector myArray; for (int i = 0; i < parameters.size(); i++) { myArray.push_back(parameters[i].name); } @@ -34,7 +35,9 @@ string SetDirectoryCommand::getHelpString(){ helpString += "The set.dir command can be used to direct the output files generated by mothur to a specific place, the directory must exist.\n"; helpString += "The set.dir command can also be used to specify the directory where your input files are located, the directory must exist.\n"; helpString += "The set.dir command can also be used to override or set the default location mothur will look for files if it is unable to find them, the directory must exist.\n"; - helpString += "The set.dir command parameters are input, output and tempdefault and one is required.\n"; + helpString += "The set.dir command can also be used to run mothur in debug mode.\n"; + helpString += "The set.dir command parameters are input, output, tempdefault and debug and one is required.\n"; + helpString += "To run mothur in debug mode set debug=true. Default debug=false.\n"; helpString += "To return the output to the same directory as the input files you may enter: output=clear.\n"; helpString += "To return the input to the current working directory you may enter: input=clear.\n"; helpString += "To set the output to the directory where mothur.exe is located you may enter: output=default.\n"; @@ -59,6 +62,7 @@ SetDirectoryCommand::SetDirectoryCommand(string option) { //allow user to run help if(option == "help") { help(); abort = true; calledHelp = true; } + else if(option == "citation") { citation(); abort = true; calledHelp = true;} else { vector myArray = setParameters(); @@ -80,10 +84,20 @@ SetDirectoryCommand::SetDirectoryCommand(string option) { tempdefault = validParameter.validFile(parameters, "tempdefault", false); if (tempdefault == "not found") { tempdefault = ""; } + + bool debug = false; + bool nodebug = false; + debugOnly = false; + string temp = validParameter.validFile(parameters, "debug", false); + if (temp == "not found") { debug = false; nodebug=true; } + else { debug = m->isTrue(temp); } + m->debug = debug; + + if (debug) { m->mothurOut("Setting [DEBUG] flag.\n"); } - if ((input == "") && (output == "") && (tempdefault == "")) { - m->mothurOut("You must provide either an input, output or tempdefault for the set.outdir command."); m->mothurOutEndLine(); abort = true; - } + if ((input == "") && (output == "") && (tempdefault == "") && nodebug) { + m->mothurOut("You must provide either an input, output, tempdefault or debug for the set.outdir command."); m->mothurOutEndLine(); abort = true; + }else if((input == "") && (output == "") && (tempdefault == "")) { debugOnly = true; } } } catch(exception& e) { @@ -98,38 +112,25 @@ int SetDirectoryCommand::execute(){ if (abort == true) { if (calledHelp) { return 0; } return 2; } + if (debugOnly) { return 0; } + commandFactory = CommandFactory::getInstance(); + m->mothurOut("Mothur's directories:"); m->mothurOutEndLine(); + //redirect output if ((output == "clear") || (output == "")) { output = ""; commandFactory->setOutputDirectory(output); } else if (output == "default") { string exepath = m->argv; output = exepath.substr(0, (exepath.find_last_of('m'))); - m->mothurOut("Changing output directory to " + output); m->mothurOutEndLine(); + m->mothurOut("outputDir=" + output); m->mothurOutEndLine(); commandFactory->setOutputDirectory(output); }else { - //add / to name if needed - string lastChar = output.substr(output.length()-1); - #if defined (__APPLE__) || (__MACH__) || (linux) || (__linux) - if (lastChar != "/") { output += "/"; } - #else - if (lastChar != "\\") { output += "\\"; } - #endif - - //test to make sure directory exists - output = m->getFullPathName(output); - string outTemp = output + "temp"; - ofstream out; - out.open(outTemp.c_str(), ios::trunc); - if(!out) { - m->mothurOut(output + " directory does not exist or is not writable."); m->mothurOutEndLine(); - }else{ - out.close(); - remove(outTemp.c_str()); - m->mothurOut("Changing output directory to " + output); m->mothurOutEndLine(); + if (m->dirCheck(output)) { + m->mothurOut("outputDir=" + output); m->mothurOutEndLine(); commandFactory->setOutputDirectory(output); - } + } } //redirect input @@ -138,37 +139,20 @@ int SetDirectoryCommand::execute(){ string exepath = m->argv; input = exepath.substr(0, (exepath.find_last_of('m'))); - m->mothurOut("Changing input directory to " + input); m->mothurOutEndLine(); + m->mothurOut("inputDir=" + input); m->mothurOutEndLine(); commandFactory->setInputDirectory(input); }else { - //add / to name if needed - string lastChar = input.substr(input.length()-1); - #if defined (__APPLE__) || (__MACH__) || (linux) || (__linux) - if (lastChar != "/") { input += "/"; } - #else - if (lastChar != "\\") { input += "\\"; } - #endif - - //test to make sure directory exists - input = m->getFullPathName(input); - string inTemp = input + "temp"; - ofstream in; - in.open(inTemp.c_str(), ios::trunc); - if(!in) { - m->mothurOut(input + " directory does not exist or is not writable."); m->mothurOutEndLine(); - }else{ - in.close(); - remove(inTemp.c_str()); - m->mothurOut("Changing input directory to " + input); m->mothurOutEndLine(); + if (m->dirCheck(input)) { + m->mothurOut("inputDir=" + input); m->mothurOutEndLine(); commandFactory->setInputDirectory(input); - } - } + } + } //set default if (tempdefault == "clear") { #ifdef MOTHUR_FILES string temp = MOTHUR_FILES; - m->mothurOut("Resetting default directory to " + temp); m->mothurOutEndLine(); + m->mothurOut("tempDefault=" + temp); m->mothurOutEndLine(); m->setDefaultPath(temp); #else string temp = ""; @@ -180,20 +164,14 @@ int SetDirectoryCommand::execute(){ string exepath = m->argv; tempdefault = exepath.substr(0, (exepath.find_last_of('m'))); - m->mothurOut("Changing default directory to " + tempdefault); m->mothurOutEndLine(); + m->mothurOut("tempDefault=" + tempdefault); m->mothurOutEndLine(); m->setDefaultPath(tempdefault); }else { - //add / to name if needed - string lastChar = tempdefault.substr(tempdefault.length()-1); - #if defined (__APPLE__) || (__MACH__) || (linux) || (__linux) - if (lastChar != "/") { tempdefault += "/"; } - #else - if (lastChar != "\\") { tempdefault += "\\"; } - #endif - - m->mothurOut("Changing default directory to " + tempdefault); m->mothurOutEndLine(); - m->setDefaultPath(tempdefault); - } + if (m->dirCheck(tempdefault)) { + m->mothurOut("tempDefault=" + tempdefault); m->mothurOutEndLine(); + m->setDefaultPath(tempdefault); + } + } return 0; }