Bowtie (sequence analysis)

Bowtie
Original author(s)Ben Langmead
Cole Trapnell
Mihai Pop
Steven Salzberg
Developer(s)Ben Langmead et al.,
Stable release
Bowtie1.3.0 / July 22, 2020; 3 years ago (2020-07-22)[1]
Bowtie 22.4.2 / October 5, 2020; 3 years ago (2020-10-05)[2]
RepositoryBowtie: github.com/BenLangmead/bowtie
Bowtie 2: github.com/BenLangmead/bowtie2
Written inC++
Operating systemLinux
macOS
Windows
TypeBioinformatics
Websitewww.bowtie-bio.sourceforge.net

Bowtie is a software package commonly used for sequence alignment and sequence analysis in bioinformatics.[3] The source code for the package is distributed freely and compiled binaries are available for Linux, macOS and Windows platforms. As of 2017, the Genome Biology paper describing the original Bowtie method has been cited more than 11,000 times.[3] Bowtie is open-source software and is currently maintained by Johns Hopkins University.

History[edit]

The Bowtie sequence aligner was originally developed by Ben Langmead et al. at the University of Maryland in 2009.[3] The aligner is typically used with short reads and a large reference genome, or for whole genome analysis. Bowtie is promoted as "an ultrafast, memory-efficient short aligner for short DNA sequences." The speed increase of Bowtie is partly due to implementing the Burrows–Wheeler transform for aligning,[4] which reduces the memory footprint (typically to around 2.2GB for the human genome);[5] a similar method is used by the BWA[6] and SOAP2[7] alignment methods.[5]

Bowtie conducts a quality-aware, greedy, randomized, depth-first search through the space of possible alignments. Because the search is greedy, the first valid alignment encountered by Bowtie will not necessarily be the 'best' in terms of the number of mismatches or in terms of quality.

Bowtie is used as a sequence aligner by a number of other related bioinformatics algorithms, including TopHat,[8] Cufflinks[9] and the CummeRbund Bioconductor package.[10]

Bowtie 2[edit]

On 16 October 2011, the developers released a beta fork of the project called Bowtie 2.[11] In addition to the Burrows-Wheeler transform, Bowtie 2 also uses an FM-index (similar to a suffix array) to keep its memory footprint small. Due to its implementation, Bowtie 2 is more suited to finding longer, gapped alignments in comparison with the original Bowtie method. There is no upper limit on read length in Bowtie 2 and it allows alignments to overlap ambiguous characters in the reference.

References[edit]

  1. ^ "Bowtie: An ultrafast, memory-efficient short read aligner". bowtie-bio.sourceforge.net. Retrieved 2021-03-28.
  2. ^ "Bowtie 2: fast and sensitive read alignment". bowtie-bio.sourceforge.net. Retrieved 2021-03-28.
  3. ^ a b c Langmead, Ben; Cole Trapnell; Mihai Pop; Steven L Salzberg (4 March 2009). "Ultrafast and memory-efficient alignment of short DNA sequences to the human genome". Genome Biology. 10 (3): 10:R25. doi:10.1186/gb-2009-10-3-r25. PMC 2690996. PMID 19261174.
  4. ^ Ferragina, Paolo; Manzini, Giovanni (2005). "Indexing compressed text". Journal of the ACM. 52 (4): 552–581. doi:10.1145/1082036.1082039. S2CID 6200428.
  5. ^ a b "Bowtie: An ultrafast, memory-efficient short read aligner - SourceForge". Retrieved 29 November 2013.
  6. ^ Li, H.; Durbin, R. (18 May 2009). "Fast and accurate short read alignment with Burrows-Wheeler transform". Bioinformatics. 25 (14): 1754–1760. doi:10.1093/bioinformatics/btp324. PMC 2705234. PMID 19451168.
  7. ^ Li, R.; Yu, C.; Li, Y.; Lam, T.-W.; Yiu, S.-M.; Kristiansen, K.; Wang, J. (3 June 2009). "SOAP2: an improved ultrafast tool for short read alignment". Bioinformatics. 25 (15): 1966–1967. doi:10.1093/bioinformatics/btp336. PMID 19497933.
  8. ^ Trapnell, C.; Pachter, L.; Salzberg, S. L. (16 March 2009). "TopHat: discovering splice junctions with RNA-Seq". Bioinformatics. 25 (9): 1105–1111. doi:10.1093/bioinformatics/btp120. PMC 2672628. PMID 19289445.
  9. ^ "CummeRbund - An R package for persistent storage, analysis, and visualization of RNA-Seq from cufflinks output". Retrieved 11 August 2015.
  10. ^ Langmead, Ben; Salzberg, Steven L (4 March 2012). "Fast gapped-read alignment with Bowtie 2". Nature Methods. 9 (4): 357–359. doi:10.1038/nmeth.1923. PMC 3322381. PMID 22388286.

External links[edit]