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.

majiayu000github.com/majiayu000GitHub ↗
claude-codeMIT
Install
npx skills add majiayu000/claude-skill-registry --skill long-read-assembly --agent claude-code

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

Facts
Files in the skill folder: 2
SKILL.md size: 6 KB
Bundled scripts: none
Path: skills/analysis/long-read-assembly/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 534
Language: HTML

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# Long-Read Assembly Assemble genomes from Oxford Nanopore (ONT) or PacBio long reads for highly contiguous assemblies. ## 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 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 ``` ### Read Type Options | Option | Read Type | |--------|-----------| | `--nano-raw` | ONT regular reads | | `--nano-corr` | ONT corrected reads | | `--nano-hq` | ONT Q20+ reads (Guppy 5+) | | `--pacbio-raw` | PacBio CLR | | `--pacbio-corr` | PacBio corrected | | `--pacbio-hifi` | PacBio HiFi/CCS | ### Key Options | Option | Description | |--------|-------------| | `--out-dir` | O

What's inside
Steps it walks through
  1. Tool Comparison
  2. Flye
  3. Installation
  4. Basic Usage
  5. Read Type Options
  6. Key Options
  7. Genome Size Estimation
  8. Output Files
  9. Bacterial Assembly
  10. Metagenome Assembly
  11. With Plasmid Recovery
  12. Canu
  13. Fast Mode
  14. High-Quality Mode (PacBio HiFi)
Ships with 1 file
  • metadata.json
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 claude-skill-registry
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 majiayu000/claude-skill-registry --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 majiayu000/claude-skill-registry, a repository with 534 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