]> git.donarmstrong.com Git - samtools.git/blob - samtools.1
prepare for release 0.1.3
[samtools.git] / samtools.1
1 .TH samtools 1 "15 April 2009" "samtools-0.1.3" "Bioinformatics tools"
2 .SH NAME
3 .PP
4 samtools - Utilities for the Sequence Alignment/Map (SAM) format
5 .SH SYNOPSIS
6 .PP
7 samtools import ref_list.txt aln.sam.gz aln.bam
8 .PP
9 samtools sort aln.bam aln.sorted
10 .PP
11 samtools index aln.sorted.bam
12 .PP
13 samtools view aln.sorted.bam chr2:20,100,000-20,200,000
14 .PP
15 samtools merge out.bam in1.bam in2.bam in3.bam
16 .PP
17 samtools faidx ref.fasta
18 .PP
19 samtools pileup -f ref.fasta aln.sorted.bam
20 .PP
21 samtools tview aln.sorted.bam ref.fasta
22
23 .SH DESCRIPTION
24 .PP
25 Samtools is a set of utilities that manipulate alignments in the BAM
26 format. It imports from and exports to the SAM (Sequence
27 Alignment/Map) format, does sorting, merging and indexing, and
28 allows to retrieve reads in any regions swiftly.
29
30 .SH COMMANDS AND OPTIONS
31 .TP 10
32 .B import
33 samtools import <in.ref_list> <in.sam> <out.bam>
34
35 Convert alignments in SAM format to BAM format. File
36 .I <in.ref_list>
37 is TAB-delimited. Each line must contain the reference name and the
38 length of the reference, one line for each distinct reference;
39 additional fields are ignored. This file also defines the order of the
40 reference sequences in sorting. File
41 .I <in.sam>
42 can be optionally compressed by zlib or gzip. A single hyphen is
43 recognized as stdin or stdout, depending on the context. If you run
44 `samtools faidx <ref.fa>', the resultant index file
45 .I <ref.fa>.fai
46 can be used as this
47 .I <in.ref_list>
48 file.
49
50 .TP
51 .B sort
52 samtools sort [-n] [-m maxMem] <in.bam> <out.prefix>
53
54 Sort alignments by leftmost coordinates. File
55 .I <out.prefix>.bam
56 will be created. This command may also create temporary files
57 .I <out.prefix>.%d.bam
58 when the whole alignment cannot be fitted into memory (controlled by
59 option -m).
60
61 .B OPTIONS:
62 .RS
63 .TP 8
64 .B -n
65 Sort by read names rather than by chromosomal coordinates
66 .TP
67 .B -m INT
68 Approximately the maximum required memory. [500000000]
69 .RE
70
71 .TP
72 .B merge
73 samtools merge [-n] <out.bam> <in1.bam> <in2.bam> [...]
74
75 Merge multiple sorted alignments. The header of
76 .I <in1.bam>
77 will be copied to
78 .I <out.bam>
79 and the headers of other files will be ignored.
80
81 .B OPTIONS:
82 .RS
83 .TP 8
84 .B -n
85 The input alignments are sorted by read names rather than by chromosomal
86 coordinates
87 .RE
88
89 .TP
90 .B index
91 samtools index <aln.bam>
92
93 Index sorted alignment for fast random access. Index file
94 .I <aln.bam>.bai
95 will be created.
96
97 .TP
98 .B view
99 samtools view [-bhH] <in.bam> [region1 [...]]
100
101 Extract/print all or sub alignments in SAM or BAM format. If no region
102 is specified, all the alignments will be printed; otherwise only
103 alignments overlapping with the specified regions will be output. An
104 alignment may be given multiple times if it is overlapping several
105 regions. A region can be presented, for example, in the following
106 format: `chr2', `chr2:1000000' or `chr2:1,000,000-2,000,000'.
107
108 .B OPTIONS:
109 .RS
110 .TP 8
111 .B -b
112 Output in the BAM format.
113 .TP
114 .B -h
115 Include the header in the output.
116 .TP
117 .B -H
118 Output the header only.
119 .RE
120
121 .TP
122 .B faidx
123 samtools faidx <ref.fasta> [region1 [...]]
124
125 Index reference sequence in the FASTA format or extract subsequence from
126 indexed reference sequence. If no region is specified,
127 .B faidx
128 will index the file and create
129 .I <ref.fasta>.fai
130 on the disk. If regions are speficified, the subsequences will be
131 retrieved and printed to stdout in the FASTA format. The input file can
132 be compressed in the
133 .B RAZF
134 format.
135
136 .TP
137 .B pileup
138 samtools pileup [-f in.ref.fasta] [-t in.ref_list] [-l in.site_list]
139 [-iscg] [-T theta] [-N nHap] [-r pairDiffRate] <in.alignment>
140
141 Print the alignment in the pileup format. In the pileup format, each
142 line represents a genomic position, consisting of chromosome name,
143 coordinate, reference base, read bases, read qualities and alignment
144 mapping qualities. Information on match, mismatch, indel, strand,
145 mapping quality and start and end of a read are all encoded at the read
146 base column. At this column, a dot stands for a match to the reference
147 base on the forward strand, a comma for a match on the reverse strand,
148 `ACGTN' for a mismatch on the forward strand and `acgtn' for a mismatch
149 on the reverse strand. A pattern `\\+[0-9]+[ACGTNacgtn]+' indicates
150 there is an insertion between this reference position and the next
151 reference position. The length of the insertion is given by the integer
152 in the pattern, followed by the inserted sequence. Similarly, a pattern
153 `-[0-9]+[ACGTNacgtn]+' represents a deletion from the reference. Also at
154 the read base column, a symbol `^' marks the start of a read segment
155 which is a contiguous subsequence on the read separated by `N/S/H' CIGAR
156 operations. The ASCII of the character following `^' minus 33 gives the
157 mapping quality. A symbol `$' marks the end of a read segment.
158
159 If option
160 .B -c
161 is applied, the consensus base, consensus quality, SNP quality and
162 maximum mapping quality of the reads covering the site will be inserted
163 between the `reference base' and the `read bases' columns. An indel
164 occupies an additional line. Each indel line consists of chromosome
165 name, coordinate, a star, top two high-scoring ins/del sequences, the
166 number of alignments containing the first indel allele, the number of
167 alignments containing the second indel allele, and the number of
168 alignments containing indels different from the top two alleles.
169
170 .B OPTIONS:
171 .RS
172
173 .TP 10
174 .B -s
175 Print the mapping quality as the last column. This option makes the
176 output easier to parse, although this format is not space efficient.
177
178 .TP
179 .B -i
180 Only output pileup lines containing indels.
181
182 .TP
183 .B -f FILE
184 The reference sequence in the FASTA format. Index file
185 .I FILE.fai
186 will be created if
187 absent.
188
189 .TP
190 .B -t FILE
191 List of reference names ane sequence lengths, in the format described
192 for the
193 .B import
194 command. If this option is present, samtools assumes the input
195 .I <in.alignment>
196 is in SAM format; otherwise it assumes in BAM format.
197
198 .TP
199 .B -l FILE
200 List of sites at which pileup is output. This file is space
201 delimited. The first two columns are required to be chromosome and
202 1-based coordinate. Additional columns are ignored. It is
203 recommended to use option
204 .B -s
205 together with
206 .B -l
207 as in the default format we may not know the mapping quality.
208
209 .TP
210 .B -c
211 Call the consensus sequence using MAQ consensus model. Options
212 .B -T,
213 .B -N
214 and
215 .B -r
216 are only effective when
217 .B -c
218 is in use.
219
220 .TP
221 .B -g
222 Generate genotype likelihood in the binary GLFv2 format. This option
223 suppresses -c, -i and -s.
224
225 .TP
226 .B -T FLOAT
227 The theta parameter (error dependency coefficient) in the maq consensus
228 calling model [0.85]
229
230 .TP
231 .B -N INT
232 Number of haplotypes in the sample (>=2) [2]
233
234 .TP
235 .B -r FLOAT
236 Expected fraction of differences between a pair of haplotypes [0.001]
237
238 .RE
239
240 .TP
241 .B tview
242 samtools tview <in.sorted.bam> [ref.fasta]
243
244 Text alignment viewer (based on the ncurses library). In the viewer,
245 press `?' for help and press `g' to check the alignment start from a
246 region in the format like `chr10:10,000,000'. Note that if the region
247 showed on the screen contains no mapped reads, a blank screen will be
248 seen. This is a known issue and will be improved later.
249
250 .RE
251
252 .TP
253 .B fixmate
254 samtools fixmate <in.nameSrt.bam> <out.bam>
255
256 Fill in mate coordinates, ISIZE and mate related flags from a
257 name-sorted alignment.
258
259 .TP
260 .B rmdup
261 samtools rmdup <input.srt.bam> <out.bam>
262
263 Remove potential PCR duplicates: if multiple read pairs have identical
264 external coordinates, only retain the pair with highest mapping quality.
265 This command
266 .B ONLY
267 works with FR orientation and requires ISIZE is correctly set.
268
269 .RE
270
271
272 .SH SAM FORFAM
273
274 SAM is TAB-delimited. Apart from the header lines, which are started
275 with the `@' symbol, each alignment line consists of:
276
277 .TS
278 center box;
279 cb | cb | cb
280 n | l | l .
281 Col     Field   Description
282 _
283 1       QNAME   Query (pair) NAME
284 2       FLAG    bitwise FLAG
285 3       RNAME   Reference sequence NAME
286 4       POS     1-based leftmost POSition/coordinate of clipped sequence
287 5       MAPQ    MAPping Quality (Phred-scaled)
288 6       CIAGR   extended CIGAR string
289 7       MRNM    Mate Reference sequence NaMe (`=' if same as RNAME)
290 8       MPOS    1-based Mate POSistion
291 9       ISIZE   Inferred insert SIZE
292 10      SEQ     query SEQuence on the same strand as the reference
293 11      QUAL    query QUALity (ASCII-33 gives the Phred base quality)
294 12      OPT     variable OPTional fields in the format TAG:VTYPE:VALUE
295 .TE
296
297 .PP
298 Each bit in the FLAG field is defined as:
299
300 .TS
301 center box;
302 cb | cb
303 l | l .
304 Flag    Description
305 _
306 0x0001  the read is paired in sequencing
307 0x0002  the read is mapped in a proper pair
308 0x0004  the query sequence itself is unmapped
309 0x0008  the mate is unmapped
310 0x0010  strand of the query (1 for reverse)
311 0x0020  strand of the mate
312 0x0040  the read is the first read in a pair
313 0x0080  the read is the second read in a pair
314 0x0100  the alignment is not primary
315 0x0200  the read fails platform/vendor quality checks
316 0x0400  the read is either a PCR or an optical duplicate
317 .TE
318
319 .SH LIMITATIONS
320 .PP
321 .IP o 2
322 Reference sequence names and lengths are not acquired from the BAM/SAM header.
323 .IP o 2
324 CIGAR operation P is not properly handled at the moment.
325 .IP o 2
326 The text viewer mysteriously crashes in a very rare case.
327
328 .SH AUTHOR
329 .PP
330 Heng Li from the Sanger Institute wrote the C version of samtools. Bob
331 Handsaker from the Broad Institute implemented the BGZF library and Jue
332 Ruan from Beijing Genomics Institute wrote the RAZF library. Various
333 people in the 1000Genomes Project contributed to the SAM format
334 specification.
335
336 .SH SEE ALSO
337 .PP
338 Samtools website: http://samtools.sourceforge.net