Agent skill · Data & Analytics

bio-immunoinformatics-neoantigen-prediction

Identify tumor neoantigens from somatic mutations using pVACtools for personalized cancer immunotherapy. Predict mutant peptides that bind patient HLA and may elicit T-cell responses. Use when identifying vaccine targets or checkpoint inhibitor response biomarkers from tumor sequencing data.

majiayu000github.com/majiayu000GitHub ↗
claude-codeMIT
Install
npx skills add majiayu000/claude-skill-registry --skill neoantigen-prediction --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 2
SKILL.md size: 7 KB
Bundled scripts: none
Path: skills/analysis/neoantigen-prediction/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 534
Language: HTML

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# Neoantigen Prediction ## pVACtools Pipeline ```bash # Install pVACtools pip install pvactools # Or use conda for dependencies conda create -n pvactools python=3.8 conda activate pvactools pip install pvactools # Download IEDB tools pvactools download_iedb_tools ``` ## pVACseq Workflow ```bash # Run pVACseq on annotated VCF pvacseq run \ annotated.vcf \ sample_name \ "HLA-A*02:01,HLA-A*24:02,HLA-B*07:02,HLA-B*44:02" \ MHCflurry MHCnuggetsI \ output_dir \ -e1 8,9,10,11 \ --iedb-install-directory /path/to/iedb # Key parameters: # -e1: Epitope lengths for MHC-I (8-11) # -e2: Epitope lengths for MHC-II (15) # --binding-threshold: IC50 cutoff (default 500) # --percentile-threshold: Alternative cutoff ``` ## VCF Annotation Requirements ```bash # pVACseq requires VEP-annotated VCF # Must include transcript and amino acid changes # Run VEP first vep -i somatic.vcf -o annotated.vcf \ --cache --offline \ --format vcf --vcf \ --plugin Downstream \ --plugin Wildtype \ --terms SO \ --symbol ``` ## Parse pVACseq Results ```python import pandas as pd def parse_pvacseq_results(results_file): '''Parse pVACseq output Key columns: - Mutation: Gene and amino acid change - HLA Allele: Patient HLA pres

What's inside
Steps it walks through
  1. pVACtools Pipeline
  2. pVACseq Workflow
  3. VCF Annotation Requirements
  4. Parse pVACseq Results
  5. Prioritize Neoantigens
  6. Alternative: Manual Neoantigen Pipeline
  7. Neoantigen Quality Metrics
  8. Related Skills
Ships with 1 file
  • metadata.json
Commands it runs
Install pVACtools
pip install pvactools
Or use conda for dependencies
conda create -n pvactools python=3.8
conda activate pvactools
Download IEDB tools
pvactools download_iedb_tools
Run pVACseq on annotated VCF
pvacseq run \
annotated.vcf \
More from claude-skill-registry
All skills →
About this skill
What does the bio-immunoinformatics-neoantigen-prediction skill do?

Identify tumor neoantigens from somatic mutations using pVACtools for personalized cancer immunotherapy. Predict mutant peptides that bind patient HLA and may elicit T-cell responses. Use when identifying vaccine targets or checkpoint inhibitor response biomarkers from tumor sequencing data.

How do I install it?

Run `npx skills add majiayu000/claude-skill-registry --skill neoantigen-prediction --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From majiayu000/claude-skill-registry, a repository with 534 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going