Last change
on this file since 3325 was
3325,
checked in by Peter, 9 years ago
|
new functions phred and phred_inv that calculate phred scaled probability and its inverse, respectively.
|
-
Property svn:eol-style set to
native
-
Property svn:keywords set to
Id
|
File size:
984 bytes
|
Line | |
---|
1 | // $Id: phred.cc 3325 2014-10-07 01:44:54Z peter $ |
---|
2 | |
---|
3 | /* |
---|
4 | Copyright (C) 2014 Peter Johansson |
---|
5 | |
---|
6 | This file is part of the yat library, http://dev.thep.lu.se/yat |
---|
7 | |
---|
8 | The yat library is free software; you can redistribute it and/or |
---|
9 | modify it under the terms of the GNU General Public License as |
---|
10 | published by the Free Software Foundation; either version 3 of the |
---|
11 | License, or (at your option) any later version. |
---|
12 | |
---|
13 | The yat library is distributed in the hope that it will be useful, |
---|
14 | but WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
15 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
---|
16 | General Public License for more details. |
---|
17 | |
---|
18 | You should have received a copy of the GNU General Public License |
---|
19 | along with yat. If not, see <http://www.gnu.org/licenses/>. |
---|
20 | */ |
---|
21 | |
---|
22 | #include <config.h> |
---|
23 | |
---|
24 | #include "phred.h" |
---|
25 | |
---|
26 | #include <cmath> |
---|
27 | |
---|
28 | namespace theplu { |
---|
29 | namespace yat { |
---|
30 | namespace omic { |
---|
31 | |
---|
32 | double phred(double p) |
---|
33 | { |
---|
34 | return - 10 * std::log10(p); |
---|
35 | } |
---|
36 | |
---|
37 | |
---|
38 | double phred_inv(double x) |
---|
39 | { |
---|
40 | return std::pow(10.0, -x/10.0); |
---|
41 | } |
---|
42 | |
---|
43 | }}} |
---|
Note: See
TracBrowser
for help on using the repository browser.