How To Install seqan-raptor-doc on Debian 12

Learn how to install seqan-raptor-doc on Debian 12 with this tutorial. seqan-raptor-doc is HTML & PDF documentation for seqan-raptor and its APIs

Introduction

In this tutorial we learn how to install seqan-raptor-doc on Debian 12.

What is seqan-raptor-doc

seqan-raptor-doc is:

Raptor is a system for approximately searching many queries such as next-generation sequencing reads or transcripts in large collections of nucleotide sequences. Raptor uses winnowing minimizers to define a set of representative k-mers, an extension of the interleaved Bloom filters (IBFs) as a set membership data structure and probabilistic thresholding for minimizers. This approach allows compression and partitioning of the IBF to enable the effective use of secondary memory.

This package contains Raptor’s docs (HTML & PDF).

There are three methods to install seqan-raptor-doc on Debian 12. We can use apt-get, apt and aptitude. In the following sections we will describe each method. You can choose one of them.

Install seqan-raptor-doc Using apt-get

Update apt database with apt-get using the following command.

sudo apt-get update

After updating apt database, We can install seqan-raptor-doc using apt-get by running the following command:

sudo apt-get -y install seqan-raptor-doc

Install seqan-raptor-doc Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install seqan-raptor-doc using apt by running the following command:

sudo apt -y install seqan-raptor-doc

Install seqan-raptor-doc Using aptitude

If you want to follow this method, you might need to install aptitude first since aptitude is usually not installed by default on Debian. Update apt database with aptitude using the following command.

sudo aptitude update

After updating apt database, We can install seqan-raptor-doc using aptitude by running the following command:

sudo aptitude -y install seqan-raptor-doc

How To Uninstall seqan-raptor-doc on Debian 12

To uninstall only the seqan-raptor-doc package we can use the following command:

sudo apt-get remove seqan-raptor-doc

Uninstall seqan-raptor-doc And Its Dependencies

To uninstall seqan-raptor-doc and its dependencies that are no longer needed by Debian 12, we can use the command below:

sudo apt-get -y autoremove seqan-raptor-doc

Remove seqan-raptor-doc Configurations and Data

To remove seqan-raptor-doc configuration and data from Debian 12 we can use the following command:

sudo apt-get -y purge seqan-raptor-doc

Remove seqan-raptor-doc configuration, data, and all of its dependencies

We can use the following command to remove seqan-raptor-doc configurations, data and all of its dependencies, we can use the following command:

sudo apt-get -y autoremove --purge seqan-raptor-doc

Dependencies

seqan-raptor-doc have the following dependencies:

References

Summary

In this tutorial we learn how to install seqan-raptor-doc package on Debian 12 using different package management tools: apt, apt-get and aptitude.