Agent skill

bio-restriction-enzyme-selection

Select restriction enzymes by criteria using Biopython Bio.Restriction. Find enzymes that cut once, don't cut, produce specific overhangs, are commercially available, or have compatible ends for cloning. Use when selecting restriction enzymes for cloning or analysis.

BioTender-maxgithub.com/BioTender-maxGitHub ↗
claude-codeships scriptsNOASSERTION
Install
npx skills add BioTender-max/awesome-bio-agent-skills --skill enzyme-selection --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/enzyme-selection/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: BioPython 1.83+ Before using code patterns, verify installed versions match. If versions differ: - Python: `pip show <package>` then `help(module.function)` to check signatures If code throws ImportError, AttributeError, or TypeError, introspect the installed package and adapt the example to match the actual API rather than retrying. # Enzyme Selection **"Find enzymes that cut my sequence once"** → Search restriction enzyme databases by cut frequency, overhang type, commercial availability, or compatible ends for cloning. - Python: `Bio.Restriction.Analysis(rb, seq)` with `RestrictionBatch` filters ## Find Enzymes by Cut Frequency ```python from Bio import SeqIO from Bio.Restriction import Analysis, CommOnly, AllEnzymes record = SeqIO.read('sequence.fasta', 'fasta') seq = record.seq analysis = Analysis(CommOnly, seq) # Enzymes that cut exactly once (good for linearization) once_cutters = analysis.once_cutters() # Enzymes that cut exactly twice (good for excision) twice_cutters = analysis.twice_cutters() # Enzymes that don't cut (good for cloning insert) non_cutters = analysis.only_dont_cut() # All enzymes that cut (any number

What's inside
Steps it walks through
  1. Version Compatibility
  2. Find Enzymes by Cut Frequency
  3. Find Non-Cutters for Insert
  4. Find Compatible Enzyme Pairs
  5. Filter by Overhang Type
  6. Filter by Recognition Site Length
  7. Find Enzymes with Specific Overhang
  8. Find Unique Cutters in Multiple Sequences
  9. Select Enzymes for Directional Cloning
  10. Check Commercial Availability
  11. Find Isoschizomers
  12. Check Methylation Sensitivity
  13. Type IIS Enzymes for Golden Gate Cloning
  14. Enzyme Properties Reference
Ships with 4 files
  • examples/cloning_strategy.py
  • examples/golden_gate_check.py
  • examples/select_enzymes.py
  • usage-guide.md
More from awesome-bio-agent-skills
All skills →
About this skill
What does the bio-restriction-enzyme-selection skill do?

Select restriction enzymes by criteria using Biopython Bio.Restriction. Find enzymes that cut once, don't cut, produce specific overhangs, are commercially available, or have compatible ends for cloning. Use when selecting restriction enzymes for cloning or analysis.

How do I install it?

Run `npx skills add BioTender-max/awesome-bio-agent-skills --skill enzyme-selection --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