]> git.donarmstrong.com Git - mothur.git/blob - readdistcommand.cpp
added logfile feature
[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 == "") {  mothurOut("You need to provide a namefile if you are going to use the column format."); mothurOutEndLine(); 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 }
145
146 //**********************************************************************************************************************
147 int ReadDistCommand::execute(){
148         try {
149                 
150                 if (abort == true) {    return 0;       }
151                 
152                 if (format == "matrix") {
153                         ifstream in;
154                         openInputFile(distFileName, in);
155                         matrix = new FullMatrix(in); //reads the matrix file
156                         in.close();
157                         //memory leak prevention
158                         if (globaldata->gMatrix != NULL) { delete globaldata->gMatrix;  }
159                         globaldata->gMatrix = matrix; //save matrix for coverage commands
160                 }else {
161                         read->read(nameMap);
162                         //to prevent memory leak
163
164                         if (globaldata->gListVector != NULL) {  delete globaldata->gListVector;  }
165                         globaldata->gListVector = read->getListVector();
166
167                         if (globaldata->gSparseMatrix != NULL) { delete globaldata->gSparseMatrix;  }
168                         globaldata->gSparseMatrix = read->getMatrix();
169                         delete read; delete nameMap;
170
171                 }
172                 return 0;
173         }
174         catch(exception& e) {
175                 errorOut(e, "ReadDistCommand", "execute");
176                 exit(1);
177         }
178 }