sam (5) - Linux Manuals

sam: Sequence Alignment/Map file format

NAME

sam - Sequence Alignment/Map file format

DESCRIPTION

Sequence Alignment/Map (SAM) format is TAB-delimited. Apart from the header lines, which are started with the `@' symbol, each alignment line consists of:
   QNAMEQuery template/pair NAME
   FLAGbitwise FLAG
   RNAMEReference sequence NAME
   POS1-based leftmost POSition/coordinate of clipped sequence
   MAPQMAPping Quality (Phred-scaled)
   CIGARextended CIGAR string
   MRNMMate Reference sequence NaMe (`=' if same as RNAME)
   MPOS1-based Mate POSition
   TLENinferred Template LENgth (insert size)
10    SEQquery SEQuence on the same strand as the reference
11    QUALquery QUALity (ASCII-33 gives the Phred base quality)
12+    OPTvariable OPTional fields in the format TAG:VTYPE:VALUE

Each bit in the FLAG field is defined as:

0x0001pthe read is paired in sequencing
0x0002Pthe read is mapped in a proper pair
0x0004uthe query sequence itself is unmapped
0x0008Uthe mate is unmapped
0x0010rstrand of the query (1 for reverse)
0x0020Rstrand of the mate
0x00401the read is the first read in a pair
0x00802the read is the second read in a pair
0x0100sthe alignment is not primary
0x0200fthe read fails platform/vendor quality checks
0x0400dthe read is either a PCR or an optical duplicate
0x0800Sthe alignment is supplementary

where the second column gives the string representation of the FLAG field.

SEE ALSO

https://github.com/samtools/hts-specs
The full SAM/BAM file format specification