]> git.donarmstrong.com Git - mothur.git/blob - readdistcommand.cpp
fixed some issues while testing 1.6
[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", "precision", "group"};
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                 
33                         //check to make sure all parameters are valid for command
34                         for (map<string,string>::iterator it = parameters.begin(); it != parameters.end(); it++) { 
35                                 if (validParameter.isValidParameter(it->first, myArray, it->second) != true) {  abort = true;  }
36                         }
37                         
38                         globaldata->newRead();
39                         
40                         //check for required parameters
41                         phylipfile = validParameter.validFile(parameters, "phylip", true);
42                         if (phylipfile == "not open") { abort = true; }
43                         else if (phylipfile == "not found") { phylipfile = ""; }        
44                         else {  globaldata->setPhylipFile(phylipfile);  globaldata->setFormat("phylip");        }
45                         
46                         columnfile = validParameter.validFile(parameters, "column", true);
47                         if (columnfile == "not open") { abort = true; } 
48                         else if (columnfile == "not found") { columnfile = ""; }
49                         else {  globaldata->setColumnFile(columnfile); globaldata->setFormat("column"); }
50                         
51                         groupfile = validParameter.validFile(parameters, "group", true);
52                         if (groupfile == "not open") { abort = true; }  
53                         else if (groupfile == "not found") { groupfile = ""; }
54                         else {  
55                                 globaldata->setGroupFile(groupfile); 
56                                 //groupMap = new GroupMap(groupfile);
57                                 //groupMap->readMap();
58                         }
59
60                         namefile = validParameter.validFile(parameters, "name", true);
61                         if (namefile == "not open") { abort = true; }   
62                         else if (namefile == "not found") { namefile = ""; }
63                         else {  globaldata->setNameFile(namefile);      }
64                         
65                         //you are doing a list and group shared
66                         if ((phylipfile != "") && (groupfile != "")) { 
67                         globaldata->setFormat("matrix"); }
68                         
69                         if ((phylipfile == "") && (columnfile == "")) { mothurOut("When executing a read.dist command you must enter a phylip or a column."); mothurOutEndLine(); abort = true; }
70                         else if ((phylipfile != "") && (columnfile != "")) { mothurOut("When executing a read.dist command you must enter ONLY ONE of the following: phylip or column."); mothurOutEndLine(); abort = true; }
71                 
72                         if (columnfile != "") {
73                                 if (namefile == "") {  cout << "You need to provide a namefile if you are going to use the column format." << endl; abort = true; }
74                         }
75                 
76                         //check for optional parameter and set defaults
77                         // ...at some point should added some additional type checking...
78                         //get user cutoff and precision or use defaults
79                         string temp;
80                         temp = validParameter.validFile(parameters, "precision", false);                        if (temp == "not found") { temp = "100"; }
81                         convert(temp, precision); 
82                         
83                         temp = validParameter.validFile(parameters, "cutoff", false);                   if (temp == "not found") { temp = "10"; }
84                         convert(temp, cutoff); 
85                         cutoff += (5 / (precision * 10.0));
86                         
87                         if (abort == false) {
88                                 distFileName = globaldata->inputFileName;
89                                 format = globaldata->getFormat();       
90                 
91                                 if (format == "column") { read = new ReadColumnMatrix(distFileName); }  
92                                 else if (format == "phylip") { read = new ReadPhylipMatrix(distFileName); }
93                                 else if (format == "matrix") { 
94                                         groupMap = new GroupMap(groupfile);
95                                         groupMap->readMap();
96                                         if (globaldata->gGroupmap != NULL) { delete globaldata->gGroupmap;  }
97                                         globaldata->gGroupmap = groupMap;
98                                 }
99                 
100                                 if (format != "matrix" ) {
101                                         read->setCutoff(cutoff);
102         
103                                         if(namefile != ""){     
104                                                 nameMap = new NameAssignment(namefile);
105                                                 nameMap->readMap();
106                                         }else{
107                                                 nameMap = NULL;
108                                         }
109                                 }
110                         }
111
112                 }
113
114         }
115         catch(exception& e) {
116                 errorOut(e, "ReadDistCommand", "ReadDistCommand");
117                 exit(1);
118         }
119 }
120 //**********************************************************************************************************************
121
122 void ReadDistCommand::help(){
123         try {
124                 mothurOut("The read.dist command parameter options are phylip or column, group, name, cutoff and precision\n");
125                 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");
126                 mothurOut("For this use the read.dist command should be in the following format: \n");
127                 mothurOut("read.dist(phylip=yourDistFile, name=yourNameFile, cutoff=yourCutoff, precision=yourPrecision) \n");
128                 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");
129                 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");
130                 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");
131                 mothurOut("For this use the read.dist command should be in the following format: \n");
132                 mothurOut("read.dist(phylip=yourPhylipfile, group=yourGroupFile). The cutoff and precision parameters are not valid with this use.  \n");
133                 mothurOut("Note: No spaces between parameter labels (i.e. phylip), '=' and parameters (i.e.yourPhylipfile).\n\n");
134         }
135         catch(exception& e) {
136                 errorOut(e, "ReadDistCommand", "help");
137                 exit(1);
138         }
139 }
140
141 //**********************************************************************************************************************
142
143 ReadDistCommand::~ReadDistCommand(){
144         if (abort == false) {
145                 if (format != "matrix") { delete read; delete nameMap; }
146         }
147 }
148
149 //**********************************************************************************************************************
150 int ReadDistCommand::execute(){
151         try {
152                 
153                 if (abort == true) {    return 0;       }
154
155                 //time_t start = time(NULL);
156                 size_t numDists = 0;
157                 
158                 if (format == "matrix") {
159                         ifstream in;
160                         openInputFile(distFileName, in);
161                         matrix = new FullMatrix(in); //reads the matrix file
162                         in.close();
163                         //memory leak prevention
164                         if (globaldata->gMatrix != NULL) { delete globaldata->gMatrix;  }
165                         globaldata->gMatrix = matrix; //save matrix for coverage commands
166                         numDists = matrix->getSizes()[1];
167                 } else {
168                         read->read(nameMap);
169                         //to prevent memory leak
170
171                         if (globaldata->gListVector != NULL) {  delete globaldata->gListVector;  }
172                         globaldata->gListVector = read->getListVector();
173
174                         if (globaldata->gSparseMatrix != NULL) { delete globaldata->gSparseMatrix;  }
175                         globaldata->gSparseMatrix = read->getMatrix();
176                         numDists = globaldata->gSparseMatrix->getNNodes();
177  
178       int lines = cutoff / (1.0/precision);
179       vector<float> dist_cutoff(lines+1,0);
180                         for (int i = 0; i <= lines;i++) {       
181         dist_cutoff[i] = (i + 0.5) / precision; 
182       } 
183       vector<int> dist_count(lines+1,0);
184       list<PCell>::iterator currentCell;
185       SparseMatrix* smatrix = globaldata->gSparseMatrix;
186                 for (currentCell = smatrix->begin(); currentCell != smatrix->end(); currentCell++) {
187                                 for (int i = 0; i <= lines;i++) {       
188                                         if (currentCell->dist < dist_cutoff[i]) {
189                                                 dist_count[i]++;
190             break;
191           }
192         }
193                         }
194
195      // string dist_string = "Dist:";
196     //  string count_string = "Count: ";
197                         //for (int i = 0; i <= lines;i++) {     
198         //dist_string = dist_string.append("\t").append(toString(dist_cutoff[i]));
199       //        count_string = count_string.append("\t").append(toString(dist_count[i]));
200                 //      }
201       //mothurOut(dist_string); mothurOutEndLine(); mothurOut(count_string); mothurOutEndLine();
202                 }
203                 //mothurOut("It took " + toString(time(NULL) - start) + " secs to read " + toString(numDists) + " distances (cutoff: " + toString(cutoff) + ")"); mothurOutEndLine();
204                 return 0;
205                 
206         }
207         catch(exception& e) {
208                 errorOut(e, "ReadDistCommand", "execute");
209                 exit(1);
210         }
211 }