setup
- Get docker.
- Connecting to remote host:
Make sure the remote host has openSSH installed:
sudo apt install openssh-server
On the client computer (usually your laptop or something), first create the key:
ssh-keygen -t rsa
Then copy that key to the host (usually the computer you want to connect remotely to):
ssh-copy-id -i ~/.ssh/id_rsa.pub {username}@host.address
Done! Log in with ssh {username}@host.address
- Initializing a conda environment:
conda create --name <name> python=3.6
conda activate <name>
conda install -c bioconda flye
conda install -c bioconda abyss