How To Install pique on Ubuntu 22.04

In this tutorial we learn how to install pique on Ubuntu 22.04. pique is software pipeline for performing genome wide association studies

Introduction

In this tutorial we learn how to install pique on Ubuntu 22.04.

What is pique

pique is:

PIQUE is a software pipeline for performing genome wide association studies (GWAS). The main function of PIQUE is to provide ‘convenience’ wrappers that allow users to perform GWAS using the popular program EMMAX (Kang et al., 2010) without the need to be familiar with all of the software tools used to generate the required EMMAX input files. PIQUE will also perform a number of quality control steps prior to running EMMAX, ensuring that the various input data files are in the correct format. PIQUE proceeds in two main stages although there are multiple entry and exit points from which the pipeline can be run. The first stage consists of running the “pique-input” program, which can read genotype and phenotype information in several different formats and generates all the necessary input files required to run EMMAX. The second step in the pipeline uses the “pique-run” program to actually run EMMAX using the files generated by “pique-input” (or pre-existing user-supplied input files) to perform the GWAS and output the analysis summary files.

There are three methods to install pique on Ubuntu 22.04. We can use apt-get, apt and aptitude. In the following sections we will describe each method. You can choose one of them.

Install pique Using apt-get

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

sudo apt-get update

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

sudo apt-get -y install pique

Install pique Using apt

Update apt database with apt using the following command.

sudo apt update

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

sudo apt -y install pique

Install pique 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 Ubuntu. Update apt database with aptitude using the following command.

sudo aptitude update

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

sudo aptitude -y install pique

How To Uninstall pique on Ubuntu 22.04

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

sudo apt-get remove pique

Uninstall pique And Its Dependencies

To uninstall pique and its dependencies that are no longer needed by Ubuntu 22.04, we can use the command below:

sudo apt-get -y autoremove pique

Remove pique Configurations and Data

To remove pique configuration and data from Ubuntu 22.04 we can use the following command:

sudo apt-get -y purge pique

Remove pique configuration, data, and all of its dependencies

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

sudo apt-get -y autoremove --purge pique

References

Summary

In this tutorial we learn how to install pique package on Ubuntu 22.04 using different package management tools: apt, apt-get and aptitude.