-
Notifications
You must be signed in to change notification settings - Fork 0
/
greedy.h
40 lines (36 loc) · 1.47 KB
/
greedy.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
/*
*
* greedy.h
*
* ---------------------------------------------------------------------------
*
* Copyright (C) 2019-2022 Cosimo Lupo
*
* This source code is distributed as part of the 'indie' software.
* 'indie' (INference on Deletion and InsErtions) is a versatile software
* for evaluation and inference of indel and point substitution hypermutations
* in high-throughput Ig antibody sequencing data, as well as
* for the generation of synthetic repertoires with custom models.
*
* 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 <https://www.gnu.org/licenses/>.
*
* ---------------------------------------------------------------------------
*
* For any issue or question, please send an email to <[email protected]>.
*
*/
#ifndef GREEDY_H
#define GREEDY_H
struct seq_align greedy_likelihood(const string read);
struct seq_align reduced_greedy_likelihood(struct seq_align *pt);
#endif