Agent skill · Data & Analytics

bio-longread-medaka

Polish assemblies and call variants from Oxford Nanopore data using medaka. Uses neural networks trained on specific basecaller versions. Use when improving ONT-only assemblies or calling variants from Nanopore data without short-read polishing.

FreedomIntelligencegithub.com/FreedomIntelligenceGitHub ↗
claude-codeships scripts
Install
npx skills add FreedomIntelligence/OpenClaw-Medical-Skills --skill bio-longread-medaka --agent claude-code

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

Facts
Files in the skill folder: 4
SKILL.md size: 5 KB
Bundled scripts: yes
Path: skills/bio-longread-medaka/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 2,909
Language: Python
Read our review of the source →

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: bcftools 1.19+, 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. # Medaka Polishing and Variant Calling **"Polish my ONT assembly with medaka"** → Use neural networks trained on specific basecaller models to correct assembly errors and call variants from Nanopore data. - CLI: `medaka_polisher -i reads.fq -d draft.fa -o polished.fa -m r1041_e82_400bps_sup_v5.0.0` ## Basic Consensus Polishing ```bash # Polish assembly with medaka medaka_consensus -i reads.fastq.gz \ -d draft_assembly.fa \ -o medaka_output \ -t 4 \ -m r1041_e82_400bps_sup_v5.0.0 ``` ## Variant Calling (Haploid) ```bash # Call variants against reference medaka_variant \ -i reads.fastq.gz \ -r reference.fa \ -o output_dir \ -m r1041_e82_400bps_sup_v5.0.0 ``` Note: Diploid variant calling has been deprecated in medaka v2.0. For diploid samples, use [Clair3](https://github.com/HKU-BAL/

What's inside
Steps it walks through
  1. Version Compatibility
  2. Basic Consensus Polishing
  3. Variant Calling (Haploid)
  4. Step-by-Step Workflow
  5. List Available Models
  6. Common Models
  7. Choose Model Based on Basecaller
  8. Polish Region Only
  9. Multiple Rounds of Polishing
  10. Call Variants from Existing BAM
  11. Filter VCF Output
  12. Output Files
  13. Key Parameters
  14. GPU Acceleration
Ships with 3 files
  • examples/medaka_polish.sh
  • examples/medaka_variant.sh
  • usage-guide.md
Commands it runs
Polish assembly with medaka
medaka_consensus -i reads.fastq.gz \
Call variants against reference
medaka_variant \
minimap2 -ax map-ont reference.fa reads.fastq.gz | \
samtools sort -o aligned.bam
samtools index aligned.bam
medaka inference aligned.bam consensus.hdf \
medaka sequence consensus.hdf reference.fa polished.fa
medaka vcf reference.fa consensus.hdf variants.vcf
More from OpenClaw-Medical-Skills
All skills →
About this skill
What does the bio-longread-medaka skill do?

Polish assemblies and call variants from Oxford Nanopore data using medaka. Uses neural networks trained on specific basecaller versions. Use when improving ONT-only assemblies or calling variants from Nanopore data without short-read polishing.

How do I install it?

Run `npx skills add FreedomIntelligence/OpenClaw-Medical-Skills --skill bio-longread-medaka --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 FreedomIntelligence/OpenClaw-Medical-Skills, a repository with 2,909 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