1 /****************************************************************\
2 *                                                                *
3 *  Model for phased introns.                                     *
4 *                                                                *
5 *  Guy St.C. Slater..   mailto:guy@ebi.ac.uk                     *
6 *  Copyright (C) 2000-2009.  All Rights Reserved.                *
7 *                                                                *
8 *  This source code is distributed under the terms of the        *
9 *  GNU General Public License, version 3. See the file COPYING   *
10 *  or http://www.gnu.org/licenses/gpl.txt for details            *
11 *                                                                *
12 *  If you use this code, please keep this notice intact.         *
13 *                                                                *
14 \****************************************************************/
15 
16 #ifndef INCLUDED_PHASE_H
17 #define INCLUDED_PHASE_H
18 
19 #ifdef __cplusplus
20 extern "C" {
21 #endif /* __cplusplus */
22 
23 #include "c4.h"
24 #include "sequence.h"
25 #include "match.h"
26 
27 C4_Model *Phase_create(gchar *suffix, Match *match,
28                        gboolean on_query, gboolean on_target);
29 
30 #ifdef __cplusplus
31 }
32 #endif /* __cplusplus */
33 
34 #endif /* INCLUDED_PHASE_H */
35 
36