source:
tags/ms_ra2q2/CONVERTALN/paup.h
Last change on this file was 7046, checked in by westram, 14 years ago | |
---|---|
File size: 448 bytes |
Line | |
---|---|
1 | #ifndef PAUP_H |
2 | #define PAUP_H |
3 | |
4 | struct Paup { |
5 | int ntax; // number of sequences |
6 | int nchar; // max number of chars per sequence |
7 | const char *equate; // equal meaning char |
8 | char gap; // char of gap, default is '-' |
9 | |
10 | Paup() { |
11 | ntax = 0; |
12 | nchar = 0; |
13 | equate = "~=.|><"; |
14 | gap = '-'; |
15 | } |
16 | }; |
17 | |
18 | #else |
19 | #error paup.h included twice |
20 | #endif // PAUP_H |
Note: See TracBrowser
for help on using the repository browser.