1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149
|
/*
* mergefilecommand.cpp
* Mothur
*
* Created by Pat Schloss on 6/14/09.
* Copyright 2009 Patrick D. Schloss. All rights reserved.
*
*/
#include "mergefilecommand.h"
//**********************************************************************************************************************
vector<string> MergeFileCommand::setParameters(){
try {
CommandParameter pinput("input", "String", "", "", "", "", "","",false,true,true); parameters.push_back(pinput);
CommandParameter poutput("output", "String", "", "", "", "", "","",false,true,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<string> myArray;
for (int i = 0; i < parameters.size(); i++) { myArray.push_back(parameters[i].name); }
return myArray;
}
catch(exception& e) {
m->errorOut(e, "MergeFileCommand", "setParameters");
exit(1);
}
}
//**********************************************************************************************************************
string MergeFileCommand::getHelpString(){
try {
string helpString = "";
helpString += "The merge.file command takes a list of files separated by dashes and merges them into one file.";
helpString += "The merge.file command parameters are input and output.";
helpString += "Example merge.file(input=small.fasta-large.fasta, output=all.fasta).";
helpString += "Note: No spaces between parameter labels (i.e. output), '=' and parameters (i.e.yourOutputFileName).\n";
return helpString;
}
catch(exception& e) {
m->errorOut(e, "MergeFileCommand", "getHelpString");
exit(1);
}
}
//**********************************************************************************************************************
MergeFileCommand::MergeFileCommand(){
try {
abort = true; calledHelp = true;
setParameters();
vector<string> tempOutNames;
outputTypes["merge"] = tempOutNames;
}
catch(exception& e) {
m->errorOut(e, "MergeFileCommand", "MergeFileCommand");
exit(1);
}
}
//**********************************************************************************************************************
MergeFileCommand::MergeFileCommand(string option) {
try {
abort = false; calledHelp = false;
if(option == "help") {
help();
abort = true; calledHelp = true;
}else if(option == "citation") { citation(); abort = true; calledHelp = true;}
else {
vector<string> myArray = setParameters();
OptionParser parser(option);
map<string,string> parameters = parser.getParameters();
ValidParameters validParameter;
//check to make sure all parameters are valid for command
for (map<string,string>::iterator it = parameters.begin(); it != parameters.end(); it++) {
if (validParameter.isValidParameter(it->first, myArray, it->second) != true) { abort = true; }
}
//initialize outputTypes
vector<string> 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 = ""; }
string fileList = validParameter.validFile(parameters, "input", false);
if(fileList == "not found") { m->mothurOut("you must enter two or more file names"); m->mothurOutEndLine(); abort=true; }
else{ m->splitAtDash(fileList, fileNames); }
//if the user changes the output directory command factory will send this info to us in the output parameter
string outputDir = validParameter.validFile(parameters, "outputdir", false); if (outputDir == "not found") { outputDir = ""; }
numInputFiles = fileNames.size();
ifstream testFile;
if(numInputFiles == 0){
m->mothurOut("you must enter two or more file names and you entered " + toString(fileNames.size()) + " file names"); m->mothurOutEndLine();
abort=true;
}
else{
for(int i=0;i<numInputFiles;i++){
if (inputDir != "") {
string path = m->hasPath(fileNames[i]);
//if the user has not given a path then, add inputdir. else leave path alone.
if (path == "") { fileNames[i] = inputDir + fileNames[i]; }
}
if(m->openInputFile(fileNames[i], testFile)){ abort = true; }
testFile.close();
}
}
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); }
}
}
catch(exception& e) {
m->errorOut(e, "MergeFileCommand", "MergeFileCommand");
exit(1);
}
}
//**********************************************************************************************************************
int MergeFileCommand::execute(){
try {
if (abort == true) { if (calledHelp) { return 0; } return 2; }
m->mothurRemove(outputFileName);
for(int i=0;i<numInputFiles;i++){ m->appendFiles(fileNames[i], outputFileName); }
if (m->control_pressed) { m->mothurRemove(outputFileName); return 0; }
m->mothurOutEndLine();
m->mothurOut("Output File Names: "); m->mothurOutEndLine();
m->mothurOut(outputFileName); m->mothurOutEndLine(); outputNames.push_back(outputFileName); outputTypes["merge"].push_back(outputFileName);
m->mothurOutEndLine();
return 0;
}
catch(exception& e) {
m->errorOut(e, "MergeFileCommand", "execute");
exit(1);
}
}
//**********************************************************************************************************************
|