]> git.donarmstrong.com Git - mothur.git/blob - secondarystructurecommand.cpp
added citation function to commands
[mothur.git] / secondarystructurecommand.cpp
1 /*
2  *  secondarystructurecommand.cpp
3  *  Mothur
4  *
5  *  Created by westcott on 9/18/09.
6  *  Copyright 2009 Schloss Lab. All rights reserved.
7  *
8  */
9
10 #include "secondarystructurecommand.h"
11 #include "sequence.hpp"
12
13 //**********************************************************************************************************************
14 vector<string> AlignCheckCommand::setParameters(){      
15         try {
16                 CommandParameter pfasta("fasta", "InputTypes", "", "", "none", "none", "none",false,true); parameters.push_back(pfasta);
17                 CommandParameter pmap("map", "InputTypes", "", "", "none", "none", "none",false,true); parameters.push_back(pmap);
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, "AlignCheckCommand", "setParameters");
27                 exit(1);
28         }
29 }
30 //**********************************************************************************************************************
31 string AlignCheckCommand::getHelpString(){      
32         try {
33                 string helpString = "";
34                 helpString += "The align.check command reads a fasta file and map file.\n";
35                 helpString += "It outputs a file containing the secondary structure matches in the .align.check file.\n";
36                 helpString += "The align.check command parameters are fasta and map, both are required.\n";
37                 helpString += "The align.check command should be in the following format: align.check(fasta=yourFasta, map=yourMap).\n";
38                 helpString += "Example align.check(map=silva.ss.map, fasta=amazon.fasta).\n";
39                 helpString += "Note: No spaces between parameter labels (i.e. fasta), '=' and parameters (i.e.yourFasta).\n";
40                 return helpString;
41         }
42         catch(exception& e) {
43                 m->errorOut(e, "AlignCheckCommand", "getHelpString");
44                 exit(1);
45         }
46 }
47 //**********************************************************************************************************************
48 AlignCheckCommand::AlignCheckCommand(){ 
49         try {
50                 abort = true; calledHelp = true; 
51                 setParameters();
52                 vector<string> tempOutNames;
53                 outputTypes["aligncheck"] = tempOutNames;
54         }
55         catch(exception& e) {
56                 m->errorOut(e, "AlignCheckCommand", "AlignCheckCommand");
57                 exit(1);
58         }
59 }
60 //**********************************************************************************************************************
61
62 AlignCheckCommand::AlignCheckCommand(string option)  {
63         try {
64                 abort = false; calledHelp = false;   
65                 haderror = 0;
66                         
67                 //allow user to run help
68                 if(option == "help") { help(); abort = true; calledHelp = true; }
69                 else if(option == "citation") { citation(); abort = true; calledHelp = true;}
70                 
71                 else {
72                         vector<string> myArray = setParameters();
73                         
74                         OptionParser parser(option);
75                         map<string,string> parameters = parser.getParameters();
76                         
77                         ValidParameters validParameter;
78                         map<string,string>::iterator it;
79                         
80                         //check to make sure all parameters are valid for command
81                         for (it = parameters.begin(); it != parameters.end(); it++) { 
82                                 if (validParameter.isValidParameter(it->first, myArray, it->second) != true) {  abort = true;  }
83                         }
84                         
85                         //initialize outputTypes
86                         vector<string> tempOutNames;
87                         outputTypes["aligncheck"] = 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("map");
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["map"] = inputDir + it->second;              }
108                                 }
109                                 
110                                 it = parameters.find("name");
111                                 //user has given a template file
112                                 if(it != parameters.end()){ 
113                                         path = m->hasPath(it->second);
114                                         //if the user has not given a path then, add inputdir. else leave path alone.
115                                         if (path == "") {       parameters["name"] = inputDir + it->second;             }
116                                 }
117                         }
118
119                         //check for required parameters
120                         mapfile = validParameter.validFile(parameters, "map", true);
121                         if (mapfile == "not open") { abort = true; }
122                         else if (mapfile == "not found") {  mapfile = "";  m->mothurOut("You must provide an map file."); m->mothurOutEndLine(); abort = true; }        
123                         
124                         fastafile = validParameter.validFile(parameters, "fasta", true);
125                         if (fastafile == "not open") { abort = true; }
126                         else if (fastafile == "not found") {                            
127                                 fastafile = m->getFastaFile(); 
128                                 if (fastafile != "") { m->mothurOut("Using " + fastafile + " as input file for the fasta parameter."); m->mothurOutEndLine(); }
129                                 else {  m->mothurOut("You have no current fastafile and the fasta parameter is required."); m->mothurOutEndLine(); abort = true; }
130                         }       
131                         
132                         namefile = validParameter.validFile(parameters, "name", true);
133                         if (namefile == "not open") { namefile = ""; abort = true; }
134                         else if (namefile == "not found") { namefile = "";  }   
135                         
136                         //if the user changes the output directory command factory will send this info to us in the output parameter 
137                         outputDir = validParameter.validFile(parameters, "outputdir", false);           if (outputDir == "not found"){  
138                                 outputDir = ""; 
139                                 outputDir += m->hasPath(fastafile); //if user entered a file with a path then preserve it       
140                         }
141
142                 }
143
144         }
145         catch(exception& e) {
146                 m->errorOut(e, "AlignCheckCommand", "AlignCheckCommand");
147                 exit(1);
148         }
149 }
150 //**********************************************************************************************************************
151
152 int AlignCheckCommand::execute(){
153         try {
154                 
155                 if (abort == true) { if (calledHelp) { return 0; }  return 2;   }
156                 
157                 //get secondary structure info.
158                 readMap();
159                 
160                 if (namefile != "") { nameMap = m->readNames(namefile); }
161                 
162                 if (m->control_pressed) { return 0; }
163                 
164                 ifstream in;
165                 m->openInputFile(fastafile, in);
166                 
167                 ofstream out;
168                 string outfile = outputDir + m->getRootName(m->getSimpleName(fastafile)) + "align.check";
169                 m->openOutputFile(outfile, out);
170                 
171                                 
172                 out << "name" << '\t' << "pound" << '\t' << "dash" << '\t' << "plus" << '\t' << "equal" << '\t';
173                 out << "loop" << '\t' << "tilde" << '\t' << "total"  << '\t' << "numseqs" << endl;
174
175                 vector<int> pound;
176                 vector<int> dash;
177                 vector<int> plus;
178                 vector<int> equal;
179                 vector<int> loop;
180                 vector<int> tilde;
181                 vector<int> total;
182                 
183                 int count = 0;
184                 while(!in.eof()){
185                         if (m->control_pressed) { in.close(); out.close(); remove(outfile.c_str()); return 0; }
186                         
187                         Sequence seq(in);  m->gobble(in);
188                         if (seq.getName() != "") {
189                                 statData data = getStats(seq.getAligned());
190                                 
191                                 if (haderror == 1) { m->control_pressed = true; break; }
192                                 
193                                 int num = 1;
194                                 if (namefile != "") {
195                                         //make sure this sequence is in the namefile, else error 
196                                         map<string, int>::iterator it = nameMap.find(seq.getName());
197                                         
198                                         if (it == nameMap.end()) { m->mothurOut("[ERROR]: " + seq.getName() + " is not in your namefile, please correct."); m->mothurOutEndLine(); m->control_pressed = true; }
199                                         else { num = it->second; }
200                                 }
201                                 
202                                 //for each sequence this sequence represents
203                                 for (int i = 0; i < num; i++) {
204                                         pound.push_back(data.pound);
205                                         dash.push_back(data.dash);
206                                         plus.push_back(data.plus);
207                                         equal.push_back(data.equal);
208                                         loop.push_back(data.loop);
209                                         tilde.push_back(data.tilde);
210                                         total.push_back(data.total);
211                                 }       
212                                 count++;
213                                 
214                                 out << seq.getName() << '\t' << data.pound << '\t' << data.dash << '\t' << data.plus << '\t' << data.equal << '\t';
215                                 out << data.loop << '\t' << data.tilde << '\t' << data.total << '\t' << num << endl;
216                         }
217                 }
218
219                 in.close();
220                 out.close();
221                 
222                 if (m->control_pressed) {  remove(outfile.c_str()); return 0; }
223                 
224                 sort(pound.begin(), pound.end());
225                 sort(dash.begin(), dash.end());
226                 sort(plus.begin(), plus.end());
227                 sort(equal.begin(), equal.end());
228                 sort(loop.begin(), loop.end());
229                 sort(tilde.begin(), tilde.end());
230                 sort(total.begin(), total.end());
231                 int size = pound.size();
232                 
233                 int ptile0_25   = int(size * 0.025);
234                 int ptile25             = int(size * 0.250);
235                 int ptile50             = int(size * 0.500);
236                 int ptile75             = int(size * 0.750);
237                 int ptile97_5   = int(size * 0.975);
238                 int ptile100    = size - 1;
239                 
240                 if (m->control_pressed) {  remove(outfile.c_str()); return 0; }
241                 
242                 m->mothurOutEndLine();
243                 m->mothurOut("\t\tPound\tDash\tPlus\tEqual\tLoop\tTilde\tTotal"); m->mothurOutEndLine();
244                 m->mothurOut("Minimum:\t" + toString(pound[0]) + "\t" + toString(dash[0]) + "\t" + toString(plus[0]) + "\t" + toString(equal[0]) + "\t" + toString(loop[0]) + "\t" + toString(tilde[0]) + "\t" + toString(total[0])); m->mothurOutEndLine();
245                 m->mothurOut("2.5%-tile:\t" + toString(pound[ptile0_25]) + "\t" + toString(dash[ptile0_25]) + "\t" + toString(plus[ptile0_25]) + "\t" + toString(equal[ptile0_25]) + "\t"+ toString(loop[ptile0_25]) + "\t"+ toString(tilde[ptile0_25]) + "\t"+ toString(total[ptile0_25])); m->mothurOutEndLine();
246                 m->mothurOut("25%-tile:\t" + toString(pound[ptile25]) + "\t" + toString(dash[ptile25]) + "\t" + toString(plus[ptile25]) + "\t" + toString(equal[ptile25]) + "\t" + toString(loop[ptile25]) + "\t" + toString(tilde[ptile25]) + "\t" + toString(total[ptile25])); m->mothurOutEndLine();
247                 m->mothurOut("Median: \t" + toString(pound[ptile50]) + "\t" + toString(dash[ptile50]) + "\t" + toString(plus[ptile50]) + "\t" + toString(equal[ptile50]) + "\t" + toString(loop[ptile50]) + "\t" + toString(tilde[ptile50]) + "\t" + toString(total[ptile50])); m->mothurOutEndLine();
248                 m->mothurOut("75%-tile:\t" + toString(pound[ptile75]) + "\t" + toString(dash[ptile75]) + "\t" + toString(plus[ptile75]) + "\t" + toString(equal[ptile75]) + "\t" + toString(loop[ptile75]) + "\t" + toString(tilde[ptile75]) + "\t" + toString(total[ptile75])); m->mothurOutEndLine();
249                 m->mothurOut("97.5%-tile:\t" + toString(pound[ptile97_5]) + "\t" + toString(dash[ptile97_5]) + "\t" + toString(plus[ptile97_5]) + "\t" + toString(equal[ptile97_5]) + "\t" + toString(loop[ptile97_5]) + "\t" + toString(tilde[ptile97_5]) + "\t" + toString(total[ptile97_5])); m->mothurOutEndLine();
250                 m->mothurOut("Maximum:\t" + toString(pound[ptile100]) + "\t" + toString(dash[ptile100]) + "\t" + toString(plus[ptile100]) + "\t" + toString(equal[ptile100]) + "\t" + toString(loop[ptile100]) + "\t" + toString(tilde[ptile100]) + "\t" + toString(total[ptile100])); m->mothurOutEndLine();
251                 if (namefile == "") {  m->mothurOut("# of Seqs:\t" + toString(count)); m->mothurOutEndLine(); }
252                 else { m->mothurOut("# of unique seqs:\t" + toString(count)); m->mothurOutEndLine(); m->mothurOut("total # of seqs:\t" + toString(size)); m->mothurOutEndLine(); }
253                 
254                 
255                 m->mothurOutEndLine();
256                 m->mothurOut("Output File Name: "); m->mothurOutEndLine();
257                 m->mothurOut(outfile); m->mothurOutEndLine();   outputNames.push_back(outfile); outputTypes["aligncheck"].push_back(outfile);
258                 m->mothurOutEndLine();
259                 
260                 return 0;               
261         }
262
263         catch(exception& e) {
264                 m->errorOut(e, "AlignCheckCommand", "execute");
265                 exit(1);
266         }
267 }
268 //**********************************************************************************************************************
269 void AlignCheckCommand::readMap(){
270         try {
271                         
272                 structMap.resize(1, 0);
273                 ifstream in;
274                 
275                 m->openInputFile(mapfile, in);
276                 
277                 while(!in.eof()){
278                         int position;
279                         in >> position;
280                         structMap.push_back(position);  
281                         m->gobble(in);
282                 }
283                 in.close();
284
285                 seqLength = structMap.size();
286                 
287                 
288                 //check you make sure is structMap[10] = 380 then structMap[380] = 10.
289                 for(int i=0;i<seqLength;i++){
290                         if(structMap[i] != 0){
291                                 if(structMap[structMap[i]] != i){
292                                         m->mothurOut("Your map file contains an error:  line " + toString(i) + " does not match line " + toString(structMap[i]) + "."); m->mothurOutEndLine();
293                                 }
294                         }
295                 }
296                 
297                 
298         }
299         catch(exception& e) {
300                 m->errorOut(e, "AlignCheckCommand", "readMap");
301                 exit(1);
302         }
303 }
304 /**************************************************************************************************/
305
306 statData AlignCheckCommand::getStats(string sequence){
307         try {
308         
309                 statData data;
310                 sequence = "*" + sequence; // need to pad the sequence so we can index it by 1
311                 
312                 int length = sequence.length();
313                 
314                 if (length != seqLength) { m->mothurOut("your sequences are " + toString(length) + " long, but your map file only contains " + toString(seqLength) + " entries. please correct."); m->mothurOutEndLine(); haderror = 1; return data;  }
315                 
316                 for(int i=1;i<length;i++){
317                         if(structMap[i] != 0){
318                                 if(sequence[i] == 'A'){
319                                         if(sequence[structMap[i]] == 'T')               {       data.tilde++;   }
320                                         else if(sequence[structMap[i]] == 'A')  {       data.pound++;   }
321                                         else if(sequence[structMap[i]] == 'G')  {       data.equal++;   }
322                                         else if(sequence[structMap[i]] == 'C')  {       data.pound++;   }
323                                         else if(sequence[structMap[i]] == '-')  {       data.pound++;   }
324                                         data.total++;
325                                 }
326                                 else if(sequence[i] == 'T'){
327                                         if(sequence[structMap[i]] == 'T')               {       data.plus++;    }
328                                         else if(sequence[structMap[i]] == 'A')  {       data.tilde++;   }
329                                         else if(sequence[structMap[i]] == 'G')  {       data.dash++;    }
330                                         else if(sequence[structMap[i]] == 'C')  {       data.pound++;   }
331                                         else if(sequence[structMap[i]] == '-')  {       data.pound++;   }
332                                         data.total++;
333                                 }
334                                 else if(sequence[i] == 'G'){
335                                         if(sequence[structMap[i]] == 'T')               {       data.dash++;    }
336                                         else if(sequence[structMap[i]] == 'A')  {       data.equal++;   }
337                                         else if(sequence[structMap[i]] == 'G')  {       data.pound++;   }
338                                         else if(sequence[structMap[i]] == 'C')  {       data.tilde++;   }
339                                         else if(sequence[structMap[i]] == '-')  {       data.pound++;   }
340                                         data.total++;
341                                 }
342                                 else if(sequence[i] == 'C'){
343                                         if(sequence[structMap[i]] == 'T')               {       data.pound++;   }
344                                         else if(sequence[structMap[i]] == 'A')  {       data.pound++;   }
345                                         else if(sequence[structMap[i]] == 'G')  {       data.tilde++;   }
346                                         else if(sequence[structMap[i]] == 'C')  {       data.pound++;   }
347                                         else if(sequence[structMap[i]] == '-')  {       data.pound++;   }
348                                         data.total++;
349                                 }
350                                 else if(sequence[i] == '-'){
351                                         if(sequence[structMap[i]] == 'T')               {       data.pound++;   data.total++;   }
352                                         else if(sequence[structMap[i]] == 'A')  {       data.pound++;   data.total++;   }
353                                         else if(sequence[structMap[i]] == 'G')  {       data.pound++;   data.total++;   }
354                                         else if(sequence[structMap[i]] == 'C')  {       data.pound++;   data.total++;   }
355                                         else if(sequence[structMap[i]] == '-')  {               /*donothing*/                           }
356                                 }                       
357                         }
358                         else if(isalnum(sequence[i])){
359                                 data.loop++;
360                                 data.total++;
361                         }
362                 }
363                 return data;
364                 
365         }
366         catch(exception& e) {
367                 m->errorOut(e, "AlignCheckCommand", "getStats");
368                 exit(1);
369         }
370 }
371 //**********************************************************************************************************************