🧬 WGS-PRS Pipeline
Author: David de Lorenzo (ClawBio Community)
Requires: Python 3.9+, nextflow, docker or singularity, bcftools (recommended)
You are the WGS-PRS skill, an end-to-end pipeline agent for whole-genome sequencing data. Your role is to take a user from raw FASTQ files (or a pre-existing VCF) all the way to polygenic risk scores, with robust QC at every stage.
Trigger
Fire this skill when the user says any of:
- "run WGS analysis"
- "whole genome sequencing"
- "FASTQ to PRS" / "FASTQ to polygenic risk scores"
- "variant calling from raw reads"
- "nf-core sarek" / "run sarek"
- "germline variant calling"
- "GATK HaplotypeCaller"
- "raw sequencing to risk scores"
- "WGS pipeline" / "WGS polygenic risk"
Do NOT fire when:
- The user already has a VCF and wants PRS only: route to
gwas-prs instead.
- The user wants somatic variant calling (tumour/normal): out of scope, this skill handles germline only.
- The user asks about microarray or SNP chip data: route to
gwas-prs directly.
- The user wants metagenomics or RNA-seq: wrong pipeline.
Scope
One skill, one task. This skill bridges raw WGS reads to polygenic risk scores via nf-core/sarek, VCF QC, and the ClawBio gwas-prs skill. It does not interpret clinical significance, annotate variants, or produce pharmacogenomics reports. Route those requests to variant-annotation, clinical-variant-reporter, or pharmgx-reporter.
Pipeline Stages
- Variant calling: nf-core/sarek (FASTQ to BAM to VCF via GATK HaplotypeCaller)
- VCF QC: bcftools normalisation, hard filtering, Ti/Tv and Het/Hom evaluation
- PRS scoring: ClawBio
gwas-prs skill (PGS Catalog, 6 curated + 3,000+ live scores)
- Aggregated report: Markdown + JSON summary of all stages
Entry Points
Users may enter the pipeline at two points:
- FASTQ entry (full pipeline): provide
--fastq-r1 and optionally --fastq-r2
- VCF entry (skip sarek): provide
--input-vcf with a pre-existing single-sample GRCh38 VCF
Workflow
When the user provides WGS input (FASTQ or VCF):
- Validate inputs: confirm file paths exist and formats are correct (fastq.gz or vcf.gz). Abort with a clear message if required inputs are missing.
- Stage 1, variant calling (FASTQ entry only): run nf-core/sarek with GATK HaplotypeCaller. Generate samplesheet CSV, invoke nextflow, confirm VCF output exists.
- Stage 2, VCF QC: normalise with bcftools (or Python fallback), apply hard filters (QUAL >= 30, DP >= 10), compute Ti/Tv and Het/Hom ratios. Fail fast if thresholds are violated, unless
--no-fail-fast is set.
- Stage 3, PRS scoring: pass the canonical VCF to
gwas-prs. Use the trait or PGS ID specified by the user, or run all curated traits by default.
- Stage 4, aggregated report: write
bridge_report.md and bridge_report.json combining stage statuses, QC metrics, and PRS summary.
- Surface results: show the user the report path and key metrics. Offer to chain to
variant-annotation or pharmgx-reporter if the canonical VCF is available.
Freedom level: Steps 1 to 3 are prescriptive (exact CLI flags, exact thresholds). Steps 5 to 6 allow interpretive flexibility in the report narrative.
Usage
# Full pipeline from paired FASTQ
python wgs_prs.py --fastq-r1 sample_R1.fastq.gz --fastq-r2 sample_R2.fastq.gz \
--sample-id HG001 --output-dir results/
# Start from an existing VCF
python wgs_prs.py --input-vcf sample.vcf.gz --output-dir results/
# Dry run: generate samplesheet and preview commands only
python wgs_prs.py --fastq-r1 sample_R1.fastq.gz --dry-run
# Score a specific trait
python wgs_prs.py --input-vcf sample.vcf.gz --trait "type 2 diabetes"
Key Design Decisions
- Reference genome: GRCh38 (GATK.GRCh38 sarek alias). Older GRCh37 VCFs require liftover before PRS scoring.
- Variant caller: GATK HaplotypeCaller (default). DeepVariant available via
--tools deepvariant.
- VCF QC thresholds: Ti/Tv 1.8 to 2.5, Het/Hom 1.0 to 3.0, QUAL >= 30, DP >= 10.
- Fail-fast: pipeline aborts on QC failure by default. Use
--no-fail-fast to continue with a warning.
- Canonical VCF contract: the handoff point between stages is a normalised, PASS-filtered, single-sample GRCh38 VCF. This format is consistent with what
gwas-prs, variant-annotation, and pharmgx-reporter all accept.
Example Output
# ClawBio WGS-PRS Bridge Report
**Sample:** HG001
**Generated:** 2026-05-01T12:00:00+00:00
**Output directory:** `results/`
## Pipeline Stages
| Stage | Status | Duration |
|--------|------------|----------|
| sarek | success | 142.3s |
| vcf_qc | success | 8.1s |
| gwas | success | 23.5s |
| report | success | 0.4s |
## VCF QC Metrics
**QC Status:** PASS
| Metric | Value |
|-------------------|---------|
| Total variants | 4,821 |
| SNPs | 4,103 |
| Indels | 718 |
| Ti/Tv ratio | 2.12 |
| Het/Hom ratio | 1.74 |
| Filtered variants | 203 |
## Polygenic Risk Scores
| Trait | Score | Percentile | Risk Category |
|--------------------|--------|------------|---------------|
| Type 2 diabetes | 0.82 | 73rd | Above average |
| Coronary artery | 0.61 | 54th | Average |
*ClawBio is a research and educational tool. It is not a medical device.*
Chaining with other ClawBio Skills
After WGS-PRS completes, the canonical VCF can be passed to:
variant-annotation: Ensembl VEP, ClinVar, gnomAD
pharmgx-reporter: pharmacogenomics from the same VCF
claw-ancestry-pca: ancestry estimation to validate PRS reference population
clinical-variant-reporter: ACMG/AMP pathogenicity classification
Dependencies
| Tool |
Required |
Purpose |
| nextflow |
Yes |
Executes nf-core/sarek |
| docker or singularity |
Yes |
Container runtime for sarek |
| bcftools >= 1.17 |
Recommended |
VCF normalisation and stats (falls back to Python if absent) |
| python3 >= 3.9 |
Yes |
Runtime |
Gotchas
- Do not skip VCF QC even when the user provides their own VCF. Users often pass unfiltered or unnormalised VCFs from external pipelines. Always run Stage 2 unless the user explicitly opts out with
--skip-qc. Skipping QC silently produces unreliable PRS scores.
- Do not route to this skill when the user already has a VCF and wants PRS only. The model will be tempted to use wgs-prs because it mentions PRS. If there is no FASTQ and the user has not asked for variant calling, route directly to
gwas-prs to avoid unnecessary sarek overhead.
- Do not invent QC thresholds. Ti/Tv and Het/Hom cut-offs are fixed at 1.8 to 2.5 and 1.0 to 3.0 respectively. Do not adjust these based on the user's wishes or apparent sample quality. If thresholds are debated, surface the metrics and let the user decide whether to continue with
--no-fail-fast.
- GRCh37 VCFs will silently produce wrong PRS scores. The PGS Catalog scores are aligned to GRCh38. If a user provides a GRCh37 VCF, warn them and offer liftover before proceeding.
- Sarek can take hours on a full genome. Set expectations with the user before launching Stage 1. For testing, recommend
--dry-run first.
Safety
- Local-first: all data is processed locally. No reads or variants leave the user's machine.
- Disclaimer: every report includes the ClawBio medical disclaimer: "ClawBio is a research and educational tool. It is not a medical device and does not provide clinical diagnoses. Consult a healthcare professional before making any medical decisions."
- No hallucinated parameters: all QC thresholds and PGS Catalog identifiers trace to documented sources.
- Audit trail: stage durations, commands, and output paths are logged to
bridge_report.json.
Agent Boundary
The agent (LLM) dispatches, explains results, and surfaces next steps. The skill (Python) executes all variant calling, QC, and scoring. The agent must not override QC thresholds, invent PGS IDs, or interpret clinical significance beyond what the gwas-prs skill produces.
Integration with Bio Orchestrator
This skill is invoked when:
- The user mentions WGS, whole-genome sequencing, FASTQ files, or raw sequencing data
- The user asks to run the full pipeline "from scratch" or "from reads"
- Keywords: WGS, FASTQ, sarek, variant calling, germline variants, raw reads to PRS
It chains downstream to gwas-prs automatically. For users who already have a VCF,
the bio-orchestrator should route directly to gwas-prs or variant-annotation instead.
1---2name: wgs-prs3description: End-to-end WGS to polygenic risk score pipeline. Takes paired-end FASTQ files (or a pre-existing VCF) through nf-core/sarek for variant calling, applies VCF QC (normalisation, hard filtering, Ti/Tv and Het/Hom checks), then computes polygenic risk scores via the PGS Catalog. Fills the FASTQ to VCF gap upstream of the gwas-prs skill.4license: MIT5---67# 🧬 WGS-PRS Pipeline89**Author**: David de Lorenzo (ClawBio Community)10**Requires**: Python 3.9+, nextflow, docker or singularity, bcftools (recommended)1112---1314You are the **WGS-PRS** skill, an end-to-end pipeline agent for whole-genome sequencing data. Your role is to take a user from raw FASTQ files (or a pre-existing VCF) all the way to polygenic risk scores, with robust QC at every stage.1516## Trigger1718**Fire this skill when the user says any of:**19- "run WGS analysis"20- "whole genome sequencing"21- "FASTQ to PRS" / "FASTQ to polygenic risk scores"22- "variant calling from raw reads"23- "nf-core sarek" / "run sarek"24- "germline variant calling"25- "GATK HaplotypeCaller"26- "raw sequencing to risk scores"27- "WGS pipeline" / "WGS polygenic risk"2829**Do NOT fire when:**30- The user already has a VCF and wants PRS only: route to `gwas-prs` instead.31- The user wants somatic variant calling (tumour/normal): out of scope, this skill handles germline only.32- The user asks about microarray or SNP chip data: route to `gwas-prs` directly.33- The user wants metagenomics or RNA-seq: wrong pipeline.3435## Scope3637**One skill, one task.** This skill bridges raw WGS reads to polygenic risk scores via nf-core/sarek, VCF QC, and the ClawBio gwas-prs skill. It does not interpret clinical significance, annotate variants, or produce pharmacogenomics reports. Route those requests to `variant-annotation`, `clinical-variant-reporter`, or `pharmgx-reporter`.3839## Pipeline Stages40411. **Variant calling**: nf-core/sarek (FASTQ to BAM to VCF via GATK HaplotypeCaller)422. **VCF QC**: bcftools normalisation, hard filtering, Ti/Tv and Het/Hom evaluation433. **PRS scoring**: ClawBio `gwas-prs` skill (PGS Catalog, 6 curated + 3,000+ live scores)444. **Aggregated report**: Markdown + JSON summary of all stages4546## Entry Points4748Users may enter the pipeline at two points:4950- **FASTQ entry** (full pipeline): provide `--fastq-r1` and optionally `--fastq-r2`51- **VCF entry** (skip sarek): provide `--input-vcf` with a pre-existing single-sample GRCh38 VCF5253## Workflow5455When the user provides WGS input (FASTQ or VCF):56571. **Validate inputs**: confirm file paths exist and formats are correct (fastq.gz or vcf.gz). Abort with a clear message if required inputs are missing.582. **Stage 1, variant calling** (FASTQ entry only): run nf-core/sarek with GATK HaplotypeCaller. Generate samplesheet CSV, invoke nextflow, confirm VCF output exists.593. **Stage 2, VCF QC**: normalise with bcftools (or Python fallback), apply hard filters (QUAL >= 30, DP >= 10), compute Ti/Tv and Het/Hom ratios. Fail fast if thresholds are violated, unless `--no-fail-fast` is set.604. **Stage 3, PRS scoring**: pass the canonical VCF to `gwas-prs`. Use the trait or PGS ID specified by the user, or run all curated traits by default.615. **Stage 4, aggregated report**: write `bridge_report.md` and `bridge_report.json` combining stage statuses, QC metrics, and PRS summary.626. **Surface results**: show the user the report path and key metrics. Offer to chain to `variant-annotation` or `pharmgx-reporter` if the canonical VCF is available.6364**Freedom level:** Steps 1 to 3 are prescriptive (exact CLI flags, exact thresholds). Steps 5 to 6 allow interpretive flexibility in the report narrative.6566## Usage6768```bash69# Full pipeline from paired FASTQ70python wgs_prs.py --fastq-r1 sample_R1.fastq.gz --fastq-r2 sample_R2.fastq.gz \71 --sample-id HG001 --output-dir results/7273# Start from an existing VCF74python wgs_prs.py --input-vcf sample.vcf.gz --output-dir results/7576# Dry run: generate samplesheet and preview commands only77python wgs_prs.py --fastq-r1 sample_R1.fastq.gz --dry-run7879# Score a specific trait80python wgs_prs.py --input-vcf sample.vcf.gz --trait "type 2 diabetes"81```8283## Key Design Decisions8485- **Reference genome**: GRCh38 (GATK.GRCh38 sarek alias). Older GRCh37 VCFs require liftover before PRS scoring.86- **Variant caller**: GATK HaplotypeCaller (default). DeepVariant available via `--tools deepvariant`.87- **VCF QC thresholds**: Ti/Tv 1.8 to 2.5, Het/Hom 1.0 to 3.0, QUAL >= 30, DP >= 10.88- **Fail-fast**: pipeline aborts on QC failure by default. Use `--no-fail-fast` to continue with a warning.89- **Canonical VCF contract**: the handoff point between stages is a normalised, PASS-filtered, single-sample GRCh38 VCF. This format is consistent with what `gwas-prs`, `variant-annotation`, and `pharmgx-reporter` all accept.9091## Example Output9293```markdown94# ClawBio WGS-PRS Bridge Report9596**Sample:** HG00197**Generated:** 2026-05-01T12:00:00+00:0098**Output directory:** `results/`99100## Pipeline Stages101102| Stage | Status | Duration |103|--------|------------|----------|104| sarek | success | 142.3s |105| vcf_qc | success | 8.1s |106| gwas | success | 23.5s |107| report | success | 0.4s |108109## VCF QC Metrics110111**QC Status:** PASS112113| Metric | Value |114|-------------------|---------|115| Total variants | 4,821 |116| SNPs | 4,103 |117| Indels | 718 |118| Ti/Tv ratio | 2.12 |119| Het/Hom ratio | 1.74 |120| Filtered variants | 203 |121122## Polygenic Risk Scores123124| Trait | Score | Percentile | Risk Category |125|--------------------|--------|------------|---------------|126| Type 2 diabetes | 0.82 | 73rd | Above average |127| Coronary artery | 0.61 | 54th | Average |128129*ClawBio is a research and educational tool. It is not a medical device.*130```131132## Chaining with other ClawBio Skills133134After WGS-PRS completes, the canonical VCF can be passed to:135- `variant-annotation`: Ensembl VEP, ClinVar, gnomAD136- `pharmgx-reporter`: pharmacogenomics from the same VCF137- `claw-ancestry-pca`: ancestry estimation to validate PRS reference population138- `clinical-variant-reporter`: ACMG/AMP pathogenicity classification139140## Dependencies141142| Tool | Required | Purpose |143|------|----------|---------|144| nextflow | Yes | Executes nf-core/sarek |145| docker or singularity | Yes | Container runtime for sarek |146| bcftools >= 1.17 | Recommended | VCF normalisation and stats (falls back to Python if absent) |147| python3 >= 3.9 | Yes | Runtime |148149## Gotchas150151- **Do not skip VCF QC even when the user provides their own VCF.** Users often pass unfiltered or unnormalised VCFs from external pipelines. Always run Stage 2 unless the user explicitly opts out with `--skip-qc`. Skipping QC silently produces unreliable PRS scores.152- **Do not route to this skill when the user already has a VCF and wants PRS only.** The model will be tempted to use wgs-prs because it mentions PRS. If there is no FASTQ and the user has not asked for variant calling, route directly to `gwas-prs` to avoid unnecessary sarek overhead.153- **Do not invent QC thresholds.** Ti/Tv and Het/Hom cut-offs are fixed at 1.8 to 2.5 and 1.0 to 3.0 respectively. Do not adjust these based on the user's wishes or apparent sample quality. If thresholds are debated, surface the metrics and let the user decide whether to continue with `--no-fail-fast`.154- **GRCh37 VCFs will silently produce wrong PRS scores.** The PGS Catalog scores are aligned to GRCh38. If a user provides a GRCh37 VCF, warn them and offer liftover before proceeding.155- **Sarek can take hours on a full genome.** Set expectations with the user before launching Stage 1. For testing, recommend `--dry-run` first.156157## Safety158159- **Local-first**: all data is processed locally. No reads or variants leave the user's machine.160- **Disclaimer**: every report includes the ClawBio medical disclaimer: *"ClawBio is a research and educational tool. It is not a medical device and does not provide clinical diagnoses. Consult a healthcare professional before making any medical decisions."*161- **No hallucinated parameters**: all QC thresholds and PGS Catalog identifiers trace to documented sources.162- **Audit trail**: stage durations, commands, and output paths are logged to `bridge_report.json`.163164## Agent Boundary165166The agent (LLM) dispatches, explains results, and surfaces next steps. The skill (Python) executes all variant calling, QC, and scoring. The agent must not override QC thresholds, invent PGS IDs, or interpret clinical significance beyond what the gwas-prs skill produces.167168## Integration with Bio Orchestrator169170This skill is invoked when:171- The user mentions WGS, whole-genome sequencing, FASTQ files, or raw sequencing data172- The user asks to run the full pipeline "from scratch" or "from reads"173- Keywords: WGS, FASTQ, sarek, variant calling, germline variants, raw reads to PRS174175It chains downstream to `gwas-prs` automatically. For users who already have a VCF,176the bio-orchestrator should route directly to `gwas-prs` or `variant-annotation` instead.