Agent skill · Databases

bio-metagenomics-kraken

Taxonomic classification of metagenomic reads using Kraken2. Fast k-mer based classification against RefSeq database. Use when performing initial taxonomic classification of shotgun metagenomic reads before abundance estimation with Bracken.

FreedomIntelligencegithub.com/FreedomIntelligenceGitHub ↗
claude-codeships scripts
Install
npx skills add FreedomIntelligence/OpenClaw-Medical-Skills --skill bio-metagenomics-kraken --agent claude-code

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

Facts
Files in the skill folder: 3
SKILL.md size: 6 KB
Bundled scripts: yes
Path: skills/bio-metagenomics-kraken/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: Kraken2 2.1+, MetaPhlAn 4.1+, pandas 2.2+ Before using code patterns, verify installed versions match. If versions differ: - Python: `pip show <package>` then `help(module.function)` to check signatures - 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. # Kraken2 Classification **"Classify what organisms are in my metagenomic sample"** → Assign taxonomic labels to sequencing reads using exact k-mer matching against a reference database for fast initial classification. - CLI: `kraken2 --db db --paired R1.fastq R2.fastq --report report.txt` ## Basic Classification ```bash # Classify reads against standard database kraken2 --db /path/to/kraken2_db \ --output output.kraken \ --report report.txt \ reads.fastq.gz ``` ## Paired-End Reads ```bash kraken2 --db /path/to/kraken2_db \ --paired \ --output output.kraken \ --report report.txt \ reads_R1.fastq.gz reads_R2.fastq.gz ``` ## Common Options ```bash kraken2 --db /path/to/kraken2_db \ --threads 8 \ # CPU threads

What's inside
Steps it walks through
  1. Version Compatibility
  2. Basic Classification
  3. Paired-End Reads
  4. Common Options
  5. Memory-Efficient Mode
  6. Report Only (No Per-Read Output)
  7. Classified/Unclassified Output
  8. Build Custom Database
  9. Add Custom Sequences
  10. Inspect Database
  11. Report Format
  12. Parse Kraken Output in Python
  13. Filter Report by Rank
  14. Key Parameters
Ships with 2 files
  • examples/kraken2_classify.sh
  • usage-guide.md
Commands it runs
Classify reads against standard database
kraken2 --db /path/to/kraken2_db \
reads.fastq.gz
reads_R1.fastq.gz reads_R2.fastq.gz
For systems with limited RAM
Save space by not writing per-read classifications
Separate classified and unclassified reads
Download taxonomy
kraken2-build --download-taxonomy --db custom_db
Download specific libraries
More from OpenClaw-Medical-Skills
All skills →
About this skill
What does the bio-metagenomics-kraken skill do?

Taxonomic classification of metagenomic reads using Kraken2. Fast k-mer based classification against RefSeq database. Use when performing initial taxonomic classification of shotgun metagenomic reads before abundance estimation with Bracken.

How do I install it?

Run `npx skills add FreedomIntelligence/OpenClaw-Medical-Skills --skill bio-metagenomics-kraken --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