Metadata-Version: 2.4
Name: vaxrank
Version: 1.7.0
Summary: Mutant peptide ranking for personalized cancer vaccines
Home-page: https://github.com/openvax/vaxrank
Author: Alex Rubinsteyn, Julia Kodysh
Author-email: alex@openvax.org, julia@openvax.org
License: http://www.apache.org/licenses/LICENSE-2.0.html
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Console
Classifier: Operating System :: OS Independent
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python
Classifier: Topic :: Scientific/Engineering :: Bio-Informatics
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: numpy<3.0.0,>=2.0.0
Requires-Dist: pandas<3.0.0,>=2.1.4
Requires-Dist: pyensembl<3.0.0,>=2.0.0
Requires-Dist: varcode<2.0.0,>=1.1.0
Requires-Dist: isovar<2.0.0,>=1.3.0
Requires-Dist: mhctools<2.0.0,>=1.8.2
Requires-Dist: roman
Requires-Dist: jinja2<3.1
Requires-Dist: pdfkit
Requires-Dist: pypandoc
Requires-Dist: openpyxl
Requires-Dist: xvfbwrapper
Requires-Dist: future>=0.16.0
Requires-Dist: astropy>=6.1
Requires-Dist: datacache
Requires-Dist: pysam>=0.15.2
Requires-Dist: msgspec<1.0.0,>=0.18.6
Requires-Dist: ruff
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: license
Dynamic: license-file
Dynamic: requires-dist
Dynamic: summary

[![Tests](https://github.com/openvax/vaxrank/actions/workflows/tests.yml/badge.svg)](https://github.com/openvax/vaxrank/actions/workflows/tests.yml)
[![Coverage Status](https://coveralls.io/repos/github/openvax/vaxrank/badge.svg?branch=master)](https://coveralls.io/github/openvax/vaxrank?branch=master)
[![Docs](https://github.com/openvax/vaxrank/actions/workflows/docs.yml/badge.svg)](https://github.com/openvax/vaxrank/actions/workflows/docs.yml)
[![GitHub Pages](https://github.com/openvax/vaxrank/actions/workflows/pages/pages-build-deployment/badge.svg)](https://github.com/openvax/vaxrank/actions/workflows/pages/pages-build-deployment)
<a href="https://pypi.python.org/pypi/vaxrank/">
    <img src="https://img.shields.io/pypi/v/vaxrank.svg?maxAge=1000" alt="PyPI" />
</a>

# vaxrank

Selection of mutated protein fragments for therapeutic personalized cancer vaccines.

## Usage

```sh
vaxrank \
    --vcf tests/data/b16.f10/b16.vcf \
    --bam tests/data/b16.f10/b16.combined.bam \
    --vaccine-peptide-length 25 \
    --mhc-predictor netmhc \
    --mhc-alleles H2-Kb,H2-Db \
    --padding-around-mutation 5 \
    --output-ascii-report vaccine-peptides.txt \
    --output-pdf-report vaccine-peptides.pdf \
    --output-html-report vaccine-peptides.html
```

### Using a YAML Configuration File

You can specify common parameters in a YAML configuration file to avoid repeating them on every run:

```sh
vaxrank --config my_config.yaml --vcf variants.vcf --bam tumor.bam
```

Example `my_config.yaml`:
```yaml
epitope_config:
  min_epitope_score: 0.001
  logistic_epitope_score_midpoint: 350.0
  logistic_epitope_score_width: 150.0

vaccine_config:
  vaccine_peptide_length: 25
  padding_around_mutation: 5
  max_vaccine_peptides_per_variant: 1
  num_mutant_epitopes_to_keep: 1000  # set to 0 to keep all
```

CLI arguments override values from the config file.

## Installation

Vaxrank can be installed using [pip](https://packaging.python.org/installing/#use-pip-for-installing):

```
pip install vaxrank
```

**Requirements:** Python 3.9+

Note: to generate PDF reports, you first need to install [wkhtmltopdf](http://wkhtmltopdf.org/), which you can do (on macOS) like so:

```
brew install --cask wkhtmltopdf
```

Vaxrank uses [PyEnsembl](https://github.com/openvax/pyensembl) for accessing information about the reference genome. You must install an Ensembl release corresponding to the reference genome associated with the mutations provided to Vaxrank.

Example for GRCh38 (adjust release to match your reference):
```
pyensembl install --release 113 --species human
```

Example for GRCh37 (legacy):
```
pyensembl install --release 75 --species human
```

If your variants were called from alignments against hg19 then you can still use GRCh37 but should ignore mitochondrial variants.

## Features

### Reference Proteome Filtering

Vaxrank filters out peptides that exist in the reference proteome to focus on truly novel mutant sequences. This uses a set-based kmer index for O(1) membership testing. The index is built once and cached locally for subsequent runs.

### Cancer Hotspot Annotation

Vaxrank annotates variants that occur at known cancer mutation hotspots using bundled data from [cancerhotspots.org](https://www.cancerhotspots.org/) (Chang et al. 2016, 2017). This helps identify clinically relevant mutations. The hotspot data includes ~2,700 recurrently mutated positions across cancer types.

### MHC Binding Prediction

Vaxrank integrates with multiple MHC binding predictors via [mhctools](https://github.com/openvax/mhctools), including:
- NetMHC / NetMHCpan
- MHCflurry (open source, installed by default)

## Paper & Citation

There is a Vaxrank paper on biorxiv called [Vaxrank: A Computational Tool For Designing Personalized Cancer Vaccines](https://www.biorxiv.org/content/early/2017/05/27/142919) which can be cited as:

    @article {Rubinsteyn142919,
        author = {Rubinsteyn, Alex and Hodes, Isaac and Kodysh, Julia and Hammerbacher, Jeffrey},
        title = {Vaxrank: A Computational Tool For Designing Personalized Cancer Vaccines},
        year = {2017},
        doi = {10.1101/142919},
        publisher = {Cold Spring Harbor Laboratory},
        abstract = {Therapeutic vaccines targeting mutant tumor antigens ({\textquotedblleft}neoantigens{\textquotedblright}) are an increasingly popular form of personalized cancer immunotherapy. Vaxrank is a computational tool for selecting neoantigen vaccine peptides from tumor mutations, tumor RNA data, and patient HLA type. Vaxrank is freely available at www.github.com/hammerlab/vaxrank under the Apache 2.0 open source license and can also be installed from the Python Package Index.},
        URL = {https://www.biorxiv.org/content/early/2017/05/27/142919},
        eprint = {https://www.biorxiv.org/content/early/2017/05/27/142919.full.pdf},
        journal = {bioRxiv}
    }


## Development

To install Vaxrank for local development:

```bash
git clone git@github.com:openvax/vaxrank.git
cd vaxrank
python -m venv venv
source venv/bin/activate
pip install -r requirements.txt
pip install -e .
# Examples; adjust release to match your reference
pyensembl install --release 113 --species human
pyensembl install --release 113 --species mouse
```

Run linting and tests:

```bash
./lint.sh && ./test.sh
```

The first run of the tests may take a while to build the reference proteome kmer index, but subsequent runs will use the cached index.

## Architecture

### Configuration

Vaxrank uses [msgspec](https://jcristharif.com/msgspec/) Struct objects for configuration:

- **`EpitopeConfig`**: Parameters for epitope scoring and filtering
  - `logistic_epitope_score_midpoint`: IC50 value at which epitope score is 0.5 (default: 350 nM)
  - `logistic_epitope_score_width`: Width parameter for logistic scoring function (default: 150)
  - `min_epitope_score`: Minimum normalized score threshold (default: 0.00001)
  - `binding_affinity_cutoff`: Maximum IC50 to consider (default: 5000 nM)

- **`VaccineConfig`**: Parameters for vaccine peptide assembly
  - `vaccine_peptide_length`: Length of vaccine peptides (default: 25 aa)
  - `padding_around_mutation`: Off-center windows to consider (default: 5)
  - `max_vaccine_peptides_per_variant`: Max peptides per variant (default: 1)
  - `num_mutant_epitopes_to_keep`: Epitopes to keep per variant (default: 1000, set to 0 to keep all)

### Key Modules

- **`reference_proteome.py`**: Set-based kmer index for checking if peptides exist in the reference proteome
- **`cancer_hotspots.py`**: Lookup for known cancer mutation hotspots
- **`epitope_logic.py`**: Epitope scoring and filtering logic
- **`core_logic.py`**: Main vaccine peptide selection algorithm
- **`report.py`**: Report generation (ASCII, HTML, PDF, XLSX)

## Dependencies

Key dependencies:
- `pyensembl`: Reference genome annotation
- `varcode`: Variant effect prediction
- `isovar`: RNA-based variant calling
- `mhctools`: MHC binding prediction
- `msgspec`: Configuration serialization (YAML/JSON)
- `pandas`, `numpy`: Data processing
- `jinja2`, `pdfkit`: Report generation

## Scripts

Helper scripts included in the repo:
- `develop.sh`: installs the package in editable mode and sets `PYTHONPATH` to the repo root.
- `lint.sh`: runs ruff on `vaxrank` and `tests`.
- `test.sh`: runs pytest with coverage.
- `deploy.sh`: runs lint/tests, builds a distribution with `build`, uploads via `twine`, and tags the release (`vX.Y.Z`). Deploy is restricted to the `main`/`master` branch.
