]> git.donarmstrong.com Git - mothur.git/blob - deconvolutecommand.cpp
working on current change
[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") { abort = true; }
129                         else if (oldNameMapFName == "not found"){       oldNameMapFName = "";   }
130                         else { m->setNameFile(oldNameMapFName); }
131                 }
132
133         }
134         catch(exception& e) {
135                 m->errorOut(e, "DeconvoluteCommand", "DeconvoluteCommand");
136                 exit(1);
137         }
138 }
139 /**************************************************************************************/
140 int DeconvoluteCommand::execute() {     
141         try {
142                 
143                 if (abort == true) { if (calledHelp) { return 0; }  return 2;   }
144
145                 //prepare filenames and open files
146                 string outNameFile = outputDir + m->getRootName(m->getSimpleName(inFastaName)) + "names";
147                 string outFastaFile = outputDir + m->getRootName(m->getSimpleName(inFastaName)) + "unique" + m->getExtension(inFastaName);
148                 
149                 map<string, string> nameMap;
150                 map<string, string>::iterator itNames;
151                 if (oldNameMapFName != "")  {  m->readNames(oldNameMapFName, nameMap); }
152                 
153                 if (m->control_pressed) { return 0; }
154                 
155                 ifstream in; 
156                 m->openInputFile(inFastaName, in);
157                 
158                 ofstream outFasta;
159                 m->openOutputFile(outFastaFile, outFasta);
160                 
161                 map<string, string> sequenceStrings; //sequenceString -> list of names.  "atgc...." -> seq1,seq2,seq3.
162                 map<string, string>::iterator itStrings;
163                 set<string> nameInFastaFile; //for sanity checking
164                 set<string>::iterator itname;
165                 int count = 0;
166                 while (!in.eof()) {
167                         
168                         if (m->control_pressed) { in.close(); outFasta.close(); remove(outFastaFile.c_str()); return 0; }
169                         
170                         Sequence seq(in);
171                         
172                         if (seq.getName() != "") {
173                                 
174                                 //sanity checks
175                                 itname = nameInFastaFile.find(seq.getName());
176                                 if (itname == nameInFastaFile.end()) { nameInFastaFile.insert(seq.getName());  }
177                                 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(); }
178
179                                 itStrings = sequenceStrings.find(seq.getAligned());
180                                 
181                                 if (itStrings == sequenceStrings.end()) { //this is a new unique sequence
182                                         //output to unique fasta file
183                                         seq.printSequence(outFasta);
184                                         
185                                         if (oldNameMapFName != "") {
186                                                 itNames = nameMap.find(seq.getName());
187                                                 
188                                                 if (itNames == nameMap.end()) { //namefile and fastafile do not match
189                                                         m->mothurOut("[ERROR]: " + seq.getName() + " is in your fasta file, and not in your namefile, please correct."); m->mothurOutEndLine();
190                                                 }else {
191                                                         sequenceStrings[seq.getAligned()] = itNames->second;
192                                                 }
193                                         }else { sequenceStrings[seq.getAligned()] = seq.getName();      }
194                                 }else { //this is a dup
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                                                 }
203                                         }else { sequenceStrings[seq.getAligned()] += "," + seq.getName();       }
204                                 }
205                                 
206                                 count++;
207                         }
208                         
209                         m->gobble(in);
210                         
211                         if(count % 1000 == 0)   { m->mothurOut(toString(count) + "\t" + toString(sequenceStrings.size())); m->mothurOutEndLine();       }
212                 }
213                 
214                 if(count % 1000 != 0)   { m->mothurOut(toString(count) + "\t" + toString(sequenceStrings.size())); m->mothurOutEndLine();       }
215                 
216                 in.close();
217                 outFasta.close();
218                 
219                 if (m->control_pressed) { remove(outFastaFile.c_str()); return 0; }
220                 
221                 //print new names file
222                 ofstream outNames;
223                 m->openOutputFile(outNameFile, outNames);
224                 
225                 for (itStrings = sequenceStrings.begin(); itStrings != sequenceStrings.end(); itStrings++) {
226                         if (m->control_pressed) { outputTypes.clear(); remove(outFastaFile.c_str()); outNames.close(); remove(outNameFile.c_str()); return 0; }
227                         
228                         //get rep name
229                         int pos = (itStrings->second).find_first_of(',');
230                         
231                         if (pos == string::npos) { // only reps itself
232                                 outNames << itStrings->second << '\t' << itStrings->second << endl;
233                         }else {
234                                 outNames << (itStrings->second).substr(0, pos) << '\t' << itStrings->second << endl;
235                         }
236                 }
237                 outNames.close();
238                 
239                 if (m->control_pressed) { outputTypes.clear(); remove(outFastaFile.c_str()); remove(outNameFile.c_str()); return 0; }
240                 
241                 m->mothurOutEndLine();
242                 m->mothurOut("Output File Names: "); m->mothurOutEndLine();
243                 m->mothurOut(outFastaFile); m->mothurOutEndLine();      
244                 m->mothurOut(outNameFile); m->mothurOutEndLine();
245                 outputNames.push_back(outFastaFile);  outputNames.push_back(outNameFile); outputTypes["fasta"].push_back(outFastaFile);  outputTypes["name"].push_back(outNameFile); 
246                 m->mothurOutEndLine();
247
248                 //set fasta file as new current fastafile
249                 string current = "";
250                 itTypes = outputTypes.find("fasta");
251                 if (itTypes != outputTypes.end()) {
252                         if ((itTypes->second).size() != 0) { current = (itTypes->second)[0]; m->setFastaFile(current); }
253                 }
254                 
255                 itTypes = outputTypes.find("name");
256                 if (itTypes != outputTypes.end()) {
257                         if ((itTypes->second).size() != 0) { current = (itTypes->second)[0]; m->setNameFile(current); }
258                 }
259                 
260                 return 0;
261         }
262         catch(exception& e) {
263                 m->errorOut(e, "DeconvoluteCommand", "execute");
264                 exit(1);
265         }
266 }
267 /**************************************************************************************/