LLMs-Universal-Life-Science-and-Clinical-Skills- genomics-sv-detection

install
source · Clone the upstream repo
git clone https://github.com/mdbabumiamssm/LLMs-Universal-Life-Science-and-Clinical-Skills-
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/mdbabumiamssm/LLMs-Universal-Life-Science-and-Clinical-Skills- "$T" && mkdir -p ~/.claude/skills && cp -r "$T/Skills/Genomics/genomics-sv-detection" ~/.claude/skills/mdbabumiamssm-llms-universal-life-science-and-clinical-skills-genomics-sv-detect && rm -rf "$T"
manifest: Skills/Genomics/genomics-sv-detection/SKILL.md
source content

🧱 Structural Variant Detection

Structural variant calling for deletions, duplications, inversions, and translocations. Wraps Manta, Lumpy, Delly, Sniffles.

CLI Reference

python omicsclaw.py run genomics-sv-detection --demo
python omicsclaw.py run genomics-sv-detection --input <data.bam> --output <dir>

Why This Exists

  • Without it: Conventional SNV callers miss massive >50bp translocations, inversions, or large deletions
  • With it: Split-reads and paired-end discordance are utilized to find complex structural variation
  • Why OmicsClaw: Encapsulates multiple specialized SV tools (Manta, Delly) with unified orchestration

Workflow

  1. Calculate: Extract discordant read-pairs and split-reads.
  2. Execute: Build breakpoint graphs and candidate events.
  3. Assess: Perform read-depth and confidence filtering.
  4. Generate: Output structured VCF representation of SVs.
  5. Report: Tabulate key SV counts.

Example Queries

  • "Call structural variants using Manta"
  • "Detect chromosomal inversions using Sniffles from long reads"

Output Structure

output_directory/
├── report.md
├── result.json
├── variants_sv.vcf.gz
├── figures/
│   └── sv_length_distribution.png
├── tables/
│   └── sv_summary.csv
└── reproducibility/
    ├── commands.sh
    ├── environment.yml
    └── checksums.sha256

Safety

  • Local-first: Strict offline processing without external upload.
  • Disclaimer: Requires OmicsClaw reporting structures and disclaimers.
  • Audit trail: Hyperparameters and operational flow states are logged fully.

Integration with Orchestrator

Trigger conditions:

  • Automatically invoked dynamically based on tool metadata and user intent matching.

Chaining partners:

  • align
    — Upstream generation of BAM
  • vcf-ops
    — Downstream VCF merging logic

Citations