bio-blast-searches
Run BLAST searches against local or remote databases for sequence homology.
Maintainer FreedomIntelligence · Last updated April 1, 2026
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.
Original source
https://github.com/FreedomIntelligence/OpenClaw-Medical-Skills/tree/main/skills/bio-metagenomics-kraken
Skill Snapshot
Source Doc
kraken2 --db /path/to/kraken2_db
--memory-mapping \ # Use disk-based database
--output output.kraken
--report report.txt
reads.fastq.gz
## Save space by not writing per-read classifications
kraken2 --db /path/to/kraken2_db \
--report report.txt \
--report-zero-counts \ # Include taxa with 0 counts
reads.fastq.gz
kraken2 --db /path/to/kraken2_db
--classified-out classified#.fq \ # # replaced by 1/2 for PE
--unclassified-out unclassified#.fq
--output output.kraken
--report report.txt
--paired
reads_R1.fastq.gz reads_R2.fastq.gz
Related skills
Run BLAST searches against local or remote databases for sequence homology.
Retrieve linked records across NCBI Entrez databases.
Set up and run BLAST+ locally with custom databases.
KEGG pathway and module enrichment analysis using clusterProfiler enrichKEGG and enrichMKEGG. Use when identifying metabolic and signaling p…