Last change
on this file was
11886,
checked in by westram, 11 years ago
|
- reintegrates 'cleanup' into 'trunk'
- adds:
|
-
Property svn:eol-style set to
native
-
Property svn:keywords set to
Author Date Id Revision
|
File size:
1.3 KB
|
Line | |
---|
1 | // ================================================================ // |
---|
2 | // // |
---|
3 | // File : GDE_extglob.h // |
---|
4 | // // |
---|
5 | // Institute of Microbiology (Technical University Munich) // |
---|
6 | // http://www.arb-home.de/ // |
---|
7 | // // |
---|
8 | // ================================================================ // |
---|
9 | |
---|
10 | #ifndef GDE_EXTGLOB_H |
---|
11 | #define GDE_EXTGLOB_H |
---|
12 | |
---|
13 | enum GapCompression { |
---|
14 | COMPRESS_NONE = 0, |
---|
15 | COMPRESS_VERTICAL_GAPS = 1, |
---|
16 | COMPRESS_ALL = 2, |
---|
17 | COMPRESS_NONINFO_COLUMNS = 3, |
---|
18 | }; |
---|
19 | |
---|
20 | #define GDEMAXMENU 100 |
---|
21 | |
---|
22 | class AP_filter; |
---|
23 | |
---|
24 | #ifndef GDE_PROTO_H |
---|
25 | #include "GDE_proto.h" |
---|
26 | #endif |
---|
27 | |
---|
28 | extern Gmenu menu[GDEMAXMENU]; |
---|
29 | extern int num_menus; |
---|
30 | extern int DataType; |
---|
31 | extern int FileFormat; |
---|
32 | extern char FileName[80]; |
---|
33 | |
---|
34 | // Months of the year |
---|
35 | extern const char *GDEmonth[12]; |
---|
36 | |
---|
37 | // Tables for DNA/RNA <--> ASCII translation |
---|
38 | extern int Default_RNA_Trans[]; |
---|
39 | extern int Default_DNA_Trans[]; |
---|
40 | extern int Default_NA_RTrans[]; |
---|
41 | |
---|
42 | // Character->color lookup table |
---|
43 | extern int Default_NAColor_LKUP[]; |
---|
44 | extern int Default_PROColor_LKUP[]; |
---|
45 | |
---|
46 | #else |
---|
47 | #error GDE_extglob.h included twice |
---|
48 | #endif // GDE_EXTGLOB_H |
---|
Note: See
TracBrowser
for help on using the repository browser.