Skip to main content

AEGIS Logo

AEGIS: Annotation Extraction Genomic Integration Suite

License: GPL v3 Python Version PyPI version Docker Hub GitHub license

AEGIS is a powerful and flexible Python-based suite for the manipulation, analysis, and integration of genomic annotations. It provides a robust, object-oriented framework for working with genomic data, enabling complex analyses and data transformations with intuitive, high-level commands.

Key Features

  • Object-Oriented Design: AEGIS represents genomic features (genes, transcripts, exons, etc.) as a hierarchical system of custom Python classes, providing a clean and intuitive API for data manipulation.
  • Comprehensive Annotation Handling: Seamlessly parse, process, and export genomic annotations in GFF3 format.
  • Extensible and Modular: The modular design of AEGIS allows for easy extension and integration with other bioinformatics tools and pipelines.
  • Command Line Interface: Running "aegis --help" in the terminal will show an updated list of the available commands whilst individual command help can be found with "aegis {command} --help". There is a total of 14 commands and some of the key functionalities are: tidy up and/or reformat gff/fasta files, sequence extraction, summary annotation statistics, merging of annotations, and comparative genomic analyses such as orthology detection and synteny analysis between annotation files associated to different genomes.

The AEGIS Class System

The core of AEGIS is its custom class system, which models the hierarchical nature of genomic annotations. This object-oriented approach provides several key advantages over traditional, line-by-line processing of annotation files:

  • Intuitive Data Representation: Genomic features are not just lines in a file; they are objects with properties and relationships. A Gene object contains Transcript objects, which in turn contain Exon and CDS objects. This makes the code more readable, maintainable, and less error-prone.
  • Data Integrity: The class system enforces data consistency. For example, when a Gene object is updated, all its associated Transcript and sub-feature objects are updated accordingly, ensuring that the annotation remains coherent.
  • Complex Queries and Manipulations: The object-oriented structure allows for complex queries and manipulations that would be difficult to perform with traditional text-based tools. For example, you can easily retrieve all coding transcripts for a specific gene, or calculate the total length of all exons in a given transcript.
  • Code Reusability: The class-based design promotes code reusability. Once you have defined a class for a specific genomic feature, you can reuse it in different parts of your analysis pipeline.
  • Robust Maintenance: Unit tests and continuous integration ensure that the code is reliable and maintainable.

Core Classes

  • Genome: Represents a genome, containing a collection of Scaffold objects.
  • Scaffold: Represents a chromosome or scaffold, containing the sequence and a collection of Gene objects.
  • Annotation: The main container for genomic annotations, holding a collection of Gene objects.
  • Gene: Represents a gene, containing one or more Transcript objects.
  • Transcript: Represents a transcript, containing Exon, CDS, and UTR objects.
  • Exon, CDS, UTR, Intron: Represent the sub-features of a transcript.
  • Protein, Promoter: Represent other biological features of interest.

Installation

You can install and run AEGIS in several ways. Using a container (Docker or Singularity) is the recommended approach as it handles all dependencies automatically.

Using Docker (Recommended)

If you have Docker installed, you can easily pull and run the pre-built AEGIS image from Docker Hub. This image includes AEGIS and all third-party software used for orthology analyses.

1a. Pull the image from Docker Hub:

docker pull tomsbiolab/aegis

1b. OR Pull the image from GHRC:

docker pull ghcr.io/tomsbiolab/aegis

2. Run an AEGIS command: The following command runs aegis extract on a test dataset. The -v flag is crucial as it makes your current directory accessible inside the container.

docker run --rm -ti -v `pwd`:`pwd` -w `pwd` tomsbiolab/aegis aegis extract -f protein test_data/arabidopsis_araport11.gff3 test_data/arabidopsis_tair10.fasta

3. (Optional) Build the image locally: If you want to build the image from the source code in this repository, you can use the provided Dockerfile.

docker build -t aegis local .

You can then run your local image by replacing tomsbiolab/aegis with aegis local.

Using Singularity

For high-performance computing (HPC) environments where Docker is not available, Singularity is an excellent alternative.

1. Build the Singularity image from Docker Hub:

singularity build aegis.sif docker://tomsbiolab/aegis

This will create a single aegis.sif file in your current directory.

2. Run an AEGIS command: Use the singularity run command to execute AEGIS. The -B flag mounts your current directory into the container.

singularity run -B `pwd`:`pwd` aegis.sif aegis extract -f protein test_data/arabidopsis_tair10.gff3 test_data/arabidopsis_tair10.fasta

From PyPI (Python Package Index)

Easiest way to install, however, some dependencies used in 'aegis orthology' will be missing (such as Liftoff, LiftOn, MCScan, Orthofinder, Diamond...). If you are planning to use 'aegis orthology' you will require these, so to avoid having to install the dependencies yourself see docker and singularity options above. The latest version in pypi will always match the version of the latest release.

pip3 install aegis-bio

From Source

Alternatively, you can install AEGIS directly from the source by cloning the repository and installing the required Python dependencies.

git clone https://github.com/Tomsbiolab/aegis.git
cd aegis
pip install .

# Or for development (editable mode):
pip install -e .

Usage

AEGIS is designed to be used as a library in your Python scripts or directly through the CLI

CLI commands

All of the commands are called with aegis {subcommand} in a terminal:

  • Native Tools (included in pip install):
    • Extract
      • Extracts all kinds of fasta features from an annotation.
    • Overlap
      • Overlap quantification of gene models (and their subfeatures) between any number of gffs associated to same genome
    • Rename
      • Rename gff feature ids.
    • Summary
      • Outputs tabular annotation stats as well as a series of plots.
    • Tidy
      • Cleans annotation files, fixes errors, issues warnings, and provides custom formatting options for extra flexibility/compatibility with third party tools.
    • Tidy-genome
      • Allows removal and/or renaming of genome features.
    • Merge
      • Custom merge of any number of gffs, prevent id clashes and control redundancy in same loci.
    • Symbols
      • Allows to add gene symbols into an annotation file based on tabular input
    • Motifs
      • Plots frequency of a particular DNA motif (allowing regular expressions) in promoter regions of chosen gene lists, all genome’s genes, and random gene lists.
    • Subset
      • Make all sorts of subsets of an annotation file, select by desired features (coding/non-coding) or even create lite versions for debugging/testing.
    • Split
      • Split an annotation and/or genome assembly into distinct files based on genomic feature names, haplotypes, or regex patterns.
    • Prune
      • Removes features based on id lists (transcript or gene level) and solves any derived issues, i.e. remove a gene if all of its transcripts are removed
    • Reformat:
      • Converts between gtf and gff formats.
    • List:
      • Lists gene ids or transcript ids from an annotation file, optionally selecting which types ofgenes/transcripts to include/exclude.
  • Integrative Pipelines (require Docker/Singularity or manual install):
    • Orthology
      • Comprehensive multi-tool comparison of gene ids from different genomes. All evidence is summarised and converted to a qualitative scale, allowing to select orthologues by confidence level.

As a Python library

Here is a simple example of how to load an annotation and extract the sequences of all genes:

from aegis.annotation import Annotation
from aegis.genome import Genome

# Load the genome and annotation
genome = Genome(name = "my_genome", genome_file_path = "path/to/genome.fasta")
annotation = Annotation(name = "my_annotation", annot_file_path = "path/to/annotation.gff3", genome=genome)

# Generate and export gene sequences
annotation.export.genes()

Documentation

For further and more detailed information on how to use the AEGIS package, including Jupyter Notebook examples, please refer to the GitHub Wiki. The wiki provides comprehensive guides and tutorials to help you get the most out of the suite.

Link to Wiki: https://github.com/Tomsbiolab/aegis/wiki

Citation

If you use AEGIS in your research, please cite the following journal article:

Navarro-Payá, D., Santiago, A., Velt, A., Moretto, M., Rustenholz, C., & Matus, J. T. (2026). AEGIS: An annotation extraction and genomic integration resource. Bioinformatics. doi: 10.1093/bioinformatics/btag363

License

AEGIS is licensed under the GNU General Public License v3.0. See the LICENSE.md file for more details. Third-party tools included in the Docker image are distributed under their respective licenses.

Release files for aegis-bio 0.4.1

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for aegis-bio 0.4.1
File Size Uploaded
aegis_bio-0.4.1.tar.gz 176.0 kB Details

Built distribution (wheel)

Table of built distributions (wheels) for aegis-bio 0.4.1
File Interpreter ABI Platform
aegis_bio-0.4.1-py3-none-any.whl Python 3 none any Details

Total release size: 336.6 kB

Release files / aegis_bio-0.4.1.tar.gz

Download URL aegis_bio-0.4.1.tar.gz
Size 176.0 kB
Tags Source
SHA-256 checksum
How to use checksums
3e45ebafc6eaf1e34ac7a418f5f73c7b5158438adf66390d3ce11ccf78bd1d4c
BLAKE2b-256 checksum
How to use checksums
cc15eb6c8092f10d833d94b6f001df40d91ad68714d544ab554a6b4a9995e0d0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.12.3

Release files / aegis_bio-0.4.1-py3-none-any.whl

Download URL aegis_bio-0.4.1-py3-none-any.whl
Size 160.5 kB
Tags Python 3
SHA-256 checksum
How to use checksums
6bc071091de2d5d891a84619117653d7284bcc22ba22eacc75da0ef4c24998ce
BLAKE2b-256 checksum
How to use checksums
49d8769e29c2d6af8e0844e15453e6100b60be5f556645780834f93e05a0dc16
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.12.3

Release history Release notifications | RSS feed

0.4.5

2 release files

0.4.3

2 release files

0.4.2

2 release files

This release

0.4.1 This release

2 release files

0.4.0

2 release files

0.3.25

2 release files

0.3.18

2 release files

0.3.14

2 release files

0.3.9

2 release files

0.3.1

2 release files

0.3.0

2 release files

0.2.6

2 release files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page