Agent skill · Data & Analytics

bio-ribo-seq-ribosome-periodicity

Validate Ribo-seq data quality by checking 3-nucleotide periodicity and calculating P-site offsets. Use when assessing library quality or determining read offsets for downstream analysis.

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

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

Facts
Files in the skill folder: 2
SKILL.md size: 4 KB
Bundled scripts: none
Path: skills/ai-ml/ribosome-periodicity/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

# Ribosome Periodicity Analysis ## 3-Nucleotide Periodicity Ribosomes move 3 nucleotides per codon. Good Ribo-seq data shows strong periodicity: ```python from plastid import BAMGenomeArray, FivePrimeMapFactory, GenomicSegment import numpy as np import matplotlib.pyplot as plt # Load aligned reads alignments = BAMGenomeArray('riboseq.bam', mapping=FivePrimeMapFactory()) # Get metagene around start codons # Expect strong 3-nt periodicity ``` ## Calculate P-site Offset ```python from plastid import metagene_analysis # The P-site offset varies by read length # Typically 12-15 nt from 5' end for 28-30 nt reads def determine_psite_offset(bam_path, annotation_file): '''Determine optimal P-site offset from metagene analysis''' from plastid import GTF2_TranscriptAssembler, BAMGenomeArray # Load annotations transcripts = list(GTF2_TranscriptAssembler(annotation_file)) # Load reads alignments = BAMGenomeArray(bam_path, mapping=FivePrimeMapFactory()) # Metagene around start codons # Peak should align with start codon position metagene_data = metagene_analysis( transcripts, alignments, upstream=50, downstream=100 ) return metagene_data ``` ## Metagene Plots ```python def plot_metagene(metagene

What's inside
Steps it walks through
  1. 3-Nucleotide Periodicity
  2. Calculate P-site Offset
  3. Metagene Plots
  4. Assess by Read Length
  5. P-site Offset Table
  6. Validate with RiboCode
  7. Related Skills
Ships with 1 file
  • metadata.json
Commands it runs
RiboCode includes periodicity analysis
RiboCode_onestep \
Check output for periodicity plots
More from claude-skill-registry
All skills →
About this skill
What does the bio-ribo-seq-ribosome-periodicity skill do?

Validate Ribo-seq data quality by checking 3-nucleotide periodicity and calculating P-site offsets. Use when assessing library quality or determining read offsets for downstream analysis.

How do I install it?

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