MEGAHIT (WSL)
MEGAHIT is a fast and memory-efficient assembler for metagenomic sequencing data. There are several ways to install MEGAHIT, but the easiest way is using conda.
On WSL systems, conda is often not installed by default, so you will need to install it first.
—
Install conda
Go to https://repo.anaconda.com/archive/ and download the appropriate installer for your system. - For example, for WSL:
Anaconda3-2024.06-1-Linux-x86_64.shOpen your terminal and download using wget:
wget https://repo.anaconda.com/archive/Anaconda3-2024.06-1-Linux-x86_64.shRun the installation script:
bash Anaconda3-2024.06-1-Linux-x86_64.shRead the license agreement and follow the prompts to accept.
Close WSL and open it again.
Test that conda is installed:
conda
—
Install MEGAHIT using conda
conda install -c bioconda megahit
If prompted, select y to proceed.
Test the installation:
megahit --help
If this does not work, follow alternative installation methods: https://github.com/voutcn/megahit
—
MEGAHIT (Mac)
Install Miniconda
Download the installer (pkg recommended) from:
https://repo.anaconda.com/miniconda/Miniconda3-latest-MacOSX-x86_64.pkg
Check installation:
conda --version
If prompted, select y to proceed.
Install MEGAHIT using conda
conda install bioconda::megahit