How To Install wigeon on Ubuntu 18.04

In this tutorial we learn how to install wigeon on Ubuntu 18.04. wigeon is reimplementation of the Pintail 16S DNA anomaly detection utility

Introduction

In this tutorial we learn how to install wigeon on Ubuntu 18.04.

What is wigeon

wigeon is:

WigeoN examines the sequence conservation between a query and a trusted reference sequence, both in NAST alignment format. Based on the sequence identity between the query and the reference sequence, there is an expected amount of variation among the alignment. If the observed variation is greater than the 95% quantile of the distribution of variation observed between non-anomalous sequences, then it is flagged as an anomaly.

WigeoN is a flexible command-line based reimplementation of the Pintail algorithm Appl Environ Microbiol. 2005 Dec;7112:7724-36.

WigeoN is useful for flagging chimeras and anomalies only in near full-length 16S rRNA sequences. WigeoN lacks sensitivity with sequences less than 1000 bp.

To run WigeoN, you need NAST-formatted sequences generated by the nast-ier utility.

WigeoN is part of the microbiomeutil suite.

There are three methods to install wigeon on Ubuntu 18.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 wigeon Using apt-get

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

sudo apt-get update

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

sudo apt-get -y install wigeon

Install wigeon Using apt

Update apt database with apt using the following command.

sudo apt update

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

sudo apt -y install wigeon

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

sudo aptitude -y install wigeon

How To Uninstall wigeon on Ubuntu 18.04

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

sudo apt-get remove wigeon

Uninstall wigeon And Its Dependencies

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

sudo apt-get -y autoremove wigeon

Remove wigeon Configurations and Data

To remove wigeon configuration and data from Ubuntu 18.04 we can use the following command:

sudo apt-get -y purge wigeon

Remove wigeon configuration, data, and all of its dependencies

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

sudo apt-get -y autoremove --purge wigeon

References

Summary

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