This project is a collection of Conda recipes to build aarch64
packages for common nf-core pipelines.
- Start and login to an EC2 Graviton instance (ie. c6g.large)
- Install some required system packages
sudo yum update
sudo yum install git
- Install
aarch64
Conda
curl -O https://repo.anaconda.com/archive/Anaconda3-2022.10-Linux-aarch64.sh
bash ./Anaconda3-2022.10-Linux-aarch64.sh
- Define default channels order
conda config --system --add channels defaults
conda config --system --add channels conda-forge
conda config --system --add channels bioconda
conda config --system --add channels seqera
- Setup your SSH keys and clone this repo
git clone git@github.com:seqeralabs/eel-recipes.git
- Go to the recipe folder and build it with
conda build
Example:
cd recipes/pbzip2
conda build .