A guide for installing Next-Generation Sequencing (NGS) tools on Ubuntu 20.04 LTS. This post documents the steps taken during my setup process.
Start with a laptop or desktop running a Debian-based Linux distribution (e.g., Ubuntu 20.04 LTS).
Anaconda is a popular Python distribution that simplifies package management. While Ubuntu comes with Python by default, it’s recommended to use a modern version like Python 3.8.
.sh file (e.g., Anaconda3-2020.11-Linux-x86_64.sh). Open your terminal and run:
bash ~/Downloads/Anaconda3-2020.11-Linux-x86_64.sh
conda init
anaconda-navigator
You can find the full installation guide here.
Bioconda is a channel for the conda package manager specializing in bioinformatics software. To install sra-tools, run:
conda install -c bioconda sra-tools
Note: This might install an older version. It is often recommended to specify a newer version or use a specific label if required:
conda install -c bioconda/label/cf201901 sra-tools
Refer to the Bioconda documentation for more details.
Managing Conda Environments:
(base) prompt in your terminal.conda activateconda deactivateFastQC is used for quality control checks on raw sequence data.
java -version
If Java is not installed, follow a guide like this one to install it.
sudo apt update
sudo apt install -y fastqc
Powered by Jekyll and Minimal Light theme.