Mercurial > repos > lsong10 > psiclass
comparison PsiCLASS-1.0.2/samtools-0.1.19/sam_view.c @ 0:903fc43d6227 draft default tip
Uploaded
author | lsong10 |
---|---|
date | Fri, 26 Mar 2021 16:52:45 +0000 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:903fc43d6227 |
---|---|
1 #include <stdlib.h> | |
2 #include <string.h> | |
3 #include <stdio.h> | |
4 #include <unistd.h> | |
5 #include <math.h> | |
6 #include <inttypes.h> | |
7 #include "sam_header.h" | |
8 #include "sam.h" | |
9 #include "faidx.h" | |
10 #include "kstring.h" | |
11 #include "khash.h" | |
12 KHASH_SET_INIT_STR(rg) | |
13 | |
14 // When counting records instead of printing them, | |
15 // data passed to the bam_fetch callback is encapsulated in this struct. | |
16 typedef struct { | |
17 bam_header_t *header; | |
18 int64_t *count; // int does overflow for very big BAMs | |
19 } count_func_data_t; | |
20 | |
21 typedef khash_t(rg) *rghash_t; | |
22 | |
23 // FIXME: we'd better use no global variables... | |
24 static rghash_t g_rghash = 0; | |
25 static int g_min_mapQ = 0, g_flag_on = 0, g_flag_off = 0, g_qual_scale = 0, g_min_qlen = 0; | |
26 static uint32_t g_subsam_seed = 0; | |
27 static double g_subsam_frac = -1.; | |
28 static char *g_library, *g_rg; | |
29 static void *g_bed; | |
30 | |
31 void *bed_read(const char *fn); | |
32 void bed_destroy(void *_h); | |
33 int bed_overlap(const void *_h, const char *chr, int beg, int end); | |
34 | |
35 static int process_aln(const bam_header_t *h, bam1_t *b) | |
36 { | |
37 if (g_qual_scale > 1) { | |
38 int i; | |
39 uint8_t *qual = bam1_qual(b); | |
40 for (i = 0; i < b->core.l_qseq; ++i) { | |
41 int c = qual[i] * g_qual_scale; | |
42 qual[i] = c < 93? c : 93; | |
43 } | |
44 } | |
45 if (g_min_qlen > 0) { | |
46 int k, qlen = 0; | |
47 uint32_t *cigar = bam1_cigar(b); | |
48 for (k = 0; k < b->core.n_cigar; ++k) | |
49 if ((bam_cigar_type(bam_cigar_op(cigar[k]))&1) || bam_cigar_op(cigar[k]) == BAM_CHARD_CLIP) | |
50 qlen += bam_cigar_oplen(cigar[k]); | |
51 if (qlen < g_min_qlen) return 1; | |
52 } | |
53 if (b->core.qual < g_min_mapQ || ((b->core.flag & g_flag_on) != g_flag_on) || (b->core.flag & g_flag_off)) | |
54 return 1; | |
55 if (g_bed && b->core.tid >= 0 && !bed_overlap(g_bed, h->target_name[b->core.tid], b->core.pos, bam_calend(&b->core, bam1_cigar(b)))) | |
56 return 1; | |
57 if (g_subsam_frac > 0.) { | |
58 uint32_t k = __ac_X31_hash_string(bam1_qname(b)) + g_subsam_seed; | |
59 if ((double)(k&0xffffff) / 0x1000000 >= g_subsam_frac) return 1; | |
60 } | |
61 if (g_rg || g_rghash) { | |
62 uint8_t *s = bam_aux_get(b, "RG"); | |
63 if (s) { | |
64 if (g_rg) return (strcmp(g_rg, (char*)(s + 1)) == 0)? 0 : 1; | |
65 if (g_rghash) { | |
66 khint_t k = kh_get(rg, g_rghash, (char*)(s + 1)); | |
67 return (k != kh_end(g_rghash))? 0 : 1; | |
68 } | |
69 } | |
70 } | |
71 if (g_library) { | |
72 const char *p = bam_get_library((bam_header_t*)h, b); | |
73 return (p && strcmp(p, g_library) == 0)? 0 : 1; | |
74 } | |
75 return 0; | |
76 } | |
77 | |
78 static char *drop_rg(char *hdtxt, rghash_t h, int *len) | |
79 { | |
80 char *p = hdtxt, *q, *r, *s; | |
81 kstring_t str; | |
82 memset(&str, 0, sizeof(kstring_t)); | |
83 while (1) { | |
84 int toprint = 0; | |
85 q = strchr(p, '\n'); | |
86 if (q == 0) q = p + strlen(p); | |
87 if (q - p < 3) break; // the line is too short; then stop | |
88 if (strncmp(p, "@RG\t", 4) == 0) { | |
89 int c; | |
90 khint_t k; | |
91 if ((r = strstr(p, "\tID:")) != 0) { | |
92 r += 4; | |
93 for (s = r; *s != '\0' && *s != '\n' && *s != '\t'; ++s); | |
94 c = *s; *s = '\0'; | |
95 k = kh_get(rg, h, r); | |
96 *s = c; | |
97 if (k != kh_end(h)) toprint = 1; | |
98 } | |
99 } else toprint = 1; | |
100 if (toprint) { | |
101 kputsn(p, q - p, &str); kputc('\n', &str); | |
102 } | |
103 p = q + 1; | |
104 } | |
105 *len = str.l; | |
106 return str.s; | |
107 } | |
108 | |
109 // callback function for bam_fetch() that prints nonskipped records | |
110 static int view_func(const bam1_t *b, void *data) | |
111 { | |
112 if (!process_aln(((samfile_t*)data)->header, (bam1_t*)b)) | |
113 samwrite((samfile_t*)data, b); | |
114 return 0; | |
115 } | |
116 | |
117 // callback function for bam_fetch() that counts nonskipped records | |
118 static int count_func(const bam1_t *b, void *data) | |
119 { | |
120 if (!process_aln(((count_func_data_t*)data)->header, (bam1_t*)b)) { | |
121 (*((count_func_data_t*)data)->count)++; | |
122 } | |
123 return 0; | |
124 } | |
125 | |
126 static int usage(int is_long_help); | |
127 | |
128 int main_samview(int argc, char *argv[]) | |
129 { | |
130 int c, is_header = 0, is_header_only = 0, is_bamin = 1, ret = 0, compress_level = -1, is_bamout = 0, is_count = 0; | |
131 int of_type = BAM_OFDEC, is_long_help = 0, n_threads = 0; | |
132 int64_t count = 0; | |
133 samfile_t *in = 0, *out = 0; | |
134 char in_mode[5], out_mode[5], *fn_out = 0, *fn_list = 0, *fn_ref = 0, *fn_rg = 0, *q; | |
135 | |
136 /* parse command-line options */ | |
137 strcpy(in_mode, "r"); strcpy(out_mode, "w"); | |
138 while ((c = getopt(argc, argv, "SbBct:h1Ho:q:f:F:ul:r:xX?T:R:L:s:Q:@:m:")) >= 0) { | |
139 switch (c) { | |
140 case 's': | |
141 if ((g_subsam_seed = strtol(optarg, &q, 10)) != 0) { | |
142 srand(g_subsam_seed); | |
143 g_subsam_seed = rand(); | |
144 } | |
145 g_subsam_frac = strtod(q, &q); | |
146 break; | |
147 case 'm': g_min_qlen = atoi(optarg); break; | |
148 case 'c': is_count = 1; break; | |
149 case 'S': is_bamin = 0; break; | |
150 case 'b': is_bamout = 1; break; | |
151 case 't': fn_list = strdup(optarg); is_bamin = 0; break; | |
152 case 'h': is_header = 1; break; | |
153 case 'H': is_header_only = 1; break; | |
154 case 'o': fn_out = strdup(optarg); break; | |
155 case 'f': g_flag_on = strtol(optarg, 0, 0); break; | |
156 case 'F': g_flag_off = strtol(optarg, 0, 0); break; | |
157 case 'q': g_min_mapQ = atoi(optarg); break; | |
158 case 'u': compress_level = 0; break; | |
159 case '1': compress_level = 1; break; | |
160 case 'l': g_library = strdup(optarg); break; | |
161 case 'L': g_bed = bed_read(optarg); break; | |
162 case 'r': g_rg = strdup(optarg); break; | |
163 case 'R': fn_rg = strdup(optarg); break; | |
164 case 'x': of_type = BAM_OFHEX; break; | |
165 case 'X': of_type = BAM_OFSTR; break; | |
166 case '?': is_long_help = 1; break; | |
167 case 'T': fn_ref = strdup(optarg); is_bamin = 0; break; | |
168 case 'B': bam_no_B = 1; break; | |
169 case 'Q': g_qual_scale = atoi(optarg); break; | |
170 case '@': n_threads = strtol(optarg, 0, 0); break; | |
171 default: return usage(is_long_help); | |
172 } | |
173 } | |
174 if (compress_level >= 0) is_bamout = 1; | |
175 if (is_header_only) is_header = 1; | |
176 if (is_bamout) strcat(out_mode, "b"); | |
177 else { | |
178 if (of_type == BAM_OFHEX) strcat(out_mode, "x"); | |
179 else if (of_type == BAM_OFSTR) strcat(out_mode, "X"); | |
180 } | |
181 if (is_bamin) strcat(in_mode, "b"); | |
182 if (is_header) strcat(out_mode, "h"); | |
183 if (compress_level >= 0) { | |
184 char tmp[2]; | |
185 tmp[0] = compress_level + '0'; tmp[1] = '\0'; | |
186 strcat(out_mode, tmp); | |
187 } | |
188 if (argc == optind) return usage(is_long_help); // potential memory leak... | |
189 | |
190 // read the list of read groups | |
191 if (fn_rg) { | |
192 FILE *fp_rg; | |
193 char buf[1024]; | |
194 int ret; | |
195 g_rghash = kh_init(rg); | |
196 fp_rg = fopen(fn_rg, "r"); | |
197 while (!feof(fp_rg) && fscanf(fp_rg, "%s", buf) > 0) // this is not a good style, but bear me... | |
198 kh_put(rg, g_rghash, strdup(buf), &ret); // we'd better check duplicates... | |
199 fclose(fp_rg); | |
200 } | |
201 | |
202 // generate the fn_list if necessary | |
203 if (fn_list == 0 && fn_ref) fn_list = samfaipath(fn_ref); | |
204 // open file handlers | |
205 if ((in = samopen(argv[optind], in_mode, fn_list)) == 0) { | |
206 fprintf(stderr, "[main_samview] fail to open \"%s\" for reading.\n", argv[optind]); | |
207 ret = 1; | |
208 goto view_end; | |
209 } | |
210 if (in->header == 0) { | |
211 fprintf(stderr, "[main_samview] fail to read the header from \"%s\".\n", argv[optind]); | |
212 ret = 1; | |
213 goto view_end; | |
214 } | |
215 if (g_rghash) { // FIXME: I do not know what "bam_header_t::n_text" is for... | |
216 char *tmp; | |
217 int l; | |
218 tmp = drop_rg(in->header->text, g_rghash, &l); | |
219 free(in->header->text); | |
220 in->header->text = tmp; | |
221 in->header->l_text = l; | |
222 } | |
223 if (!is_count && (out = samopen(fn_out? fn_out : "-", out_mode, in->header)) == 0) { | |
224 fprintf(stderr, "[main_samview] fail to open \"%s\" for writing.\n", fn_out? fn_out : "standard output"); | |
225 ret = 1; | |
226 goto view_end; | |
227 } | |
228 if (n_threads > 1) samthreads(out, n_threads, 256); | |
229 if (is_header_only) goto view_end; // no need to print alignments | |
230 | |
231 if (argc == optind + 1) { // convert/print the entire file | |
232 bam1_t *b = bam_init1(); | |
233 int r; | |
234 while ((r = samread(in, b)) >= 0) { // read one alignment from `in' | |
235 if (!process_aln(in->header, b)) { | |
236 if (!is_count) samwrite(out, b); // write the alignment to `out' | |
237 count++; | |
238 } | |
239 } | |
240 if (r < -1) { | |
241 fprintf(stderr, "[main_samview] truncated file.\n"); | |
242 ret = 1; | |
243 } | |
244 bam_destroy1(b); | |
245 } else { // retrieve alignments in specified regions | |
246 int i; | |
247 bam_index_t *idx = 0; | |
248 if (is_bamin) idx = bam_index_load(argv[optind]); // load BAM index | |
249 if (idx == 0) { // index is unavailable | |
250 fprintf(stderr, "[main_samview] random alignment retrieval only works for indexed BAM files.\n"); | |
251 ret = 1; | |
252 goto view_end; | |
253 } | |
254 for (i = optind + 1; i < argc; ++i) { | |
255 int tid, beg, end, result; | |
256 bam_parse_region(in->header, argv[i], &tid, &beg, &end); // parse a region in the format like `chr2:100-200' | |
257 if (tid < 0) { // reference name is not found | |
258 fprintf(stderr, "[main_samview] region \"%s\" specifies an unknown reference name. Continue anyway.\n", argv[i]); | |
259 continue; | |
260 } | |
261 // fetch alignments | |
262 if (is_count) { | |
263 count_func_data_t count_data = { in->header, &count }; | |
264 result = bam_fetch(in->x.bam, idx, tid, beg, end, &count_data, count_func); | |
265 } else | |
266 result = bam_fetch(in->x.bam, idx, tid, beg, end, out, view_func); | |
267 if (result < 0) { | |
268 fprintf(stderr, "[main_samview] retrieval of region \"%s\" failed due to truncated file or corrupt BAM index file\n", argv[i]); | |
269 ret = 1; | |
270 break; | |
271 } | |
272 } | |
273 bam_index_destroy(idx); // destroy the BAM index | |
274 } | |
275 | |
276 view_end: | |
277 if (is_count && ret == 0) | |
278 printf("%" PRId64 "\n", count); | |
279 | |
280 // close files, free and return | |
281 free(fn_list); free(fn_ref); free(fn_out); free(g_library); free(g_rg); free(fn_rg); | |
282 if (g_bed) bed_destroy(g_bed); | |
283 if (g_rghash) { | |
284 khint_t k; | |
285 for (k = 0; k < kh_end(g_rghash); ++k) | |
286 if (kh_exist(g_rghash, k)) free((char*)kh_key(g_rghash, k)); | |
287 kh_destroy(rg, g_rghash); | |
288 } | |
289 samclose(in); | |
290 if (!is_count) | |
291 samclose(out); | |
292 return ret; | |
293 } | |
294 | |
295 static int usage(int is_long_help) | |
296 { | |
297 fprintf(stderr, "\n"); | |
298 fprintf(stderr, "Usage: samtools view [options] <in.bam>|<in.sam> [region1 [...]]\n\n"); | |
299 fprintf(stderr, "Options: -b output BAM\n"); | |
300 fprintf(stderr, " -h print header for the SAM output\n"); | |
301 fprintf(stderr, " -H print header only (no alignments)\n"); | |
302 fprintf(stderr, " -S input is SAM\n"); | |
303 fprintf(stderr, " -u uncompressed BAM output (force -b)\n"); | |
304 fprintf(stderr, " -1 fast compression (force -b)\n"); | |
305 fprintf(stderr, " -x output FLAG in HEX (samtools-C specific)\n"); | |
306 fprintf(stderr, " -X output FLAG in string (samtools-C specific)\n"); | |
307 fprintf(stderr, " -c print only the count of matching records\n"); | |
308 fprintf(stderr, " -B collapse the backward CIGAR operation\n"); | |
309 fprintf(stderr, " -@ INT number of BAM compression threads [0]\n"); | |
310 fprintf(stderr, " -L FILE output alignments overlapping the input BED FILE [null]\n"); | |
311 fprintf(stderr, " -t FILE list of reference names and lengths (force -S) [null]\n"); | |
312 fprintf(stderr, " -T FILE reference sequence file (force -S) [null]\n"); | |
313 fprintf(stderr, " -o FILE output file name [stdout]\n"); | |
314 fprintf(stderr, " -R FILE list of read groups to be outputted [null]\n"); | |
315 fprintf(stderr, " -f INT required flag, 0 for unset [0]\n"); | |
316 fprintf(stderr, " -F INT filtering flag, 0 for unset [0]\n"); | |
317 fprintf(stderr, " -q INT minimum mapping quality [0]\n"); | |
318 fprintf(stderr, " -l STR only output reads in library STR [null]\n"); | |
319 fprintf(stderr, " -r STR only output reads in read group STR [null]\n"); | |
320 fprintf(stderr, " -s FLOAT fraction of templates to subsample; integer part as seed [-1]\n"); | |
321 fprintf(stderr, " -? longer help\n"); | |
322 fprintf(stderr, "\n"); | |
323 if (is_long_help) | |
324 fprintf(stderr, "Notes:\n\ | |
325 \n\ | |
326 1. By default, this command assumes the file on the command line is in\n\ | |
327 the BAM format and it prints the alignments in SAM. If `-t' is\n\ | |
328 applied, the input file is assumed to be in the SAM format. The\n\ | |
329 file supplied with `-t' is SPACE/TAB delimited with the first two\n\ | |
330 fields of each line consisting of the reference name and the\n\ | |
331 corresponding sequence length. The `.fai' file generated by `faidx'\n\ | |
332 can be used here. This file may be empty if reads are unaligned.\n\ | |
333 \n\ | |
334 2. SAM->BAM conversion: `samtools view -bT ref.fa in.sam.gz'.\n\ | |
335 \n\ | |
336 3. BAM->SAM conversion: `samtools view in.bam'.\n\ | |
337 \n\ | |
338 4. A region should be presented in one of the following formats:\n\ | |
339 `chr1', `chr2:1,000' and `chr3:1000-2,000'. When a region is\n\ | |
340 specified, the input alignment file must be an indexed BAM file.\n\ | |
341 \n\ | |
342 5. Option `-u' is preferred over `-b' when the output is piped to\n\ | |
343 another samtools command.\n\ | |
344 \n\ | |
345 6. In a string FLAG, each character represents one bit with\n\ | |
346 p=0x1 (paired), P=0x2 (properly paired), u=0x4 (unmapped),\n\ | |
347 U=0x8 (mate unmapped), r=0x10 (reverse), R=0x20 (mate reverse)\n\ | |
348 1=0x40 (first), 2=0x80 (second), s=0x100 (not primary), \n\ | |
349 f=0x200 (failure) and d=0x400 (duplicate). Note that `-x' and\n\ | |
350 `-X' are samtools-C specific. Picard and older samtools do not\n\ | |
351 support HEX or string flags.\n\ | |
352 \n"); | |
353 return 1; | |
354 } | |
355 | |
356 int main_import(int argc, char *argv[]) | |
357 { | |
358 int argc2, ret; | |
359 char **argv2; | |
360 if (argc != 4) { | |
361 fprintf(stderr, "Usage: bamtk import <in.ref_list> <in.sam> <out.bam>\n"); | |
362 return 1; | |
363 } | |
364 argc2 = 6; | |
365 argv2 = calloc(6, sizeof(char*)); | |
366 argv2[0] = "import", argv2[1] = "-o", argv2[2] = argv[3], argv2[3] = "-bt", argv2[4] = argv[1], argv2[5] = argv[2]; | |
367 ret = main_samview(argc2, argv2); | |
368 free(argv2); | |
369 return ret; | |
370 } | |
371 | |
372 int8_t seq_comp_table[16] = { 0, 8, 4, 12, 2, 10, 9, 14, 1, 6, 5, 13, 3, 11, 7, 15 }; | |
373 | |
374 int main_bam2fq(int argc, char *argv[]) | |
375 { | |
376 bamFile fp; | |
377 bam_header_t *h; | |
378 bam1_t *b; | |
379 int8_t *buf; | |
380 int max_buf, c, no12 = 0; | |
381 while ((c = getopt(argc, argv, "n")) > 0) | |
382 if (c == 'n') no12 = 1; | |
383 if (argc == 1) { | |
384 fprintf(stderr, "Usage: samtools bam2fq <in.bam>\n"); | |
385 return 1; | |
386 } | |
387 fp = strcmp(argv[optind], "-")? bam_open(argv[optind], "r") : bam_dopen(fileno(stdin), "r"); | |
388 if (fp == 0) return 1; | |
389 h = bam_header_read(fp); | |
390 b = bam_init1(); | |
391 buf = 0; | |
392 max_buf = 0; | |
393 while (bam_read1(fp, b) >= 0) { | |
394 int i, qlen = b->core.l_qseq; | |
395 uint8_t *seq; | |
396 putchar('@'); fputs(bam1_qname(b), stdout); | |
397 if (no12) putchar('\n'); | |
398 else { | |
399 if ((b->core.flag & 0x40) && !(b->core.flag & 0x80)) puts("/1"); | |
400 else if ((b->core.flag & 0x80) && !(b->core.flag & 0x40)) puts("/2"); | |
401 else putchar('\n'); | |
402 } | |
403 if (max_buf < qlen + 1) { | |
404 max_buf = qlen + 1; | |
405 kroundup32(max_buf); | |
406 buf = realloc(buf, max_buf); | |
407 } | |
408 buf[qlen] = 0; | |
409 seq = bam1_seq(b); | |
410 for (i = 0; i < qlen; ++i) | |
411 buf[i] = bam1_seqi(seq, i); | |
412 if (b->core.flag & 16) { // reverse complement | |
413 for (i = 0; i < qlen>>1; ++i) { | |
414 int8_t t = seq_comp_table[buf[qlen - 1 - i]]; | |
415 buf[qlen - 1 - i] = seq_comp_table[buf[i]]; | |
416 buf[i] = t; | |
417 } | |
418 if (qlen&1) buf[i] = seq_comp_table[buf[i]]; | |
419 } | |
420 for (i = 0; i < qlen; ++i) | |
421 buf[i] = bam_nt16_rev_table[buf[i]]; | |
422 puts((char*)buf); | |
423 puts("+"); | |
424 seq = bam1_qual(b); | |
425 for (i = 0; i < qlen; ++i) | |
426 buf[i] = 33 + seq[i]; | |
427 if (b->core.flag & 16) { // reverse | |
428 for (i = 0; i < qlen>>1; ++i) { | |
429 int8_t t = buf[qlen - 1 - i]; | |
430 buf[qlen - 1 - i] = buf[i]; | |
431 buf[i] = t; | |
432 } | |
433 } | |
434 puts((char*)buf); | |
435 } | |
436 free(buf); | |
437 bam_destroy1(b); | |
438 bam_header_destroy(h); | |
439 bam_close(fp); | |
440 return 0; | |
441 } |