Agent skill

bio-microbiome-taxonomy-assignment

Taxonomic classification of ASVs using reference databases like SILVA, GTDB, or UNITE. Covers naive Bayes classifiers (DADA2, IDTAXA) and exact matching approaches. Use when assigning taxonomy to ASVs after DADA2 amplicon processing.

FreedomIntelligencegithub.com/FreedomIntelligenceGitHub ↗
claude-code
Install
npx skills add FreedomIntelligence/OpenClaw-Medical-Skills --skill bio-microbiome-taxonomy-assignment --agent claude-code

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

Facts
Files in the skill folder: 3
SKILL.md size: 5 KB
Bundled scripts: none
Path: skills/bio-microbiome-taxonomy-assignment/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 2,909
Language: Python
Read our review of the source →

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: DADA2 1.30+, QIIME2 2024.2+, phyloseq 1.46+, scanpy 1.10+, scikit-learn 1.4+ Before using code patterns, verify installed versions match. If versions differ: - 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. # Taxonomy Assignment **"Assign taxonomy to my ASVs"** → Classify amplicon sequence variants against reference databases (SILVA, GTDB, UNITE) using naive Bayes or exact-matching approaches for taxonomic annotation. - R: `dada2::assignTaxonomy()` with SILVA/GTDB reference - CLI: `qiime feature-classifier classify-sklearn` for QIIME2 workflows ## DADA2 Naive Bayes Classifier ```r library(dada2) seqtab_nochim <- readRDS('seqtab_nochim.rds') # SILVA for 16S (download from https://zenodo.org/record/4587955) taxa <- assignTaxonomy(seqtab_nochim, 'silva_nr99_v138.1_train_set.fa.gz', multithread = TRUE) # Add species-level (exact matching) taxa <- addSpecies(taxa, 'silva_species_assignme

What's inside
Steps it walks through
  1. Version Compatibility
  2. DADA2 Naive Bayes Classifier
  3. GTDB for 16S
  4. UNITE for ITS (Fungi)
  5. QIIME2 Feature Classifier
  6. VSEARCH Exact Matching
  7. RDP Classifier
  8. IDTAXA (DECIPHER) - Often More Accurate
  9. Confidence Filtering
  10. Combine into phyloseq
  11. Database Comparison
  12. Related Skills
Ships with 2 files
  • examples/assign_silva.R
  • usage-guide.md
Commands it runs
Train classifier (one-time)
qiime feature-classifier fit-classifier-naive-bayes \
Classify ASVs
qiime feature-classifier classify-sklearn \
Faster but requires exact or near-exact matches
vsearch --usearch_global asv_seqs.fasta \
More from OpenClaw-Medical-Skills
All skills →
About this skill
What does the bio-microbiome-taxonomy-assignment skill do?

Taxonomic classification of ASVs using reference databases like SILVA, GTDB, or UNITE. Covers naive Bayes classifiers (DADA2, IDTAXA) and exact matching approaches. Use when assigning taxonomy to ASVs after DADA2 amplicon processing.

How do I install it?

Run `npx skills add FreedomIntelligence/OpenClaw-Medical-Skills --skill bio-microbiome-taxonomy-assignment --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 FreedomIntelligence/OpenClaw-Medical-Skills, a repository with 2,909 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