File: sharedsabundvector.cpp

package info (click to toggle)
mothur 1.33.3%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 11,248 kB
  • ctags: 12,231
  • sloc: cpp: 152,046; fortran: 665; makefile: 74; sh: 34
file content (275 lines) | stat: -rw-r--r-- 6,234 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
/*
 *  sharedSharedSAbundVector.cpp
 *  Dotur
 *
 *  Created by Sarah Westcott on 12/10/08.
 *  Copyright 2008 Schloss Lab UMASS Amherst. All rights reserved.
 *
 */

#include "sharedsabundvector.h"
#include "sabundvector.hpp"


/***********************************************************************/

SharedSAbundVector::SharedSAbundVector() : DataVector(), maxRank(0), numBins(0), numSeqs(0){  }

/***********************************************************************/

SharedSAbundVector::SharedSAbundVector(int size) :	DataVector(), maxRank(0), numBins(0), numSeqs(0) {
		individual newGuy;
		//initialize data
		for (int i=0; i< size; i++) {
			newGuy.bin = i;
			newGuy.abundance = 0;
			data.push_back(newGuy);
		}
}

/***********************************************************************/

void SharedSAbundVector::set(int bin, int abundance, string groupName){
	try {

		int initSize = data[bin].abundance;
		data[bin].abundance = abundance;
		data[bin].group = groupName;
	
		if(bin != 0){
			numBins += (abundance - initSize);
		}
	
		numSeqs += bin * (abundance - initSize);
	
		if(bin > maxRank)	{	maxRank = bin;		}
	}
	catch(exception& e) {
		m->errorOut(e, "SharedSAbundVector", "set");
		exit(1);
	}
}

/***********************************************************************/

individual SharedSAbundVector::get(int index){
	return data[index];
}
/***********************************************************************/

int SharedSAbundVector::getAbundance(int index){
	return data[index].abundance;
}

/***********************************************************************/

void SharedSAbundVector::push_back(int abundance, int bin, string groupName){
	try {
		individual newGuy;
		newGuy.abundance = abundance;
		newGuy.bin = bin;
		newGuy.group = groupName;
		
		data.push_back(newGuy);
	
		maxRank++;	
	
		numBins += abundance;
	
		numSeqs += (maxRank * abundance);
	}
	catch(exception& e) {
		m->errorOut(e, "SharedSAbundVector", "push_back");
		exit(1);
	}
}

/***********************************************************************/

void SharedSAbundVector::resize(int size){
	data.resize(size);
}

/***********************************************************************/

int SharedSAbundVector::size(){
	return data.size();		
}

/***********************************************************************/
void SharedSAbundVector::print(ostream& output){
	try {
		output << label << '\t' << maxRank << '\t';
	
		for(int i=1;i<=maxRank;i++){
			output << data[i].abundance << '\t';
		}
		output << endl;
	}
	catch(exception& e) {
		m->errorOut(e, "SharedSAbundVector", "print");
		exit(1);
	}
}
/***********************************************************************/
string SharedSAbundVector::getGroup(){
	return group;
}

/***********************************************************************/

void SharedSAbundVector::setGroup(string groupName){
	group = groupName;
}

/**********************************************************************/
int SharedSAbundVector::getNumBins(){
	return numBins;
}

/***********************************************************************/

int SharedSAbundVector::getNumSeqs(){
	return numSeqs;
}

/***********************************************************************/

int SharedSAbundVector::getMaxRank(){
	return maxRank;
}
/***********************************************************************/
RAbundVector SharedSAbundVector::getRAbundVector(){
	try {
		RAbundVector rav;
	
		for(int i=1;i<data.size();i++){		
			for(int j=0;j<data[i].abundance;j++){
				rav.push_back(i);
			}
		}
		sort(rav.rbegin(), rav.rend());
	
		rav.setLabel(label);
		return rav;
	}
	catch(exception& e) {
		m->errorOut(e, "SharedSAbundVector", "getRAbundVector");
		exit(1);
	}
}
/***********************************************************************/
SAbundVector SharedSAbundVector::getSAbundVector(){
	try {
		RAbundVector rav;
		SAbundVector sav;
		
		rav = getRAbundVector();
		sav = rav.getSAbundVector();
		return sav;
	
	}
	catch(exception& e) {
		m->errorOut(e, "SharedSAbundVector", "getSAbundVector");
		exit(1);
	}
}

/***********************************************************************/

bool compareMembers (individual member, individual member2){

  if(member.abundance < member2.abundance){
    return true;   }   
  else{
	return false; 
  }
}

/***********************************************************************/
SharedRAbundVector SharedSAbundVector::getSharedRAbundVector(){
	try {
		SharedRAbundVector rav;
		
		for(int i=1;i<data.size();i++){		
			for(int j=0;j<data[i].abundance;j++){
				rav.push_back(i, data[i].group);
			}
		}
		sort(rav.rbegin(), rav.rend(), compareMembers);
	
		rav.setLabel(label);
		rav.setGroup(group);
		
		return rav;
	}
	catch(exception& e) {
		m->errorOut(e, "SharedSAbundVector", "getSharedRAbundVector");
		exit(1);
	}
}


/***********************************************************************/

SharedSAbundVector SharedSAbundVector::getSharedSAbundVector(){
	return *this;			
}

/***********************************************************************/
SharedOrderVector SharedSAbundVector::getSharedOrderVector() {
	try {
		SharedRAbundVector rav;
		SharedOrderVector ov;
		
		rav = this->getSharedRAbundVector();
		ov = rav.getSharedOrderVector();
		
		ov.updateStats();
		
		return ov;
	}
	catch(exception& e) {
		m->errorOut(e, "SharedSAbundVector", "getSharedOrderVector");
		exit(1);
	}
}
/***********************************************************************/

void SharedSAbundVector::clear(){
	numBins = 0;
	maxRank = 0;
	numSeqs = 0;
	data.clear();
}

/***********************************************************************/
OrderVector SharedSAbundVector::getOrderVector(map<string,int>* hold = NULL){
	try {
		OrderVector ov;
	
		int binIndex = 0;
	
		for(int i=1;i<data.size();i++){
			for(int j=0;j<data[i].abundance;j++){
				for(int k=0;k<i;k++){
					ov.push_back(binIndex);
				}
				binIndex++;
			}
		}
	
		random_shuffle(ov.begin(), ov.end());

		ov.setLabel(label);
		ov.getNumBins();
		return ov;
	}
	catch(exception& e) {
		m->errorOut(e, "SharedSAbundVector", "getOrderVector");
		exit(1);
	}
}

/***********************************************************************/