2 * getlistcountcommand.cpp
5 * Created by westcott on 10/12/09.
6 * Copyright 2009 Schloss Lab. All rights reserved.
10 #include "getlistcountcommand.h"
12 //**********************************************************************************************************************
13 vector<string> GetListCountCommand::setParameters(){
15 CommandParameter plist("list", "InputTypes", "", "", "none", "none", "none",false,true); parameters.push_back(plist);
16 CommandParameter plabel("label", "String", "", "", "", "", "",false,false); parameters.push_back(plabel);
17 CommandParameter parasort("sort", "Multiple", "name-otu", "otu", "", "", "",false,false); parameters.push_back(parasort);
18 CommandParameter pinputdir("inputdir", "String", "", "", "", "", "",false,false); parameters.push_back(pinputdir);
19 CommandParameter poutputdir("outputdir", "String", "", "", "", "", "",false,false); parameters.push_back(poutputdir);
21 vector<string> myArray;
22 for (int i = 0; i < parameters.size(); i++) { myArray.push_back(parameters[i].name); }
26 m->errorOut(e, "GetListCountCommand", "setParameters");
30 //**********************************************************************************************************************
31 string GetListCountCommand::getHelpString(){
33 string helpString = "";
34 helpString += "The get.otulist command parameters are list, sort and label. list is required, unless you have a valid current list file.\n";
35 helpString += "The label parameter allows you to select what distance levels you would like a output files created for, and are separated by dashes.\n";
36 helpString += "The sort parameter allows you to select how you want the output displayed. Options are otu and name.\n";
37 helpString += "If otu is selected the output will be otu number followed by the list of names in that otu.\n";
38 helpString += "If name is selected the output will be a sequence name followed by its otu number.\n";
39 helpString += "The get.otulist command should be in the following format: get.otulist(list=yourlistFile, label=yourLabels).\n";
40 helpString += "Example get.otulist(list=amazon.fn.list, label=0.10).\n";
41 helpString += "The default value for label is all lines in your inputfile.\n";
42 helpString += "The get.otulist command outputs a .otu file for each distance you specify listing the bin number and the names of the sequences in that bin.\n";
43 helpString += "Note: No spaces between parameter labels (i.e. list), '=' and parameters (i.e.yourListFile).\n";
47 m->errorOut(e, "GetListCountCommand", "getHelpString");
51 //**********************************************************************************************************************
52 string GetListCountCommand::getOutputFileNameTag(string type, string inputName=""){
54 string outputFileName = "";
55 map<string, vector<string> >::iterator it;
57 //is this a type this command creates
58 it = outputTypes.find(type);
59 if (it == outputTypes.end()) { m->mothurOut("[ERROR]: this command doesn't create a " + type + " output file.\n"); }
61 if (type == "otu") { outputFileName = "otu"; }
62 else { m->mothurOut("[ERROR]: No definition for type " + type + " output file tag.\n"); m->control_pressed = true; }
64 return outputFileName;
67 m->errorOut(e, "GetListCountCommand", "getOutputFileNameTag");
71 //**********************************************************************************************************************
72 GetListCountCommand::GetListCountCommand(){
74 abort = true; calledHelp = true;
76 vector<string> tempOutNames;
77 outputTypes["otu"] = tempOutNames;
80 m->errorOut(e, "GetListCountCommand", "GetListCountCommand");
84 //**********************************************************************************************************************
85 GetListCountCommand::GetListCountCommand(string option) {
87 abort = false; calledHelp = false;
90 //allow user to run help
91 if(option == "help") { help(); abort = true; calledHelp = true; }
92 else if(option == "citation") { citation(); abort = true; calledHelp = true;}
95 vector<string> myArray = setParameters();
97 OptionParser parser(option);
98 map<string, string> parameters = parser.getParameters();
100 ValidParameters validParameter;
101 map<string, string>::iterator it;
103 //check to make sure all parameters are valid for command
104 for (it = parameters.begin(); it != parameters.end(); it++) {
105 if (validParameter.isValidParameter(it->first, myArray, it->second) != true) { abort = true; }
108 //initialize outputTypes
109 vector<string> tempOutNames;
110 outputTypes["otu"] = tempOutNames;
112 //if the user changes the input directory command factory will send this info to us in the output parameter
113 string inputDir = validParameter.validFile(parameters, "inputdir", false);
114 if (inputDir == "not found"){ inputDir = ""; }
117 it = parameters.find("list");
118 //user has given a template file
119 if(it != parameters.end()){
120 path = m->hasPath(it->second);
121 //if the user has not given a path then, add inputdir. else leave path alone.
122 if (path == "") { parameters["list"] = inputDir + it->second; }
126 //if the user changes the output directory command factory will send this info to us in the output parameter
127 outputDir = validParameter.validFile(parameters, "outputdir", false); if (outputDir == "not found"){ outputDir = ""; }
129 //check for required parameters
130 listfile = validParameter.validFile(parameters, "list", true);
131 if (listfile == "not found") {
132 listfile = m->getListFile();
133 if (listfile != "") { m->mothurOut("Using " + listfile + " as input file for the list parameter."); m->mothurOutEndLine(); }
134 else { m->mothurOut("You have no current list file and the list parameter is required."); m->mothurOutEndLine(); abort = true; }
136 else if (listfile == "not open") { abort = true; }
137 else { m->setListFile(listfile); }
140 //check for optional parameter and set defaults
141 // ...at some point should added some additional type checking...
142 sort = validParameter.validFile(parameters, "sort", false); if (sort == "not found") { sort = "otu"; }
143 if ((sort != "otu") && (sort != "name")) { m->mothurOut( sort + " is not a valid sort option. Options are otu and name. I will use otu."); m->mothurOutEndLine(); sort = "otu"; }
145 label = validParameter.validFile(parameters, "label", false);
146 if (label == "not found") { label = ""; }
148 if(label != "all") { m->splitAtDash(label, labels); allLines = 0; }
149 else { allLines = 1; }
153 catch(exception& e) {
154 m->errorOut(e, "GetListCountCommand", "GetListCountCommand");
158 //**********************************************************************************************************************
160 int GetListCountCommand::execute(){
162 if (abort == true) { if (calledHelp) { return 0; } return 2; }
164 input = new InputData(listfile, "list");
165 list = input->getListVector();
166 string lastLabel = list->getLabel();
168 //if the users enters label "0.06" and there is no "0.06" in their file use the next lowest label.
169 set<string> processedLabels;
170 set<string> userLabels = labels;
172 if (m->control_pressed) { delete input; delete list; for (int i = 0; i < outputNames.size(); i++) { m->mothurRemove(outputNames[i]); } return 0; }
174 while((list != NULL) && ((allLines == 1) || (userLabels.size() != 0))) {
176 if(allLines == 1 || labels.count(list->getLabel()) == 1){
180 if (m->control_pressed) { delete input; delete list; for (int i = 0; i < outputNames.size(); i++) { m->mothurRemove(outputNames[i]); } return 0; }
182 processedLabels.insert(list->getLabel());
183 userLabels.erase(list->getLabel());
186 if ((m->anyLabelsToProcess(list->getLabel(), userLabels, "") == true) && (processedLabels.count(lastLabel) != 1)) {
187 string saveLabel = list->getLabel();
190 list = input->getListVector(lastLabel);
194 if (m->control_pressed) { delete input; delete list; for (int i = 0; i < outputNames.size(); i++) { m->mothurRemove(outputNames[i]); } return 0; }
197 processedLabels.insert(list->getLabel());
198 userLabels.erase(list->getLabel());
200 //restore real lastlabel to save below
201 list->setLabel(saveLabel);
204 lastLabel = list->getLabel();
207 list = input->getListVector();
211 //output error messages about any remaining user labels
212 set<string>::iterator it;
213 bool needToRun = false;
214 for (it = userLabels.begin(); it != userLabels.end(); it++) {
215 m->mothurOut("Your file does not include the label " + *it);
216 if (processedLabels.count(lastLabel) != 1) {
217 m->mothurOut(". I will use " + lastLabel + "."); m->mothurOutEndLine();
220 m->mothurOut(". Please refer to " + lastLabel + "."); m->mothurOutEndLine();
224 //run last label if you need to
225 if (needToRun == true) {
226 if (list != NULL) { delete list; }
227 list = input->getListVector(lastLabel);
231 if (m->control_pressed) { delete input; delete list; for (int i = 0; i < outputNames.size(); i++) { m->mothurRemove(outputNames[i]); } return 0; }
238 m->mothurOutEndLine();
239 m->mothurOut("Output File Names: "); m->mothurOutEndLine();
240 for (int i = 0; i < outputNames.size(); i++) { m->mothurOut(outputNames[i]); m->mothurOutEndLine(); }
241 m->mothurOutEndLine();
245 catch(exception& e) {
246 m->errorOut(e, "GetListCountCommand", "execute");
251 //**********************************************************************************************************************
252 //return 1 if error, 0 otherwise
253 void GetListCountCommand::process(ListVector* list) {
256 if (outputDir == "") { outputDir += m->hasPath(listfile); }
257 string outputFileName = outputDir + m->getRootName(m->getSimpleName(listfile)) + list->getLabel() + "." +getOutputFileNameTag("otu");
258 m->openOutputFile(outputFileName, out);
259 outputNames.push_back(outputFileName); outputTypes["otu"].push_back(outputFileName);
261 m->mothurOut(list->getLabel()); m->mothurOutEndLine();
263 //for each bin in the list vector
264 for (int i = 0; i < list->getNumBins(); i++) {
265 if (m->control_pressed) { break; }
267 binnames = list->get(i);
270 out << i+1 << '\t' << binnames << endl;
272 vector<string> names;
273 m->splitAtComma(binnames, names);
275 for (int j = 0; j < names.size(); j++) {
276 out << names[j] << '\t' << i+1 << endl;
283 catch(exception& e) {
284 m->errorOut(e, "GetListCountCommand", "process");
288 //**********************************************************************************************************************