Agent skill · AI & Agents

basecalling

The most comprehensive Claude Code skills registry - 50,000+ skills indexed

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

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

Facts
Files in the skill folder: 2
SKILL.md size: 7 KB
Bundled scripts: none
Path: skills/analysis/basecalling/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

--- name: bio-basecalling description: Convert raw Nanopore signal data (FAST5/POD5) to nucleotide sequences using Dorado basecaller. Covers model selection, GPU acceleration, modified base detection, and quality filtering. Use when processing raw Nanopore data before alignment. Note: Guppy is deprecated; use Dorado for all new analyses. tool_type: cli primary_tool: dorado --- # Nanopore Basecalling Convert raw electrical signal from Nanopore sequencing into nucleotide sequences. ## Dorado (Recommended) Dorado is ONT's current production basecaller, replacing Guppy. It offers better accuracy and speed. ### Basic Basecalling ```bash dorado basecaller sup pod5_dir/ > calls.bam ``` ### Choose Model ```bash dorado basecaller fast pod5_dir/ > calls.bam dorado basecaller hac pod5_dir/ > calls.bam dorado basecaller sup pod5_dir/ > calls.bam ``` ### Model Speed vs Accuracy | Model | Speed | Accuracy | Use Case | |-------|-------|----------|----------| | fast | Fastest | Lower | Quick preview | | hac | Medium | High | General use | | sup | Slowest | Highest | Publication quality | ### Specific Model Version ```bash dorado download --model dna_r10.4.1_e8.2_400bps_sup@v5.1.0 dorado basecaller

What's inside
Steps it walks through
  1. Dorado (Recommended)
  2. Basic Basecalling
  3. Choose Model
  4. Model Speed vs Accuracy
  5. Specific Model Version
  6. List Available Models
  7. Output FASTQ Instead of BAM
  8. Modified Base Detection
  9. GPU Selection
  10. Batch Size for Memory
  11. Duplex Calling
  12. Demultiplexing During Basecalling
  13. Trim Adapters
  14. Resume Interrupted Run
Ships with 1 file
  • metadata.json
Commands it runs
dorado basecaller sup pod5_dir/ > calls.bam
dorado basecaller fast pod5_dir/ > calls.bam
dorado basecaller hac pod5_dir/ > calls.bam
dorado download --model dna_r10.4.1_e8.2_400bps_sup@v5.1.0
dorado basecaller dna_r10.4.1_e8.2_400bps_sup@v5.1.0 pod5_dir/ > calls.bam
dorado download --list
dorado basecaller sup pod5_dir/ --emit-fastq > calls.fastq
dorado basecaller sup,5mCG_5hmCG pod5_dir/ > calls_mods.bam
dorado basecaller sup,5mCG pod5_dir/ > calls_5mc.bam
dorado basecaller sup,6mA pod5_dir/ > calls_6ma.bam
More from claude-skill-registry
All skills →
About this skill
What does the basecalling skill do?

The most comprehensive Claude Code skills registry - 50,000+ skills indexed

How do I install it?

Run `npx skills add majiayu000/claude-skill-registry --skill basecalling --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