Agent skill

bio-genome-assembly-long-read-assembly

De novo genome assembly from Oxford Nanopore or PacBio long reads using Flye and Canu. Produces highly contiguous assemblies suitable for complete bacterial genomes and resolving complex regions. Use when assembling genomes from ONT or PacBio reads.

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

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

Facts
Files in the skill folder: 3
SKILL.md size: 6 KB
Bundled scripts: yes
Path: skills/bioskills/long-read-assembly/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: Canu 2.2+, Flye 2.9+, hifiasm 0.19+, wtdbg2 2.5+ 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. # Long-Read Assembly **"Assemble a genome from long reads"** → Build a contiguous de novo assembly from ONT or PacBio reads, producing complete or near-complete chromosomes. - CLI: `flye --nano-raw reads.fq -o output` (ONT), `canu -p asm -d output -nanopore reads.fq` (ONT/PacBio) ## Tool Comparison | Tool | Speed | Memory | Best For | |------|-------|--------|----------| | Flye | Fast | Moderate | General purpose, bacteria, ONT | | Canu | Slow | High | High accuracy, complex genomes | | Wtdbg2 | Very fast | Low | Draft assemblies | > **Note:** For PacBio HiFi data, see the dedicated **hifi-assembly** skill which covers hifiasm. ## Flye ### Installation ```bash conda install -c bioconda flye ``` ### Basic Usage ```bash # Oxford Nanopore flye --nano-raw reads.fastq.gz --out-dir fly

What's inside
Steps it walks through
  1. Version Compatibility
  2. Tool Comparison
  3. Flye
  4. Installation
  5. Basic Usage
  6. Read Type Options
  7. Key Options
  8. Genome Size Estimation
  9. Output Files
  10. Bacterial Assembly
  11. Metagenome Assembly
  12. With Plasmid Recovery
  13. Canu
  14. Fast Mode
Ships with 2 files
  • examples/flye_assembly.sh
  • usage-guide.md
Commands it runs
conda install -c bioconda flye
Oxford Nanopore
flye --nano-raw reads.fastq.gz --out-dir flye_output --threads 16
PacBio CLR
flye --pacbio-raw reads.fastq.gz --out-dir flye_output --threads 16
PacBio HiFi
flye --pacbio-hifi reads.fastq.gz --out-dir flye_output --threads 16
Estimate if unknown
flye --nano-raw reads.fq.gz --out-dir output --genome-size 5m
Size formats: 1000, 1k, 1m, 1g
More from awesome-bio-agent-skills
All skills →
About this skill
What does the bio-genome-assembly-long-read-assembly skill do?

De novo genome assembly from Oxford Nanopore or PacBio long reads using Flye and Canu. Produces highly contiguous assemblies suitable for complete bacterial genomes and resolving complex regions. Use when assembling genomes from ONT or PacBio reads.

How do I install it?

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