-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathbwa_cal_maxdiff.pl
executable file
·104 lines (83 loc) · 2.71 KB
/
bwa_cal_maxdiff.pl
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
#!/usr/bin/perl
#
# INGLÊS/ENGLISH
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
# http://www.gnu.org/copyleft/gpl.html
#
#
# PORTUGUÊS/PORTUGUESE
# Este programa é distribuído na expectativa de ser útil aos seus
# usuários, porém NÃO TEM NENHUMA GARANTIA, EXPLÍCITAS OU IMPLÍCITAS,
# COMERCIAIS OU DE ATENDIMENTO A UMA DETERMINADA FINALIDADE. Consulte
# a Licença Pública Geral GNU para maiores detalhes.
# http://www.gnu.org/copyleft/gpl.html
#
# Copyright (C) 2010 Fundação Hemocentro de Ribeirão Preto
#
# Laboratório de Genética Molecular e Bioinformática
# Núcleo de Bioinformática
# BiT - Bioinformatics Team
# Fundação Hemocentro de Ribeirão Preto
# Rua Tenente Catão Roxo, 2501
# Ribeirão Preto - São Paulo
# Brasil
# CEP 14051-140
# Fone: 55 16 39639300 Ramal 9603
#
# Daniel Guariz Pinheiro
# http://lgmb.fmrp.usp.br
#
# $Id$
=head1 NAME
bwa_cal_maxdiff.pl - Calculate the k (edit distance) based on parameters.
=head1 SYNOPSIS
# uniform error rate 2%
# sequence length: 36bp
# probability threshold: 4%
$ bwa_cal_maxdiff.pl 36 0.02 0.04
=head1 ABSTRACT
=head1 DESCRIPTION
Calculate the k (edit distance) based on poisson distribution, given the uniform error rate, the threshold probability and the sequence length.
=head1 AUTHOR
Daniel Guariz Pinheiro E<lt>[email protected]<gt>
Copyright (c) 2010 Regional Blood Center of Ribeirão Preto
=head1 LICENSE
GNU General Public License
http://www.gnu.org/copyleft/gpl.html
=cut
use strict;
use warnings;
my $length = $ARGV[0];
die "Missing length" unless ($length);
my $err = $ARGV[1];
die "Missing error" unless ($err);
my $thres = $ARGV[2];
die "Missing threshold" unless ($thres);
print "R: ",&bwa_cal_maxdiff($length, $err, $thres),"\n";
sub bwa_cal_maxdiff {
my ($l, $err, $thres) = @_;
my $elambda = exp(-$l * $err);
my $k = 1;
my $x = 1;
my $sum = $elambda;
my $y = 1;
print "k\ty\tx\tsum\t1-sum\n";
for (;$k<1000;++$k) {
$y*=$l*$err;
$x*=$k;
# sum = soma das probabilidades de que existam "exatamente" k ocorrências (erros) = "no máximo k" ocorrências (erros)
# P(X<=k) = P(X=1)+...+P(X=k)
$sum+=($elambda*$y/$x);
print $k,"\t",$y,"\t",$x,"\t",$sum,"\t",(1-$sum),"\n";
# 1-sum = probabilidade de que existam "no mínimo" k ocorrências (erros)
# P(X>k) = 1-P(X<=k)
if ((1-$sum) < $thres) {
return $k;
}
}
return 2;
}