数据与复现科研数据库FreedomIntelligence/OpenClaw-Medical-Skills数据与复现
BI

bio-metagenomics-kraken

维护者 FreedomIntelligence · 最近更新 2026年4月1日

bio-metagenomics-kraken:Taxonomic 分类 of metagenomic reads ,使用 Kraken2。 Fast k-mer based 分类 against RefSeq database。 适合在performing initial taxonomic 分类 of shotgun metagenomic reads before abundance estimation ,支持 Bracken时使用。

OpenClawNanoClaw选题发现数据建库bio-metagenomics-kraken🧬 bioinformatics (gptomics bio-* suite)bioinformatics — metagenomics & microbiometaxonomic

原始来源

FreedomIntelligence/OpenClaw-Medical-Skills

https://github.com/FreedomIntelligence/OpenClaw-Medical-Skills/tree/main/skills/bio-metagenomics-kraken

维护者
FreedomIntelligence
许可
MIT
最近更新
2026年4月1日

技能摘要

来自 SKILL.md 的关键信息

2 min

核心说明

  • CLI:kraken2 --db db --paired R1.fastq R2.fastq --report report.txt。
  • 分类 what organisms are in my metagenomic sample" → Assign taxonomic labels to sequencing reads ,使用 exact k-mer matching against reference database ,用于 fast initial 分类. CLI:kraken2 --db db --paired R1.fastq R2.fastq --report report.txt。
  • kraken2 --db /path/to/kraken2_db \ --output output.kraken \ --report report.txt \ reads.fastq.gz。

原始文档

SKILL.md 摘录

For systems with limited RAM

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

Separate classified and unclassified reads

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

适用场景

  • 适合在performing initial taxonomic 分类 of shotgun metagenomic reads before abundance estimation ,支持 Bracken时使用。

不适用场景

  • Do not assume this entry replaces original database documentation 或 API notes。

上游相关技能

  • abundance-estimation - Estimate abundances with Bracken
  • metaphlan-profiling - Alternative marker-based profiling
  • metagenome-visualization - Visualize results

相关技能

相关技能

返回目录
BI
数据与复现科研数据库

bio-blast-searches

bio-blast-searches:运行 BLAST searches against local 或 remote databases ,用于 sequence homology。

OpenClawNanoClaw选题发现
FreedomIntelligence/OpenClaw-Medical-Skills查看
BI
数据与复现科研数据库

bio-entrez-link

bio-entrez-link:获取 linked records across NCBI Entrez databases。

OpenClawNanoClaw选题发现
FreedomIntelligence/OpenClaw-Medical-Skills查看
BI
数据与复现科研数据库

bio-local-blast

bio-local-blast:Set up 、 run BLAST+ locally ,支持 custom databases。

OpenClawNanoClaw选题发现
FreedomIntelligence/OpenClaw-Medical-Skills查看
BI
数据与复现科研数据库

bio-pathway-kegg-pathways

bio-pathway-kegg-pathways:KEGG pathway 、 module enrichment analysis ,使用 clusterProfiler enrichKEGG 、 enrichMKEGG。 支持 400…

OpenClawNanoClaw选题发现
FreedomIntelligence/OpenClaw-Medical-Skills查看