]> git.donarmstrong.com Git - mothur.git/blob - degapseqscommand.cpp
c90064f190af3421a2f3f6ebc673b1265a1f202a
[mothur.git] / degapseqscommand.cpp
1 /*
2  *  degapseqscommand.cpp
3  *  Mothur
4  *
5  *  Created by westcott on 6/21/10.
6  *  Copyright 2010 Schloss Lab. All rights reserved.
7  *
8  */
9
10 #include "degapseqscommand.h"
11 #include "sequence.hpp"
12
13 //**********************************************************************************************************************
14 vector<string> DegapSeqsCommand::setParameters(){       
15         try {
16                 CommandParameter pfasta("fasta", "InputTypes", "", "", "none", "none", "none",false,true); parameters.push_back(pfasta);
17                 CommandParameter pinputdir("inputdir", "String", "", "", "", "", "",false,false); parameters.push_back(pinputdir);
18                 CommandParameter poutputdir("outputdir", "String", "", "", "", "", "",false,false); parameters.push_back(poutputdir);
19                 
20                 vector<string> myArray;
21                 for (int i = 0; i < parameters.size(); i++) {   myArray.push_back(parameters[i].name);          }
22                 return myArray;
23         }
24         catch(exception& e) {
25                 m->errorOut(e, "DegapSeqsCommand", "setParameters");
26                 exit(1);
27         }
28 }
29 //**********************************************************************************************************************
30 string DegapSeqsCommand::getHelpString(){       
31         try {
32                 string helpString = "";
33                 helpString += "The degap.seqs command reads a fastafile and removes all gap characters.\n";
34                 helpString += "The degap.seqs command parameter is fasta.\n";
35                 helpString += "The fasta parameter allows you to enter the fasta file containing your sequences, and is required unless you have a valid current fasta file. \n";
36                 helpString += "You may enter multiple fasta files by separating their names with dashes. ie. fasta=abrecovery.fasta-amzon.fasta \n";
37                 helpString += "The degap.seqs command should be in the following format: \n";
38                 helpString += "degap.seqs(fasta=yourFastaFile) \n";     
39                 helpString += "Example: degap.seqs(fasta=abrecovery.align) \n";
40                 helpString += "Note: No spaces between parameter labels (i.e. fasta), '=' and parameters (i.e.yourFastaFile).\n";       
41                 return helpString;
42         }
43         catch(exception& e) {
44                 m->errorOut(e, "DegapSeqsCommand", "getHelpString");
45                 exit(1);
46         }
47 }
48 //**********************************************************************************************************************
49 DegapSeqsCommand::DegapSeqsCommand(){   
50         try {
51                 abort = true; calledHelp = true; 
52                 setParameters();
53                 vector<string> tempOutNames;
54                 outputTypes["fasta"] = tempOutNames;
55         }
56         catch(exception& e) {
57                 m->errorOut(e, "DegapSeqsCommand", "DegapSeqsCommand");
58                 exit(1);
59         }
60 }
61 //***************************************************************************************************************
62 DegapSeqsCommand::DegapSeqsCommand(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                 
69                 else {
70                         vector<string> myArray = setParameters();
71                         
72                         OptionParser parser(option);
73                         map<string,string> parameters = parser.getParameters();
74                         
75                         ValidParameters validParameter;
76                         map<string,string>::iterator it;
77                         
78                         //check to make sure all parameters are valid for command
79                         for (it = parameters.begin(); it != parameters.end(); it++) { 
80                                 if (validParameter.isValidParameter(it->first, myArray, it->second) != true) {  abort = true;  }
81                         }
82                         
83                         
84                         //initialize outputTypes
85                         vector<string> tempOutNames;
86                         outputTypes["fasta"] = tempOutNames;
87                 
88                         //if the user changes the input directory command factory will send this info to us in the output parameter 
89                         string inputDir = validParameter.validFile(parameters, "inputdir", false);              
90                         if (inputDir == "not found"){   inputDir = "";          }
91                         
92                         //check for required parameters
93                         fastafile = validParameter.validFile(parameters, "fasta", false);
94                         if (fastafile == "not found") {                                 
95                                 fastafile = m->getFastaFile(); 
96                                 if (fastafile != "") { fastaFileNames.push_back(fastafile); m->mothurOut("Using " + fastafile + " as input file for the fasta parameter."); m->mothurOutEndLine(); }
97                                 else {  m->mothurOut("You have no current fastafile and the fasta parameter is required."); m->mothurOutEndLine(); abort = true; }
98                         }
99                         else { 
100                                 m->splitAtDash(fastafile, fastaFileNames);
101                                 
102                                 //go through files and make sure they are good, if not, then disregard them
103                                 for (int i = 0; i < fastaFileNames.size(); i++) {
104                                         
105                                         bool ignore = false;
106                                         if (fastaFileNames[i] == "current") { 
107                                                 fastaFileNames[i] = m->getFastaFile(); 
108                                                 if (fastaFileNames[i] != "") {  m->mothurOut("Using " + fastaFileNames[i] + " as input file for the fasta parameter where you had given current."); m->mothurOutEndLine(); }
109                                                 else {  
110                                                         m->mothurOut("You have no current fastafile, ignoring current."); m->mothurOutEndLine(); ignore=true; 
111                                                         //erase from file list
112                                                         fastaFileNames.erase(fastaFileNames.begin()+i);
113                                                         i--;
114                                                 }
115                                         }
116                                         
117                                         if (!ignore) {
118                                                 if (inputDir != "") {
119                                                         string path = m->hasPath(fastaFileNames[i]);
120                                                         //if the user has not given a path then, add inputdir. else leave path alone.
121                                                         if (path == "") {       fastaFileNames[i] = inputDir + fastaFileNames[i];               }
122                                                 }
123                 
124                                                 ifstream in;
125                                                 int ableToOpen = m->openInputFile(fastaFileNames[i], in, "noerror");
126                                         
127                                                 //if you can't open it, try default location
128                                                 if (ableToOpen == 1) {
129                                                         if (m->getDefaultPath() != "") { //default path is set
130                                                                 string tryPath = m->getDefaultPath() + m->getSimpleName(fastaFileNames[i]);
131                                                                 m->mothurOut("Unable to open " + fastaFileNames[i] + ". Trying default " + tryPath); m->mothurOutEndLine();
132                                                                 ifstream in2;
133                                                                 ableToOpen = m->openInputFile(tryPath, in2, "noerror");
134                                                                 in2.close();
135                                                                 fastaFileNames[i] = tryPath;
136                                                         }
137                                                 }
138                                                 
139                                                 //if you can't open it, try default location
140                                                 if (ableToOpen == 1) {
141                                                         if (m->getOutputDir() != "") { //default path is set
142                                                                 string tryPath = m->getOutputDir() + m->getSimpleName(fastaFileNames[i]);
143                                                                 m->mothurOut("Unable to open " + fastaFileNames[i] + ". Trying output directory " + tryPath); m->mothurOutEndLine();
144                                                                 ifstream in2;
145                                                                 ableToOpen = m->openInputFile(tryPath, in2, "noerror");
146                                                                 in2.close();
147                                                                 fastaFileNames[i] = tryPath;
148                                                         }
149                                                 }
150                                                 
151                                                 in.close();
152                                                 
153                                                 if (ableToOpen == 1) { 
154                                                         m->mothurOut("Unable to open " + fastaFileNames[i] + ". It will be disregarded."); m->mothurOutEndLine();
155                                                         //erase from file list
156                                                         fastaFileNames.erase(fastaFileNames.begin()+i);
157                                                         i--;
158                                                 }
159                                         }
160                                 }
161                                 
162                                 //make sure there is at least one valid file left
163                                 if (fastaFileNames.size() == 0) { m->mothurOut("no valid files."); m->mothurOutEndLine(); abort = true; }
164                         }
165
166                         
167                         //if the user changes the output directory command factory will send this info to us in the output parameter 
168                         outputDir = validParameter.validFile(parameters, "outputdir", false);           if (outputDir == "not found"){  
169                                 outputDir = ""; 
170                                 outputDir += m->hasPath(fastafile); //if user entered a file with a path then preserve it       
171                         }
172
173                 }
174         }
175         catch(exception& e) {
176                 m->errorOut(e, "DegapSeqsCommand", "DegapSeqsCommand");
177                 exit(1);
178         }
179 }
180 //***************************************************************************************************************
181 int DegapSeqsCommand::execute(){
182         try{
183                 
184                 if (abort == true) { if (calledHelp) { return 0; }  return 2;   }
185                 
186                 for (int s = 0; s < fastaFileNames.size(); s++) {
187                                 
188                         m->mothurOut("Degapping sequences from " + fastaFileNames[s] + " ..." ); m->mothurOutEndLine();
189                         ifstream inFASTA;
190                         m->openInputFile(fastaFileNames[s], inFASTA);
191                         
192                         ofstream outFASTA;
193                         string tempOutputDir = outputDir;
194                         if (outputDir == "") { tempOutputDir = m->hasPath(fastaFileNames[s]); }
195                         string degapFile = tempOutputDir + m->getRootName(m->getSimpleName(fastaFileNames[s])) + "ng.fasta";
196                         m->openOutputFile(degapFile, outFASTA);
197                         
198                         while(!inFASTA.eof()){
199                                 if (m->control_pressed) {   outputTypes.clear(); inFASTA.close();  outFASTA.close(); remove(degapFile.c_str()); for (int j = 0; j < outputNames.size(); j++) {  remove(outputNames[j].c_str()); } return 0; }
200                                  
201                                 Sequence currSeq(inFASTA);  m->gobble(inFASTA);
202                                 if (currSeq.getName() != "") {
203                                         outFASTA << ">" << currSeq.getName() << endl;
204                                         outFASTA << currSeq.getUnaligned() << endl;
205                                 }
206                         }
207                         inFASTA.close();
208                         outFASTA.close();
209                         
210                         outputNames.push_back(degapFile); outputTypes["fasta"].push_back(degapFile);
211                         
212                         if (m->control_pressed) {  outputTypes.clear(); remove(degapFile.c_str()); for (int j = 0; j < outputNames.size(); j++) {       remove(outputNames[j].c_str()); } return 0; }
213                 }
214                 
215                 //set fasta file as new current fastafile
216                 string current = "";
217                 itTypes = outputTypes.find("fasta");
218                 if (itTypes != outputTypes.end()) {
219                         if ((itTypes->second).size() != 0) { current = (itTypes->second)[0]; m->setFastaFile(current); }
220                 }
221                 
222                 m->mothurOutEndLine();
223                 m->mothurOut("Output File Name: "); m->mothurOutEndLine();
224                 for (int i = 0; i < outputNames.size(); i++) {  m->mothurOut(outputNames[i]); m->mothurOutEndLine();    }       
225                 m->mothurOutEndLine();
226
227                 
228                 return 0;
229                 
230         }
231         catch(exception& e) {
232                 m->errorOut(e, "DegapSeqsCommand", "execute");
233                 exit(1);
234         }
235 }
236
237 //***************************************************************************************************************
238