Agent skill

bio-liquid-biopsy-pipeline

Cell-free DNA analysis pipeline from plasma sequencing to tumor monitoring. Preprocesses cfDNA reads, analyzes fragment patterns, estimates tumor fraction from sWGS, and optionally detects mutations from targeted panels. Use when analyzing liquid biopsy samples for cancer detection or monitoring.

majiayu000github.com/majiayu000GitHub ↗
claude-codeMIT
Install
npx skills add majiayu000/claude-skill-registry --skill liquid-biopsy-pipeline --agent claude-code

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

Facts
Files in the skill folder: 2
SKILL.md size: 8 KB
Bundled scripts: none
Path: skills/ai-ml/liquid-biopsy-pipeline/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

# Liquid Biopsy Analysis Pipeline Complete workflow for cfDNA analysis from sequencing to clinical interpretation. ## Pipeline Overview ``` Pre-analytical QC → cfDNA Preprocessing → Fragment QC ↓ ┌─────────────────┴─────────────────┐ ↓ ↓ sWGS Branch Panel Branch ↓ ↓ ichorCNA VarDict/smCounter2 (Tumor Fraction) (Mutation Detection) ↓ ↓ └─────────────────┬─────────────────┘ ↓ Longitudinal Tracking ``` ## Step 0: Pre-Analytical QC ```python def check_preanalytical_quality(sample_metadata): ''' Pre-analytical factors critical for cfDNA quality. Requirements: - Streck tube: up to 7 days at room temperature - EDTA tube: process within 6 hours - Avoid hemolysis - Store extracted DNA at -80C ''' issues = [] if sample_metadata['tube_type'] == 'EDTA': if sample_metadata['processing_delay_hours'] > 6: issues.append('EDTA tube processed > 6 hours - risk of gDNA contamination') if sample_metadata['hemolysis_score'] > 1: issues.append('Hemolysis detected - expect cellular DNA contamination') return issues ``` ## Step 1: cfDNA Preprocessing with UMI Consensus ```bash # For UMI-tagged libraries (targeted panels) # fgbio pipeline # Extract UMIs fgbio ExtractUmisFromBam \ --input raw.bam \ --output

What's inside
Steps it walks through
  1. Pipeline Overview
  2. Step 0: Pre-Analytical QC
  3. Step 1: cfDNA Preprocessing with UMI Consensus
  4. Step 2: Fragment QC Checkpoint
  5. Step 3a: Tumor Fraction Estimation (sWGS)
  6. Step 3b: Mutation Detection (Targeted Panel)
  7. Step 4: CHIP Filtering
  8. Step 5: Fragmentomics Analysis (Optional)
  9. Step 6: Longitudinal Tracking
  10. Complete Pipeline Script
  11. Related Skills
Ships with 1 file
  • metadata.json
Commands it runs
For UMI-tagged libraries (targeted panels)
fgbio pipeline
Extract UMIs
fgbio ExtractUmisFromBam \
Align
bwa mem -t 8 -Y reference.fa with_umis.bam | \
samtools view -bS - > aligned.bam
Group by UMI
fgbio GroupReadsByUmi \
Consensus calling
More from claude-skill-registry
All skills →
About this skill
What does the bio-liquid-biopsy-pipeline skill do?

Cell-free DNA analysis pipeline from plasma sequencing to tumor monitoring. Preprocesses cfDNA reads, analyzes fragment patterns, estimates tumor fraction from sWGS, and optionally detects mutations from targeted panels. Use when analyzing liquid biopsy samples for cancer detection or monitoring.

How do I install it?

Run `npx skills add majiayu000/claude-skill-registry --skill liquid-biopsy-pipeline --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