]> git.donarmstrong.com Git - mothur.git/blob - collect.cpp
1.10.0
[mothur.git] / collect.cpp
1 /*
2  *  collect.cpp
3  *  Dotur
4  *
5  *  Created by Sarah Westcott on 11/18/08.
6  *  Copyright 2008 Schloss Lab UMASS Amherst. All rights reserved.
7  *
8  */
9
10 #include "collect.h"
11
12 /***********************************************************************/
13
14 int Collect::getCurve(float percentFreq = 0.01){
15         try {
16                 RAbundVector* lookup = new RAbundVector(order->getNumBins());
17                 SAbundVector* rank        = new SAbundVector(order->getMaxRank()+1);
18
19                 CollectorsCurveData* ccd = new CollectorsCurveData();
20         
21                 for(int i=0;i<displays.size();i++){
22                         ccd->registerDisplay(displays[i]); //adds a display[i] to cdd
23                         displays[i]->init(label);                   //sets displays label
24                 }   
25                                 
26                                 //convert freq percentage to number
27                                 int increment = 1;
28                                 if (percentFreq < 1.0) {  increment = numSeqs * percentFreq;  }
29                                 else { increment = percentFreq;  }
30                                                                                                                                                                                                                                                         
31                 for(int i=0;i<numSeqs;i++){
32                                                 
33                                                 if (m->control_pressed) { delete lookup; delete rank; delete ccd;  return 1;  }
34                                                 
35                         int binNumber = order->get(i);
36                         int abundance = lookup->get(binNumber);
37                 
38                         rank->set(abundance, rank->get(abundance)-1); 
39                 
40                         abundance++;
41                 
42                         lookup->set(binNumber, abundance);
43                         rank->set(abundance, rank->get(abundance)+1); //increment rank(abundance)
44
45                         if((i == 0) || (i+1) % increment == 0){
46                                 ccd->updateRankData(rank);
47                         }
48                 }
49         
50                 if(numSeqs % increment != 0){
51                         ccd->updateRankData(rank);
52                 }
53         
54                 for(int i=0;i<displays.size();i++){
55                         displays[i]->reset();
56                 }
57                                 
58                                 delete lookup;
59                                 delete rank;
60                                 delete ccd;
61                                 
62                                 return 0;
63         }
64         catch(exception& e) {
65                         m->errorOut(e, "Collect", "getCurve");
66                         exit(1);
67         }
68 }
69
70 /***********************************************************************/
71 int Collect::getSharedCurve(float percentFreq = 0.01){
72 try {
73                                 globaldata = GlobalData::getInstance();
74                 vector<SharedRAbundVector*> lookup; 
75                                 vector<SharedRAbundVector*> subset;
76
77                 //create and initialize vector of sharedvectors, one for each group
78                 for (int i = 0; i < globaldata->Groups.size(); i++) { 
79                         SharedRAbundVector* temp = new SharedRAbundVector(sharedorder->getNumBins());
80                         temp->setLabel(sharedorder->getLabel());
81                         temp->setGroup(globaldata->Groups[i]);
82                         temp->setGroupIndex(globaldata->gGroupmap->groupIndex[globaldata->Groups[i]]);
83                         lookup.push_back(temp);
84                 }
85
86                 SharedCollectorsCurveData* ccd = new SharedCollectorsCurveData();
87         
88                 //initialize labels for output
89                 //makes  'uniqueAB         uniqueAC  uniqueBC' if your groups are A, B, C
90                 getGroupComb();
91                 groupLabel = ""; 
92                 for (int s = 0; s < groupComb.size(); s++) {
93                         groupLabel = groupLabel + label + groupComb[s] + "\t";
94                 }
95                                 
96                                 //for multi displays
97                                 string groupLabelAll = groupLabel + label + "all\t";
98                                 
99                 for(int i=0;i<displays.size();i++){
100                         ccd->registerDisplay(displays[i]); //adds a display[i] to cdd
101                                                 if ((displays[i]->isCalcMultiple() == true) && (displays[i]->getAll() == true)) {   displays[i]->init(groupLabelAll); }
102                                                 else {  displays[i]->init(groupLabel);  }           
103                 }
104                 
105                                 //convert freq percentage to number
106                                 int increment = 1;
107                                 if (percentFreq < 1.0) {  increment = numSeqs * percentFreq;  }
108                                 else { increment = percentFreq;  }
109                                 
110                 //sample all the members
111                 for(int i=0;i<numSeqs;i++){
112                                 
113                                                 if (m->control_pressed) { for (int j = 0; j < lookup.size(); j++) {  delete lookup[j]; } delete ccd;  return 1;  }
114                                                 
115                         //get first sample
116                         individual chosen = sharedorder->get(i);
117                         int abundance; 
118                                         
119                         //set info for sharedvector in chosens group
120                         for (int j = 0; j < lookup.size(); j++) { 
121                                                         if (chosen.group == lookup[j]->getGroup()) {
122                                                                 abundance = lookup[j]->getAbundance(chosen.bin);
123                                                                 lookup[j]->set(chosen.bin, (abundance + 1), chosen.group);
124                                                                 break;
125                                                         }
126                         }
127         
128                         //calculate at 0 and the given increment
129                         if((i == 0) || (i+1) % increment == 0){
130
131                                                                 //how many comparisons to make i.e. for group a, b, c = ab, ac, bc.
132
133                                 int n = 1;
134                                 for (int k = 0; k < (lookup.size() - 1); k++) { // pass cdd each set of groups to commpare
135                                         for (int l = n; l < lookup.size(); l++) {
136                                                                                                 subset.clear(); //clear out old pair of sharedrabunds
137                                                                                                 //add new pair of sharedrabund vectors
138                                                                                                 subset.push_back(lookup[k]); subset.push_back(lookup[l]);
139                                                 ccd->updateSharedData(subset, i+1, globaldata->Groups.size());
140                                         }
141                                         n++;
142                                 }
143                                                                 //if this is a calculator that can do multiples then do them
144                                                                 ccd->updateSharedData(lookup, i+1, globaldata->Groups.size()); 
145                         }
146                         totalNumSeq = i+1;
147                 }
148                 
149                 //calculate last label if you haven't already
150                 if(numSeqs % increment != 0){
151                         //how many comparisons to make i.e. for group a, b, c = ab, ac, bc.
152                         int n = 1;
153                         for (int k = 0; k < (lookup.size() - 1); k++) { // pass cdd each set of groups to commpare
154                                 for (int l = n; l < lookup.size(); l++) {
155                                                                                 subset.clear(); //clear out old pair of sharedrabunds
156                                                                                 //add new pair of sharedrabund vectors
157                                                                                 subset.push_back(lookup[k]); subset.push_back(lookup[l]);
158                                                                                 ccd->updateSharedData(subset, totalNumSeq, globaldata->Groups.size());
159                                 }
160                                 n++;
161                         }
162                                                 //if this is a calculator that can do multiples then do them
163                                                 ccd->updateSharedData(lookup, totalNumSeq, globaldata->Groups.size()); 
164                 }
165                 
166                 //resets output files
167                 for(int i=0;i<displays.size();i++){
168                         displays[i]->reset();
169                 }
170                                 
171                                 //memory cleanup
172                                 delete ccd;
173                                 for (int i = 0; i < lookup.size(); i++) {
174                                         delete lookup[i];
175                                 }
176                                 
177                                 return 0;
178
179         }
180         catch(exception& e) {
181                 m->errorOut(e, "Collect", "getSharedCurve");
182                                 exit(1);
183         }
184 }
185
186 /**************************************************************************************/
187
188 void Collect::getGroupComb() {
189         string group;
190                 
191         numGroupComb = 0;
192                 
193         int n = 1;
194         for (int i = 0; i < (globaldata->Groups.size() - 1); i++) {
195                 for (int l = n; l < globaldata->Groups.size(); l++) {
196                         group = globaldata->Groups[i] + globaldata->Groups[l];
197                         groupComb.push_back(group);        
198                         numGroupComb++;
199                 }
200                 n++;
201         }
202
203 }
204
205 /**************************************************************************************/