8 #define drand48() ((double)rand() / RAND_MAX)
12 KSORT_INIT_GENERIC(uint64_t)
15 KSTREAM_INIT(gzFile, gzread, 8192)
24 KHASH_MAP_INIT_STR(reg, bed_reglist_t)
28 typedef kh_reg_t reghash_t;
30 int *bed_index_core(int n, uint64_t *a, int *n_idx)
33 m = *n_idx = 0; idx = 0;
34 for (i = 0; i < n; ++i) {
36 beg = a[i]>>32 >> LIDX_SHIFT; end = ((uint32_t)a[i]) >> LIDX_SHIFT;
41 idx = realloc(idx, m * sizeof(int));
42 for (j = oldm; j < m; ++j) idx[j] = -1;
45 if (idx[beg] < 0) idx[beg] = i;
47 for (j = beg; j <= end; ++j)
48 if (idx[j] < 0) idx[j] = i;
55 void bed_index(void *_h)
57 reghash_t *h = (reghash_t*)_h;
59 for (k = 0; k < kh_end(h); ++k) {
61 bed_reglist_t *p = &kh_val(h, k);
62 if (p->idx) free(p->idx);
63 ks_introsort(uint64_t, p->n, p->a);
64 p->idx = bed_index_core(p->n, p->a, &p->m);
69 int bed_overlap_core(const bed_reglist_t *p, int beg, int end)
72 if (p->n == 0) return 0;
73 min_off = (beg>>LIDX_SHIFT >= p->n)? p->idx[p->n-1] : p->idx[beg>>LIDX_SHIFT];
74 if (min_off < 0) { // TODO: this block can be improved, but speed should not matter too much here
75 int n = beg>>LIDX_SHIFT;
76 if (n > p->n) n = p->n;
77 for (i = n - 1; i >= 0; --i)
78 if (p->idx[i] >= 0) break;
79 min_off = i >= 0? p->idx[i] : 0;
81 for (i = min_off; i < p->n; ++i) {
82 if ((int)(p->a[i]>>32) >= end) break; // out of range; no need to proceed
83 if ((int32_t)p->a[i] > beg && (int32_t)(p->a[i]>>32) < end)
84 return 1; // find the overlap; return
89 int bed_overlap(const void *_h, const char *chr, int beg, int end)
91 const reghash_t *h = (const reghash_t*)_h;
94 k = kh_get(reg, h, chr);
95 if (k == kh_end(h)) return 0;
96 return bed_overlap_core(&kh_val(h, k), beg, end);
99 void *bed_read(const char *fn)
101 reghash_t *h = kh_init(reg);
107 fp = strcmp(fn, "-")? gzopen(fn, "r") : gzdopen(fileno(stdin), "r");
108 if (fp == 0) return 0;
109 str = calloc(1, sizeof(kstring_t));
111 while (ks_getuntil(ks, 0, str, &dret) >= 0) { // read the chr name
112 int beg = -1, end = -1;
114 khint_t k = kh_get(reg, h, str->s);
115 if (k == kh_end(h)) { // absent from the hash table
117 char *s = strdup(str->s);
118 k = kh_put(reg, h, s, &ret);
119 memset(&kh_val(h, k), 0, sizeof(bed_reglist_t));
122 if (dret != '\n') { // if the lines has other characters
123 if (ks_getuntil(ks, 0, str, &dret) > 0 && isdigit(str->s[0])) {
124 beg = atoi(str->s); // begin
126 if (ks_getuntil(ks, 0, str, &dret) > 0 && isdigit(str->s[0])) {
127 end = atoi(str->s); // end
128 if (end < beg) end = -1;
133 if (dret != '\n') while ((dret = ks_getc(ks)) > 0 && dret != '\n'); // skip the rest of the line
134 if (end < 0 && beg > 0) end = beg, beg = beg - 1; // if there is only one column
135 if (beg >= 0 && end > beg) {
137 p->m = p->m? p->m<<1 : 4;
138 p->a = realloc(p->a, p->m * 8);
140 p->a[p->n++] = (uint64_t)beg<<32 | end;
145 free(str->s); free(str);
150 void bed_destroy(void *_h)
152 reghash_t *h = (reghash_t*)_h;
154 for (k = 0; k < kh_end(h); ++k) {
155 if (kh_exist(h, k)) {
156 free(kh_val(h, k).a);
157 free(kh_val(h, k).idx);
158 free((char*)kh_key(h, k));