ARB
ClustalV.hxx
Go to the documentation of this file.
1 // =============================================================== //
2 // //
3 // File : ClustalV.hxx //
4 // Purpose : Clustal V //
5 // //
6 // Coded by Ralf Westram (coder@reallysoft.de) in June 2008 //
7 // Institute of Microbiology (Technical University Munich) //
8 // http://www.arb-home.de/ //
9 // //
10 // =============================================================== //
11 
12 #ifndef CLUSTALV_HXX
13 #define CLUSTALV_HXX
14 
15 #ifndef ARB_ERROR_H
16 #include <arb_error.h>
17 #endif
18 
19 ARB_ERROR ClustalV_align(int is_dna, int weighted,
20  const char *seq1, int length1, const char *seq2, int length2,
21  const int *gapsBefore1,
22  int max_seq_length,
23  const char*& result1, const char*& result2, int& result_len, int& score);
24 void ClustalV_exit();
25 
26 int baseMatch(char c1, char c2);
27 
28 #else
29 #error ClustalV.hxx included twice
30 #endif // CLUSTALV_HXX
ARB_ERROR ClustalV_align(int is_dna, int weighted, const char *seq1, int length1, const char *seq2, int length2, const int *gapsBefore1, int max_seq_length, const char *&result1, const char *&result2, int &result_len, int &score)
Definition: ClustalV.cxx:971
void ClustalV_exit()
Definition: ClustalV.cxx:1049
Definition: align.cxx:35
int baseMatch(char c1, char c2)
Definition: ClustalV.cxx:249