X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=venncommand.cpp;h=18bb635010bc07a1787e2847ae84c4eaf923e8cf;hb=49d2b7459c5027557564b21e9487dadafbbbdc96;hp=1b4e3bc70848d7511c1dcd136fb4c320e4265b11;hpb=0ca63a8165baa0afa459e644ebe140ba496d5ba0;p=mothur.git diff --git a/venncommand.cpp b/venncommand.cpp index 1b4e3bc..18bb635 100644 --- a/venncommand.cpp +++ b/venncommand.cpp @@ -66,6 +66,27 @@ string VennCommand::getHelpString(){ exit(1); } } +//********************************************************************************************************************** + +string VennCommand::getOutputFileNameTag(string type, string inputName=""){ + try { + string outputFileName = ""; + map >::iterator it; + + //is this a type this command creates + it = outputTypes.find(type); + if (it == outputTypes.end()) { m->mothurOut("[ERROR]: this command doesn't create a " + type + " output file.\n"); } + else { + if (type == "svg") { outputFileName = "svg"; } + else { m->mothurOut("[ERROR]: No definition for type " + type + " output file tag.\n"); m->control_pressed = true; } + } + return outputFileName; + } + catch(exception& e) { + m->errorOut(e, "VennCommand", "getOutputFileNameTag"); + exit(1); + } +} //********************************************************************************************************************** VennCommand::VennCommand(){