]> git.donarmstrong.com Git - mothur.git/blob - splitgroupscommand.cpp
fixes while testing
[mothur.git] / splitgroupscommand.cpp
1 /*
2  *  splitgroupscommand.cpp
3  *  Mothur
4  *
5  *  Created by westcott on 9/20/10.
6  *  Copyright 2010 Schloss Lab. All rights reserved.
7  *
8  */
9
10 #include "splitgroupscommand.h"
11 #include "sharedutilities.h"
12
13 //**********************************************************************************************************************
14 vector<string> SplitGroupCommand::getValidParameters(){ 
15         try {
16                 string Array[] =  {"name","group","groups","fasta","outputdir","inputdir"}; 
17                 vector<string> myArray (Array, Array+(sizeof(Array)/sizeof(string)));
18                 return myArray;
19         }
20         catch(exception& e) {
21                 m->errorOut(e, "SplitGroupCommand", "getValidParameters");
22                 exit(1);
23         }
24 }
25 //**********************************************************************************************************************
26 vector<string> SplitGroupCommand::getRequiredParameters(){      
27         try {
28                 string Array[] =  {"fasta","group"};
29                 vector<string> myArray (Array, Array+(sizeof(Array)/sizeof(string)));
30                 return myArray;
31         }
32         catch(exception& e) {
33                 m->errorOut(e, "SplitGroupCommand", "getRequiredParameters");
34                 exit(1);
35         }
36 }
37 //**********************************************************************************************************************
38 vector<string> SplitGroupCommand::getRequiredFiles(){   
39         try {
40                 vector<string> myArray;
41                 return myArray;
42         }
43         catch(exception& e) {
44                 m->errorOut(e, "SplitGroupCommand", "getRequiredFiles");
45                 exit(1);
46         }
47 }
48 //**********************************************************************************************************************
49 SplitGroupCommand::SplitGroupCommand(){ 
50         try {
51                 abort = true;
52                 //initialize outputTypes
53                 vector<string> tempOutNames;
54                 outputTypes["fasta"] = tempOutNames;
55                 outputTypes["name"] = tempOutNames;
56         }
57         catch(exception& e) {
58                 m->errorOut(e, "SplitGroupCommand", "SplitGroupCommand");
59                 exit(1);
60         }
61 }
62 //**********************************************************************************************************************
63 SplitGroupCommand::SplitGroupCommand(string option)  {
64         try {
65                 abort = false;
66                         
67                 //allow user to run help
68                 if(option == "help") { help(); abort = true; }
69                 
70                 else {
71                         //valid paramters for this command
72                         string Array[] =  {"name","group","groups","fasta","outputdir","inputdir"}; 
73                         vector<string> myArray (Array, Array+(sizeof(Array)/sizeof(string)));
74                         
75                         OptionParser parser(option);
76                         map<string, string> parameters = parser.getParameters();
77                         
78                         ValidParameters validParameter;
79                         map<string, string>::iterator it;
80                 
81                         //check to make sure all parameters are valid for command
82                         for (it = parameters.begin(); it != parameters.end(); it++) { 
83                                 if (validParameter.isValidParameter(it->first, myArray, it->second) != true) {  abort = true;  }
84                         }
85                         
86                         //initialize outputTypes
87                         vector<string> tempOutNames;
88                         outputTypes["fasta"] = tempOutNames;
89                         outputTypes["name"] = tempOutNames;
90                 
91                         //if the user changes the input directory command factory will send this info to us in the output parameter 
92                         string inputDir = validParameter.validFile(parameters, "inputdir", false);              
93                         if (inputDir == "not found"){   inputDir = "";          }
94                         else {
95                                 string path;
96                                 it = parameters.find("group");
97                                 //user has given a template file
98                                 if(it != parameters.end()){ 
99                                         path = m->hasPath(it->second);
100                                         //if the user has not given a path then, add inputdir. else leave path alone.
101                                         if (path == "") {       parameters["group"] = inputDir + it->second;            }
102                                 }
103                                 
104                                 it = parameters.find("fasta");
105                                 //user has given a template file
106                                 if(it != parameters.end()){ 
107                                         path = m->hasPath(it->second);
108                                         //if the user has not given a path then, add inputdir. else leave path alone.
109                                         if (path == "") {       parameters["fasta"] = inputDir + it->second;            }
110                                 }
111                                 
112                                 it = parameters.find("name");
113                                 //user has given a template file
114                                 if(it != parameters.end()){ 
115                                         path = m->hasPath(it->second);
116                                         //if the user has not given a path then, add inputdir. else leave path alone.
117                                         if (path == "") {       parameters["name"] = inputDir + it->second;             }
118                                 }
119
120                         }
121
122                         
123                         namefile = validParameter.validFile(parameters, "name", true);
124                         if (namefile == "not open") { abort = true; }
125                         else if (namefile == "not found") { namefile = ""; }    
126                 
127                         fastafile = validParameter.validFile(parameters, "fasta", true);
128                         if (fastafile == "not open") { abort = true; }
129                         else if (fastafile == "not found") { fastafile = ""; m->mothurOut("fasta is a required parameter for the split.group command. "); m->mothurOutEndLine(); abort = true;  }       
130                         
131                         groupfile = validParameter.validFile(parameters, "group", true);
132                         if (groupfile == "not open") {  groupfile = ""; abort = true; } 
133                         else if (groupfile == "not found") { groupfile = ""; m->mothurOut("group is a required parameter for the split.group command. "); m->mothurOutEndLine(); abort = true; }
134                         
135                         groups = validParameter.validFile(parameters, "groups", false);         
136                         if (groups == "not found") { groups = ""; }
137                         else { m->splitAtDash(groups, Groups);  }
138                                                 
139                         //if the user changes the output directory command factory will send this info to us in the output parameter 
140                         outputDir = validParameter.validFile(parameters, "outputdir", false);           if (outputDir == "not found"){  outputDir = m->hasPath(groupfile);      }
141                 }
142
143         }
144         catch(exception& e) {
145                 m->errorOut(e, "SplitGroupCommand", "SplitAbundCommand");
146                 exit(1);
147         }
148 }
149 //**********************************************************************************************************************
150 void SplitGroupCommand::help(){
151         try {
152                 m->mothurOut("The split.group command reads a group file, and parses your fasta and names files by groups. \n");
153                 m->mothurOut("The split.group command parameters are fasta, name, group and groups.\n");
154                 m->mothurOut("The fasta and group parameters are required.\n");
155                 m->mothurOut("The groups parameter allows you to select groups to create files for.  \n");
156                 m->mothurOut("For example if you set groups=A-B-C, you will get a .A.fasta, .A.names, .B.fasta, .B.names, .C.fasta, .C.names files.  \n");
157                 m->mothurOut("If you want .fasta and .names files for all groups, set groups=all.  \n");
158                 m->mothurOut("The split.group command should be used in the following format: split.group(fasta=yourFasta, group=yourGroupFile).\n");
159                 m->mothurOut("Example: split.group(fasta=abrecovery.fasta, group=abrecovery.groups).\n");
160                 m->mothurOut("Note: No spaces between parameter labels (i.e. fasta), '=' and parameters (i.e.yourFasta).\n\n");
161
162         }
163         catch(exception& e) {
164                 m->errorOut(e, "SplitGroupCommand", "help");
165                 exit(1);
166         }
167 }
168 //**********************************************************************************************************************
169 SplitGroupCommand::~SplitGroupCommand(){ }
170 //**********************************************************************************************************************
171 int SplitGroupCommand::execute(){
172         try {
173         
174                 if (abort == true) {    return 0;       }
175                 
176                 groupMap = new GroupMap(groupfile);
177                 groupMap->readMap();
178                 
179                 SharedUtil util;  util.setGroups(Groups, groupMap->namesOfGroups);  
180                 
181                 if (namefile != "") {  readNames();  }
182                 splitFasta();
183                 
184                 delete groupMap;
185                 
186                 if (m->control_pressed) { for (int i = 0; i < outputNames.size(); i++) {        remove(outputNames[i].c_str()); } return 0; }
187                 
188                 m->mothurOutEndLine();
189                 m->mothurOut("Output File Names: "); m->mothurOutEndLine();
190                 for (int i = 0; i < outputNames.size(); i++) {  m->mothurOut(outputNames[i]); m->mothurOutEndLine();    }
191                 m->mothurOutEndLine();
192                 
193                 return 0;
194         }
195         catch(exception& e) {
196                 m->errorOut(e, "SplitGroupCommand", "execute");
197                 exit(1);
198         }
199 }
200 /**********************************************************************************************************************/
201 int SplitGroupCommand::readNames() { 
202         try {
203                 //open input file
204                 ifstream in;
205                 m->openInputFile(namefile, in);
206                 
207                 while (!in.eof()) {
208                         if (m->control_pressed) { break; }
209                         
210                         string firstCol, secondCol;
211                         in >> firstCol >> secondCol; m->gobble(in);
212                         
213                         vector<string> names;
214                         m->splitAtComma(secondCol, names);
215                         
216                         nameMap[firstCol] = names;
217                 }
218                 in.close();
219                                 
220                 return 0;
221
222         }
223         catch(exception& e) {
224                 m->errorOut(e, "SplitGroupCommand", "readNames");
225                 exit(1);
226         }
227 }
228
229 /**********************************************************************************************************************/
230 int SplitGroupCommand::splitFasta() { 
231         try {
232                 
233                 string filerootFasta =  outputDir + m->getRootName(m->getSimpleName(fastafile));
234                 string filerootName =  outputDir + m->getRootName(m->getSimpleName(namefile));
235                 ofstream* temp;
236                 ofstream* temp2;
237                 map<string, ofstream*> filehandles;
238                 map<string, ofstream*>::iterator it3;
239
240                 for (int i=0; i<Groups.size(); i++) {
241                         temp = new ofstream;
242                         filehandles[Groups[i]+"fasta"] = temp;
243                         m->openOutputFile(filerootFasta + Groups[i] + ".fasta", *(filehandles[Groups[i]+"fasta"]));
244                         outputNames.push_back(filerootFasta + Groups[i] + ".fasta"); outputTypes["fasta"].push_back(filerootFasta + Groups[i] + ".fasta");
245                         
246                         if (namefile != "") {
247                                 temp2 = new ofstream;
248                                 filehandles[Groups[i]+"name"] = temp2;
249                                 m->openOutputFile(filerootName + Groups[i] + ".names", *(filehandles[Groups[i]+"name"]));
250                                 outputNames.push_back(filerootName + Groups[i] + ".names"); outputTypes["name"].push_back(filerootFasta + Groups[i] + ".names");
251                         }
252                 }
253                         
254                 //open input file
255                 ifstream in;
256                 m->openInputFile(fastafile, in);
257         
258                 while (!in.eof()) {
259                         if (m->control_pressed) { break; }
260                 
261                         Sequence seq(in); m->gobble(in);
262                                 
263                         if (seq.getName() != "") { 
264                                 
265                                 itNames = nameMap.find(seq.getName());
266                                 
267                                 if (itNames == nameMap.end()) {
268                                         if (namefile != "") {  m->mothurOut(seq.getName() + " is not in your namesfile, ignoring."); m->mothurOutEndLine();  }
269                                         else { //no names file given
270                                                 string group = groupMap->getGroup(seq.getName());
271                                                 
272                                                 if (m->inUsersGroups(group, Groups)) { //only add if this is in a group we want
273                                                         seq.printSequence(*(filehandles[group+"fasta"]));
274                                                 }else if(group == "not found") {
275                                                         m->mothurOut(seq.getName() + " is not in your groupfile. Ignoring."); m->mothurOutEndLine();
276                                                 }
277                                         }
278                                 }else{
279                                         vector<string> names = itNames->second;
280                                         map<string, string> group2Names;
281                                         map<string, string>::iterator it;
282                                         
283                                         for (int i = 0; i < names.size(); i++) {  //build strings for new group names file, will select rep below
284                                                 string group = groupMap->getGroup(names[i]);
285                                                 
286                                                 if (m->inUsersGroups(group, Groups)) { //only add if this is in a group we want
287                                                         it = group2Names.find(group);
288                                                         if (it == group2Names.end()) {
289                                                                 group2Names[group] = names[i] + ",";
290                                                         }else{
291                                                                 group2Names[group] += names[i] + ",";
292                                                         }
293                                                 }else if(group == "not found") {
294                                                         m->mothurOut(names[i] + " is not in your groupfile. Ignoring."); m->mothurOutEndLine();
295                                                 }
296                                         }
297                                 
298                                         for (map<string, string>::iterator itGroups = group2Names.begin(); itGroups != group2Names.end(); itGroups++) {
299                                                 //edit names string, by grabbing the first guy as the rep and removing the last comma
300                                                 string newNames = itGroups->second;
301                                                 newNames = newNames.substr(0, newNames.length()-1); 
302                                                 string repName = "";
303                                                 
304                                                 int pos = newNames.find_first_of(',');
305                                                 if (pos == newNames.npos) { //only one sequence so it represents itself
306                                                         repName = newNames;
307                                                 }else{
308                                                         repName = newNames.substr(0, pos);
309                                                 }
310                                                 
311                                                 *(filehandles[itGroups->first+"name"]) << repName << '\t' << newNames << endl;
312                                                 *(filehandles[itGroups->first+"fasta"]) << ">" << repName << endl << seq.getAligned() << endl;
313                                         }
314                                 }
315                         }
316                 }
317                         
318                 in.close();
319                         
320                 for (it3 = filehandles.begin(); it3 != filehandles.end(); it3++) { 
321                         (*(filehandles[it3->first])).close();
322                         delete it3->second;
323                 }
324                                 
325                 return 0;
326
327         }
328         catch(exception& e) {
329                 m->errorOut(e, "SplitGroupCommand", "splitFasta");
330                 exit(1);
331         }
332 }
333 /**********************************************************************************************************************/
334