]> git.donarmstrong.com Git - mothur.git/blob - mantelcommand.cpp
added getCommandInfoCommand for gui
[mothur.git] / mantelcommand.cpp
1 /*
2  *  mantelcommand.cpp
3  *  mothur
4  *
5  *  Created by westcott on 2/9/11.
6  *  Copyright 2011 Schloss Lab. All rights reserved.
7  *
8  */
9
10 #include "mantelcommand.h"
11 #include "readphylipvector.h"
12
13
14 //**********************************************************************************************************************
15 vector<string> MantelCommand::setParameters(){  
16         try {
17                 CommandParameter pphylip1("phylip1", "InputTypes", "", "", "none", "none", "none",false,true); parameters.push_back(pphylip1);
18                 CommandParameter pphylip2("phylip2", "InputTypes", "", "", "none", "none", "none",false,true); parameters.push_back(pphylip2);
19                 CommandParameter piters("iters", "Number", "", "1000", "", "", "",false,false); parameters.push_back(piters);
20                 CommandParameter pmethod("method", "Multiple", "pearson-spearman-kendall", "pearson", "", "", "",false,false); parameters.push_back(pmethod);
21                 CommandParameter pinputdir("inputdir", "String", "", "", "", "", "",false,false); parameters.push_back(pinputdir);
22                 CommandParameter poutputdir("outputdir", "String", "", "", "", "", "",false,false); parameters.push_back(poutputdir);
23                 
24                 vector<string> myArray;
25                 for (int i = 0; i < parameters.size(); i++) {   myArray.push_back(parameters[i].name);          }
26                 return myArray;
27         }
28         catch(exception& e) {
29                 m->errorOut(e, "MantelCommand", "setParameters");
30                 exit(1);
31         }
32 }
33 //**********************************************************************************************************************
34 string MantelCommand::getHelpString(){  
35         try {
36                 string helpString = "";
37                 helpString += "Sokal, R. R., & Rohlf, F. J. (1995). Biometry, 3rd edn. New York: Freeman.\n";
38                 helpString += "The mantel command reads two distance matrices and calculates the mantel correlation coefficient.\n";
39                 helpString += "The mantel command parameters are phylip1, phylip2, iters and method.  The phylip1 and phylip2 parameters are required.  Matrices must be the same size and contain the same names.\n";
40                 helpString += "The method parameter allows you to select what method you would like to use. Options are pearson, spearman and kendall. Default=pearson.\n";
41                 helpString += "The iters parameter allows you to set number of randomization for the P value.  The default is 1000. \n";
42                 helpString += "The mantel command should be in the following format: mantel(phylip1=veg.dist, phylip2=env.dist).\n";
43                 helpString += "The mantel command outputs a .mantel file.\n";
44                 helpString += "Note: No spaces between parameter labels (i.e. phylip1), '=' and parameters (i.e. veg.dist).\n";
45                 return helpString;
46         }
47         catch(exception& e) {
48                 m->errorOut(e, "MantelCommand", "getHelpString");
49                 exit(1);
50         }
51 }
52 //**********************************************************************************************************************
53 MantelCommand::MantelCommand(){ 
54         try {
55                 abort = true; calledHelp = true;
56                 setParameters();
57                 vector<string> tempOutNames;
58                 outputTypes["mantel"] = tempOutNames;
59         }
60         catch(exception& e) {
61                 m->errorOut(e, "MantelCommand", "MantelCommand");
62                 exit(1);
63         }
64 }
65 //**********************************************************************************************************************
66 MantelCommand::MantelCommand(string option)  {
67         try {
68                 abort = false; calledHelp = false;   
69                 
70                 //allow user to run help
71                 if(option == "help") { help(); abort = true; calledHelp = true; }
72                 
73                 else {
74                         vector<string> myArray = setParameters();
75                         
76                         OptionParser parser(option);
77                         map<string, string> parameters = parser.getParameters();
78                         
79                         ValidParameters validParameter;
80                         map<string, string>::iterator it;
81                         
82                         //check to make sure all parameters are valid for command
83                         for (it = parameters.begin(); it != parameters.end(); it++) { 
84                                 if (validParameter.isValidParameter(it->first, myArray, it->second) != true) {  abort = true;  }
85                         }
86                         
87                         vector<string> tempOutNames;
88                         outputTypes["mantel"] = tempOutNames;
89                         
90                         //if the user changes the input directory command factory will send this info to us in the output parameter 
91                         string inputDir = validParameter.validFile(parameters, "inputdir", false);              
92                         if (inputDir == "not found"){   inputDir = "";          }
93                         else {
94                                 string path;
95                                 it = parameters.find("phylip1");
96                                 //user has given a template file
97                                 if(it != parameters.end()){ 
98                                         path = m->hasPath(it->second);
99                                         //if the user has not given a path then, add inputdir. else leave path alone.
100                                         if (path == "") {       parameters["phylip1"] = inputDir + it->second;          }
101                                 }
102                                 
103                                 it = parameters.find("phylip2");
104                                 //user has given a template file
105                                 if(it != parameters.end()){ 
106                                         path = m->hasPath(it->second);
107                                         //if the user has not given a path then, add inputdir. else leave path alone.
108                                         if (path == "") {       parameters["phylip2"] = inputDir + it->second;          }
109                                 }
110                         }
111                         
112                         
113                         //check for required parameters
114                         phylipfile1 = validParameter.validFile(parameters, "phylip1", true);
115                         if (phylipfile1 == "not open") { phylipfile1 = ""; abort = true; }
116                         else if (phylipfile1 == "not found") { phylipfile1 = ""; m->mothurOut("phylip1 is a required parameter for the mantel command."); m->mothurOutEndLine(); abort = true;  }       
117                         
118                         phylipfile2 = validParameter.validFile(parameters, "phylip2", true);
119                         if (phylipfile2 == "not open") { phylipfile2 = ""; abort = true; }
120                         else if (phylipfile2 == "not found") { phylipfile2 = ""; m->mothurOut("phylip2 is a required parameter for the mantel command."); m->mothurOutEndLine(); abort = true;  }       
121                         
122                         outputDir = validParameter.validFile(parameters, "outputdir", false);           if (outputDir == "not found"){  outputDir = m->hasPath(phylipfile1);    }
123                         
124                         method = validParameter.validFile(parameters, "method", false);         if (method == "not found"){     method = "pearson";             }
125                         
126                         string temp = validParameter.validFile(parameters, "iters", false);                     if (temp == "not found") { temp = "1000"; }
127                         convert(temp, iters);
128                         
129                         if ((method != "pearson") && (method != "spearman") && (method != "kendall")) { m->mothurOut(method + " is not a valid method. Valid methods are pearson, spearman, and kendall."); m->mothurOutEndLine(); abort = true; }
130                 }
131         }
132         catch(exception& e) {
133                 m->errorOut(e, "MantelCommand", "MantelCommand");               
134                 exit(1);
135         }
136 }
137 //**********************************************************************************************************************
138
139 int MantelCommand::execute(){
140         try {
141                 
142                 if (abort == true) { if (calledHelp) { return 0; }  return 2;   }
143                 
144                 /***************************************************/
145                 //    reading distance files                                       //
146                 /***************************************************/
147                 
148                 //read phylip1
149                 ReadPhylipVector readMatrix(phylipfile1);
150                 vector< vector<double> > matrix1;
151                 vector<string> names1 = readMatrix.read(matrix1);
152                 
153                 if (m->control_pressed) { return 0; }
154                 
155                 //read phylip2
156                 ReadPhylipVector readMatrix2(phylipfile2);
157                 vector< vector<double> > matrix2;
158                 vector<string> names2 = readMatrix2.read(matrix2);
159                 
160                 if (m->control_pressed) { return 0; }
161                 
162                 //make sure matrix2 and matrix1 are in the same order
163                 if (names1 == names2) { //then everything is in same order and same size
164                 }else if (names1.size() != names2.size()) { //wrong size no need to order, abort
165                         m->mothurOut("[ERROR]: distance matrices are not the same size, aborting."); m->mothurOutEndLine();
166                         m->control_pressed = true;
167                 }else { //sizes are the same, but either the names are different or they are in different order
168                         m->mothurOut("[WARNING]: Names do not match between distance files. Comparing based on order in files."); m->mothurOutEndLine();
169                 }       
170                 
171                 if (m->control_pressed) { return 0; }
172                 
173                 /***************************************************/
174                 //    calculating mantel and signifigance                  //
175                 /***************************************************/
176                 
177                 //calc mantel coefficient
178                 LinearAlgebra linear;
179                 double mantel = 0.0;
180                 if (method == "pearson")                {  mantel = linear.calcPearson(matrix1, matrix2);       }
181                 else if (method == "spearman")  {  mantel = linear.calcSpearman(matrix1, matrix2);      }
182                 else if (method == "kendall")   {  mantel = linear.calcKendall(matrix1, matrix2);       }
183                 
184                 
185                 //calc signifigance
186                 int count = 0;
187                 for (int i = 0; i < iters; i++) {
188                         
189                         if (m->control_pressed) { return 0; }
190                         
191                         //randomize matrix2
192                         vector< vector<double> > matrix2Copy = matrix2;
193                         random_shuffle(matrix2Copy.begin(), matrix2Copy.end());
194                 
195                         //calc random mantel
196                         double randomMantel = 0.0;
197                         if (method == "pearson")                {  randomMantel = linear.calcPearson(matrix1, matrix2Copy);     }
198                         else if (method == "spearman")  {  randomMantel = linear.calcSpearman(matrix1, matrix2Copy);    }
199                         else if (method == "kendall")   {  randomMantel = linear.calcKendall(matrix1, matrix2Copy);     }
200                         
201                         if (randomMantel >= mantel) { count++; }
202                 }
203                 
204                 double pValue = count / (float) iters;
205                 
206                 if (m->control_pressed) { return 0; }
207                 
208                 string outputFile = outputDir + m->getRootName(m->getSimpleName(phylipfile1)) + "mantel";
209                 outputNames.push_back(outputFile); outputTypes["mantel"].push_back(outputFile);
210                 ofstream out;
211                 
212                 m->openOutputFile(outputFile, out);
213                 
214                 out.setf(ios::fixed, ios::floatfield); out.setf(ios::showpoint);
215                 cout.setf(ios::fixed, ios::floatfield); cout.setf(ios::showpoint);
216                 
217                 out << "Mantel\tpValue" << endl;
218                 out << mantel << '\t' << pValue << endl;
219                 
220                 out.close();
221         
222                 cout << "\nmantel = " << mantel << "\tpValue = " << pValue << endl;
223                 m->mothurOutJustToLog("\nmantel = " + toString(mantel) + "\tpValue = " + toString(pValue) + "\n"); 
224                 
225                 m->mothurOutEndLine();
226                 m->mothurOut("Output File Names: "); m->mothurOutEndLine();
227                 for (int i = 0; i < outputNames.size(); i++) {  m->mothurOut(outputNames[i]); m->mothurOutEndLine();    }
228                 m->mothurOutEndLine();          
229                 
230                 return 0;
231         }
232         catch(exception& e) {
233                 m->errorOut(e, "MantelCommand", "execute");     
234                 exit(1);
235         }
236 }
237
238 //**********************************************************************************************************************
239
240