File: shannon.cpp

package info (click to toggle)
mothur 1.48.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 13,692 kB
  • sloc: cpp: 161,866; makefile: 122; sh: 31
file content (60 lines) | stat: -rwxr-xr-x 1,415 bytes parent folder | download | duplicates (7)
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
/*
 *  shannon.cpp
 *  Dotur
 *
 *  Created by Sarah Westcott on 1/7/09.
 *  Copyright 2009 Schloss Lab UMASS Amherst. All rights reserved.
 *
 */

#include "shannon.h"

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

EstOutput Shannon::getValues(SAbundVector* rank){
	try {
		//vector<double> shannonData(3,0);
		data.resize(3,0);
	
		double shannon = 0.0000;  //hprime
		double hvara=0.0000;
    
		double maxRank = rank->getMaxRank();
		int sampled = rank->getNumSeqs();
		int sobs = rank->getNumBins();
	
		for(int i=1;i<=maxRank;i++){
			double p = ((double) i)/((double)sampled);
			shannon += (double)rank->get(i)*p*log(p); //hprime
			hvara  += (double)rank->get(i)*p*pow(log(p),2);
		}
		shannon = -shannon;
    
		double hvar = (hvara-pow(shannon,2))/(double)sampled+(double)(sobs-1)/(double)(2*sampled*sampled);
    
		double ci = 0;
	
		if(hvar>0){
			ci = 1.96*pow(hvar,0.5);
		}
	
		double shannonhci = shannon + ci;
		double shannonlci = shannon - ci;
		
		data[0] = shannon;
		data[1] = shannonlci;
		data[2] = shannonhci;
		
		if (isnan(data[0]) || isinf(data[0])) { data[0] = 0; }
		if (isnan(data[1]) || isinf(data[1])) { data[1] = 0; }
		if (isnan(data[2]) || isinf(data[2])) { data[2] = 0; }

		return data;
	}
	catch(exception& e) {
		m->errorOut(e, "Shannon", "getValues");
		exit(1);
	}
}

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