How To Install libstatgen1 on Debian 12

Learn how to install libstatgen1 on Debian 12 with this tutorial. libstatgen1 is processing and analyzing next generation sequencing and genotyping data library

Introduction

In this tutorial we learn how to install libstatgen1 on Debian 12.

What is libstatgen1

libstatgen1 is:

libStatGen is a library for statistical genetic programs. It includes some: A. General Operation Classes including: File/Stream I/O, String processing and Parameter Parsing. B. Statistical Genetic Specific Classes including: Handling Common file formats (Accessors to get/set values, Indexed access to BAM files) and some utility classes, including: 1. Cigar: interpretation and mapping between query and reference. 2. Pileup: structured access to data by individual reference position.

This package provides the shared library.

There are three methods to install libstatgen1 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 libstatgen1 Using apt-get

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

sudo apt-get update

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

sudo apt-get -y install libstatgen1

Install libstatgen1 Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install libstatgen1 using apt by running the following command:

sudo apt -y install libstatgen1

Install libstatgen1 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 libstatgen1 using aptitude by running the following command:

sudo aptitude -y install libstatgen1

How To Uninstall libstatgen1 on Debian 12

To uninstall only the libstatgen1 package we can use the following command:

sudo apt-get remove libstatgen1

Uninstall libstatgen1 And Its Dependencies

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

sudo apt-get -y autoremove libstatgen1

Remove libstatgen1 Configurations and Data

To remove libstatgen1 configuration and data from Debian 12 we can use the following command:

sudo apt-get -y purge libstatgen1

Remove libstatgen1 configuration, data, and all of its dependencies

We can use the following command to remove libstatgen1 configurations, data and all of its dependencies, we can use the following command:

sudo apt-get -y autoremove --purge libstatgen1

Dependencies

libstatgen1 have the following dependencies:

References

Summary

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