README 1.0 KB

1234567891011121314151617181920212223
  1. SAM (Sequence Alignment/Map) format is a generic format for storing
  2. large nucleotide sequence alignments. SAM aims to be a format that:
  3. - Is flexible enough to store all the alignment information generated
  4. by various alignment programs
  5. - Is simple enough to be easily generated by alignment programs or
  6. converted from existing alignment formats
  7. - Is compact in file size
  8. - Allows most of operations on the alignment to work on a stream
  9. without loading the whole alignment into memory
  10. - Allows the file to be indexed by genomic position to efficiently
  11. retrieve all reads aligning to a locus.
  12. SAM Tools provide various utilities for manipulating alignments in the
  13. SAM format, including sorting, merging, indexing and generating
  14. alignments in a per-position format.
  15. Publication:
  16. Li H.*, Handsaker B.*, Wysoker A., Fennell T., Ruan J., Homer N.,
  17. Marth G., Abecasis G., Durbin R. and 1000 Genome Project Data
  18. Processing Subgroup (2009) The Sequence alignment/map (SAM) format and
  19. SAMtools. Bioinformatics, 25, 2078-9. [PMID: 19505943]