Agent skill

bio-genome-assembly-assembly-polishing

Polish genome assemblies to reduce errors using short reads (Pilon), long reads (Racon), or ONT-specific tools (medaka). Essential for improving long-read assembly accuracy. Use when improving assembly accuracy with polishing tools.

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

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

Facts
Files in the skill folder: 3
SKILL.md size: 8 KB
Bundled scripts: yes
Path: skills/bioskills/assembly-polishing/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: BWA 0.7.17+, QUAST 5.2+, minimap2 2.26+, samtools 1.19+ Before using code patterns, verify installed versions match. If versions differ: - 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. # Assembly Polishing **"Polish my genome assembly"** → Iteratively correct base-level errors in a draft assembly using short-read or long-read alignments. - CLI: `pilon --genome draft.fa --frags short_reads.bam` (short-read), `medaka_polish` (ONT), `racon` (long-read) ## Polishing Strategies | Tool | Input Reads | Best For | |------|-------------|----------| | Pilon | Illumina | Final polishing | | medaka | ONT | ONT assemblies | | Racon | Long reads | Quick polishing | | NextPolish | Both | Combined approach | ## Recommended Workflows ### ONT Assembly 1. Racon (2-3 rounds with ONT) 2. medaka (1 round) 3. Pilon (2-3 rounds with Illumina) ### PacBio CLR Assembly 1. Racon (2-3 rounds) 2. Pilon (2-3 rounds with Illumina) ### PacBio HiFi Assembly - Often no polishing needed (>

What's inside
Steps it walks through
  1. Version Compatibility
  2. Polishing Strategies
  3. Recommended Workflows
  4. ONT Assembly
  5. PacBio CLR Assembly
  6. PacBio HiFi Assembly
  7. Pilon (Illumina Polishing)
  8. Installation
  9. Basic Usage
  10. Key Options
  11. Multiple Rounds
  12. Fix Specific Issues
  13. medaka (ONT Polishing)
  14. Model Selection
Ships with 2 files
  • examples/polish_assembly.sh
  • usage-guide.md
Commands it runs
conda install -c bioconda pilon
Map short reads to assembly
bwa index assembly.fasta
bwa mem -t 16 assembly.fasta R1.fq.gz R2.fq.gz | samtools sort -o aligned.bam
samtools index aligned.bam
Run Pilon
pilon --genome assembly.fasta --frags aligned.bam --output polished
for i in $(seq 1 $ROUNDS); do
echo "=== Pilon round $i ==="
bwa index $current
More from awesome-bio-agent-skills
All skills →
About this skill
What does the bio-genome-assembly-assembly-polishing skill do?

Polish genome assemblies to reduce errors using short reads (Pilon), long reads (Racon), or ONT-specific tools (medaka). Essential for improving long-read assembly accuracy. Use when improving assembly accuracy with polishing tools.

How do I install it?

Run `npx skills add BioTender-max/awesome-bio-agent-skills --skill assembly-polishing --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