Agent skill · Data & Analytics

bio-longread-qc

Quality control for long-read sequencing data using NanoPlot, NanoStat, and chopper. Generate QC reports, filter reads by length and quality, and visualize read characteristics. Use when assessing ONT or PacBio run quality or filtering reads before assembly or alignment.

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

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

Facts
Files in the skill folder: 2
SKILL.md size: 5 KB
Bundled scripts: none
Path: skills/analysis/long-read-qc-gptomics-bioskills/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 Quality Control ## NanoPlot - Visualization ```bash # From FASTQ NanoPlot --fastq reads.fastq.gz -o nanoplot_output -t 4 # From BAM NanoPlot --bam aligned.bam -o nanoplot_output -t 4 # From sequencing summary (fastest) NanoPlot --summary sequencing_summary.txt -o nanoplot_output ``` ## NanoPlot - Common Options ```bash NanoPlot --fastq reads.fastq.gz \ -o nanoplot_output \ -t 8 \ --N50 \ # Show N50 in plots --title "Sample QC" \ --plots hex dot \ # Plot types --format png pdf \ # Output formats --color darkblue \ --maxlength 50000 \ # Max length for plots --minlength 500 # Min length for plots ``` ## NanoStat - Statistics Only ```bash # Quick statistics (no plots) NanoStat --fastq reads.fastq.gz --threads 4 # From BAM NanoStat --bam aligned.bam --threads 4 # Output to file NanoStat --fastq reads.fastq.gz --threads 4 > qc_stats.txt ``` ## chopper - Filter Reads ```bash # Filter by length and quality gunzip -c reads.fastq.gz | chopper -q 10 -l 1000 | gzip > filtered.fastq.gz # Quality >= 10, length >= 1000bp ``` ## chopper - Common Options ```bash gunzip -c reads.fastq.gz | chopper \ --quality 10 \ # Min quality --minlength 1000 \ # Min length --maxlength 50000 \ # Max le

What's inside
Steps it walks through
  1. NanoPlot - Visualization
  2. NanoPlot - Common Options
  3. NanoStat - Statistics Only
  4. chopper - Filter Reads
  5. chopper - Common Options
  6. NanoFilt - Alternative Filter
  7. Porechop - Adapter Trimming
  8. Generate Summary Statistics
  9. PycoQC - From Basecalling
  10. Calculate N50
  11. Parse FASTQ Quality in Python
  12. NanoPlot Output Files
  13. Key Parameters - NanoPlot
  14. Key Parameters - chopper
Ships with 1 file
  • metadata.json
Commands it runs
From FASTQ
NanoPlot --fastq reads.fastq.gz -o nanoplot_output -t 4
From BAM
NanoPlot --bam aligned.bam -o nanoplot_output -t 4
From sequencing summary (fastest)
NanoPlot --summary sequencing_summary.txt -o nanoplot_output
NanoPlot --fastq reads.fastq.gz \
Quick statistics (no plots)
NanoStat --fastq reads.fastq.gz --threads 4
NanoStat --bam aligned.bam --threads 4
More from claude-skill-registry
All skills →
About this skill
What does the bio-longread-qc skill do?

Quality control for long-read sequencing data using NanoPlot, NanoStat, and chopper. Generate QC reports, filter reads by length and quality, and visualize read characteristics. Use when assessing ONT or PacBio run quality or filtering reads before assembly or alignment.

How do I install it?

Run `npx skills add majiayu000/claude-skill-registry --skill long-read-qc-gptomics-bioskills --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