annopipeline is a bioinformatics pipeline that performs functional annotation of genomes and bacterial metagenomes. It annotates proteins using Bakta, and the Bakta output is then used for further functional annotation of the proteins using eggNOG-mapper, Cayman, and VFDB. The pipeline is designed to be flexible and can be run on a variety of platforms, including local machines and clusters.
- Annotation of genomes using Bakta (
Bakta) - EggNOG functional annotation of the proteins (
eggNOG-mapper) - Cayman carbohydrate active enzymes (CAZy) profiling of proteins (
Cayman) - Virulence factor annotation profiling using VFDB (
VFDB) and Diamond (Diamond)
Note
If you are new to Nextflow and nf-core, please refer to this page on how to set-up Nextflow. Make sure to test your setup with -profile test before running the workflow on actual data.
First, prepare a samplesheet with your input data that looks as follows:
samplesheet.csv:
sample,fasta
Sample1,/path/to/sample1.fastaEach row represents either an assembly fasta or Bakta .faa output (to skip the Bakta step).
Now, for assemblies, you can run the pipeline using:
nextflow run annopipeline \
-profile <docker/singularity/.../institute> \
--input samplesheet.csv \
--outdir <OUTDIR>If you already have Bakta output files, you can provide the Bakta .faa files in the samplesheet and skip the Bakta step by using the --annotation false parameter:
nextflow run annopipeline \
-profile <docker/singularity/.../institute> \
--input samplesheet.csv \
--outdir <OUTDIR> \
--annotation falseFor more details and further functionality, please refer to the usage documentation and the parameter documentation.
For more details about the output files and reports, please refer to the output documentation.
annopipeline was originally written by Barbara Verhaar and Kyanna Ouyang. If you would like to contribute to this pipeline, please open a pull request or issue.
An extensive list of references for the tools used by the pipeline can be found in the CITATIONS.md file.