Agent skill

bio-genome-annotation-prokaryotic-annotation

Annotate bacterial and archaeal genomes with Bakta for comprehensive structural and functional annotation, or Prokka for lightweight annotation. Generates GFF3, GenBank, and FASTA outputs with NCBI-compatible locus tags. Use when annotating a newly assembled prokaryotic genome or preparing annotations for NCBI submission.

BioTender-maxgithub.com/BioTender-maxGitHub ↗
claude-codeships scriptsNOASSERTION
Install
npx skills add BioTender-max/awesome-bio-agent-skills --skill prokaryotic-annotation --agent claude-code

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

Facts
Files in the skill folder: 4
SKILL.md size: 7 KB
Bundled scripts: yes
Path: skills/bioskills/prokaryotic-annotation/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 135
Language: Python

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: BUSCO 5.5+, scanpy 1.10+ 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. # Prokaryotic Genome Annotation **"Annotate my bacterial genome"** → Predict and functionally annotate coding sequences, rRNAs, tRNAs, and other features in a prokaryotic genome assembly. - CLI: `bakta --db db/ assembly.fa` (preferred), `prokka --outdir annot assembly.fa` (legacy) Annotate prokaryotic genomes with Bakta (preferred) or Prokka (legacy). Bakta provides more comprehensive functional annotation through up-to-date databases and NCBI-compatible output formatting. ## Bakta ### Database Setup ```bash # Download the full database (~30 GB, recommended for comprehensive annotation) bakta_db download --output /path/to/bakta_db --type full # Lightweight database (~1.5 GB, faster but less comprehensive) bakta_db download -

What's inside
Steps it walks through
  1. Version Compatibility
  2. Bakta
  3. Database Setup
  4. Basic Annotation
  5. Key Options
  6. With Organism Metadata
  7. Output Files
  8. Prokka (Legacy Alternative)
  9. Prokka vs Bakta
  10. Parsing Annotations with Python
  11. Annotation QC
  12. Expected Metrics by Genome Size
  13. QC Checks
  14. BUSCO on Predicted Proteins
Ships with 3 files
  • examples/bakta_annotation.sh
  • examples/parse_annotation.py
  • usage-guide.md
Commands it runs
Download the full database (~30 GB, recommended for comprehensive annotation)
bakta_db download --output /path/to/bakta_db --type full
Lightweight database (~1.5 GB, faster but less comprehensive)
bakta_db download --output /path/to/bakta_db --type light
Update existing database
bakta_db update --db /path/to/bakta_db
bakta \
assembly.fasta
prokka \
Count annotated features
More from awesome-bio-agent-skills
All skills →
About this skill
What does the bio-genome-annotation-prokaryotic-annotation skill do?

Annotate bacterial and archaeal genomes with Bakta for comprehensive structural and functional annotation, or Prokka for lightweight annotation. Generates GFF3, GenBank, and FASTA outputs with NCBI-compatible locus tags. Use when annotating a newly assembled prokaryotic genome or preparing annotations for NCBI submission.

How do I install it?

Run `npx skills add BioTender-max/awesome-bio-agent-skills --skill prokaryotic-annotation --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 BioTender-max/awesome-bio-agent-skills, a repository with 135 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