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.

BioTender-maxgithub.com/BioTender-maxGitHub ↗
claude-codeships scriptsNOASSERTION
Install
npx skills add BioTender-max/awesome-bio-agent-skills --skill liquid-biopsy-pipeline --agent claude-code

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

Facts
Files in the skill folder: 3
SKILL.md size: 9 KB
Bundled scripts: yes
Path: skills/bioskills/liquid-biopsy-pipeline/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 135
Language: Python

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

From the SKILL.md

## Version Compatibility Reference examples tested with: BWA 0.7.17+, VarDict 1.8+, fgbio 2.1+, ichorCNA 0.5+, numpy 1.26+, pandas 2.2+, pysam 0.22+, samtools 1.19+, scanpy 1.10+ Before using code patterns, verify installed versions match. If versions differ: - Python: `pip show <package>` then `help(module.function)` to check signatures - R: `packageVersion('<pkg>')` then `?function_name` to verify parameters - CLI: `<tool> --version` then `<tool> --help` to confirm flags If code throws ImportError, AttributeError, or TypeError, introspect the installed package and adapt the example to match the actual API rather than retrying. # Liquid Biopsy Analysis Pipeline **"Analyze my liquid biopsy cfDNA data end-to-end"** → Orchestrate UMI-aware preprocessing (fgbio), ctDNA mutation detection (VarDict), tumor fraction estimation (ichorCNA), fragmentomics analysis, and longitudinal monitoring for treatment response. 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) (

What's inside
Steps it walks through
  1. Version Compatibility
  2. Pipeline Overview
  3. Step 0: Pre-Analytical QC
  4. Step 1: cfDNA Preprocessing with UMI Consensus
  5. Step 2: Fragment QC Checkpoint
  6. Step 3a: Tumor Fraction Estimation (sWGS)
  7. Step 3b: Mutation Detection (Targeted Panel)
  8. Step 4: CHIP Filtering
  9. Step 5: Fragmentomics Analysis (Optional)
  10. Step 6: Longitudinal Tracking
  11. Complete Pipeline Script
  12. Related Skills
Ships with 2 files
  • examples/liquid_biopsy_pipeline.py
  • usage-guide.md
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 awesome-bio-agent-skills
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 BioTender-max/awesome-bio-agent-skills --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 BioTender-max/awesome-bio-agent-skills, a repository with 135 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