]> git.donarmstrong.com Git - samtools.git/blob - samtools.1
* samtools-0.1.6-2 (r458)
[samtools.git] / samtools.1
1 .TH samtools 1 "2 September 2009" "samtools-0.1.6" "Bioinformatics tools"
2 .SH NAME
3 .PP
4 samtools - Utilities for the Sequence Alignment/Map (SAM) format
5 .SH SYNOPSIS
6 .PP
7 samtools view -bt ref_list.txt -o aln.bam aln.sam.gz
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 Alignment/Map)
27 format, does sorting, merging and indexing, and allows to retrieve reads
28 in any regions swiftly.
29
30 Samtools is designed to work on a stream. It regards an input file `-'
31 as the standard input (stdin) and an output file `-' as the standard
32 output (stdout). Several commands can thus be combined with Unix
33 pipes. Samtools always output warning and error messages to the standard
34 error output (stderr).
35
36 Samtools is also able to open a BAM (not SAM) file on a remote FTP or
37 HTTP server if the BAM file name starts with `ftp://' or `http://'.
38 Samtools checks the current working directory for the index file and
39 will download the index upon absence. Samtools does not retrieve the
40 entire alignment file unless it is asked to do so.
41
42 .SH COMMANDS AND OPTIONS
43
44 .TP 10
45 .B import
46 samtools import <in.ref_list> <in.sam> <out.bam>
47
48 Since 0.1.4, this command is an alias of:
49
50 samtools view -bt <in.ref_list> -o <out.bam> <in.sam>
51
52 .TP
53 .B sort
54 samtools sort [-n] [-m maxMem] <in.bam> <out.prefix>
55
56 Sort alignments by leftmost coordinates. File
57 .I <out.prefix>.bam
58 will be created. This command may also create temporary files
59 .I <out.prefix>.%d.bam
60 when the whole alignment cannot be fitted into memory (controlled by
61 option -m).
62
63 .B OPTIONS:
64 .RS
65 .TP 8
66 .B -n
67 Sort by read names rather than by chromosomal coordinates
68 .TP
69 .B -m INT
70 Approximately the maximum required memory. [500000000]
71 .RE
72
73 .TP
74 .B merge
75 samtools merge [-h inh.sam] [-n] <out.bam> <in1.bam> <in2.bam> [...]
76
77 Merge multiple sorted alignments.
78 The header reference lists of all the input BAM files, and the @SQ headers of
79 .IR inh.sam ,
80 if any, must all refer to the same set of reference sequences.
81 The header reference list and (unless overridden by
82 .BR -h )
83 `@' headers of
84 .I in1.bam
85 will be copied to
86 .IR out.bam ,
87 and the headers of other files will be ignored.
88
89 .B OPTIONS:
90 .RS
91 .TP 8
92 .B -h FILE
93 Use the lines of
94 .I FILE
95 as `@' headers to be copied to
96 .IR out.bam ,
97 replacing any header lines that would otherwise be copied from
98 .IR in1.bam .
99 .RI ( FILE
100 is actually in SAM format, though any alignment records it may contain
101 are ignored.)
102 .TP
103 .B -n
104 The input alignments are sorted by read names rather than by chromosomal
105 coordinates
106 .RE
107
108 .TP
109 .B index
110 samtools index <aln.bam>
111
112 Index sorted alignment for fast random access. Index file
113 .I <aln.bam>.bai
114 will be created.
115
116 .TP
117 .B view
118 samtools view [-bhuHS] [-t in.refList] [-o output] [-f reqFlag] [-F
119 skipFlag] [-q minMapQ] [-l library] [-r readGroup] <in.bam>|<in.sam> [region1 [...]]
120
121 Extract/print all or sub alignments in SAM or BAM format. If no region
122 is specified, all the alignments will be printed; otherwise only
123 alignments overlapping the specified regions will be output. An
124 alignment may be given multiple times if it is overlapping several
125 regions. A region can be presented, for example, in the following
126 format: `chr2', `chr2:1000000' or `chr2:1,000,000-2,000,000'. The
127 coordinate is 1-based.
128
129 .B OPTIONS:
130 .RS
131 .TP 8
132 .B -b
133 Output in the BAM format.
134 .TP
135 .B -u
136 Output uncompressed BAM. This option saves time spent on
137 compression/decomprssion and is thus preferred when the output is piped
138 to another samtools command.
139 .TP
140 .B -h
141 Include the header in the output.
142 .TP
143 .B -H
144 Output the header only.
145 .TP
146 .B -S
147 Input is in SAM. If @SQ header lines are absent, the
148 .B `-t'
149 option is required.
150 .TP
151 .B -t FILE
152 This file is TAB-delimited. Each line must contain the reference name
153 and the length of the reference, one line for each distinct reference;
154 additional fields are ignored. This file also defines the order of the
155 reference sequences in sorting. If you run `samtools faidx <ref.fa>',
156 the resultant index file
157 .I <ref.fa>.fai
158 can be used as this
159 .I <in.ref_list>
160 file.
161 .TP
162 .B -o FILE
163 Output file [stdout]
164 .TP
165 .B -f INT
166 Only output alignments with all bits in INT present in the FLAG
167 field. INT can be in hex in the format of /^0x[0-9A-F]+/ [0]
168 .TP
169 .B -F INT
170 Skip alignments with bits present in INT [0]
171 .TP
172 .B -q INT
173 Skip alignments with MAPQ smaller than INT [0]
174 .TP
175 .B -l STR
176 Only output reads in library STR [null]
177 .TP
178 .B -r STR
179 Only output reads in read group STR [null]
180 .RE
181
182 .TP
183 .B faidx
184 samtools faidx <ref.fasta> [region1 [...]]
185
186 Index reference sequence in the FASTA format or extract subsequence from
187 indexed reference sequence. If no region is specified,
188 .B faidx
189 will index the file and create
190 .I <ref.fasta>.fai
191 on the disk. If regions are speficified, the subsequences will be
192 retrieved and printed to stdout in the FASTA format. The input file can
193 be compressed in the
194 .B RAZF
195 format.
196
197 .TP
198 .B pileup
199 samtools pileup [-f in.ref.fasta] [-t in.ref_list] [-l in.site_list]
200 [-iscgS2] [-T theta] [-N nHap] [-r pairDiffRate] <in.bam>|<in.sam>
201
202 Print the alignment in the pileup format. In the pileup format, each
203 line represents a genomic position, consisting of chromosome name,
204 coordinate, reference base, read bases, read qualities and alignment
205 mapping qualities. Information on match, mismatch, indel, strand,
206 mapping quality and start and end of a read are all encoded at the read
207 base column. At this column, a dot stands for a match to the reference
208 base on the forward strand, a comma for a match on the reverse strand,
209 `ACGTN' for a mismatch on the forward strand and `acgtn' for a mismatch
210 on the reverse strand. A pattern `\\+[0-9]+[ACGTNacgtn]+' indicates
211 there is an insertion between this reference position and the next
212 reference position. The length of the insertion is given by the integer
213 in the pattern, followed by the inserted sequence. Similarly, a pattern
214 `-[0-9]+[ACGTNacgtn]+' represents a deletion from the reference. The
215 deleted bases will be presented as `*' in the following lines. Also at
216 the read base column, a symbol `^' marks the start of a read segment
217 which is a contiguous subsequence on the read separated by `N/S/H' CIGAR
218 operations. The ASCII of the character following `^' minus 33 gives the
219 mapping quality. A symbol `$' marks the end of a read segment.
220
221 If option
222 .B -c
223 is applied, the consensus base, Phred-scaled consensus quality, SNP
224 quality (i.e. the Phred-scaled probability of the consensus being
225 identical to the reference) and root mean square (RMS) mapping quality
226 of the reads covering the site will be inserted between the `reference
227 base' and the `read bases' columns. An indel occupies an additional
228 line. Each indel line consists of chromosome name, coordinate, a star,
229 the genotype, consensus quality, SNP quality, RMS mapping quality, #
230 covering reads, the first alllele, the second allele, # reads supporting
231 the first allele, # reads supporting the second allele and # reads
232 containing indels different from the top two alleles.
233
234 .B OPTIONS:
235 .RS
236
237 .TP 10
238 .B -s
239 Print the mapping quality as the last column. This option makes the
240 output easier to parse, although this format is not space efficient.
241
242 .TP
243 .B -S
244 The input file is in SAM.
245
246 .TP
247 .B -i
248 Only output pileup lines containing indels.
249
250 .TP
251 .B -f FILE
252 The reference sequence in the FASTA format. Index file
253 .I FILE.fai
254 will be created if
255 absent.
256
257 .TP
258 .B -M INT
259 Cap mapping quality at INT [60]
260
261 .TP
262 .B -t FILE
263 List of reference names ane sequence lengths, in the format described
264 for the
265 .B import
266 command. If this option is present, samtools assumes the input
267 .I <in.alignment>
268 is in SAM format; otherwise it assumes in BAM format.
269
270 .TP
271 .B -l FILE
272 List of sites at which pileup is output. This file is space
273 delimited. The first two columns are required to be chromosome and
274 1-based coordinate. Additional columns are ignored. It is
275 recommended to use option
276 .B -s
277 together with
278 .B -l
279 as in the default format we may not know the mapping quality.
280
281 .TP
282 .B -c
283 Call the consensus sequence using MAQ consensus model. Options
284 .B -T,
285 .B -N,
286 .B -I
287 and
288 .B -r
289 are only effective when
290 .B -c
291 or
292 .B -g
293 is in use.
294
295 .TP
296 .B -g
297 Generate genotype likelihood in the binary GLFv3 format. This option
298 suppresses -c, -i and -s.
299
300 .TP
301 .B -T FLOAT
302 The theta parameter (error dependency coefficient) in the maq consensus
303 calling model [0.85]
304
305 .TP
306 .B -N INT
307 Number of haplotypes in the sample (>=2) [2]
308
309 .TP
310 .B -r FLOAT
311 Expected fraction of differences between a pair of haplotypes [0.001]
312
313 .TP
314 .B -I INT
315 Phred probability of an indel in sequencing/prep. [40]
316
317 .RE
318
319 .TP
320 .B tview
321 samtools tview <in.sorted.bam> [ref.fasta]
322
323 Text alignment viewer (based on the ncurses library). In the viewer,
324 press `?' for help and press `g' to check the alignment start from a
325 region in the format like `chr10:10,000,000'.
326
327 .RE
328
329 .TP
330 .B fixmate
331 samtools fixmate <in.nameSrt.bam> <out.bam>
332
333 Fill in mate coordinates, ISIZE and mate related flags from a
334 name-sorted alignment.
335
336 .TP
337 .B rmdup
338 samtools rmdup <input.srt.bam> <out.bam>
339
340 Remove potential PCR duplicates: if multiple read pairs have identical
341 external coordinates, only retain the pair with highest mapping quality.
342 This command
343 .B ONLY
344 works with FR orientation and requires ISIZE is correctly set.
345
346 .RE
347
348 .TP
349 .B rmdupse
350 samtools rmdupse <input.srt.bam> <out.bam>
351
352 Remove potential duplicates for single-ended reads. This command will
353 treat all reads as single-ended even if they are paired in fact.
354
355 .RE
356
357 .TP
358 .B fillmd
359 samtools fillmd [-e] <aln.bam> <ref.fasta>
360
361 Generate the MD tag. If the MD tag is already present, this command will
362 give a warning if the MD tag generated is different from the existing
363 tag.
364
365 .B OPTIONS:
366 .RS
367 .TP 8
368 .B -e
369 Convert a the read base to = if it is identical to the aligned reference
370 base. Indel caller does not support the = bases at the moment.
371
372 .RE
373
374 .SH SAM FORMAT
375
376 SAM is TAB-delimited. Apart from the header lines, which are started
377 with the `@' symbol, each alignment line consists of:
378
379 .TS
380 center box;
381 cb | cb | cb
382 n | l | l .
383 Col     Field   Description
384 _
385 1       QNAME   Query (pair) NAME
386 2       FLAG    bitwise FLAG
387 3       RNAME   Reference sequence NAME
388 4       POS     1-based leftmost POSition/coordinate of clipped sequence
389 5       MAPQ    MAPping Quality (Phred-scaled)
390 6       CIAGR   extended CIGAR string
391 7       MRNM    Mate Reference sequence NaMe (`=' if same as RNAME)
392 8       MPOS    1-based Mate POSistion
393 9       ISIZE   Inferred insert SIZE
394 10      SEQ     query SEQuence on the same strand as the reference
395 11      QUAL    query QUALity (ASCII-33 gives the Phred base quality)
396 12      OPT     variable OPTional fields in the format TAG:VTYPE:VALUE
397 .TE
398
399 .PP
400 Each bit in the FLAG field is defined as:
401
402 .TS
403 center box;
404 cb | cb
405 l | l .
406 Flag    Description
407 _
408 0x0001  the read is paired in sequencing
409 0x0002  the read is mapped in a proper pair
410 0x0004  the query sequence itself is unmapped
411 0x0008  the mate is unmapped
412 0x0010  strand of the query (1 for reverse)
413 0x0020  strand of the mate
414 0x0040  the read is the first read in a pair
415 0x0080  the read is the second read in a pair
416 0x0100  the alignment is not primary
417 0x0200  the read fails platform/vendor quality checks
418 0x0400  the read is either a PCR or an optical duplicate
419 .TE
420
421 .SH LIMITATIONS
422 .PP
423 .IP o 2
424 Unaligned words used in bam_import.c, bam_endian.h, bam.c and bam_aux.c.
425 .IP o 2
426 CIGAR operation P is not properly handled at the moment.
427 .IP o 2
428 In merging, the input files are required to have the same number of
429 reference sequences. The requirement can be relaxed. In addition,
430 merging does not reconstruct the header dictionaries
431 automatically. Endusers have to provide the correct header. Picard is
432 better at merging.
433 .IP o 2
434 Samtools' rmdup does not work for single-end data and does not remove
435 duplicates across chromosomes. Picard is better.
436
437 .SH AUTHOR
438 .PP
439 Heng Li from the Sanger Institute wrote the C version of samtools. Bob
440 Handsaker from the Broad Institute implemented the BGZF library and Jue
441 Ruan from Beijing Genomics Institute wrote the RAZF library. Various
442 people in the 1000Genomes Project contributed to the SAM format
443 specification.
444
445 .SH SEE ALSO
446 .PP
447 Samtools website: <http://samtools.sourceforge.net>