Kick off public shotgun metagenomics QC, host-depletion, taxonomic profiling, and functional profiling workflows using nf-core/taxprofiler, Kraken2, Bracken, MetaPhlAn, and HUMAnN.
65
77%
Does it follow best practices?
Run evals on this skill
Adds up to 20 points to the overall score
View guide
Passed
No findings from the security scan
Fix and improve this skill with Tessl
tessl review fix ./plugins/ngs-analysis/skills/ngs-shotgun-metagenomics/SKILL.mdUse this skill for shotgun metagenomic FASTQs.
Confirm:
Prefer nf-core/taxprofiler for reproducible taxonomic profiling. Use direct Kraken2/Bracken, MetaPhlAn, or HUMAnN when the user wants a focused path or already has databases installed.
For direct backend execution, prefer the plugin runner over handwritten shell when possible because it validates database bundle contents and records resources/resource_plan.json, resource_manifest.tsv, resource_env.sh, and resource_readiness.md. --run-bracken and --run-humann make those database bundles blocking, not merely optional.
python plugins/ngs-analysis/scripts/ngs_preflight.py --pipeline shotgun_metagenomics --emit-install-planFor FASTQ intake/QC before host-depletion, taxonomic profiling, or functional profiling, use:
python plugins/ngs-analysis/scripts/run_fastq_assay_package.py \
--lane shotgun_metagenomics \
--sample-sheet shotgun_samples.csv \
--executeThis validates read paths and structure, runs seqkit stats and FastQC/MultiQC when available, and writes taxonomic_classification_status.json. Add --kraken-db /path/to/db only when a local Kraken2 database is available; otherwise the package records the database/tool blocker explicitly.
For backend taxonomic and functional profiling when databases are available, use:
python plugins/ngs-analysis/scripts/run_shotgun_metagenomics.py \
--sample-sheet shotgun_samples.csv \
--kraken-db /db/kraken2/standard \
--host-reference /refs/human_kneaddata_db \
--run-bracken \
--run-humann \
--humann-db /db/humann \
--metadata sample_metadata.tsv \
--executeFor nf-core execution, use plugins/ngs-analysis/scripts/run_nfcore_pipeline.py --pipeline taxprofiler.
When --host-reference is supplied, the backend runner adds a KneadData host-depletion step, requires kneaddata in tool preflight, writes cleaned FASTQs under host_depletion/, and uses those cleaned reads for downstream Kraken2 and HUMAnN steps. Keep the host reference path and host-depletion decision visible because it can change taxonomic and functional abundance conclusions.
The backend runner writes native matrix artifacts when database tools produce outputs:
tables/bracken_est_reads_matrix.tsvtables/bracken_relative_abundance_matrix.tsvtables/humann_pathabundance_matrix.tsvtables/humann_genefamilies_matrix.tsvtables/bracken_summary.json and tables/humann_summary.jsontables/top_bracken_taxa.tsv, tables/top_humann_pathways.tsv, tables/top_humann_gene_families.tsv, and tables/metagenomics_backend_review.json when normalized backend matrices are availableIf Kraken2/Bracken/HUMAnN outputs are absent, the summaries and visualization manifest keep those layers not_available instead of implying taxonomic or functional interpretation succeeded.
nf-core preflight run:
nextflow run nf-core/taxprofiler \
-profile test,docker \
--outdir results/taxprofiler_testDirect Kraken2 skeleton:
kraken2 \
--db /path/to/kraken2_db \
--paired sample_R1.fastq.gz sample_R2.fastq.gz \
--report results/kraken2/sample.report \
--output results/kraken2/sample.krakenThe local FASTQ package always writes visualizations/index.html and visualizations/visualization_manifest.json. With only FASTQs, this is a read-QC/readiness bundle. Provide existing --kraken-report, --bracken-table, --humann-pathabundance, or --humann-genefamilies files to generate native taxonomy and functional-profile plots without requiring a Marimo notebook. For full backend runs, run_shotgun_metagenomics.py now also merges generated Bracken/HUMAnN outputs into plugin-native tables for the review bundle and writes visualizations/shotgun_backend_dashboard.html plus SVG plots for top Bracken taxa, HUMAnN pathways, and HUMAnN gene families when the corresponding matrices are present.
11c74d6
If you maintain this skill, you can claim it as your own. Once claimed, you can manage eval scenarios, bundle related skills, attach documentation or rules, and ensure cross-agent compatibility.