Ecogenomics / CheckM

Assess the quality of microbial genomes recovered from isolates, single cells, and metagenomes
https://ecogenomics.github.io/CheckM/
GNU General Public License v3.0
347 stars 73 forks source link

Unable to install #315

Closed adoloman closed 2 years ago

adoloman commented 3 years ago

Hello I'm installing the CheckM on Ubuntu 20.04 and at step of checkm data setRoot I receive the following error:

Command 'checkm' not found, did you mean:

  command 'check' from deb gitlab-shell (10.3.0+debian-3.1)
  command 'checkmk' from deb check (0.10.0-3build2)

The installation steps I follow:

cd ~ && sudo apt update
# installing the hmmer and prodigal from repositories
sudo apt install hmmer prodigal
# installing the pplacer from precompiled binaries
wget https://github.com/matsen/pplacer/releases/download/v1.1.alpha19/pplacer-linux-v1.1.alpha19.zip
unzip ./pplacer*.zip
cd ./pplacer-linux-v1.1.alpha19
## moving needed binaries to system path /usr/local/bin
sudo mv pplacer /usr/local/bin
sudo mv guppy /usr/local/bin
sudo mv rppr /usr/local/bin
## purging leftovers of pplacer distro
cd ~
rm -rf ./pplacer*
# installing checkm for python
pip3 install numpy matplotlib pysam checkm-genome

# downloading CheckM databases 
cd ~
wget https://data.ace.uq.edu.au/public/CheckM_databases/checkm_data_2015_01_16.tar.gz
mkdir ./checkm_databases
tar -xvzf checkm_data_*.tar.gz -C ./checkm_databases
rm -f ./checkm_data*.tar.gz

# Specifiyng location of databases
checkm data setRoot /home/username/checkm_databases 

Please, advice on solution.