]> git.donarmstrong.com Git - mothur.git/blob - deconvolutecommand.cpp
Revert to previous commit
[mothur.git] / deconvolutecommand.cpp
1 /*
2  *  deconvolute.cpp
3  *  Mothur
4  *
5  *  Created by Sarah Westcott on 1/21/09.
6  *  Copyright 2009 Schloss Lab UMASS Amherst. All rights reserved.
7  *
8  */
9
10 #include "deconvolutecommand.h"
11 #include "sequence.hpp"
12
13 //**********************************************************************************************************************
14 vector<string> DeconvoluteCommand::setParameters(){     
15         try {
16                 CommandParameter pfasta("fasta", "InputTypes", "", "", "none", "none", "none",false,true); parameters.push_back(pfasta);
17                 CommandParameter pname("name", "InputTypes", "", "", "none", "none", "none",false,false); parameters.push_back(pname);
18                 CommandParameter pinputdir("inputdir", "String", "", "", "", "", "",false,false); parameters.push_back(pinputdir);
19                 CommandParameter poutputdir("outputdir", "String", "", "", "", "", "",false,false); parameters.push_back(poutputdir);
20                 
21                 vector<string> myArray;
22                 for (int i = 0; i < parameters.size(); i++) {   myArray.push_back(parameters[i].name);          }
23                 return myArray;
24         }
25         catch(exception& e) {
26                 m->errorOut(e, "DeconvoluteCommand", "setParameters");
27                 exit(1);
28         }
29 }
30 //**********************************************************************************************************************
31 string DeconvoluteCommand::getHelpString(){     
32         try {
33                 string helpString = "";
34                 helpString += "The unique.seqs command reads a fastafile and creates a namesfile.\n";
35                 helpString += "It creates a file where the first column is the groupname and the second column is a list of sequence names who have the same sequence. \n";
36                 helpString += "If the sequence is unique the second column will just contain its name. \n";
37                 helpString += "The unique.seqs command parameters are fasta and name.  fasta is required, unless there is a valid current fasta file.\n";
38                 helpString += "The unique.seqs command should be in the following format: \n";
39                 helpString += "unique.seqs(fasta=yourFastaFile) \n";    
40                 return helpString;
41         }
42         catch(exception& e) {
43                 m->errorOut(e, "DeconvoluteCommand", "getHelpString");
44                 exit(1);
45         }
46 }
47 //**********************************************************************************************************************
48 DeconvoluteCommand::DeconvoluteCommand(){       
49         try {
50                 abort = true; calledHelp = true; 
51                 setParameters();
52                 vector<string> tempOutNames;
53                 outputTypes["fasta"] = tempOutNames;
54                 outputTypes["name"] = tempOutNames;
55         }
56         catch(exception& e) {
57                 m->errorOut(e, "DeconvoluteCommand", "DeconvoluteCommand");
58                 exit(1);
59         }
60 }
61 /**************************************************************************************/
62 DeconvoluteCommand::DeconvoluteCommand(string option)  {        
63         try {
64                 abort = false; calledHelp = false;   
65                 
66                 //allow user to run help
67                 if(option == "help") { help(); abort = true; calledHelp = true; }
68                 else if(option == "citation") { citation(); abort = true; calledHelp = true;}
69                 
70                 else {
71                         vector<string> myArray = setParameters();
72                         
73                         OptionParser parser(option);
74                         map<string,string> parameters = parser.getParameters();
75                         
76                         ValidParameters validParameter;
77                         map<string, string>::iterator it;
78                 
79                         //check to make sure all parameters are valid for command
80                         for (it = parameters.begin(); it != parameters.end(); it++) { 
81                                 if (validParameter.isValidParameter(it->first, myArray, it->second) != true) {  abort = true;  }
82                         }
83                         
84                         //initialize outputTypes
85                         vector<string> tempOutNames;
86                         outputTypes["fasta"] = tempOutNames;
87                         outputTypes["name"] = tempOutNames;
88                 
89                         //if the user changes the input directory command factory will send this info to us in the output parameter 
90                         string inputDir = validParameter.validFile(parameters, "inputdir", false);              
91                         if (inputDir == "not found"){   inputDir = "";          }
92                         else {
93                                 string path;
94                                 it = parameters.find("fasta");
95                                 //user has given a template file
96                                 if(it != parameters.end()){ 
97                                         path = m->hasPath(it->second);
98                                         //if the user has not given a path then, add inputdir. else leave path alone.
99                                         if (path == "") {       parameters["fasta"] = inputDir + it->second;            }
100                                 }
101                                 
102                                 it = parameters.find("name");
103                                 //user has given a template file
104                                 if(it != parameters.end()){ 
105                                         path = m->hasPath(it->second);
106                                         //if the user has not given a path then, add inputdir. else leave path alone.
107                                         if (path == "") {       parameters["name"] = inputDir + it->second;             }
108                                 }
109                         }
110
111                         
112                         //check for required parameters
113                         inFastaName = validParameter.validFile(parameters, "fasta", true);
114                         if (inFastaName == "not open") { abort = true; }
115                         else if (inFastaName == "not found") {                          
116                                 inFastaName = m->getFastaFile(); 
117                                 if (inFastaName != "") { m->mothurOut("Using " + inFastaName + " as input file for the fasta parameter."); m->mothurOutEndLine(); }
118                                 else {  m->mothurOut("You have no current fastafile and the fasta parameter is required."); m->mothurOutEndLine(); abort = true; }
119                         }else { m->setFastaFile(inFastaName); } 
120                         
121                         //if the user changes the output directory command factory will send this info to us in the output parameter 
122                         outputDir = validParameter.validFile(parameters, "outputdir", false);           if (outputDir == "not found"){  
123                                 outputDir = ""; 
124                                 outputDir += m->hasPath(inFastaName); //if user entered a file with a path then preserve it     
125                         }
126                         
127                         oldNameMapFName = validParameter.validFile(parameters, "name", true);
128                         if (oldNameMapFName == "not open") { oldNameMapFName = ""; abort = true; }
129                         else if (oldNameMapFName == "not found"){       oldNameMapFName = "";   }
130                         else { m->setNameFile(oldNameMapFName); }
131                         
132                         if (oldNameMapFName == "") {
133                                 vector<string> files; files.push_back(inFastaName);
134                                 parser.getNameFile(files);
135                         }
136                         
137                 }
138
139         }
140         catch(exception& e) {
141                 m->errorOut(e, "DeconvoluteCommand", "DeconvoluteCommand");
142                 exit(1);
143         }
144 }
145 /**************************************************************************************/
146 int DeconvoluteCommand::execute() {     
147         try {
148                 
149                 if (abort == true) { if (calledHelp) { return 0; }  return 2;   }
150
151                 //prepare filenames and open files
152                 string outNameFile = outputDir + m->getRootName(m->getSimpleName(inFastaName)) + "names";
153                 string outFastaFile = outputDir + m->getRootName(m->getSimpleName(inFastaName)) + "unique" + m->getExtension(inFastaName);
154                 
155                 map<string, string> nameMap;
156                 map<string, string>::iterator itNames;
157                 if (oldNameMapFName != "")  {  
158             m->readNames(oldNameMapFName, nameMap); 
159             if (oldNameMapFName == outNameFile){ outNameFile = outputDir + m->getRootName(m->getSimpleName(inFastaName)) + "unique.names";   }
160         }
161                 
162                 if (m->control_pressed) { return 0; }
163                 
164                 ifstream in; 
165                 m->openInputFile(inFastaName, in);
166                 
167                 ofstream outFasta;
168                 m->openOutputFile(outFastaFile, outFasta);
169                 
170                 map<string, string> sequenceStrings; //sequenceString -> list of names.  "atgc...." -> seq1,seq2,seq3.
171                 map<string, string>::iterator itStrings;
172                 set<string> nameInFastaFile; //for sanity checking
173                 set<string>::iterator itname;
174                 vector<string> nameFileOrder;
175                 int count = 0;
176                 while (!in.eof()) {
177                         
178                         if (m->control_pressed) { in.close(); outFasta.close(); m->mothurRemove(outFastaFile); return 0; }
179                         
180                         Sequence seq(in);
181                         
182                         if (seq.getName() != "") {
183                                 
184                                 //sanity checks
185                                 itname = nameInFastaFile.find(seq.getName());
186                                 if (itname == nameInFastaFile.end()) { nameInFastaFile.insert(seq.getName());  }
187                                 else { m->mothurOut("[ERROR]: You already have a sequence named " + seq.getName() + " in your fasta file, sequence names must be unique, please correct."); m->mothurOutEndLine(); }
188
189                                 itStrings = sequenceStrings.find(seq.getAligned());
190                                 
191                                 if (itStrings == sequenceStrings.end()) { //this is a new unique sequence
192                                         //output to unique fasta file
193                                         seq.printSequence(outFasta);
194                                         
195                                         if (oldNameMapFName != "") {
196                                                 itNames = nameMap.find(seq.getName());
197                                                 
198                                                 if (itNames == nameMap.end()) { //namefile and fastafile do not match
199                                                         m->mothurOut("[ERROR]: " + seq.getName() + " is in your fasta file, and not in your namefile, please correct."); m->mothurOutEndLine();
200                                                 }else {
201                                                         sequenceStrings[seq.getAligned()] = itNames->second;
202                                                         nameFileOrder.push_back(seq.getAligned());
203                                                 }
204                                         }else { sequenceStrings[seq.getAligned()] = seq.getName();      nameFileOrder.push_back(seq.getAligned()); }
205                                 }else { //this is a dup
206                                         if (oldNameMapFName != "") {
207                                                 itNames = nameMap.find(seq.getName());
208                                                 
209                                                 if (itNames == nameMap.end()) { //namefile and fastafile do not match
210                                                         m->mothurOut("[ERROR]: " + seq.getName() + " is in your fasta file, and not in your namefile, please correct."); m->mothurOutEndLine();
211                                                 }else {
212                                                         sequenceStrings[seq.getAligned()] += "," + itNames->second;
213                                                 }
214                                         }else { sequenceStrings[seq.getAligned()] += "," + seq.getName();       }
215                                 }
216                                 
217                                 count++;
218                         }
219                         
220                         m->gobble(in);
221                         
222                         if(count % 1000 == 0)   { m->mothurOut(toString(count) + "\t" + toString(sequenceStrings.size())); m->mothurOutEndLine();       }
223                 }
224                 
225                 if(count % 1000 != 0)   { m->mothurOut(toString(count) + "\t" + toString(sequenceStrings.size())); m->mothurOutEndLine();       }
226                 
227                 in.close();
228                 outFasta.close();
229                 
230                 if (m->control_pressed) { m->mothurRemove(outFastaFile); return 0; }
231                 
232                 //print new names file
233                 ofstream outNames;
234                 m->openOutputFile(outNameFile, outNames);
235                 
236                 for (int i = 0; i < nameFileOrder.size(); i++) {
237                 //for (itStrings = sequenceStrings.begin(); itStrings != sequenceStrings.end(); itStrings++) {
238                         if (m->control_pressed) { outputTypes.clear(); m->mothurRemove(outFastaFile); outNames.close(); m->mothurRemove(outNameFile); return 0; }
239                         
240                         itStrings = sequenceStrings.find(nameFileOrder[i]);
241                         
242                         if (itStrings != sequenceStrings.end()) {
243                                 //get rep name
244                                 int pos = (itStrings->second).find_first_of(',');
245                         
246                                 if (pos == string::npos) { // only reps itself
247                                         outNames << itStrings->second << '\t' << itStrings->second << endl;
248                                 }else {
249                                         outNames << (itStrings->second).substr(0, pos) << '\t' << itStrings->second << endl;
250                                 }
251                         }else{ m->mothurOut("[ERROR]: mismatch in namefile print."); m->mothurOutEndLine(); m->control_pressed = true; }
252                 }
253                 outNames.close();
254                 
255                 if (m->control_pressed) { outputTypes.clear(); m->mothurRemove(outFastaFile); m->mothurRemove(outNameFile); return 0; }
256                 
257                 m->mothurOutEndLine();
258                 m->mothurOut("Output File Names: "); m->mothurOutEndLine();
259                 m->mothurOut(outFastaFile); m->mothurOutEndLine();      
260                 m->mothurOut(outNameFile); m->mothurOutEndLine();
261                 outputNames.push_back(outFastaFile);  outputNames.push_back(outNameFile); outputTypes["fasta"].push_back(outFastaFile);  outputTypes["name"].push_back(outNameFile); 
262                 m->mothurOutEndLine();
263
264                 //set fasta file as new current fastafile
265                 string current = "";
266                 itTypes = outputTypes.find("fasta");
267                 if (itTypes != outputTypes.end()) {
268                         if ((itTypes->second).size() != 0) { current = (itTypes->second)[0]; m->setFastaFile(current); }
269                 }
270                 
271                 itTypes = outputTypes.find("name");
272                 if (itTypes != outputTypes.end()) {
273                         if ((itTypes->second).size() != 0) { current = (itTypes->second)[0]; m->setNameFile(current); }
274                 }
275                 
276                 return 0;
277         }
278         catch(exception& e) {
279                 m->errorOut(e, "DeconvoluteCommand", "execute");
280                 exit(1);
281         }
282 }
283 /**************************************************************************************/