-
Notifications
You must be signed in to change notification settings - Fork 16
/
log_tool.h
106 lines (86 loc) · 2.47 KB
/
log_tool.h
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
/* The MIT License
Copyright (c) 2013 Adrian Tan <atks@umich.edu>
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
*/
#ifndef LOG_TOOL_H
#define LOG_TOOL_H
#include <assert.h>
#include <climits>
#include <cmath>
#include <stdint.h>
#include <cstdlib>
#include <cstring>
#include <float.h>
#include <iostream>
#include <map>
#include <queue>
#include <vector>
#define LOGZERO -DBL_MAX
/**
* Class implementing log space arithmetic.
*/
class LogTool
{
private:
std::vector<double> PL;
std::vector<double> PL_one_minus_p;
std::vector<double> LOG10_VARP;
std::vector<double> LOG10FACT;
public:
LogTool () {};
/**
* Convert -10log(p) to p.
*/
double pl2prob(uint32_t PL);
/**
* Convert -10log(p) to -10log(1-p).
*/
double pl2pl_one_minus_p(uint32_t pl);
/**
* Convert -10log(p) to log10(sqrt(e(1-e))).
*/
double pl2log10_varp(uint32_t PL);
/**
* Convert probabilities to PHRED score.
*/
uint32_t prob2pl(double x);
/**
* Compute log(x)
*/
double log10(double x);
/**
* Compute log(xy)
*/
double log10prod(double x, double y);
/**
* Compute log(x+y)
*/
double log10sum(double x, double y);
/**
* Compute log10 factorial x.
*/
double log10fact(uint32_t x);
/**
* Compute log10 nCr
*/
double log10choose(uint32_t n, uint32_t r);
/**
* Round a value
*/
double round(double x);
};
#endif