Skip to main content

WASP: A computational pipeline for protein functional annotation using structural information.

Project description

WASP: Protein Functional Annotation using AlphaFold structures

Welcome to the official repository for the paper WASP: A pipeline for functional annotation based on AlphaFold structural models!

WASP, Whole-proteome Annotation through Structural-homology Pipeline, is a python-based software designed for comprehensive organism annotation at the whole-proteome level based on structural homology.

WASP is a user-friendly command-line tool that only requires the NCBI taxonomy ID of the organism of interest as an input. Using the computational speed of Foldseek [1], WASP generates a graphical representation of reciprocal hits between the organism protein query and the AlphaFold database [2, 3], enabling downstream robust functional enrichment and statistical testing. WASP annotates uncharacterised proteins using multiple functional descriptors, including GO terms, Pfam domains, PANTHER family classification and CATH superfamilies, Rhea IDs and EC numbers. Additionally, WASP provides a module to map native proteins to orphan reactions in genome-scale models based on structural homology.

drawing

Table of Contents

  1. Installation
  2. Usage
  3. References

1. Installation

1.1 External requirements

  • Foldseek >= 8
  • gsutil (for accessing AlphaFold DB)

The manuscript results were obtained using Python 3.10.14 and Foldseek 8-ef4e960.

1.2 Quickstart

✅ Recommended: Install from PyPI

  1. Create and activate a virtual environment:
python3 -m venv wasp-env
source wasp-env/bin/activate

or

conda create -n wasp-env python==3.10 -y
conda activate wasp-env
  1. Install WASP:
pip install wasp-protein-annotation

Then, install Foldseek in the /bin of the project root. Follow the installation instructions at Foldseek GitHub.

Example for a Linux AVX2 build:

# Linux AVX2 build (check using: cat /proc/cpuinfo | grep avx2)
wget https://mmseqs.com/foldseek/foldseek-linux-avx2.tar.gz; tar xvzf foldseek-linux-avx2.tar.gz; export PATH=$(pwd)/foldseek/bin/:$PATH

Install gsutil and initialise the gcloud CLI, following instructions for your machine at Google Cloud Storage Documentation.

🛠️ For Development: Install from Source

  1. Clone the repository:
git clone https://github.com/gioodm/wasp-protein-annotation.git
cd WASP
  1. Create and activate a virtual environment:
python3 -m venv wasp-env
source wasp-env/bin/activate

or

conda create -n WASP python==3.10 -y
conda activate WASP
  1. Install the package locally:
pip install .

Install Foldseek and gsutil.

2. Usage

2.1 Whole-proteome annotation

Usage

First, identify the NCBI taxonomy ID of your organism of interest. You can find the ID at NCBI Taxonomy. You can use AlphaFold DB to check how many structures are linked to that ID by searching the same ID on the AFDB search bar.

Once you have identified the taxid, run the pipeline as follows (e.g., for organism S. cerevisiae S288c, taxid: 559292):

wasp-run 559292

This requires gsutil installed.
Note: On the first run, the AlphaFold DB clustered at 50% will need to be downloaded using Foldseek. This can take some time depending on your machine's performance and internet speed. Ensure you have sufficient storage space to host the database. After the initial setup, WASP annotation will take up to 3 hours for iteration for a proteome of approximately 6000 proteins.

Additional parameters can be customised, including:

  • -e evalue_threshold: set the evalue threshold (default: 10e-10)
  • -b bitscore threshold: set the bitscore threshold (default: 50)
  • -n max_neighbours: set the max number of neighbours (default: 10)
  • -s step: set step to add to max neighbours (n) in additional iterations (default: 10)
  • -i iterations: set number of iterations to perform (default: 3)

Usage examples:

wasp-run -e 1e-50 -b 200 -n 5 -i 5 559292
wasp-run -s 5 559292

To use a custom dataset (e.g., a newly sequenced genome or a set of proteins from different organisms), create a tarred folder containing the protein structures (.cif.gz or .pdb.gz format) and place it in a folder called proteomes/ within the WASP folder - example folder in example_files/price.tar. Then run WASP with:

wasp-run your_custom.tar

An example of the final output can be found at example_files/price_annotated.xlsx

2.2 GEM gap-filling module

Pre-processing

Some pre-processing steps are required to obtain a standardized input file for the WASP pipeline. Potential modifications to the Python scripts might be needed depending on the GEM format.

  • find-orphans: identifies orphan reactions in the GEM (accepted extensions: .xml, .sbml, .json, and .mat) using the Python3 cobrapy module. Annotation in different formats (accepted: BiGG, Rhea, EC number, KEGG, PubMed, MetaNetX) present in the model is retrieved - input example at: example_files/gap_filling/iYLI649.xml, output example at: example_files/gap_filling/iYLI649_orphans.txt.

  • run-rxn2code: each reaction annotation is mapped to the corresponding Rhea reaction ID and/or EC number when available. The output file includes: 1. reaction id, 2. reaction extended name, 3. Rhea IDs, 4. EC numbers. If MetaNetX codes are present, the reac_xref.tsv file (retrieved from MetaNetX) is needed - input example at: example_files/gap_filling/iYLI649_orphans.txt, output example at: example_files/gap_filling/iYLI649_gaps.txt.

The final gaps_file.txt must contain all 4 columns; if the reaction extended name is not present in the model, an empty column should be present. If no Rhea/EC IDs are identified, empty columns should be present instead.

Usage

wasp-gem [-h] [-e evalue_threshold] [-b bitscore_threshold] [-t tmscore] taxid gaps_file.txt

An example of the final output can be found at example_files/gap_filling/iYLI649_hits.txt

References

[1] van Kempen M, Kim SS, Tumescheit C, Mirdita M, Lee J, Gilchrist CLM, et al. Fast and accurate protein structure search with Foldseek. Nature Biotechnology. 2023. doi: https://doi.org/10.1038/s41587-023-01773-0

[2] Jumper J, Evans R, Pritzel A, Green T, Figurnov M, Ronneberger O, et al. Highly accurate protein structure prediction with AlphaFold. Nature. 2021;596(7873):583-9. doi: https://doi.org/10.1038/s41586-021-03819-2

[3] Varadi M, Bertoni D, Magana P, Paramval U, Pidruchna I, Radhakrishnan M, et al. AlphaFold Protein Structure Database in 2024: providing structure coverage for over 214 million protein sequences. Nucleic Acids Research. 2023;52(D1):D368–D375. doi: http://dx.doi.org/10.1093/nar/gkad1011

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

wasp_proteins_annotation-1.0.0.tar.gz (16.6 MB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

wasp_proteins_annotation-1.0.0-py3-none-any.whl (5.4 MB view details)

Uploaded Python 3

File details

Details for the file wasp_proteins_annotation-1.0.0.tar.gz.

File metadata

  • Download URL: wasp_proteins_annotation-1.0.0.tar.gz
  • Upload date:
  • Size: 16.6 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.10.0

File hashes

Hashes for wasp_proteins_annotation-1.0.0.tar.gz
Algorithm Hash digest
SHA256 0e19fe65ee9a3c19ad0275de5d891f0f73f44c55a4afd5b2a0da4f1759c07309
MD5 b9880aac904048bedc374099cbcf9058
BLAKE2b-256 a91f7ccf976bb1575da2948efc69e68ca1d43adf4e0fa4a7c0e231a7296519ae

See more details on using hashes here.

File details

Details for the file wasp_proteins_annotation-1.0.0-py3-none-any.whl.

File metadata

File hashes

Hashes for wasp_proteins_annotation-1.0.0-py3-none-any.whl
Algorithm Hash digest
SHA256 6ae2cd1fe2f130795d51bcb1f1db199890ddc2b37b135d1970a6175454a02ee1
MD5 1fc61b8c9cd0740d366791a14eb0e0ab
BLAKE2b-256 dec3c6a057a8e8d22c210c11248c20d1797ebe9d17d3159e750e8132dbfdf3f2

See more details on using hashes here.

Supported by

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