|
Last change
on this file was
5885,
checked in by westram, 17 years ago
|
- moved fast-aligner to separate library
|
-
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 : awtc_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 AWTC_CLUSTALV_HXX |
|---|
| 13 | #define AWTC_CLUSTALV_HXX |
|---|
| 14 | |
|---|
| 15 | GB_ERROR AWTC_ClustalV_align(int is_dna, int weighted, |
|---|
| 16 | const char *seq1, int length1, const char *seq2, int length2, |
|---|
| 17 | const int *gapsBefore1, |
|---|
| 18 | int max_seq_length, |
|---|
| 19 | char **result1, char **result2, int *result_len, int *score); |
|---|
| 20 | void AWTC_ClustalV_align_exit(void); |
|---|
| 21 | |
|---|
| 22 | int AWTC_baseMatch(char c1, char c2); |
|---|
| 23 | |
|---|
| 24 | #else |
|---|
| 25 | #error awtc_ClustalV.hxx included twice |
|---|
| 26 | #endif // AWTC_CLUSTALV_HXX |
|---|
Note: See
TracBrowser
for help on using the repository browser.