ARB
Main Page
Namespaces
Classes
Files
File List
File Members
CONVERTALN
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::Paup
Paup()
Definition:
paup.h:10
Paup::nchar
int nchar
Definition:
paup.h:6
Paup
Definition:
paup.h:4
Paup::gap
char gap
Definition:
paup.h:8
Paup::ntax
int ntax
Definition:
paup.h:5
Paup::equate
const char * equate
Definition:
paup.h:7
Generated by
1.8.8