Agent skill · Code Review & Quality

bio-genome-assembly-assembly-qc

Assess genome assembly quality using QUAST for contiguity metrics and BUSCO for completeness. Essential for evaluating assembly success and comparing assemblers. Use when evaluating assembly completeness and quality.

majiayu000github.com/majiayu000GitHub ↗
claude-codeMIT
Install
npx skills add majiayu000/claude-skill-registry --skill assembly-qc --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/assembly-qc/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

# Assembly QC Evaluate genome assembly quality with contiguity metrics (QUAST) and gene completeness (BUSCO). ## Key Metrics | Metric | Good Assembly | |--------|---------------| | N50 | High (relative to genome) | | L50 | Low | | Contigs | Few | | Misassemblies | 0 (with reference) | | BUSCO Complete | >95% | | BUSCO Duplicated | <5% (unless polyploid) | ## QUAST ### Installation ```bash conda install -c bioconda quast ``` ### Basic Usage ```bash quast.py assembly.fasta -o quast_output ``` ### With Reference Genome ```bash quast.py assembly.fasta -r reference.fasta -o quast_output ``` ### Compare Multiple Assemblies ```bash quast.py assembly1.fa assembly2.fa assembly3.fa -o comparison ``` ### Key Options | Option | Description | |--------|-------------| | `-o` | Output directory | | `-r` | Reference genome | | `-g` | Gene annotations (GFF) | | `-t` | Threads | | `-m` | Min contig length (default: 500) | | `--large` | For large genomes (>100Mb) | | `--fragmented` | For highly fragmented assemblies | | `--scaffolds` | Input is scaffolds (includes N-gaps) | ### With Gene Annotations ```bash quast.py assembly.fasta -r reference.fasta -g genes.gff -o quast_output ``` ### For Large Geno

What's inside
Steps it walks through
  1. Key Metrics
  2. QUAST
  3. Installation
  4. Basic Usage
  5. With Reference Genome
  6. Compare Multiple Assemblies
  7. Key Options
  8. With Gene Annotations
  9. For Large Genomes
  10. Output Files
  11. Key Output Metrics
  12. BUSCO
  13. List Available Lineages
  14. Common Lineages
Ships with 1 file
  • metadata.json
Commands it runs
conda install -c bioconda quast
quast.py assembly.fasta -o quast_output
quast.py assembly.fasta -r reference.fasta -o quast_output
quast.py assembly1.fa assembly2.fa assembly3.fa -o comparison
quast.py assembly.fasta -r reference.fasta -g genes.gff -o quast_output
quast.py --large assembly.fasta -o quast_output -t 16
conda install -c bioconda busco
busco -i assembly.fasta -m genome -l bacteria_odb10 -o busco_output
busco --list-datasets
busco -i assembly.fasta -m genome --auto-lineage -o busco_output
More from claude-skill-registry
All skills →
About this skill
What does the bio-genome-assembly-assembly-qc skill do?

Assess genome assembly quality using QUAST for contiguity metrics and BUSCO for completeness. Essential for evaluating assembly success and comparing assemblers. Use when evaluating assembly completeness and quality.

How do I install it?

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