ARB
paup.h
Go to the documentation of this file.
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
Paup()
Definition: paup.h:10
int nchar
Definition: paup.h:6
Definition: paup.h:4
char gap
Definition: paup.h:8
int ntax
Definition: paup.h:5
const char * equate
Definition: paup.h:7