]> git.donarmstrong.com Git - mothur.git/blob - parselistcommand.cpp
451a375d4d705d2831f790fc259a28882e52c393
[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 = input->getListVector();
95                         list = globaldata->glist;
96
97                         //read in group map info.
98                         groupMap = new GroupMap(globaldata->getGroupFile());
99                         groupMap->readMap();
100                         
101                         string seq, label;
102                         int i;
103                         //create new list vectors to fill with parsed data
104                         for (i=0; i<groupMap->getNumGroups(); i++) {
105                                 groupOfLists[groupMap->namesOfGroups[i]] = new ListVector();
106                         }
107                         
108                         //parses and sets each groups listvector
109                         while(list != NULL){
110                                 label = list->getLabel();
111                                 for(i=0; i<list->size(); i++) {
112                                         parse(i); //parses data[i] list of sequence names
113                                         for (it=listGroups.begin(); it != listGroups.end(); it++) {  //loop through map and set new list vectors
114                                                 seq = it->second;
115                                                 seq = seq.substr(1, seq.length()); //rips off extra comma
116                                                 groupOfLists[it->first]->push_back(seq); //sets new listvector for each group
117                                         }
118                                         listGroups.clear();
119                                 }
120                                 //prints each new list file
121                                 for (i=0; i<groupMap->getNumGroups(); i++) {
122                                         groupOfLists[groupMap->namesOfGroups[i]]->setLabel(label);
123                                         groupOfLists[groupMap->namesOfGroups[i]]->print(*(filehandles[groupMap->namesOfGroups[i]]));
124                                         groupOfLists[groupMap->namesOfGroups[i]]->clear();
125                                 }
126                                 list = input->getListVector();
127                         }
128                         
129                         //set groupmap for .shared commands
130                         globaldata->gGroupmap = groupMap; 
131                         
132                         return 0;
133         }
134         catch(exception& e) {
135                 cout << "Standard Error: " << e.what() << " has occurred in the ParseListCommand class Function execute. Please contact Pat Schloss at pschloss@microbio.umass.edu." << "\n";
136                 exit(1);
137         }
138         catch(...) {
139                 cout << "An unknown error has occurred in the ParseListCommand class function execute. Please contact Pat Schloss at pschloss@microbio.umass.edu." << "\n";
140                 exit(1);
141         }
142
143 }
144 //**********************************************************************************************************************
145
146 ParseListCommand::~ParseListCommand(){
147         delete list;
148         delete input;
149         delete read;    
150 }
151 //**********************************************************************************************************************