-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathalgorithm.html
75 lines (47 loc) · 1.9 KB
/
algorithm.html
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
<!DOCTYPE HTML>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>PIQ</title>
<link rel="stylesheet" href="style.css" TYPE="text/css" MEDIA="screen">
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-47613584-2', 'mit.edu');
ga('send', 'pageview');
</script>
</head>
<body>
<h1><a href="http://piq.csail.mit.edu"><font color="#000000">PIQ: Protein Interaction Quantification</font></a></h1>
<table>
<tr>
<td class="toplinks"><a href="index.html">PIQ Overview</a></td>
<td class="toplinks"><a href="algorithm.html">Algorithm Design</a></td>
<td class="toplinks"><a href="results.html">Binding calls</a></td>
<td class="toplinks"><a href="download.html">Code</a></td>
<td class="toplinks"><a href="contact.html">Contact</a></td>
</tr>
</tr>
<tr><td class="spacer"></td></tr>
<tr><td colspan=6 class="refbody">
<p>An algorithmic description of PIQ can be found in detail in Supplementary Material of the submitted document. In brief, the PIQ algorithm has been tailored to meet several design goals:<br>
<ul>
<li>Resistance to low coverage and noisy data
<li>Integrate multiple experiments, whether replicates or time-series data
<li>High spatial accuracy
<li>Robust worst case behavior
<li>Scalability to thousands of motifs genome-wide
</ul>
To meet these goals our algorithm can be separated into
<ul>
<li>A generative model for reads
<li>A cross-experiment and cross-strand correlation model
<li>A TF binding model
<li>An inference procedure
</ul>
<p>
</td></tr></table>
</body>
</html>