Skip to main content

Bakta: rapid & comprehensive annotation of bacterial genomes & plasmids

Project description

License: GPL v3 PyPI - Python Version GitHub release PyPI PyPI - Status Conda DOI

Bakta: Rapid & standardized annotation of bacterial genomes & plasmids

Bakta is a tool for the rapid & standardized local annotation of bacterial genomes & plasmids. It provides dbxref-rich and sORF-including annotations in machine-readble JSON & bioinformatics standard file formats for automatic downstream analysis.

Bakta is young and still in a beta status! So please, test it, bend, sequeeze & smash it, try to crash it... but don't forget to file bug reports ;-) Of course, feedback of any kind and feature requests are highly welcome & very much appreciated!

Contents

Description

  • Bacteria & plasmids only Bakta is desined to annotate bacteria and plasmids, only. This decision by design has been made in order to tweak the annotation process regarding tools, preferences & databases and to streamline further development & maintenance of the software.

  • FAIR annotations To provide standardized annotations adhearing to FAIR principles, Bakta utilizes a comprehensive & versioned annotation db basing on UniProt's UniRef100 & UniRef90 protein clusters enriched with dbxrefs (GO, COG, EC) and annotated by specialized niche databases. For each db version we provide a comprehensive log file of imported sequences and conducted annotations.

  • Protein sequence identification Fostering the FAIR aspect, Bakta identifies identical protein sequences (IPS) via MD5 digests which are annotated with database cross-references (dbxref) to RefSeq (WP_*), UniRef100 (UniRef100_*) and UniParc (UPI*). By doing so, IPS allow the surveillance of distinct gene alleles and streamlining comparative analysis as well as posterior (external) annotations of putative & hypothetical protein sequences which can be mapped back to existing CDS via these exact & stable identifiers (E. coli gene ymiA ...more). Currently, Bakta identifies ~169 mio distinct UniRef100 sequences and for some genomes, up to 99 % of all CDS can be identified this way, sparing expensive homology searches.

  • Short open reading frames Next to standard feature types (tRNA, tmRNA, rRNA, ncRNA, ncRNA regions, CRISPR, CDS, oriC/V/T and gaps) Bakta also detects and annotates short open reading frames (sORF) which are not predicted by tools like Prodigal.

  • Fast Bakta can annotate a typical bacterial genome in 10 ±5 min on a laptop, plasmids in a couple of seconds/minutes.

  • Reasoning Annotating bacterial genomes in a standardized, high-throughput, local manner w/o requirements for taxon-dependent DBs, Bakta targets the niche between standardized computationally-demanding pipelines like PGAP and rapid highly-customizable offline tools like Prokka. Indeed, Bakta is heavily inspired by Prokka (kudos to Torsten Seemann) and many command line options are compatible for the sake of interoperability and user convenience. Hence, if Bakta does not fit your needs, please try Prokka.

Installation

Bakta can be installed via BioConda, Docker, Singularity and Pip. However, to automatically install all required 3rd party dependencies, we encourage to use Conda or Docker/Singularity. In all cases the mandatory database must be downloaded.

BioConda

$ conda install -c conda-forge -c bioconda -c defaults bakta

Docker

$ sudo docker pull oschwengers/bakta
$ sudo docker run oschwengers/bakta --help

Installation instructions, get-started and guides: Docker docs For further convenience, we provide a shell script (bakta-docker.sh) handling stuff like volume mounting, etc:

$ bakta-docker.sh --help

Singularity

$ singularity pull docker://oschwengers/bakta:latest
$ singularity run bakta-latest.simg --help

Installation instructions, get-started and guides: Singularity docs

Pip

$ python3 -m pip install --user bakta

Bacta requires the following 3rd party executables which must be installed & executable:

On Ubuntu/Debian/Mint you can install these via:

$ sudo apt install trnascan-se aragorn infernal pilercr prodigal hmmer diamond-aligner ncbi-blast+

Tested with Ubuntu 20.04 - some older distributions might provide outdated versions, e.g. trnascan-se in Ubuntu 18.04. In these cases dependencies must be installed manually.

Database download

Bakta requires a mandatory database which is publicly hosted at Zenodo: DOI Further information is provided below.

$ wget https://zenodo.org/record/4247253/files/db.tar.gz
$ tar -xzf db.tar.gz
$ rm db.tar.gz

The db path can either be provided via parameter (--db) or environment variable (BAKTA_DB):

$ bakta --db <db-path> genome.fasta

$ export BAKTA_DB=<db-path>
$ bakta genome.fasta

Additionally, for a system-wide setup, the database can be copied to the Bakta base directory:

$ cp -r db/ <bakta-installation-dir>

Examples

Simple:

$ bakta --db ~/db genome.fasta

Expert: verbose output writing results to results directory with ecoli123 file prefix and eco634 locus tag using an existing prodigal training file, using additional replicon information and 8 threads:

$ bakta --db ~/db --verbose --output results/ --prefix ecoli123 --locus-tag eco634 --prodigal-tf eco.tf --replicons replicon.tsv --threads 8 genome.fasta

Input/Output

Input

Bakta accepts bacterial and plasmid assemblies (complete / draft) in (zipped) fasta format.

For a full description of how further genome information can be provided and workflow customizations can be set, please have a look at the Usage section.

Replicon meta data table:

To fine-tune the very details of each sequence in the input fasta file, Bakta accepts a replicon meta data table provided in tsv file format: --replicons <file.tsv>. Thus, complete replicons within partially completed draft assemblies can be marked & handled as such, e.g. detection & annotation of features spanning sequence edges.

Table format:

original sequence id new sequence id type topology name
old id [new id / <empty>] [chromosome / plasmid / contig / <empty>] [circular / linear / <empty>] [name / <empty>]

For each input sequence recognized via the original locus id a new locus id, the replicon type and the topology as well a name can be explicitly set.

Shortcuts:

  • chromosome: c
  • plasmid: p
  • circular: c
  • linear: l

<empty> values (- / ``) will be replaced by defaults. If new locus id is empty, a new contig name will be autogenerated.

Defaults:

  • type: contig
  • topology: linear

Example:

original locus id new locus id type topology name
NODE_1 chrom chromosome circular -
NODE_2 p1 plasmid c pXYZ1
NODE_3 p2 p c pXYZ2
NODE_4 special-contig-name-xyz - -
NODE_5 `` - -

Output

Bakta provides detailed information on each annotated feature in a standardized machine-readable JSON file:

{
    "genome": {
        "genus": "Escherichia",
        "species": "coli",
        ...
    },
    "stats": {
        "size": 5594605,
        "gc": 0.497,
        ...
    },
    "features": [
        {
            "type": "cds",
            ...
        },
        ...
    ],
    "sequences": [
        {
            "id": "c1",
            "description": "[organism=Escherichia coli] [completeness=complete] [topology=circular]",
            "sequence": "AGCTTT...",
            "length": 5498578,
            "complete": true,
            "type": "chromosome",
            "topology": "circular"
            ...
        },
        ...
    ]
}

Additionally, the following output files are written:

  • .tsv: annotations as simple human readble tab separated values
  • .gff3: annotations & sequences in GFF3 format
  • .gbff: annotations & sequences in (multi) GenBank format
  • .fna: replicon/contig DNA sequences as FASTA
  • .faa: CDS/sORF amino acid sequences as FASTA

Usage

Usage:

bakta --help
usage: bakta [--db DB] [--min-contig-length MIN_CONTIG_LENGTH] [--prefix PREFIX] [--output OUTPUT] [--genus GENUS] [--species SPECIES] [--strain STRAIN] [--plasmid PLASMID] [--complete] [--prodigal-tf PRODIGAL_TF] [--translation-table {11,4}] [--gram {+,-,?}] [--locus LOCUS]
             [--locus-tag LOCUS_TAG] [--keep-contig-headers] [--replicons REPLICONS] [--skip-trna] [--skip-tmrna] [--skip-rrna] [--skip-ncrna] [--skip-ncrna-region] [--skip-crispr] [--skip-cds] [--skip-sorf] [--skip-gap] [--skip-ori] [--help] [--verbose] [--threads THREADS]
             [--tmp-dir TMP_DIR] [--version] [--citation]
             <genome>

Comprehensive and rapid annotation of bacterial genomes.

positional arguments:
  <genome>              (Draft) genome in fasta format

Input / Output:
  --db DB, -d DB        Database path (default = <bakta_path>/db)
  --min-contig-length MIN_CONTIG_LENGTH, -m MIN_CONTIG_LENGTH
                        Minimum contig size (default = 1)
  --prefix PREFIX, -p PREFIX
                        Prefix for output files
  --output OUTPUT, -o OUTPUT
                        Output directory (default = current working directory)

Organism:
  --genus GENUS         Genus name
  --species SPECIES     Species name
  --strain STRAIN       Strain name
  --plasmid PLASMID     Plasmid name

Annotation:
  --complete            All sequences are complete replicons (chromosome/plasmid[s])
  --prodigal-tf PRODIGAL_TF
                        Path to existing Prodigal training file to use for CDS prediction
  --translation-table {11,4}
                        Translation table to use: 11/4 (default = 11)
  --gram {+,-,?}        Gram type: +/-/? (default = '?')
  --locus LOCUS         Locus prefix (instead of 'contig')
  --locus-tag LOCUS_TAG
                        Locus tag prefix
  --keep-contig-headers
                        Keep original contig headers
  --replicons REPLICONS, -r REPLICONS
                        Replicon information table (TSV)

Workflow:
  --skip-trna           Skip tRNA detection & annotation
  --skip-tmrna          Skip tmRNA detection & annotation
  --skip-rrna           Skip rRNA detection & annotation
  --skip-ncrna          Skip ncRNA detection & annotation
  --skip-ncrna-region   Skip ncRNA region detection & annotation
  --skip-crispr         Skip CRISPR array detection & annotation
  --skip-cds            Skip CDS detection & annotation
  --skip-sorf           Skip sORF detection & annotation
  --skip-gap            Skip gap detection & annotation
  --skip-ori            Skip oriC/oriT detection & annotation

General:
  --help, -h            Show this help message and exit
  --verbose, -v         Print verbose information
  --threads THREADS, -t THREADS
                        Number of threads to use (default = number of available CPUs)
  --tmp-dir TMP_DIR     Location for temporary files (default = system dependent auto detection)
  --version             show program's version number and exit
  --citation            Print citation

Annotation workflow

RNAs

  1. tRNA genes: tRNAscan-SE 2.0
  2. tmRNA genes: Aragorn
  3. rRNA genes: Infernal vs. Rfam rRNA covariance models
  4. ncRNA genes: Infernal vs. Rfam ncRNA covariance models
  5. ncRNA cis-regulatory regions: Infernal vs. Rfam ncRNA covariance models
  6. CRISPR arrays: PILER-CR

Bakta distinguishes ncRNA genes and (regulatory) regions in order to enable the distinct handling thereof during the annotation process, i.e. feature overlap detection.

ncRNA gene types:

  • sRNA
  • antisense
  • ribozyme
  • antitoxin

ncRNA (cis-regulatory) region types:

  • riboswitch
  • thermoregulator
  • leader
  • frameshift element

Coding sequences

The structural prediction is conducted via Prodigal and complemented by a custom detection of sORF < 30 aa.

To rapidly identify known protein sequences with exact sequence matches and to conduct a comprehensive annotations, Bakta utilizes a compact SQLite database comprising protein sequence digests and pre-annotations for millions of known protein sequences and clusters.

Conceptual terms:

  • UPS: unique protein sequences identified via length and MD5 digests (100% coverage & 100% sequence identity)
  • IPS: identical protein sequences comprising seeds of UniProt's UniRef100 protein sequence clusters
  • PSC: protein sequences clusters comprising seeds of UniProt's UniRef90 protein sequence clusters

CDS:

  1. Prediction via Prodigal respecting sequences' completeness (distinct prediction for complete replicons and uncompleted contigs)
  2. discard spurious CDS via AntiFam
  3. Detection of UPSs via MD5 digests and lookup of related IPS and PCS
  4. Homology search of remainder via Diamond vs. PSC (coverage=0.8, identity=0.9)
  5. Combination of available IPS & PSC information favouring more specific annotations and avoiding redundancy

CDS without IPS or PSC hits as well as those without gene symbols or product descriptions different from hypothetical will be marked as hypothetical.

sORFs:

  1. Custom sORF detection & extraction with amino acid lengths < 30 aa
  2. Apply strict feature type-dependent overlap filters
  3. discard spurious sORF via AntiFam
  4. Detection of UPS via MD5 hashes and lookup of related IPS
  5. Homology search of remainder via Diamond vs. an sORF subset of PSCs (coverage=0.9, identity=0.9)
  6. Exclude sORF without sufficient annotation information

sORF not identified via IPS or PSC will be discarded. Additionally, all sORF without gene symbols or product descriptions different from hypothetical will be discarded. Due due to uncertain nature of sORF prediction, only those identified via IPS / PSC hits exhibiting proper gene symbols or product descriptions different from hypothetical will be included in the final annotation.

Miscellaneous

  1. Gaps: in-mem detection & annotation of sequence gaps
  2. oriC/oriV/oriT: Blast+ (cov=0.8, id=0.8) vs. MOB-suite oriT & DoriC oriC/oriV sequences. Annotations of ori regions take into account overlapping Blast+ hits and are conducted based on a majority vote heuristic. Region edges are fuzzy - use with caution!

Database

The Bakta database comprises a set of AA & DNA sequence databases as well as HMM & covariance models. At its core Bakta utilizes a compact SQLite db storing protein sequence digests, lengths, pre-annotations and dbxrefs of UPS, IPS and PSC from:

  • UPS: UniParc / UniProtKB (192,795,177)
  • IPS: UniProt UniRef100 (169,958,214)
  • PSC: UniProt UniRef90 (77,128,011)

This allows the exact protein sequences identification via MD5 digests & sequence lengths as well as the rapid subsequent lookup of related information. Protein sequence digests are checked for hash collisions while the db creation process. IPS & PSC have been comprehensively pre-annotated integrating annotations & database dbxrefs from:

  • NCBI nonredundant proteins ('WP_*' -> 139,330,543)
  • NCBI COG db (coverage=80%, identity=90% -> 1,893,080)
  • GO terms (via SwissProt IPS/PSC exact matches)
  • EC (via SwissProt IPS/PSC exact matches)
  • NCBI AMRFinderPlus (IPS exact matches, PSC HMM hits reaching trusted cutoffs)
  • ISFinder db (coverage=90%, identify=99% -> 2,981)

Rfam covariance models:

  • ncRNA: 750
  • ncRNA cis-regulatory regions: 107

To provide FAIR annotations, the database releases are SemVer versioned (w/o patch level), i.e. <major>.<minor>. For each version we provide a comprehensive log file tracking all imported sequences as well as annotations thereof. The db schema is represented by the <major> digit and automatically checked at runtime by Bakta in order to ensure compatibility. Content updates are tracked by the <minor> digit.

All database releases (latest 1.0, 23 Gb zipped, 43 Gb unzipped) are hosted at Zenodo: DOI

WIP

We're keen to improve and expand Bakta. If you miss any features, please do not hesitate to ask for it! There are several features & improvements which we're currently working on or have plans to do so as well as barely ideas:

Workflow:

  • analysis of hypothetical CDS #28
  • detections of pseudo genes #4

Annotation:

  • (idea) KEGG KofamKOALA annotation #9
  • (idea) protein classification of IPS/PSC in terms of (amr, virulence, mobilization, conjugation, replication, etc) for subsequent visualization/analysis

Technical:

  • 3rd party dependency version checks at runtime #21
  • CWL description file #27
  • (idea) download/update the database within Bakta

Citation

A manuscript is not yet in preparation, but might be soon... To temporarily cite our work, please transitionally refer to:

Schwengers O., Goesmann A. (2020) Bakta: Rapid & standardized annotation of bacterial genomes & plasmids. GitHub https://github.com/oschwengers/bakta

Bakta takes advantage of many publicly available databases. If you find any of the data used within Bakta useful, please also be sure to credit the primary source also:

FAQ

  • Bakta is running too long without CPU load... why? Bakta takes advantage of an SQLite DB which results in high storage IO loads. If this DB is stored on a remote / network volume, the lookup of IPS/PSC annotations might take a long time. In these cases, please, consider moving the DB to a local volume/hard drive. Setting POSIX permissions of the db directory to read/access only (555) and files to read only (444) might also help:
chmod 444 <db-path>/*
chmod 555 <db-path>

Issues and Feature Requests

Bakta is brand new and like in every software, expect some bugs lurking around. So, if you run into any issues with Bakta, we'd be happy to hear about it. Therefore, please, execute bakta in verbose mode (-v) and do not hesitate to file an issue including as much information as possible:

  • a detailed description of the issue
  • command line output
  • log file (<prefix>.log)
  • result file (<prefix>.json) if possible
  • a reproducible example of the issue with an input file that you can share if possible

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

bakta-0.3.2.tar.gz (45.4 kB view hashes)

Uploaded Source

Built Distribution

bakta-0.3.2-py3-none-any.whl (69.7 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page