A collection of AWS HealthOmics workflow examples to accelerate drug discovery.
The following workflows are provided in assets/workflows/archive for reference but are no longer maintained.
ABodyBuilder3: From Exscientia. Predict the 3D structure of antibody heavy and light chains.
Aggrescan3D: From University of Warsaw and Biologia Molecular Universitat Autònoma de Barcelona. Predict protein stability.
AlphaBind: From A-Alpha Bio. Predict and optimize antibodu-antigen binding affinity.
AntiFold: From Oxford Protein Informatics Group. Antibody inverse folding.
BioNeMo NiM Protein Design Use BioNeMo NiM containers to design proteins using RFDifusion, ProteinMPNN, and AlphaFold-Multimer.
BioPhi: From Merck. Automated humanization and humanness evaluation.
DeepSTABp: From RPTU. Predict protein stability.
Design Nanobodies: Generate de novo nanobody candidates against a given target protein structure and epitope using RFDiffusion, ProteinMPNN, ESMFold, AMPLIFY, and NanobodyBuilder2.
DiffAb: From Helixon. Antigen-specific protein design.
Efficient Evolution: From Stanford University. Rapid protein evolution
EvoProtGrad: From NREL. Directed evolution on a protein sequence with gradient-based discrete Markov chain monte carlo (MCMC).
EquiFold: From Prescient Design, a Genentech accelerator. Predict protein structures with an novel coarse-grained structure representation.
Humatch: From Oxford Protein Informatics Group. Humanize antibodies.
MMseqs2: From Max Planck Institute. Ultra fast and sensitive sequence search and clustering suite.
NanobodyBuilder2: From Oxford Protein Informatics Group. Predict the 3D structure of single-chain nanobodies.
OpenFold2: From Columbia University. Trainable, memory-efficient, and GPU-friendly PyTorch reproduction of AlphaFold 2.
PEP-Patch: From University of Innsbruck. Predict protein electrostatics.
ProteinMPNN-ddG: From Pepton. Inverse folding model of protein stability.
RFDiffusion-ProteinMPNN: From the Institute for Protein Design at the University of Washington. Generate protein backbone structures and sequences given a binding target or other structural context.
ThermoMPNN: From the University of North Carolina School of Medicine. Predict changes in thermodynamic stability for protein point mutants.
This repository contains Amazon CloudFormation templates and supporting resources to automatically deploy AWS HealthOmics private workflows into your AWS account. You are responsible for all costs associated with the deployed resources.
cd into the project dir.bash scripts/deploy.sh \
-b "my-deployment-bucket" \
-n "my-aho-ddw-stack" \
-r "us-east-1"
The CloudFormation deployment and asset build steps should finish in about 15 minutes. Once the deployment has finished, you can create a private workflow run using the Amazon HealthOmics console, CLI, or SDK.
Once the deployment has finished, you can create a private workflow run using the Amazon HealthOmics console, CLI, or SDK. You may re-run the ./deploy.sh script with the same arguments to update the CloudFormation stacks after code modifications to NextFlow scripts, Dockerfiles, or container build context directories are saved. This will trigger a rebuild and push of containers to ECR with the latest tag, and create new versions of the HealthOmics workflows.
To add a new module add the necessary files to the assets folder. There are three main components:
Many of the workflows in this repository require additional model weights or reference data. Please refer to the README files for each workflow in the workflows/ folder.
Follow these steps to download data from third-party repositories:
aws secretsmanager create-secret \
--name MyDataCredentials \
--description "My data credentials." \
--secret-string "{\"API_KEY\":\"MyFakeKey\",\"ORG\":\"myfakeorg\"}"
assets/data folder.-s option and pass in your secret name (not the key or value) from step 1. CodeBuild will save these secret values as environment variables in the data download job.
To add a new module, fork the repository. There are three main components:
main.nf script.assets/
└──containers/
├── alphafold
├── biolambda
└── ...
data/
├── esm2.txt
├── esmfold.txt
├── rfdiffusion.txt
└── ...
workflows/
├── alphafold2/
├── alphafold-multimer/
└── ...
The containers folder contains Dockerfiles and supporting files to build docker containers. The deployment process will attempt to use every subfolder here as a Docker build context without any further configuration. Right now, there are two types of containers provided by default.
The data folder contains .txt files that specify uris to download during stack creation. The deployment workflow will save the contents of each file in the following S3 locations:
You can lint this repositories NextFlow code using the AWS provided tool awslabs/linter-rules-for-nextflow, which has been been integrated with make:
make lint
Python
82.1%
Nextflow
10.7%
Shell
4.4%
Dockerfile
2.8%
A collection of AWS HealthOmics workflow examples to accelerate drug discovery.
The following workflows are provided in assets/workflows/archive for reference but are no longer maintained.
ABodyBuilder3: From Exscientia. Predict the 3D structure of antibody heavy and light chains.
Aggrescan3D: From University of Warsaw and Biologia Molecular Universitat Autònoma de Barcelona. Predict protein stability.
AlphaBind: From A-Alpha Bio. Predict and optimize antibodu-antigen binding affinity.
AntiFold: From Oxford Protein Informatics Group. Antibody inverse folding.
BioNeMo NiM Protein Design Use BioNeMo NiM containers to design proteins using RFDifusion, ProteinMPNN, and AlphaFold-Multimer.
BioPhi: From Merck. Automated humanization and humanness evaluation.
DeepSTABp: From RPTU. Predict protein stability.
Design Nanobodies: Generate de novo nanobody candidates against a given target protein structure and epitope using RFDiffusion, ProteinMPNN, ESMFold, AMPLIFY, and NanobodyBuilder2.
DiffAb: From Helixon. Antigen-specific protein design.
Efficient Evolution: From Stanford University. Rapid protein evolution
EvoProtGrad: From NREL. Directed evolution on a protein sequence with gradient-based discrete Markov chain monte carlo (MCMC).
EquiFold: From Prescient Design, a Genentech accelerator. Predict protein structures with an novel coarse-grained structure representation.
Humatch: From Oxford Protein Informatics Group. Humanize antibodies.
MMseqs2: From Max Planck Institute. Ultra fast and sensitive sequence search and clustering suite.
NanobodyBuilder2: From Oxford Protein Informatics Group. Predict the 3D structure of single-chain nanobodies.
OpenFold2: From Columbia University. Trainable, memory-efficient, and GPU-friendly PyTorch reproduction of AlphaFold 2.
PEP-Patch: From University of Innsbruck. Predict protein electrostatics.
ProteinMPNN-ddG: From Pepton. Inverse folding model of protein stability.
RFDiffusion-ProteinMPNN: From the Institute for Protein Design at the University of Washington. Generate protein backbone structures and sequences given a binding target or other structural context.
ThermoMPNN: From the University of North Carolina School of Medicine. Predict changes in thermodynamic stability for protein point mutants.
This repository contains Amazon CloudFormation templates and supporting resources to automatically deploy AWS HealthOmics private workflows into your AWS account. You are responsible for all costs associated with the deployed resources.
cd into the project dir.bash scripts/deploy.sh \
-b "my-deployment-bucket" \
-n "my-aho-ddw-stack" \
-r "us-east-1"
The CloudFormation deployment and asset build steps should finish in about 15 minutes. Once the deployment has finished, you can create a private workflow run using the Amazon HealthOmics console, CLI, or SDK.
Once the deployment has finished, you can create a private workflow run using the Amazon HealthOmics console, CLI, or SDK. You may re-run the ./deploy.sh script with the same arguments to update the CloudFormation stacks after code modifications to NextFlow scripts, Dockerfiles, or container build context directories are saved. This will trigger a rebuild and push of containers to ECR with the latest tag, and create new versions of the HealthOmics workflows.
To add a new module add the necessary files to the assets folder. There are three main components:
Many of the workflows in this repository require additional model weights or reference data. Please refer to the README files for each workflow in the workflows/ folder.
Follow these steps to download data from third-party repositories:
aws secretsmanager create-secret \
--name MyDataCredentials \
--description "My data credentials." \
--secret-string "{\"API_KEY\":\"MyFakeKey\",\"ORG\":\"myfakeorg\"}"
assets/data folder.-s option and pass in your secret name (not the key or value) from step 1. CodeBuild will save these secret values as environment variables in the data download job.
To add a new module, fork the repository. There are three main components:
main.nf script.assets/
└──containers/
├── alphafold
├── biolambda
└── ...
data/
├── esm2.txt
├── esmfold.txt
├── rfdiffusion.txt
└── ...
workflows/
├── alphafold2/
├── alphafold-multimer/
└── ...
The containers folder contains Dockerfiles and supporting files to build docker containers. The deployment process will attempt to use every subfolder here as a Docker build context without any further configuration. Right now, there are two types of containers provided by default.
The data folder contains .txt files that specify uris to download during stack creation. The deployment workflow will save the contents of each file in the following S3 locations:
You can lint this repositories NextFlow code using the AWS provided tool awslabs/linter-rules-for-nextflow, which has been been integrated with make:
make lint
Python
82.1%
Nextflow
10.7%
Shell
4.4%
Dockerfile
2.8%