Imported Upstream version 0.1.6
[tabix.git] / tabix.h
1 /* The MIT License
2
3    Copyright (c) 2009 Genome Research Ltd (GRL), 2010 Broad Institute
4
5    Permission is hereby granted, free of charge, to any person obtaining
6    a copy of this software and associated documentation files (the
7    "Software"), to deal in the Software without restriction, including
8    without limitation the rights to use, copy, modify, merge, publish,
9    distribute, sublicense, and/or sell copies of the Software, and to
10    permit persons to whom the Software is furnished to do so, subject to
11    the following conditions:
12
13    The above copyright notice and this permission notice shall be
14    included in all copies or substantial portions of the Software.
15
16    THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17    EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18    MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19    NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
20    BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
21    ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
22    CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
23    SOFTWARE.
24 */
25
26 /* Contact: Heng Li <lh3@live.co.uk> */
27
28 #ifndef __TABIDX_H
29 #define __TABIDX_H
30
31 #include <stdint.h>
32 #include "kstring.h"
33 #include "bgzf.h"
34
35 #define TI_PRESET_GENERIC 0
36 #define TI_PRESET_SAM     1
37 #define TI_PRESET_VCF     2
38
39 #define TI_FLAG_UCSC      0x10000
40
41 typedef int (*ti_fetch_f)(int l, const char *s, void *data);
42
43 struct __ti_index_t;
44 typedef struct __ti_index_t ti_index_t;
45
46 struct __ti_iter_t;
47 typedef struct __ti_iter_t *ti_iter_t;
48
49 typedef struct {
50         int32_t preset;
51         int32_t sc, bc, ec; // seq col., beg col. and end col.
52         int32_t meta_char, line_skip;
53 } ti_conf_t;
54
55 extern ti_conf_t ti_conf_gff, ti_conf_bed, ti_conf_psltbl, ti_conf_vcf, ti_conf_sam; // preset
56
57 #ifdef __cplusplus
58 extern "C" {
59 #endif
60
61         /* Build the index for file <fn>. File <fn>.tbi will be generated
62          * and overwrite the file of the same name. Return -1 on failure. */
63         int ti_index_build(const char *fn, const ti_conf_t *conf);
64
65         /* Load the index from file <fn>.tbi. If <fn> is a URL and the index
66          * file is not in the working directory, <fn>.tbi will be
67          * downloaded. Return NULL on failure. */
68         ti_index_t *ti_index_load(const char *fn);
69
70         /* Destroy the index */
71         void ti_index_destroy(ti_index_t *idx);
72
73         /* Get the list of sequence names. Each "char*" pointer points to a
74          * internal member of the index, so DO NOT modify the returned
75          * pointer; otherwise the index will be corrupted. The returned
76          * pointer should be freed by a single free() call by the routine
77          * calling this function. The number of sequences is returned at *n. */
78         const char **ti_seqname(const ti_index_t *idx, int *n);
79
80         /* Parse a region like: chr2, chr2:100, chr2:100-200. Return -1 on failure. */
81         int ti_parse_region(ti_index_t *idx, const char *str, int *tid, int *begin, int *end);
82
83         /* Get the iterator pointing to the first record at the current file
84          * position. If the file is just openned, the iterator points to the
85          * first record in the file. */
86         ti_iter_t ti_first(BGZF *fp);
87
88         /* Get the iterator pointing to the first record in region tid:beg-end */
89         ti_iter_t ti_query(BGZF *fp, const ti_index_t *idx, int tid, int beg, int end);
90
91         /* Get the data line pointed by the iterator and iterate to the next record. */
92         const char *ti_iter_read(ti_iter_t iter, int *len);
93
94         /* Destroy the iterator */
95         void ti_iter_destroy(ti_iter_t iter);
96
97         /* The callback version for random access */
98         int ti_fetch(BGZF *fp, const ti_index_t *idx, int tid, int beg, int end, void *data, ti_fetch_f func);
99
100         /* Read one line. */
101         int ti_readline(BGZF *fp, kstring_t *str);
102
103 #ifdef __cplusplus
104 }
105 #endif
106
107 #endif