How To Install bowtie2 on Fedora 36
Introduction
In this tutorial we learn how to install bowtie2
on Fedora 36.
What is bowtie2
Bowtie 2 is an ultra fast and memory-efficient tool for aligning sequencing reads to long reference sequences. It is particularly good at aligning reads of about 50 up to 100s or 1,000s of characters, and particularly good at aligning to relatively long (e.g. mammalian) genomes. Bowtie 2 indexes the genome with an FM Index to keep its memory footprint small genome, its memory footprint is typically around 3.2 GB. Bowtie 2 supports gapped, local, and paired-end alignment modes.
We can use yum
or dnf
to install bowtie2
on Fedora 36. In this tutorial we discuss both methods but you only need to choose one of method to install bowtie2.
Install bowtie2 on Fedora 36 Using dnf
Update yum database with dnf
using the following command.
sudo dnf makecache --refresh
After updating yum database, We can install bowtie2
using dnf
by running the following command:
sudo dnf -y install bowtie2
Install bowtie2 on Fedora 36 Using yum
Update yum database with yum
using the following command.
sudo yum makecache --refresh
After updating yum database, We can install bowtie2
using yum
by running the following command:
sudo yum -y install bowtie2
How To Uninstall bowtie2 on Fedora 36
To uninstall only the bowtie2
package we can use the following command:
sudo dnf remove bowtie2
bowtie2 Package Contents on Fedora 36
/usr/bin/bowtie2
/usr/bin/bowtie2-align-l
/usr/bin/bowtie2-align-s
/usr/bin/bowtie2-build
/usr/bin/bowtie2-build-l
/usr/bin/bowtie2-build-s
/usr/bin/bowtie2-inspect
/usr/bin/bowtie2-inspect-l
/usr/bin/bowtie2-inspect-s
/usr/lib/.build-id
/usr/lib/.build-id/03
/usr/lib/.build-id/03/dcdb1d0b24becae38906a64368ffc655783aee
/usr/lib/.build-id/0f
/usr/lib/.build-id/0f/964edafa97599290efa685b6c0eda67791c6ed
/usr/lib/.build-id/6d
/usr/lib/.build-id/6d/8f045bafd88c54c294b545fdaf2b1be844e116
/usr/lib/.build-id/74
/usr/lib/.build-id/74/a1aed5cf1c941cc02601afc091e04f09e648de
/usr/lib/.build-id/83
/usr/lib/.build-id/83/65256891bb96c7822c76aae36151cb8bb6753a
/usr/lib/.build-id/83/6b8f74e471c00f6c90a03b31190c2d1e7db63e
/usr/share/doc/bowtie2
/usr/share/doc/bowtie2/AUTHORS
/usr/share/doc/bowtie2/MANUAL
/usr/share/doc/bowtie2/MANUAL.markdown
/usr/share/doc/bowtie2/NEWS
/usr/share/doc/bowtie2/TUTORIAL
/usr/share/licenses/bowtie2
/usr/share/licenses/bowtie2/LICENSE
/usr/share/man/man1/bowtie2-build.1.gz
/usr/share/man/man1/bowtie2-inspect.1.gz
/usr/share/man/man1/bowtie2.1.gz
References
Summary
In this tutorial we learn how to install bowtie2
on Fedora 36 using yum and [dnf]((/fedora/36/dnf/).