root/trunk/ARB_GDE/GDE_extglob.h

Revision 8309, 1.5 KB (checked in by westram, 5 months ago)
  • moved much code into static scope
  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
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
13enum 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
22class AP_filter;
23
24#ifndef GDE_PROTO_H
25#include "GDE_proto.h"
26#endif
27
28extern Gmenu menu[GDEMAXMENU];
29extern int   num_menus;
30extern int   DataType;
31extern int   FileFormat;
32extern int   OVERWRITE;
33extern int   BlockInput;
34extern char  FileName[80];
35
36#ifdef SeeAlloc
37int TotalCalloc  = 0;
38int TotalRealloc = 0;
39#endif
40
41
42// Months of the year
43extern const char *GDEmonth[12];
44
45// Tables for DNA/RNA <--> ASCII translation
46extern int Default_RNA_Trans[];
47extern int Default_DNA_Trans[];
48extern int Default_NA_RTrans[];
49
50// Character->color lookup table
51extern int Default_NAColor_LKUP[];
52extern int Default_PROColor_LKUP[];
53
54#else
55#error GDE_extglob.h included twice
56#endif // GDE_EXTGLOB_H
Note: See TracBrowser for help on using the browser.