Replace Progs/RNAalifold with x64 binary and add all other programs
[jabaws.git] / binaries / src / ViennaRNA / H / stringdist.h
1 #ifndef __VIENNA_RNA_PACKAGE_STRING_DIST_H__
2 #define __VIENNA_RNA_PACKAGE_STRING_DIST_H__
3
4 /**
5  *  \file stringdist.h
6  *  \brief Functions for String Alignment
7  */
8
9 #include "dist_vars.h"
10
11
12 /**
13  *  \brief Convert a structure into a format suitable for string_edit_distance().
14  * 
15  *  \param string
16  *  \return
17  */
18 swString *Make_swString(char *string);
19
20 /**
21  *  \brief Calculate the string edit distance of T1 and T2.
22  * 
23  *  \param  T1
24  *  \param  T2
25  *  \return
26  */
27 float     string_edit_distance( swString *T1,
28                                 swString *T2);
29
30 #endif