]> git.donarmstrong.com Git - mothur.git/blob - parselistcommand.cpp
5379052d6dd4f1bbfe51b3b346874def78a7b841
[mothur.git] / parselistcommand.cpp
1 /*
2  *  parselistcommand.cpp
3  *  Dotur
4  *
5  *  Created by Sarah Westcott on 1/2/09.
6  *  Copyright 2009 Schloss Lab UMASS Amherst. All rights reserved.
7  *
8  */
9
10 #include "parselistcommand.h"
11
12 //**********************************************************************************************************************
13 ParseListCommand::ParseListCommand(){
14         try {
15                 globaldata = GlobalData::getInstance();
16                 
17                 //read in group map info.
18                 groupMap = new GroupMap(globaldata->getGroupFile());
19                 groupMap->readMap();
20                         
21                 //fill filehandles with neccessary ofstreams
22                 int i;
23                 ofstream* temp;
24                 for (i=0; i<groupMap->getNumGroups(); i++) {
25                         temp = new ofstream;
26                         filehandles[groupMap->namesOfGroups[i]] = temp;
27                 }
28                 
29                 //set fileroot
30                 fileroot = getRootName(globaldata->getListFile());
31                 
32                 //open output list files
33                 for (i=0; i<groupMap->getNumGroups(); i++) {//opens an output file for each group
34                         openOutputFile(fileroot + groupMap->namesOfGroups[i] + ".list", *(filehandles[groupMap->namesOfGroups[i]]));
35                 }
36         }
37         catch(exception& e) {
38                 cout << "Standard Error: " << e.what() << " has occurred in the ParseListCommand class Function ParseListCommand. Please contact Pat Schloss at pschloss@microbio.umass.edu." << "\n";
39                 exit(1);
40         }
41         catch(...) {
42                 cout << "An unknown error has occurred in the ParseListCommand class function ParseListCommand. Please contact Pat Schloss at pschloss@microbio.umass.edu." << "\n";
43                 exit(1);
44         }
45 }
46 /***********************************************************************/
47 void ParseListCommand::parse(int index) {
48         try {
49                 string prefix, suffix, groupsName;
50                 suffix = list->get(index);
51         
52                 while (suffix.find_first_of(',') != -1) {//while you still have sequences
53                         prefix = suffix.substr(0,suffix.find_first_of(','));
54                         if ((suffix.find_first_of(',')+1) <= suffix.length()) {  //checks to make sure you don't have comma at end of string
55                                 suffix = suffix.substr(suffix.find_first_of(',')+1, suffix.length());
56                         }
57                         
58                         groupsName = groupMap->getGroup(prefix);
59                         if (groupsName != "not found") {
60                                 listGroups[groupsName] = listGroups[groupsName] + "," + prefix; //adds prefix to the correct group.
61                         }else {
62                                 cerr << "Error: Sequence '" << prefix << "' was not found in the group file, please correct\n";
63                         }
64                 }
65                 
66                 //save last name after comma
67                 groupsName = groupMap->getGroup(suffix);
68                 if (groupsName != "not found") {
69                         listGroups[groupsName] = listGroups[groupsName] + "," + suffix; //adds prefix to the correct group.
70                 }else {
71                         cerr << "Error: Sequence '" << suffix << "' was not found in the group file, please correct\n";
72                 }
73         }
74         catch(exception& e) {
75                 cout << "Standard Error: " << e.what() << " has occurred in the ParseListCommand class Function parse. Please contact Pat Schloss at pschloss@microbio.umass.edu." << "\n";
76                 exit(1);
77         }
78         catch(...) {
79                 cout << "An unknown error has occurred in the ParseListCommand class function parse. Please contact Pat Schloss at pschloss@microbio.umass.edu." << "\n";
80                 exit(1);
81         }
82 }
83
84 //**********************************************************************************************************************
85
86 int ParseListCommand::execute(){
87         try{
88                         globaldata = GlobalData::getInstance();
89                         
90                         //read in listfile
91                         read = new ReadPhilFile(globaldata->inputFileName);     
92                         read->read(&*globaldata); 
93                         input = globaldata->ginput;
94                         list = globaldata->gSharedList;
95
96                         //read in group map info.
97                         groupMap = new GroupMap(globaldata->getGroupFile());
98                         groupMap->readMap();
99                         
100                         string seq, label;
101                         int i;
102                         //create new list vectors to fill with parsed data
103                         for (i=0; i<groupMap->getNumGroups(); i++) {
104                                 groupOfLists[groupMap->namesOfGroups[i]] = new SharedListVector();
105                         }
106                         
107                         //parses and sets each groups listvector
108                         while(list != NULL){
109                                 label = list->getLabel();
110                                 for(i=0; i<list->size(); i++) {
111                                         parse(i); //parses data[i] list of sequence names
112                                         for (it=listGroups.begin(); it != listGroups.end(); it++) {  //loop through map and set new list vectors
113                                                 seq = it->second;
114                                                 seq = seq.substr(1, seq.length()); //rips off extra comma
115                                                 groupOfLists[it->first]->push_back(seq); //sets new listvector for each group
116                                         }
117                                         listGroups.clear();
118                                 }
119                                 //prints each new list file
120                                 for (i=0; i<groupMap->getNumGroups(); i++) {
121                                         groupOfLists[groupMap->namesOfGroups[i]]->setLabel(label);
122                                         groupOfLists[groupMap->namesOfGroups[i]]->print(*(filehandles[groupMap->namesOfGroups[i]]));
123                                         groupOfLists[groupMap->namesOfGroups[i]]->clear();
124                                 }
125                                 list = input->getSharedListVector();
126                         }
127                         
128                         //set groupmap for .shared commands
129                         globaldata->gGroupmap = groupMap; 
130                         
131                         return 0;
132         }
133         catch(exception& e) {
134                 cout << "Standard Error: " << e.what() << " has occurred in the ParseListCommand class Function execute. Please contact Pat Schloss at pschloss@microbio.umass.edu." << "\n";
135                 exit(1);
136         }
137         catch(...) {
138                 cout << "An unknown error has occurred in the ParseListCommand class function execute. Please contact Pat Schloss at pschloss@microbio.umass.edu." << "\n";
139                 exit(1);
140         }
141
142 }
143 //**********************************************************************************************************************
144
145 ParseListCommand::~ParseListCommand(){
146         delete list;
147         delete input;
148         delete read;    
149 }
150 //**********************************************************************************************************************