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

Prs Net Deep Learning Agent

ASecurity

--> --- name: 'prs-net-deep-learning-agent' description: 'Geometric deep learning-based polygenic risk score prediction using PRS-Net for modeling gene interactions, enhanced disease prediction, and cross-ancestry portability.' measurable_outcome: Execute skill workflow successfully with valid output within 15 minutes. allowed-tools: - read_file - run_shell_command --- The **PRS-Net Deep Learning Agent** implements interpretable geometric deep learning for polygenic risk score prediction. PRS...

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

Works with

cli

Security Analysis

A100/100

Scanned 5/31/2026

Install to Claude Code

$npx -y skills add FreedomIntelligence/OpenClaw-Medical-Skills --skill prs-net-deep-learning-agent --agent claude-code

Installs into .claude/skills of the current project.

Are you the author of Prs Net Deep Learning Agent?

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

Security grade badge for Prs Net Deep Learning Agent
[![Security: A — Skills Directory](https://www.skillsdirectory.com/api/skills/freedomintelligence-prs-net-deep-learning-agent/badge)](https://www.skillsdirectory.com/skills/freedomintelligence-prs-net-deep-learning-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: 'prs-net-deep-learning-agent'
description: 'Geometric deep learning-based polygenic risk score prediction using PRS-Net for modeling gene interactions, enhanced disease prediction, and cross-ancestry portability.'
measurable_outcome: Execute skill workflow successfully with valid output within 15 minutes.
allowed-tools:
  - read_file
  - run_shell_command
---


# PRS-Net Deep Learning Agent

The **PRS-Net Deep Learning Agent** implements interpretable geometric deep learning for polygenic risk score prediction. PRS-Net models non-linear gene-gene interactions and biological network relationships to enhance disease prediction accuracy and improve cross-ancestry portability compared to traditional linear PRS methods.

## When to Use This Skill

* When linear PRS methods show limited performance.
* For modeling complex gene-gene interactions.
* To improve PRS portability across ancestries.
* When biological interpretability of PRS is needed.
* For integrating pathway and network information.

## Core Capabilities

1. **Non-Linear PRS**: Capture gene-gene interactions via deep learning.

2. **Network Integration**: Incorporate protein-protein interaction networks.

3. **Interpretability**: Identify important pathways and gene modules.

4. **Cross-Ancestry Transfer**: Improved portability via learned biology.

5. **Multi-Task Learning**: Joint modeling of related traits.

6. **Uncertainty Quantification**: Provide prediction confidence.

## PRS-Net Architecture

| Component | Function | Innovation |
|-----------|----------|------------|
| Input Layer | Gene-level summaries | Aggregated variant effects |
| Network Encoder | PPI graph convolution | Biological structure |
| Attention Layer | Gene importance | Interpretability |
| Predictor | Disease/trait prediction | Non-linear mapping |
| Explanation | Pathway enrichment | Biological insights |

## Comparison to Traditional PRS

| Aspect | Linear PRS | PRS-Net |
|--------|------------|---------|
| Gene Interactions | Not modeled | GNN captures |
| Network Biology | Ignored | Integrated |
| Interpretability | Limited (SNP weights) | Pathway-level |
| Cross-Ancestry | Often poor | Improved |
| Computational Cost | Low | Moderate |
| Training Data Needed | Low | Moderate |

## Workflow

1. **Input**: Individual genotypes, PPI network, training phenotypes.

2. **Gene Summarization**: Aggregate SNPs to gene-level scores.

3. **Network Encoding**: Learn representations on PPI graph.

4. **Prediction**: Non-linear disease risk prediction.

5. **Interpretation**: Extract important genes and pathways.

6. **Cross-Ancestry**: Apply to diverse populations.

7. **Output**: Risk scores, uncertainty, biological explanations.

## Example Usage

**User**: "Calculate PRS-Net scores for Type 2 Diabetes with pathway-level interpretation."

**Agent Action**:
```bash
python3 Skills/Precision_Medicine/PRS_Net_Deep_Learning_Agent/prs_net_predict.py \
    --genotypes cohort_genotypes.vcf.gz \
    --ppi_network string_ppi.graphml \
    --trait type2_diabetes \
    --model_weights prs_net_t2d_v1.pt \
    --interpret_pathways true \
    --ancestry_calibration multi \
    --output prs_net_results/
```

## Input Requirements

| Input | Format | Purpose |
|-------|--------|---------|
| Genotypes | VCF/PLINK | SNP data |
| PPI Network | GraphML, edge list | Gene relationships |
| Gene Mapping | BED | SNP-to-gene |
| Training Labels | Phenotype file | Model training |
| GWAS Summary | Optional | Initialization |

## Output Components

| Output | Description | Format |
|--------|-------------|--------|
| PRS-Net Score | Non-linear polygenic score | .csv |
| Risk Percentile | Population ranking | .csv |
| Gene Importance | Attention weights | .csv |
| Pathway Enrichment | Top pathways | .csv |
| Module Visualization | Network subgraphs | .png |
| Uncertainty | Prediction confidence | .json |

## Network Biology Integration

| Network | Source | Genes | Edges |
|---------|--------|-------|-------|
| STRING PPI | String-db | 19,000 | 5.5M |
| BioGRID | BioGRID | 18,000 | 1.2M |
| Reactome | Reactome | 10,000 | 250K |
| GO Biological Process | Gene Ontology | 18,000 | Hierarchical |

## Performance Benchmarks

| Disease | Linear PRS AUC | PRS-Net AUC | Improvement |
|---------|----------------|-------------|-------------|
| Type 2 Diabetes | 0.65 | 0.72 | +7% |
| Coronary Artery Disease | 0.70 | 0.76 | +6% |
| Schizophrenia | 0.62 | 0.68 | +6% |
| Alzheimer's Disease | 0.68 | 0.74 | +6% |

## Cross-Ancestry Portability

| Ancestry | Linear PRS Drop | PRS-Net Drop |
|----------|-----------------|--------------|
| EUR → EAS | -15% | -8% |
| EUR → AFR | -30% | -18% |
| EUR → SAS | -20% | -12% |
| EUR → AMR | -18% | -10% |

## AI/ML Components

**Graph Neural Networks**:
- Graph convolutional networks (GCN)
- Graph attention networks (GAT)
- Message passing neural networks

**Interpretability**:
- Attention visualization
- Integrated gradients
- Pathway enrichment analysis

**Transfer Learning**:
- Pre-training on EUR
- Fine-tuning on diverse
- Domain adaptation

## Prerequisites

* Python 3.10+
* PyTorch, PyTorch Geometric
* NetworkX, igraph
* Scanpy (optional for visualization)
* GPU recommended

## Related Skills

* Multi_Ancestry_PRS_Agent - Traditional multi-ancestry PRS
* PopEVE_Variant_Predictor_Agent - Variant interpretation
* Pharmacogenomics_Agent - Drug-gene interactions
* Pathway_Analysis - Pathway enrichment

## Biological Interpretation

| Interpretation Level | Output | Clinical Use |
|---------------------|--------|--------------|
| Gene | Top contributing genes | Target identification |
| Pathway | Enriched pathways | Mechanism understanding |
| Module | Network subgraphs | Biological insight |
| Hub Genes | Central genes | Druggable targets |

## Training Considerations

| Factor | Recommendation | Rationale |
|--------|----------------|-----------|
| Sample Size | >10,000 | Deep learning needs data |
| Class Balance | Oversample or weight | Avoid bias |
| Validation | Cross-validation | Avoid overfitting |
| Regularization | Dropout, L2 | Generalization |

## Special Considerations

1. **Interpretability Trade-offs**: More complex = less interpretable
2. **Computational Requirements**: GPU accelerates training
3. **Network Quality**: PPI accuracy affects results
4. **Gene Mapping**: SNP-to-gene assignment matters
5. **Overfitting**: Regularization essential

## Clinical Applications

| Application | PRS-Net Advantage | Benefit |
|-------------|-------------------|---------|
| Risk Stratification | Higher accuracy | Better prediction |
| Biological Insight | Pathway interpretation | Mechanism |
| Drug Targets | Hub gene identification | Therapeutic targets |
| Ancestry Equity | Better portability | Fairer prediction |

## Limitations

| Limitation | Impact | Future Direction |
|------------|--------|------------------|
| Training Data | EUR-dominated | Diverse cohorts |
| Network Completeness | Missing edges | Multi-network integration |
| Rare Variants | Not well captured | WGS + rare variant methods |
| Clinical Validation | Limited trials | Prospective studies |

## 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 →