| 
    Gamgee
    
   You miserable little maggot. I'll stove your head in! 
   | 
 
#include <stdio.h>#include <errno.h>#include <assert.h>#include <stdlib.h>#include <string.h>#include <zlib.h>#include <sys/types.h>#include <sys/stat.h>#include <math.h>#include <ctype.h>#include "cram/cram.h"#include "cram/os.h"#include "cram/md5.h"Macros | |
| #define | Z_CRAM_STRAT Z_FILTERED | 
| #define | TAG_ID(a) ((#a[0]<<8)+#a[1]) | 
Functions | |
| cram_block * | cram_encode_compression_header (cram_fd *fd, cram_container *c, cram_block_compression_hdr *h) | 
| cram_block * | cram_encode_slice_header (cram_fd *fd, cram_slice *s) | 
| int | cram_encode_container (cram_fd *fd, cram_container *c) | 
| int | cram_put_bam_seq (cram_fd *fd, bam_seq_t *b) | 
| #define TAG_ID | ( | a | ) | ((#a[0]<<8)+#a[1]) | 
| #define Z_CRAM_STRAT Z_FILTERED | 
| cram_block* cram_encode_compression_header | ( | cram_fd * | fd, | 
| cram_container * | c, | ||
| cram_block_compression_hdr * | h | ||
| ) | 
INTERNAL: Encodes a compression header block into a generic cram_block structure.
| int cram_encode_container | ( | cram_fd * | fd, | 
| cram_container * | c | ||
| ) | 
INTERNAL: Encodes all slices in a container into blocks.
FIXME: separate into encode_container and write_container. Ideally we should be able to do read_container / write_container or decode_container / encode_container.
| cram_block* cram_encode_slice_header | ( | cram_fd * | fd, | 
| cram_slice * | s | ||
| ) | 
INTERNAL: Encodes a slice compression header.
 1.8.8