使用bioconda安装CheckM

1.bioconda构建名为py27的虚拟环境并安装checkm
conda create -n py27 python=2.7 anaconda checkm-genome

conda activate py27

cd ~/
mkdir checkm
cd checkm

curl -L -O curl -L -O https://data.ace.uq.edu.au/public/CheckM_databases/checkm_data_2015_01_16.tar.gz

tar xzf checkm_data_2015_01_16.tar.gz 
2.checkm数据库设置
checkm data setRoot

(note instructions here are incorrect - you can't specify the path on the command line.)

To analyze, put your genome(s) in .fa files in a directory bins/ under your cwd, and then run:

checkm lineage_wf -x fa --reduced_tree bins out

You can regenerate various reports like so:

checkm qa out/lineage.ms out -f checkm.out.txt

你可能感兴趣的:(使用bioconda安装CheckM)