|
Last change
on this file was
8607,
checked in by westram, 14 years ago
|
|
merge from e4fix [8135] [8136] [8137] [8138] [8139] [8140] [8141] [8142] [8143] [8144] [8222]
(this revives the reverted patches [8129] [8130] [8131] [8132]; see [8133])
- fixes
- some free/delete mismatches
- wrong definition of ORF objects (Level was no bit value)
- amino consensus (failed for columns only containing 'C')
- rename
- AA_sequence_term → orf_term
- ED4_sequence_terminal_basic → ED4_abstract_sequence_terminal
- cleaned up hierarchy dumps
- tweaked is_terminal()/to_terminal()
|
-
Property svn:eol-style set to
native
-
Property svn:keywords set to
Author Date Id Revision
|
|
File size:
1.1 KB
|
| Line | |
|---|
| 1 | // =============================================================== // |
|---|
| 2 | // // |
|---|
| 3 | // File : gb_map.h // |
|---|
| 4 | // Purpose : // |
|---|
| 5 | // // |
|---|
| 6 | // Institute of Microbiology (Technical University Munich) // |
|---|
| 7 | // http://www.arb-home.de/ // |
|---|
| 8 | // // |
|---|
| 9 | // =============================================================== // |
|---|
| 10 | |
|---|
| 11 | #ifndef GB_MAP_H |
|---|
| 12 | #define GB_MAP_H |
|---|
| 13 | |
|---|
| 14 | #ifndef GB_LOCAL_H |
|---|
| 15 | #include "gb_local.h" |
|---|
| 16 | #endif |
|---|
| 17 | |
|---|
| 18 | #define ADMAP_ID "ARBDB Mapfile" |
|---|
| 19 | #define ADMAP_ID_LEN 13 |
|---|
| 20 | #define ADMAP_VERSION 5 |
|---|
| 21 | |
|---|
| 22 | struct gb_map_header |
|---|
| 23 | { |
|---|
| 24 | char mapfileID[ADMAP_ID_LEN+1]; |
|---|
| 25 | long version; |
|---|
| 26 | long byte_order; |
|---|
| 27 | GB_MAIN_IDX main_idx; // main_idx used in GBDATA and GBCONTAINER |
|---|
| 28 | long main_data_offset; // offset of Main->data in MAP-File |
|---|
| 29 | }; |
|---|
| 30 | |
|---|
| 31 | #else |
|---|
| 32 | #error gb_map.h included twice |
|---|
| 33 | #endif // GB_MAP_H |
|---|
Note: See
TracBrowser
for help on using the repository browser.