BUSCO (Benchmarking Universal Single-Copy Orthologs) assesses genome assembly and annotation completeness with single-copy ortholog.
See versions of BUSCO which are available:
$ module avail BUSCO
Load one version into your environment and run it:
$ module load BUSCO/5.2.2
After loading the module, consult the built-in help:
$ busco -h
See the BUSCO documentation for more information about how to use it: https://busco.ezlab.org/busco_userguide.html#running-busco
Note: BUSCO utilizes Augustus and requires you to make a copy of the Augustus configuration for each of your runs as well as set up an environment variable pointing to it, ie:
$ cp -r /export/apps/augustus/3.2.3/config /var/scratch/aorth-augustus-config $ export AUGUSTUS_CONFIG_PATH=/var/scratch/aorth-augustus-config
Notes from the sysadmin during installation:
$ cd /tmp $ wget https://gitlab.com/ezlab/busco/-/archive/5.2.2/busco-5.2.2.tar.gz $ tar xf busco-5.2.2.tar.gz $ cd busco-5.2.2 $ sudo mkdir /export/apps/BUSCO/5.2.2 $ sudo chown aorth /export/apps/BUSCO/5.2.2 $ python3 -m venv /export/apps/BUSCO/5.2.2 $ source /export/apps/BUSCO/5.2.2/bin/activate $ pip install --upgrade setuptools pip $ pip install pandas biopython $ python setup.py install $ sudo cp scripts/generate_plot.py /export/apps/BUSCO/5.2.2/bin $ module load R/4.0 $ mkdir /export/apps/BUSCO/5.2.2/r-libs $ R_LIBS=/export/apps/BUSCO/5.2.2/r-libs Rscript -e 'install.packages("ggplot2", repos="https://cran.rstudio.com")' $ sudo chown -R root:root /export/apps/BUSCO/5.2.2