Agent skill

bio-genome-annotation-repeat-annotation

Identify and classify repetitive elements and transposable elements using RepeatModeler for de novo repeat library construction and RepeatMasker for genome-wide repeat annotation. Quantify TE expression from RNA-seq with TEtranscripts. Use when masking repeats before gene prediction or analyzing transposable element activity.

BioTender-maxgithub.com/BioTender-maxGitHub ↗
claude-codeships scriptsNOASSERTION
Install
npx skills add BioTender-max/awesome-bio-agent-skills --skill repeat-annotation --agent claude-code

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

Facts
Files in the skill folder: 5
SKILL.md size: 10 KB
Bundled scripts: yes
Path: skills/bioskills/repeat-annotation/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 135
Language: Python

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: DESeq2 1.42+, STAR 2.7.11+, matplotlib 3.8+, pandas 2.2+ Before using code patterns, verify installed versions match. If versions differ: - Python: `pip show <package>` then `help(module.function)` to check signatures - 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. # Repeat and Transposable Element Annotation **"Mask repeats in my genome assembly"** → Build a de novo repeat library and annotate/softmask repetitive elements as a prerequisite for gene prediction. - CLI: `RepeatModeler -database mydb` (library), `RepeatMasker -lib custom-lib.fa -xsmall assembly.fa` (masking) Identify, classify, and mask repetitive elements using RepeatModeler (de novo library construction) and RepeatMasker (genome-wide annotation). Softmasked output is a prerequisite for eukaryotic gene prediction. ## RepeatModeler (De Novo Library) RepeatModeler builds a species-specific repeat library by detecting repetitive elements de novo from the assembly. ### Build Database and Run `

What's inside
Steps it walks through
  1. Version Compatibility
  2. RepeatModeler (De Novo Library)
  3. Build Database and Run
  4. Key Options
  5. Output
  6. RepeatMasker (Genome-Wide Annotation)
  7. With De Novo Library
  8. With Dfam/RepBase Library
  9. Combined Library (De Novo + Known)
  10. Output Files
  11. Softmasking for Gene Prediction
  12. TEtranscripts (TE Expression)
  13. Key TEtranscripts Options
  14. Python: Repeat Statistics
Ships with 4 files
  • examples/repeat_annotation.sh
  • examples/repeat_stats.py
  • examples/te_expression.py
  • usage-guide.md
Commands it runs
Build RepeatModeler database
BuildDatabase -name my_genome -engine ncbi assembly.fasta
Run RepeatModeler (this takes hours to days depending on genome size)
RepeatModeler -database my_genome -pa 16 -LTRStruct
Use species-specific de novo library (recommended)
RepeatMasker \
assembly.fasta
Use Dfam curated library for a known species
Combine de novo and curated libraries for best results
cat my_genome-families.fa known_repeats.fa > combined_lib.fa
More from awesome-bio-agent-skills
All skills →
About this skill
What does the bio-genome-annotation-repeat-annotation skill do?

Identify and classify repetitive elements and transposable elements using RepeatModeler for de novo repeat library construction and RepeatMasker for genome-wide repeat annotation. Quantify TE expression from RNA-seq with TEtranscripts. Use when masking repeats before gene prediction or analyzing transposable element activity.

How do I install it?

Run `npx skills add BioTender-max/awesome-bio-agent-skills --skill repeat-annotation --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 BioTender-max/awesome-bio-agent-skills, a repository with 135 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