Adaptyv
Adaptyv is a cloud laboratory platform that provides automated protein testing and validation services. Submit protein sequences via API or…
Maintainer FreedomIntelligence · Last updated April 1, 2026
Select restriction enzymes for cloning based on cut sites and compatibility.
Original source
https://github.com/FreedomIntelligence/OpenClaw-Medical-Skills/tree/main/skills/bio-restriction-enzyme-selection
Skill Snapshot
Source Doc
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 don't cut (good for cloning insert)
non_cutters = analysis.only_dont_cut()
## All enzymes that cut (any number of times)
all_cutters = analysis.only_cut()
Related skills
Adaptyv is a cloud laboratory platform that provides automated protein testing and validation services. Submit protein sequences via API or…
Validate protein designs using AlphaFold2 structure prediction. Use this skill when: (1) Validating designed sequences fold correctly, (2) P…
Antibody design: epitope mapping, CDR engineering, bispecific construction.
End-to-end binder design using BindCraft hallucination. Use this skill when: (1) Designing protein binders with built-in AF2 validation, (2)…