Skills DirectorySkills Directory
SkillsLearnSecurityCategoriesDocsCommunityBlog
Sign InSubmit Skill
Skills Directory

Security-tested agent skills for Claude, coding agents, and AI workflows.

Directory

  • Browse Skills
  • All Skills A–Z
  • Claude Skills
  • Claude Code Skills
  • Agent Skills
  • Categories
  • Submit a Skill

Learn

  • Learn Hub
  • Install Claude Skills
  • Write SKILL.md
  • Skills vs MCP
  • Directories Compared

Security

  • Security
  • Methodology
  • Secure Claude Skills
  • Security Badges

Company

  • About
  • Community
  • Blog
  • API Docs
  • Advertise

2026 Skills Directory. All rights reserved.

Back to skills

Popeve Variant Predictor Agent

ASecurity

--> --- name: 'popeve-variant-predictor-agent' description: 'AI-powered genetic variant pathogenicity prediction using PopEVE deep learning model for population-aware disease variant identification and rare disease diagnosis.' measurable_outcome: Execute skill workflow successfully with valid output within 15 minutes. allowed-tools: - read_file - run_shell_command --- The **PopEVE Variant Predictor Agent** leverages the PopEVE deep learning model from Harvard Medical School to predict pathoge...

2,984 stars
0 votes
0 copies
0 views
Added 5/31/2026
developmentpythongoshellbashnodedatabaseperformance

Works with

cli

Security Analysis

A100/100

Scanned 5/31/2026

Install to Claude Code

$npx -y skills add FreedomIntelligence/OpenClaw-Medical-Skills --skill popeve-variant-predictor-agent --agent claude-code

Installs into .claude/skills of the current project.

Are you the author of Popeve Variant Predictor Agent?

Add the live security badge to your README — it updates automatically with every re-scan.

Security grade badge for Popeve Variant Predictor Agent
[![Security: A — Skills Directory](https://www.skillsdirectory.com/api/skills/freedomintelligence-popeve-variant-predictor-agent/badge)](https://www.skillsdirectory.com/skills/freedomintelligence-popeve-variant-predictor-agent)

More formats (shields.io, HTML) on the badges page.

Download Zip
Files
SKILL.md
<!--
# COPYRIGHT NOTICE
# This file is part of the "Universal Biomedical Skills" project.
# Copyright (c) 2026 MD BABU MIA, PhD <md.babu.mia@mssm.edu>
# All Rights Reserved.
#
# This code is proprietary and confidential.
# Unauthorized copying of this file, via any medium is strictly prohibited.
#
# Provenance: Authenticated by MD BABU MIA

-->

---
name: 'popeve-variant-predictor-agent'
description: 'AI-powered genetic variant pathogenicity prediction using PopEVE deep learning model for population-aware disease variant identification and rare disease diagnosis.'
measurable_outcome: Execute skill workflow successfully with valid output within 15 minutes.
allowed-tools:
  - read_file
  - run_shell_command
---


# PopEVE Variant Predictor Agent

The **PopEVE Variant Predictor Agent** leverages the PopEVE deep learning model from Harvard Medical School to predict pathogenicity of genetic variants. PopEVE analyzes evolutionary conservation, protein structure, and population frequency to identify disease-causing variants, having identified over 100 previously unrecognized variants responsible for undiagnosed rare genetic diseases.

## When to Use This Skill

* When predicting pathogenicity of missense variants genome-wide.
* For rare disease diagnosis with variants of uncertain significance (VUS).
* To prioritize candidate variants in exome/genome sequencing.
* When interpreting novel variants not in ClinVar or literature.
* For population-stratified variant interpretation.

## Core Capabilities

1. **Pathogenicity Prediction**: Score any missense variant for disease likelihood.

2. **VUS Resolution**: Reclassify variants of uncertain significance.

3. **Rare Disease Diagnosis**: Identify causal variants in undiagnosed patients.

4. **Population-Aware Scoring**: Account for ancestry-specific variant frequencies.

5. **Protein Context Analysis**: Integrate structural and functional domains.

6. **Batch Variant Scoring**: Process thousands of variants efficiently.

## Model Architecture

| Component | Description | Data Source |
|-----------|-------------|-------------|
| Evolutionary Module | Deep sequence alignment | UniRef90, 250M seqs |
| Structural Module | AlphaFold2 structures | 200M+ structures |
| Population Module | gnomAD frequencies | 800K+ individuals |
| Clinical Module | ClinVar training | 100K+ classifications |
| Integration | Multi-task neural network | Combined features |

## Scoring Thresholds

| PopEVE Score | Interpretation | Suggested Action |
|--------------|----------------|------------------|
| > 0.9 | Likely Pathogenic | High priority |
| 0.7 - 0.9 | Possibly Pathogenic | Review carefully |
| 0.3 - 0.7 | Uncertain | Additional evidence needed |
| 0.1 - 0.3 | Possibly Benign | Lower priority |
| < 0.1 | Likely Benign | Deprioritize |

## Workflow

1. **Input**: VCF file, gene list, or individual variants.

2. **Annotation**: Map variants to transcripts and proteins.

3. **Feature Extraction**: Compute evolutionary, structural, population features.

4. **Prediction**: Run PopEVE model for pathogenicity scores.

5. **Population Adjustment**: Apply ancestry-specific calibration.

6. **Ranking**: Prioritize variants by score and gene relevance.

7. **Output**: Scored variants with interpretations.

## Example Usage

**User**: "Score all missense variants from this rare disease patient's exome to identify potential causal variants."

**Agent Action**:
```bash
python3 Skills/Genomics/PopEVE_Variant_Predictor_Agent/popeve_predict.py \
    --vcf patient_exome.vcf \
    --genome GRCh38 \
    --ancestry EUR \
    --gene_panel rare_disease_genes.txt \
    --min_score 0.5 \
    --output pathogenicity_scores.tsv
```

## Input Formats

| Format | Description | Example |
|--------|-------------|---------|
| VCF | Standard variant calls | patient.vcf.gz |
| TSV | Simple variant list | chr, pos, ref, alt |
| HGVS | Protein notation | NP_000546.1:p.Arg248Gln |
| Gene + Position | Gene-centric | TP53:R248Q |

## Output Components

| Column | Description |
|--------|-------------|
| Variant | Genomic/protein notation |
| PopEVE_Score | 0-1 pathogenicity score |
| Classification | Benign/VUS/Pathogenic |
| Confidence | Prediction confidence |
| EVE_Score | Evolutionary component |
| Structure_Score | Structural impact |
| Population_AF | Population frequency |
| Gene | Affected gene |
| Domain | Protein domain affected |
| ClinVar | Existing classification if any |

## Comparison with Other Tools

| Tool | PopEVE Advantage |
|------|------------------|
| SIFT/PolyPhen | More accurate, deep learning |
| CADD | Population-aware, less bias |
| REVEL | Better rare variant handling |
| AlphaMissense | Complimentary; can ensemble |
| ClinVar | Scores novel variants |

## AI/ML Components

**Deep Learning Architecture**:
- Transformer for sequence context
- Graph neural network for structure
- Variational autoencoder for evolution
- Gradient boosting for integration

**Training Strategy**:
- Semi-supervised with ClinVar labels
- Evolutionary likelihood (unsupervised)
- Population frequency calibration
- Cross-validation across genes

**Population Modeling**:
- Ancestry-specific allele frequencies
- Selection coefficient estimation
- Demographic history modeling

## Performance Metrics

| Metric | PopEVE | AlphaMissense | REVEL |
|--------|--------|---------------|-------|
| AUROC (ClinVar) | 0.95 | 0.94 | 0.92 |
| AUROC (DMS) | 0.89 | 0.90 | 0.85 |
| VUS Resolution | 45% | 40% | 35% |
| Cross-ancestry | 0.93 | 0.91 | 0.88 |

## Prerequisites

* Python 3.10+
* PyTorch, transformers
* PopEVE model weights
* Reference genome (GRCh37/38)
* VEP or similar annotator
* gnomAD database access

## Related Skills

* AlphaMissense_Agent - For AlphaMissense predictions
* DiagAI_Agent - For clinical diagnosis support
* ACMG_Classifier_Agent - For ACMG classification
* Pharmacogenomics_Agent - For drug-gene variants

## Disease Categories

| Category | Example Genes | PopEVE Performance |
|----------|---------------|-------------------|
| Cardiomyopathy | MYH7, MYBPC3 | Excellent |
| Neurological | SCN1A, KCNQ2 | Excellent |
| Cancer Predisposition | BRCA1, TP53 | Good-Excellent |
| Metabolic | PAH, CFTR | Good |
| Immunodeficiency | BTK, WAS | Good |

## Special Considerations

1. **Gene Coverage**: Best for well-conserved genes with orthologs
2. **Protein-Coding Only**: Missense variants in coding regions
3. **Novel Genes**: Lower confidence for poorly characterized genes
4. **Ancestry Calibration**: Use appropriate population reference
5. **Ensemble Approach**: Combine with AlphaMissense for best results

## Clinical Integration

| Step | Action |
|------|--------|
| 1 | Run PopEVE on all coding variants |
| 2 | Filter by phenotype-relevant genes |
| 3 | Rank by PopEVE score |
| 4 | Review top candidates |
| 5 | Apply ACMG criteria with PopEVE as evidence |
| 6 | Validate with functional studies if available |

## Author

AI Group - Biomedical AI Platform


<!-- AUTHOR_SIGNATURE: 9a7f3c2e-MD-BABU-MIA-2026-MSSM-SECURE -->

Attribution

FreedomIntelligenceFreedomIntelligence
View sourceMore from FreedomIntelligence →
SSkills DirectorySkills Directory

Your tool, in front of Claude Code builders.

3 founder slots · $299/mo · GSC-verified traffic · sponsors can never buy grades.

See placements

Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.

Comments (0)

No comments yet. Be the first to comment!

SSkills DirectorySkills Directory

Your tool, in front of Claude Code builders.

3 founder slots · $299/mo · GSC-verified traffic · sponsors can never buy grades.

See placements

Related Skills

Browser Extension Developer

Use this skill when developing or maintaining browser extension code in the `browser/` directory, including Chrome/Firefox/Edge compatibility, content scripts, background scripts, or i18n updates.

281612 votes

Seo Optimizer

SEO optimization with keyword analysis, readability assessment, technical validation, content quality. Use for search rankings, blog posts, content audits, or encountering keyword density, readability scores, meta tags, schema markup errors.

2132 votes

Google Official Seo Guide

Official Google SEO guide covering search optimization, best practices, Search Console, crawling, indexing, and improving website search visibility based on official Google documentation

1862 votes

Tanstack Start

Build a full-stack TanStack Start app on Cloudflare Workers from scratch — SSR, file-based routing, server functions, D1+Drizzle, better-auth, Tailwind v4+shadcn/ui. Use whenever the user mentions TanStack Start, asks to scaffold a full-stack Cloudflare app with SSR, wants an SSR dashboard, or asks for a React 19 + Cloudflare Workers app with file-based routing and server functions — even if they don't name TanStack Start specifically. No template repo — Claude generates every file fresh per ...

9881 votes

Pentest

PTES-aligned adversarial security audit for backend, frontend, and mobile applications. Produces a CVSS-scored Hacker Report with verified PoCs and phased remediation.

5491 votes
View all in development →