]> git.donarmstrong.com Git - mothur.git/blob - distclearcut.h
sffinfo bug with flow grams right index when clipQualRight=0
[mothur.git] / distclearcut.h
1 /*
2  * dist.h
3  *
4  * $Id$
5  *
6  *****************************************************************************
7  *
8  * Copyright (c) 2004,  Luke Sheneman
9  * All rights reserved.
10  *
11  * Redistribution and use in source and binary forms, with or without 
12  * modification, are permitted provided that the following conditions 
13  * are met:
14  * 
15  *  + Redistributions of source code must retain the above copyright 
16  *    notice, this list of conditions and the following disclaimer. 
17  *  + Redistributions in binary form must reproduce the above copyright 
18  *    notice, this list of conditions and the following disclaimer in 
19  *    the documentation and/or other materials provided with the 
20  *    distribution. 
21  *  + The names of its contributors may not be used to endorse or promote 
22  *    products derived  from this software without specific prior 
23  *    written permission. 
24  *
25  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" 
26  * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 
27  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 
28  * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE 
29  * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 
30  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF 
31  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 
32  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 
33  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 
34  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 
35  * POSSIBILITY OF SUCH DAMAGE.  
36  *
37  *****************************************************************************
38  *
39  * Compute a distance matrix given a set of sequences
40  *
41  *****************************************************************************
42  *
43  * AUTHOR:
44  * 
45  *   Luke Sheneman
46  *   sheneman@cs.uidaho.edu
47  *
48  */
49
50
51 #ifndef _INC_DIST_H_
52 #define _INC_DIST_H_ 1
53
54
55 #ifdef __cplusplus
56 extern "C" {
57 #endif
58
59 #include "fasta.h"
60 #include "clearcut.h"
61
62
63
64 /* 
65  * An arbitrarily large distance to represent distances
66  * which are too great to accurately correct.
67  */
68 #define NJ_BIGDIST 10.0  
69
70
71
72 /* some function prototypes */
73 DMAT *
74 NJ_build_distance_matrix(NJ_ARGS *nj_args);
75
76 DMAT *
77 NJ_compute_dmat(NJ_ARGS *nj_args,
78                 NJ_alignment *alignment);
79
80
81 float
82 NJ_pw_percentid(NJ_alignment *alignment,
83                 long int x,
84                 long int y);
85
86 long int
87 NJ_pw_differences(NJ_alignment *alignment,
88                   long int x,
89                   long int y,
90                   long int *residues);
91
92 void
93 NJ_no_correction(DMAT *dmat,
94                  NJ_alignment *alignment);
95
96 void
97 NJ_DNA_jc_correction(DMAT *dmat,
98                      NJ_alignment *alignment);
99
100 void
101 NJ_PROTEIN_jc_correction(DMAT *dmat,
102                          NJ_alignment *alignment);
103
104 void
105 NJ_DNA_k2p_correction(DMAT *dmat,
106                       NJ_alignment *alignment);
107
108 void
109 NJ_PROTEIN_kimura_correction(DMAT *dmat,
110                              NJ_alignment *alignment);
111
112 void
113 NJ_DNA_count_tt(NJ_alignment *alignment,
114                 long int x,
115                 long int y,
116                 long int *transitions,
117                 long int *transversions,
118                 long int *residues);
119
120 #ifdef __cplusplus
121 }
122 #endif
123
124 #endif /* _INC_DIST_H_ */
125
126
127
128
129
130
131
132
133