-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathpandaseq-algorithm.h
231 lines (189 loc) · 6.38 KB
/
pandaseq-algorithm.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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
/* PANDAseq -- Assemble paired FASTQ Illumina reads and strip the region between amplification primers.
Copyright (C) 2013 Andre Masella
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
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.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef _PANDASEQ_ALGO_H
# define _PANDASEQ_ALGO_H
# ifdef __cplusplus
# define EXTERN_C_BEGIN extern "C" {
# define EXTERN_C_END }
# else
# define EXTERN_C_BEGIN
# define EXTERN_C_END
# endif
# include <stdarg.h>
# include <stdio.h>
# include <stdbool.h>
EXTERN_C_BEGIN
/* === Constants === */
PANDA_EXTERN PandaAlgorithmClass *panda_algorithms;
PANDA_EXTERN size_t panda_algorithms_length;
/**
* Add a new algorithm to the system.
*
* The class information must be in constant memory, as there is no way to unload an algorithm.
*/
void panda_algorithm_register(
PandaAlgorithmClass clazz);
/* === Constructors === */
/**
* Create a new algorithm with the specified amount of storage for the private user data.
*
* @clazz: the structure holding the callbacks.
*/
PandaAlgorithm panda_algorithm_new(
PandaAlgorithmClass clazz);
/* === Getters and Setters === */
/**
* Get the underlying algorithm class.
*/
PandaAlgorithmClass panda_algorithm_class(
PandaAlgorithm algo);
/**
* Get the implementation-defined data for this algorithm.
*/
void *panda_algorithm_data(
PandaAlgorithm algo);
/* === Methods === */
/**
* Compute the log probability of bases matching or mismatching with the
* supplied PHRED scores.
*/
double panda_algorithm_quality_compare(
PandaAlgorithm algorithm,
const panda_qual *a,
const panda_qual *b);
/**
* Checks if an algorithm is a member of a particular class.
*/
bool panda_algorithm_is_a(
PandaAlgorithm algo,
PandaAlgorithmClass clazz);
# define PANDA_ALGORITHM_IS_A(algo, clazz) panda_algorithm_is_a(algo, (PandaAlgorithmClass) ((size_t)&class_ ## clazz 1))
/**
* Increase the reference count on an algorithm.
*/
PandaAlgorithm panda_algorithm_ref(
PandaAlgorithm algo);
/**
* Decrease the reference count on an algorithm.
* @proxy: (transfer full): the algorithm to release.
*/
void panda_algorithm_unref(
PandaAlgorithm algo);
typedef struct panda_algorithm panda_algorithm;
/* === Simple Bayes === */
PANDA_EXTERN const struct panda_algorithm_class panda_algorithm_simple_bayes_class;
# define class_panda_algorithm_simple_bayes panda_algorithm_simple_bayes_class
typedef struct panda_algorithm panda_algorithm_simple_bayes;
/**
* Create a simple Bayesian algorithm.
*/
PandaAlgorithm panda_algorithm_simple_bayes_new(
void);
/**
* The minimum error estimation in the sequence data (epsilon)
*/
double panda_algorithm_simple_bayes_get_error_estimation(
PandaAlgorithm algorithm);
void panda_algorithm_simple_bayes_set_error_estimation(
PandaAlgorithm algorithm,
double q);
/* === Expression Analysis Utils FastqJoin === */
/**
* This algorithm uses the FastqJoin algorithm, from Aronesty 2011, to find the
* best overlap region.
*/
PANDA_EXTERN const struct panda_algorithm_class panda_algorithm_ea_util_class;
# define class_panda_algorithm_ea_util panda_algorithm_ea_util_class;
typedef struct panda_algorithm panda_algorithm_ea_util;
/**
* Create a FastqJoin algorithm from the Expression Analysis Utils.
*/
PandaAlgorithm panda_algorithm_ea_util_new(
void);
/* === FLASH === */
/**
* This algorithm uses the FLASH algorithm, from Magoc 2011, to find the best
* overlap region.
*/
PANDA_EXTERN const struct panda_algorithm_class panda_algorithm_flash_class;
# define class_panda_algorithm_flash panda_algorithm_flash_class;
typedef struct panda_algorithm panda_algorithm_flash;
/**
* Create a FLASH algorithm.
*/
PandaAlgorithm panda_algorithm_flash_new(
void);
/* === PEAR === */
PANDA_EXTERN const struct panda_algorithm_class panda_algorithm_pear_class;
# define class_panda_algorithm_pear panda_algorithm_pear_class
typedef struct panda_algorithm panda_algorithm_pear;
/**
* Create a PEAR algorithm from Zhang 2013.
*/
PandaAlgorithm panda_algorithm_pear_new(
void);
/**
* The log probability of a random base match.
*/
double panda_algorithm_pear_get_random_base_log_p(
PandaAlgorithm algorithm);
void panda_algorithm_pear_set_random_base_log_p(
PandaAlgorithm algorithm,
double log_p);
/* === RDP Maximum Likehood === */
/**
* This algorithm uses a maximum likelihood approach to find the best overlap
* region, and calculates an assembled Q score for each base in the overlap
* region
*/
PANDA_EXTERN const struct panda_algorithm_class panda_algorithm_rdp_mle_class;
# define class_panda_algorithm_rdp_mle panda_algorithm_rdp_mle_class;
typedef struct panda_algorithm panda_algorithm_rdp_mle;
/**
* Create a modified bayesian algorithm from RDP.
*/
PandaAlgorithm panda_algorithm_rdp_mle_new(
void);
/* === Stitch === */
/**
* This algorithm uses the Stitch algorithm, by Austin G. Davis-Richardson, to
* find the best overlap region.
*/
PANDA_EXTERN const struct panda_algorithm_class panda_algorithm_stitch_class;
# define class_panda_algorithm_stitch panda_algorithm_stitch_class;
typedef struct panda_algorithm panda_algorithm_stitch;
/**
* Create a Stitch algorithm.
*/
PandaAlgorithm panda_algorithm_stitch_new(
void);
/* === UPARSE === */
PANDA_EXTERN const struct panda_algorithm_class panda_algorithm_uparse_class;
# define class_panda_algorithm_uparse panda_algorithm_uparse_class
typedef struct panda_algorithm panda_algorithm_uparse;
/**
* Create a simple Bayesian algorithm.
*/
PandaAlgorithm panda_algorithm_uparse_new(
void);
/**
* The minimum error estimation in the sequence data (epsilon)
*/
double panda_algorithm_uparse_get_error_estimation(
PandaAlgorithm algorithm);
void panda_algorithm_uparse_set_error_estimation(
PandaAlgorithm algorithm,
double q);
EXTERN_C_END
#endif