5 * Created by Sarah Westcott on 11/18/08.
6 * Copyright 2008 Schloss Lab UMASS Amherst. All rights reserved.
12 /***********************************************************************/
14 int Collect::getCurve(float percentFreq = 0.01){
16 RAbundVector* lookup = new RAbundVector(order->getNumBins());
17 SAbundVector* rank = new SAbundVector(order->getMaxRank()+1);
19 CollectorsCurveData* ccd = new CollectorsCurveData();
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
26 //convert freq percentage to number
28 if (percentFreq < 1.0) { increment = numSeqs * percentFreq; }
29 else { increment = percentFreq; }
31 for(int i=0;i<numSeqs;i++){
33 if (m->control_pressed) { delete lookup; delete rank; delete ccd; return 1; }
35 int binNumber = order->get(i);
36 int abundance = lookup->get(binNumber);
38 rank->set(abundance, rank->get(abundance)-1);
42 lookup->set(binNumber, abundance);
43 rank->set(abundance, rank->get(abundance)+1); //increment rank(abundance)
45 if((i == 0) || (i+1) % increment == 0){
46 ccd->updateRankData(rank);
50 if(numSeqs % increment != 0){
51 ccd->updateRankData(rank);
54 for(int i=0;i<displays.size();i++){
65 m->errorOut(e, "Collect", "getCurve");
70 /***********************************************************************/
71 int Collect::getSharedCurve(float percentFreq = 0.01){
73 globaldata = GlobalData::getInstance();
74 vector<SharedRAbundVector*> lookup;
75 vector<SharedRAbundVector*> subset;
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);
86 SharedCollectorsCurveData* ccd = new SharedCollectorsCurveData();
88 //initialize labels for output
89 //makes 'uniqueAB uniqueAC uniqueBC' if your groups are A, B, C
92 for(int i=0;i<displays.size();i++){
93 ccd->registerDisplay(displays[i]); //adds a display[i] to cdd
94 bool hasLciHci = displays[i]->hasLciHci();
96 for (int s = 0; s < groupComb.size(); s++) {
97 if (hasLciHci) { groupLabel = groupLabel + label + groupComb[s] + "\t" + label + groupComb[s] + "lci\t" + label + groupComb[s] + "hci\t"; }
98 else{ groupLabel = groupLabel + label + groupComb[s] + "\t"; }
101 string groupLabelAll = groupLabel + label + "all\t";
102 if ((displays[i]->isCalcMultiple() == true) && (displays[i]->getAll() == true)) { displays[i]->init(groupLabelAll); }
103 else { displays[i]->init(groupLabel); }
106 //convert freq percentage to number
108 if (percentFreq < 1.0) { increment = numSeqs * percentFreq; }
109 else { increment = percentFreq; }
111 //sample all the members
112 for(int i=0;i<numSeqs;i++){
114 if (m->control_pressed) { for (int j = 0; j < lookup.size(); j++) { delete lookup[j]; } delete ccd; return 1; }
117 individual chosen = sharedorder->get(i);
120 //set info for sharedvector in chosens group
121 for (int j = 0; j < lookup.size(); j++) {
122 if (chosen.group == lookup[j]->getGroup()) {
123 abundance = lookup[j]->getAbundance(chosen.bin);
124 lookup[j]->set(chosen.bin, (abundance + 1), chosen.group);
129 //calculate at 0 and the given increment
130 if((i == 0) || (i+1) % increment == 0){
132 //how many comparisons to make i.e. for group a, b, c = ab, ac, bc.
135 for (int k = 0; k < (lookup.size() - 1); k++) { // pass cdd each set of groups to commpare
136 for (int l = n; l < lookup.size(); l++) {
137 subset.clear(); //clear out old pair of sharedrabunds
138 //add new pair of sharedrabund vectors
139 subset.push_back(lookup[k]); subset.push_back(lookup[l]);
140 ccd->updateSharedData(subset, i+1, globaldata->Groups.size());
144 //if this is a calculator that can do multiples then do them
145 ccd->updateSharedData(lookup, i+1, globaldata->Groups.size());
150 //calculate last label if you haven't already
151 if(numSeqs % increment != 0){
152 //how many comparisons to make i.e. for group a, b, c = ab, ac, bc.
154 for (int k = 0; k < (lookup.size() - 1); k++) { // pass cdd each set of groups to commpare
155 for (int l = n; l < lookup.size(); l++) {
156 subset.clear(); //clear out old pair of sharedrabunds
157 //add new pair of sharedrabund vectors
158 subset.push_back(lookup[k]); subset.push_back(lookup[l]);
159 ccd->updateSharedData(subset, totalNumSeq, globaldata->Groups.size());
163 //if this is a calculator that can do multiples then do them
164 ccd->updateSharedData(lookup, totalNumSeq, globaldata->Groups.size());
167 //resets output files
168 for(int i=0;i<displays.size();i++){
169 displays[i]->reset();
174 for (int i = 0; i < lookup.size(); i++) {
181 catch(exception& e) {
182 m->errorOut(e, "Collect", "getSharedCurve");
187 /**************************************************************************************/
189 void Collect::getGroupComb() {
195 for (int i = 0; i < (globaldata->Groups.size() - 1); i++) {
196 for (int l = n; l < globaldata->Groups.size(); l++) {
197 group = globaldata->Groups[i] + globaldata->Groups[l];
198 groupComb.push_back(group);
206 /**************************************************************************************/