Last change
on this file was
8930,
checked in by westram, 12 years ago
|
- pass result parameters to ClustalV_align by reference (using const for result buffers)
|
-
Property svn:eol-style set to
native
-
Property svn:keywords set to
Author Date Id Revision
|
File size:
1.2 KB
|
Line | |
---|
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 |
---|
Note: See
TracBrowser
for help on using the repository browser.