How To Install bowtie2 on Fedora 34
Introduction
In this tutorial we learn how to install bowtie2
on Fedora 34.
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 34. In this tutorial we discuss both methods but you only need to choose one of method to install bowtie2.
Install bowtie2 on Fedora 34 Using dnf
Update yum database with dnf
using the following command.
sudo dnf makecache --refresh
The output should look something like this:
Fedora 34 - x86_64 20 kB/s | 6.6 kB 00:00
Fedora 34 openh264 (From Cisco) - x86_64 1.4 kB/s | 989 B 00:00
Fedora Modular 34 - x86_64 68 kB/s | 6.5 kB 00:00
Fedora 34 - x86_64 - Updates 3.5 kB/s | 6.2 kB 00:01
Fedora Modular 34 - x86_64 - Updates 17 kB/s | 5.9 kB 00:00
Metadata cache created.
After updating yum database, We can install bowtie2
using dnf
by running the following command:
sudo dnf -y install bowtie2
Install bowtie2 on Fedora 34 Using yum
Update yum database with yum
using the following command.
sudo yum makecache --refresh
The output should look something like this:
Fedora 34 - x86_64 20 kB/s | 6.6 kB 00:00
Fedora 34 openh264 (From Cisco) - x86_64 1.4 kB/s | 989 B 00:00
Fedora Modular 34 - x86_64 68 kB/s | 6.5 kB 00:00
Fedora 34 - x86_64 - Updates 3.5 kB/s | 6.2 kB 00:01
Fedora Modular 34 - x86_64 - Updates 17 kB/s | 5.9 kB 00:00
Metadata cache created.
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 34
To uninstall only the bowtie2
package we can use the following command:
sudo dnf remove bowtie2
bowtie2 Package Contents on Fedora 34
/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/02
/usr/lib/.build-id/02/eb80aff70816515c756a4090380a97d3073d9c
/usr/lib/.build-id/1b
/usr/lib/.build-id/1b/c98594c38fcb06ff21eccf749c8ee1b271f0e0
/usr/lib/.build-id/20
/usr/lib/.build-id/20/468888600811cc2c7f5341b2a88ee732256595
/usr/lib/.build-id/3d
/usr/lib/.build-id/3d/c8ec7173006d14c705d526d3b03a7620ac67a1
/usr/lib/.build-id/d4
/usr/lib/.build-id/d4/250dfba7359f9f6ea3db4a031bd20faf05426a
/usr/lib/.build-id/ed
/usr/lib/.build-id/ed/92aa7f8e4e05166461d7e8f03239e8b8f65bfb
/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 34 using yum and dnf.