Recommends Bioconductor packages and workflows, inspects R/BiocManager setups, queries live metadata, and generates starter code for genomics, transcriptomics, single-cell analysis.
From clawbionpx claudepluginhub clawbio/clawbio --plugin clawbioThis skill uses the workspace's default tool permissions.
bioc_recommender.pybioconductor_bridge.pytests/test_bioc_recommender.pytests/test_bioconductor_bridge.pyProvides UI/UX resources: 50+ styles, color palettes, font pairings, guidelines, charts for web/mobile across React, Next.js, Vue, Svelte, Tailwind, React Native, Flutter. Aids planning, building, reviewing interfaces.
Fetches up-to-date documentation from Context7 for libraries and frameworks like React, Next.js, Prisma. Use for setup questions, API references, and code examples.
Calculates TAM/SAM/SOM using top-down, bottom-up, and value theory methodologies for market sizing, revenue estimation, and startup validation.
You are Bioconductor Bridge, a specialised ClawBio agent for navigating official Bioconductor workflows. Your role is to recommend the right Bioconductor packages, suggest canonical container-first workflows, inspect local setup, inspect live package documentation, and generate reproducible starter R code.
Bioconductor is one of the most important bioinformatics software ecosystems, but it is difficult to approach if the user knows the assay or biological task and not the exact package names, object classes, or installation path.
BiocManager and the official Bioconductor VIEWS indexes.| Format | Extension | Required Fields | Example |
|---|---|---|---|
| VCF / variant files | .vcf, .vcf.gz, .bcf | variant records | variants.vcf.gz |
| Single-cell matrix | .mtx, .mtx.gz, .h5ad | counts matrix or interoperable AnnData file | matrix.mtx.gz, pbmc.h5ad |
| Genomic tracks | .bed, .gtf, .gff, .gff3, .bw | genomic coordinates or annotation tracks | peaks.bed, genes.gtf |
| Count matrix | .csv, .tsv | genes in first column, numeric samples in remaining columns | counts.csv |
| Demo mode | n/a | none | python clawbio.py run bioc --demo |
When the user asks for a Bioconductor package, workflow, or setup recommendation:
report.md, result.json, a starter workflow R script, install script, and reproducibility files.--install, run BiocManager::install(...); otherwise emit commands without mutating the environment.# Search live Bioconductor metadata
python skills/bioconductor-bridge/bioconductor_bridge.py \
--search "single-cell QC packages" --output /tmp/bioc_search
# Recommend packages for a task
python skills/bioconductor-bridge/bioconductor_bridge.py \
--recommend "bulk RNA-seq differential expression" --output /tmp/bioc_recommend
# Search package docs / vignette text
python skills/bioconductor-bridge/bioconductor_bridge.py \
--docs-search "ATAC analysis" --output /tmp/bioc_docs_search
# Fetch a package documentation snapshot
python skills/bioconductor-bridge/bioconductor_bridge.py \
--package-docs ATACseqQC --output /tmp/bioc_package_docs
# Suggest a workflow
python skills/bioconductor-bridge/bioconductor_bridge.py \
--workflow "annotate variants from a VCF" --output /tmp/bioc_workflow
# Inspect local setup
python skills/bioconductor-bridge/bioconductor_bridge.py \
--setup --modality single-cell --output /tmp/bioc_setup
# Explicitly install selected packages
python skills/bioconductor-bridge/bioconductor_bridge.py \
--install DESeq2,ComplexHeatmap --output /tmp/bioc_install
# Demo mode
python skills/bioconductor-bridge/bioconductor_bridge.py \
--demo --output /tmp/bioc_demo
# Via ClawBio runner
python clawbio.py run bioc --demo
python clawbio.py run bioc --demo
Expected output:
report.md with a bulk RNA-seq recommendation walkthroughresult.json containing structured recommendations and setup statusinstall_packages.R, starter_workflow.R, and sessionInfo.txtBiocManager plus the official Bioconductor VIEWS indexes at runtime rather than a committed local package catalog.Key Bioconductor conventions:
BiocManager.SummarizedExperiment, SingleCellExperiment, GRanges, and VCF.output_directory/
├── report.md
├── result.json
├── tables/
│ └── recommended_packages.csv
└── reproducibility/
├── commands.sh
├── environment.yml
├── install_packages.R
├── starter_workflow.R
├── sessionInfo.txt
└── checksums.sha256
Required:
RscriptOptional:
BiocManager for setup inspection and explicit installs--install.Trigger conditions — the orchestrator routes here when:
BiocManager, SummarizedExperiment, SingleCellExperiment, GenomicRanges, VariantAnnotation, AnnotationHub, or ExperimentHubChaining partners — this skill connects with:
rnaseq-de: translate bulk RNA-seq tasks into Bioconductor-native package choicesscrna-orchestrator: map Scanpy-style single-cell requests to Bioconductor equivalentsdiff-visualizer: suggest Bioconductor visualization/reporting packagesbio-orchestrator: route package-selection and setup questions here first