]> git.donarmstrong.com Git - samtools.git/blob - sam_view.c
* samtools-0.1.3-11 (r258)
[samtools.git] / sam_view.c
1 #include <stdlib.h>
2 #include <string.h>
3 #include <stdio.h>
4 #include <unistd.h>
5 #include "sam.h"
6
7 static int g_min_mapQ = 0, g_flag_on = 0, g_flag_off = 0;
8
9 // callback function for bam_fetch()
10 static int view_func(const bam1_t *b, void *data)
11 {
12         if (b->core.qual < g_min_mapQ) return 0;
13         if (g_flag_on && (b->core.flag & g_flag_on) == 0) return 0;
14         if (b->core.flag & g_flag_off) return 0;
15         samwrite((samfile_t*)data, b);
16         return 0;
17 }
18
19 static int usage(void);
20
21 int main_samview(int argc, char *argv[])
22 {
23         int c, is_header = 0, is_header_only = 0, is_bamin = 1, ret = 0;
24         samfile_t *in, *out;
25         char in_mode[4], out_mode[4], *fn_out = 0, *fn_list = 0;
26
27         /* parse command-line options */
28         strcpy(in_mode, "r"); strcpy(out_mode, "w");
29         while ((c = getopt(argc, argv, "bt:hHo:q:f:F:")) >= 0) {
30                 switch (c) {
31                 case 'b': strcat(out_mode, "b"); break;
32                 case 't': fn_list = strdup(optarg); is_bamin = 0; break;
33                 case 'h': is_header = 1; break;
34                 case 'H': is_header_only = 1; break;
35                 case 'o': fn_out = strdup(optarg); break;
36                 case 'f': g_flag_on = strtol(optarg, 0, 0); break;
37                 case 'F': g_flag_on = strtol(optarg, 0, 0); break;
38                 case 'q': g_min_mapQ = atoi(optarg); break;
39                 default: return usage();
40                 }
41         }
42         if (is_header_only) is_header = 1;
43         if (is_bamin) strcat(in_mode, "b");
44         if (is_header) strcat(out_mode, "h");
45         if (argc == optind) return usage();
46
47         // open file handlers
48         in = samopen(argv[optind], in_mode, fn_list);
49         out = samopen(fn_out? fn_out : "-", out_mode, in->header);
50         if (is_header_only) goto view_end; // no need to print alignments
51
52         if (argc == optind + 1) { // convert/print the entire file
53                 bam1_t *b = bam_init1();
54                 int r;
55                 while ((r = samread(in, b)) >= 0) // read one alignment from `in'
56                         samwrite(out, b); // write the alignment to `out'
57                 if (r < -1) fprintf(stderr, "[main_samview] truncated file.\n");
58                 bam_destroy1(b);
59         } else { // retrieve alignments in specified regions
60                 int i;
61                 bam_index_t *idx = 0;
62                 if (is_bamin) idx = bam_index_load(argv[optind]); // load BAM index
63                 if (idx == 0) { // index is unavailable
64                         fprintf(stderr, "[main_samview] random alignment retrieval only works for indexed BAM files.\n");
65                         ret = 1;
66                         goto view_end;
67                 }
68                 for (i = optind + 1; i < argc; ++i) {
69                         int tid, beg, end;
70                         bam_parse_region(in->header, argv[i], &tid, &beg, &end); // parse a region in the format like `chr2:100-200'
71                         if (tid < 0) { // reference name is not found
72                                 fprintf(stderr, "[main_samview] fail to get the reference name. Continue anyway.\n");
73                                 continue;
74                         }
75                         bam_fetch(in->x.bam, idx, tid, beg, end, out, view_func); // fetch alignments
76                 }
77                 bam_index_destroy(idx); // destroy the BAM index
78         }
79
80 view_end:
81         // close files, free and return
82         free(fn_list); free(fn_out);
83         samclose(in);
84         samclose(out);
85         return ret;
86 }
87
88 static int usage()
89 {
90         fprintf(stderr, "\n");
91         fprintf(stderr, "Usage:   samtools view [options] <in.bam>|<in.sam> [region1 [...]]\n\n");
92         fprintf(stderr, "Options: -b       output BAM\n");
93         fprintf(stderr, "         -h       print header for the SAM output\n");
94         fprintf(stderr, "         -H       print header only (no alignments)\n");
95         fprintf(stderr, "         -t FILE  list of reference names and lengths, assuming SAM input [null]\n");
96         fprintf(stderr, "         -o FILE  output file name [stdout]\n");
97         fprintf(stderr, "         -f INT   required flag, 0 for unset [0]\n");
98         fprintf(stderr, "         -F INT   filtering flag, 0 for unset [0]\n");
99         fprintf(stderr, "         -q INT   minimum mapping quality [0]\n");
100         fprintf(stderr, "\n\
101 Notes:\n\
102 \n\
103   1. By default, this command assumes the file on the command line is in\n\
104      the BAM format and it prints the alignments in SAM. If `-t' is\n\
105      applied, the input file is assumed to be in the SAM format. The\n\
106      file supplied with `-t' is SPACE/TAB delimited with the first two\n\
107      fields of each line consisting of the reference name and the\n\
108      corresponding sequence length. The `.fai' file generated by `faidx'\n\
109      can be used here. This file may be empty if reads are unaligned.\n\
110 \n\
111   2. SAM->BAM conversion: `samtools view -bt ref.fa.fai in.sam.gz'.\n\
112 \n\
113   3. BAM->SAM conversion: `samtools view in.bam'.\n\
114 \n\
115   4. A region should be presented in one of the following formats:\n\
116      `chr1', `chr2:1,000' and `chr3:1000-2,000'. When a region is\n\
117      specified, the input alignment file must be an indexed BAM file.\n\
118 \n");
119         return 1;
120 }
121
122 int main_import(int argc, char *argv[])
123 {
124         int argc2, ret;
125         char **argv2;
126         if (argc != 4) {
127                 fprintf(stderr, "Usage: bamtk import <in.ref_list> <in.sam> <out.bam>\n");
128                 return 1;
129         }
130         argc2 = 6;
131         argv2 = calloc(6, sizeof(char*));
132         argv2[0] = "import", argv2[1] = "-o", argv2[2] = argv[3], argv2[3] = "-bt", argv2[4] = argv[1], argv2[5] = argv[2];
133         ret = main_samview(argc2, argv2);
134         free(argv2);
135         return ret;
136 }