wigeon command not found

In this troubleshooting guide we learn how to fix wigeon command not found error message

Introduction

When you run more command in linux terminal / console, you get the following error message

wigeon: command not found

or when using sudo you get the following error message

sudo: wigeon: command not found

Solutions to wigeon: command not found

How To Fix wigeon: command not found in Ubuntu / Debian / Kali Linux / Raspbian

In Ubuntu wigeon is provided by wigeon package.

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.

To fix this problem, we can install more using the command below.

sudo apt-get -y install wigeon

This command might take some time to finish depending on your machine internet connection.

You can also use apt command to install wigeon.

sudo apt -y install wigeon

Or if you have aptitude installed you can use the following command.

sudo aptitude install wigeon

Summary

In this tutorial we learn how to fix wigeon command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.