]> git.donarmstrong.com Git - mothur.git/blob - readdistcommand.cpp
414f33087738ba355ad5ff51c2e89349d41b21f9
[mothur.git] / readdistcommand.cpp
1 /*
2  *  readdistcommand.cpp
3  *  Mothur
4  *
5  *  Created by Sarah Westcott on 1/20/09.
6  *  Copyright 2009 Schloss Lab UMASS Amherst. All rights reserved.
7  *
8  */
9
10 #include "readdistcommand.h"
11 #include "readphylip.h"
12 #include "readcolumn.h"
13 #include "readmatrix.hpp"
14
15 ReadDistCommand::ReadDistCommand(string option) {
16         try {
17                 globaldata = GlobalData::getInstance();
18                 abort = false;
19                 
20                 //allow user to run help
21                 if(option == "help") { help(); abort = true; }
22                 
23                 else {
24                         //valid paramters for this command
25                         string Array[] =  {"phylip", "column", "name", "cutoff","hard", "precision", "group","outputdir","inputdir","sim"};
26                         vector<string> myArray (Array, Array+(sizeof(Array)/sizeof(string)));
27                         
28                         OptionParser parser(option);
29                         map<string, string> parameters = parser.getParameters();
30                         
31                         ValidParameters validParameter;
32                         map<string,string>::iterator it;
33                 
34                         //check to make sure all parameters are valid for command
35                         for (it = parameters.begin(); it != parameters.end(); it++) { 
36                                 if (validParameter.isValidParameter(it->first, myArray, it->second) != true) {  abort = true;  }
37                         }
38                         
39                         globaldata->newRead();
40                         
41                         //if the user changes the input directory command factory will send this info to us in the output parameter 
42                         string inputDir = validParameter.validFile(parameters, "inputdir", false);              
43                         if (inputDir == "not found"){   inputDir = "";          }
44                         else {
45                                 string path;
46                                 it = parameters.find("phylip");
47                                 //user has given a template file
48                                 if(it != parameters.end()){ 
49                                         path = hasPath(it->second);
50                                         //if the user has not given a path then, add inputdir. else leave path alone.
51                                         if (path == "") {       parameters["phylip"] = inputDir + it->second;           }
52                                 }
53                                 
54                                 it = parameters.find("column");
55                                 //user has given a template file
56                                 if(it != parameters.end()){ 
57                                         path = hasPath(it->second);
58                                         //if the user has not given a path then, add inputdir. else leave path alone.
59                                         if (path == "") {       parameters["column"] = inputDir + it->second;           }
60                                 }
61                                 
62                                 it = parameters.find("name");
63                                 //user has given a template file
64                                 if(it != parameters.end()){ 
65                                         path = hasPath(it->second);
66                                         //if the user has not given a path then, add inputdir. else leave path alone.
67                                         if (path == "") {       parameters["name"] = inputDir + it->second;             }
68                                 }
69                                 
70                                 it = parameters.find("group");
71                                 //user has given a template file
72                                 if(it != parameters.end()){ 
73                                         path = hasPath(it->second);
74                                         //if the user has not given a path then, add inputdir. else leave path alone.
75                                         if (path == "") {       parameters["group"] = inputDir + it->second;            }
76                                 }
77                         }
78
79                         //if the user changes the output directory command factory will send this info to us in the output parameter 
80                         outputDir = validParameter.validFile(parameters, "outputdir", false);           if (outputDir == "not found"){  outputDir = ""; }
81
82                         //check for required parameters
83                         phylipfile = validParameter.validFile(parameters, "phylip", true);
84                         if (phylipfile == "not open") { abort = true; }
85                         else if (phylipfile == "not found") { phylipfile = ""; }        
86                         else {  globaldata->setPhylipFile(phylipfile);  globaldata->setFormat("phylip");        }
87                         
88                         columnfile = validParameter.validFile(parameters, "column", true);
89                         if (columnfile == "not open") { abort = true; } 
90                         else if (columnfile == "not found") { columnfile = ""; }
91                         else {  globaldata->setColumnFile(columnfile); globaldata->setFormat("column"); }
92                         
93                         groupfile = validParameter.validFile(parameters, "group", true);
94                         if (groupfile == "not open") { abort = true; }  
95                         else if (groupfile == "not found") { groupfile = ""; }
96                         else {  
97                                 globaldata->setGroupFile(groupfile); 
98                                 //groupMap = new GroupMap(groupfile);
99                                 //groupMap->readMap();
100                         }
101
102                         namefile = validParameter.validFile(parameters, "name", true);
103                         if (namefile == "not open") { abort = true; }   
104                         else if (namefile == "not found") { namefile = ""; }
105                         else {  globaldata->setNameFile(namefile);      }
106                         
107                         //you are doing a list and group shared
108                         if ((phylipfile != "") && (groupfile != "")) { 
109                         globaldata->setFormat("matrix"); }
110                         
111                         if ((phylipfile == "") && (columnfile == "")) { m->mothurOut("When executing a read.dist command you must enter a phylip or a column."); m->mothurOutEndLine(); abort = true; }
112                         else if ((phylipfile != "") && (columnfile != "")) { m->mothurOut("When executing a read.dist command you must enter ONLY ONE of the following: phylip or column."); m->mothurOutEndLine(); abort = true; }
113                 
114                         if (columnfile != "") {
115                                 if (namefile == "") {  cout << "You need to provide a namefile if you are going to use the column format." << endl; abort = true; }
116                         }
117                         
118                         //check for optional parameter and set defaults
119                         // ...at some point should added some additional type checking...
120                         //get user cutoff and precision or use defaults
121                         string temp;
122                         temp = validParameter.validFile(parameters, "precision", false);                if (temp == "not found") { temp = "100"; }
123                         convert(temp, precision); 
124                         
125                         temp = validParameter.validFile(parameters, "sim", false);                              if (temp == "not found") { temp = "F"; }
126                         sim = isTrue(temp); 
127                         globaldata->sim = sim;
128                         
129                         temp = validParameter.validFile(parameters, "hard", false);                     if (temp == "not found") { temp = "F"; }
130                         hard = isTrue(temp);
131                         
132                         temp = validParameter.validFile(parameters, "cutoff", false);                   if (temp == "not found") { temp = "10"; }
133                         convert(temp, cutoff); 
134                         if (!hard) {  cutoff += (5 / (precision * 10.0));  }
135                         
136                         if (abort == false) {
137                                 distFileName = globaldata->inputFileName;
138                                 format = globaldata->getFormat();       
139                 
140                                 if (format == "column") { read = new ReadColumnMatrix(distFileName); }  
141                                 else if (format == "phylip") { read = new ReadPhylipMatrix(distFileName); }
142                                 else if (format == "matrix") { 
143                                         groupMap = new GroupMap(groupfile);
144                                         int error = groupMap->readMap();
145                                         if (error == 1) { delete groupMap; abort = true; }
146                                         else {
147                                                 if (globaldata->gGroupmap != NULL) { delete globaldata->gGroupmap;  }
148                                                 globaldata->gGroupmap = groupMap;
149                                         }
150                                 }
151                 
152                                 if (format != "matrix" ) {
153                                         read->setCutoff(cutoff);
154         
155                                         if(namefile != ""){     
156                                                 nameMap = new NameAssignment(namefile);
157                                                 nameMap->readMap();
158                                         }else{
159                                                 nameMap = NULL;
160                                         }
161                                 }
162                         }
163
164                 }
165
166         }
167         catch(exception& e) {
168                 m->errorOut(e, "ReadDistCommand", "ReadDistCommand");
169                 exit(1);
170         }
171 }
172 //**********************************************************************************************************************
173
174 void ReadDistCommand::help(){
175         try {
176                 m->mothurOut("The read.dist command parameter options are phylip or column, group, name, sim, cutoff and precision\n");
177                 m->mothurOut("The read.dist command can be used in two ways.  The first is to read a phylip or column and run the cluster command\n");
178                 m->mothurOut("For this use the read.dist command should be in the following format: \n");
179                 m->mothurOut("read.dist(phylip=yourDistFile, name=yourNameFile, cutoff=yourCutoff, precision=yourPrecision) \n");
180                 m->mothurOut("The phylip or column parameter is required, but only one may be used.  If you use a column file the name filename is required. \n");
181                 m->mothurOut("The sim parameter is used to indicate that your distance file contains similarity values instead of distance values. The default is false, if sim=true then mothur will convert the similarity values to distances. \n");
182                 m->mothurOut("If you do not provide a cutoff value 10.00 is assumed. If you do not provide a precision value then 100 is assumed.\n");
183                 m->mothurOut("The second way to use the read.dist command is to read a phylip or column and a group, so you can use the libshuff command.\n");
184                 m->mothurOut("For this use the read.dist command should be in the following format: \n");
185                 m->mothurOut("read.dist(phylip=yourPhylipfile, group=yourGroupFile). The cutoff and precision parameters are not valid with this use.  \n");
186                 m->mothurOut("Note: No spaces between parameter labels (i.e. phylip), '=' and parameters (i.e.yourPhylipfile).\n\n");
187         }
188         catch(exception& e) {
189                 m->errorOut(e, "ReadDistCommand", "help");
190                 exit(1);
191         }
192 }
193
194 //**********************************************************************************************************************
195
196 ReadDistCommand::~ReadDistCommand(){
197         if (abort == false) {
198                 if (format != "matrix") { 
199                         delete read; 
200                         delete nameMap; 
201                 }
202         }
203 }
204
205 //**********************************************************************************************************************
206 int ReadDistCommand::execute(){
207         try {
208                 
209                 if (abort == true) {    return 0;       }
210
211                 time_t start = time(NULL);
212                 size_t numDists = 0;
213                 
214                 vector<string> outputNames;
215                 
216                 if (format == "matrix") {
217                         ifstream in;
218                         openInputFile(distFileName, in);
219                         matrix = new FullMatrix(in); //reads the matrix file
220                         in.close();
221                         
222                         if (m->control_pressed) { delete groupMap; delete matrix; return 0; }
223                         
224                         //if files don't match...
225                         if (matrix->getNumSeqs() < groupMap->getNumSeqs()) {  
226                                 m->mothurOut("Your distance file contains " + toString(matrix->getNumSeqs()) + " sequences, and your group file contains " + toString(groupMap->getNumSeqs()) + " sequences.");  m->mothurOutEndLine();                         
227                                 //create new group file
228                                 if(outputDir == "") { outputDir += hasPath(groupfile); }
229                                 
230                                 string newGroupFile = outputDir + getRootName(getSimpleName(groupfile)) + "editted.groups";
231                                 outputNames.push_back(newGroupFile);
232                                 ofstream outGroups;
233                                 openOutputFile(newGroupFile, outGroups);
234                                 
235                                 for (int i = 0; i < matrix->getNumSeqs(); i++) {
236                                         if (m->control_pressed) { delete groupMap; delete matrix; outGroups.close(); remove(newGroupFile.c_str()); return 0; }
237                                         
238                                         Names temp = matrix->getRowInfo(i);
239                                         outGroups << temp.seqName << '\t' << temp.groupName << endl;
240                                 }
241                                 outGroups.close();
242                                 
243                                 m->mothurOut(newGroupFile + " is a new group file containing only the sequence that are in your distance file. I will read this file instead."); m->mothurOutEndLine();
244                                 
245                                 //read new groupfile
246                                 delete groupMap; groupMap = NULL;
247                                 groupfile = newGroupFile;
248                                 globaldata->setGroupFile(groupfile); 
249                                 
250                                 groupMap = new GroupMap(groupfile);
251                                 groupMap->readMap();
252                                 
253                                 if (m->control_pressed) { delete groupMap; delete matrix; remove(newGroupFile.c_str()); return 0; }
254         
255                                 globaldata->gGroupmap = groupMap;
256                         }
257                         
258                         //memory leak prevention
259                         if (globaldata->gMatrix != NULL) { delete globaldata->gMatrix;  }
260                         globaldata->gMatrix = matrix; //save matrix for coverage commands
261                         numDists = matrix->getSizes()[1];
262                 } else {
263                         read->read(nameMap);
264                         //to prevent memory leak
265                         
266                         if (m->control_pressed) {  return 0; }
267                 
268                         if (globaldata->gListVector != NULL) {  delete globaldata->gListVector;  }
269                         globaldata->gListVector = read->getListVector();
270
271                         if (globaldata->gSparseMatrix != NULL) { delete globaldata->gSparseMatrix;  }
272                         globaldata->gSparseMatrix = read->getMatrix();
273                         numDists = globaldata->gSparseMatrix->getNNodes();
274                 }
275                 
276                 if (m->control_pressed) {  return 0; }
277
278                 if (outputNames.size() != 0) {
279                         m->mothurOutEndLine();
280                         m->mothurOut("Output File Name: "); m->mothurOutEndLine();
281                         for (int i = 0; i < outputNames.size(); i++) {  m->mothurOut(outputNames[i]); m->mothurOutEndLine();    }
282                         m->mothurOutEndLine();
283                 }
284                 
285                 m->mothurOut("It took " + toString(time(NULL) - start) + " secs to read "); m->mothurOutEndLine();
286                 return 0;
287                 
288         }
289         catch(exception& e) {
290                 m->errorOut(e, "ReadDistCommand", "execute");
291                 exit(1);
292         }
293 }