bio-primer-design-primer-validation
Validate PCR primers for specificity, dimers, hairpins, and secondary structures using primer3-py thermodynamic calculations. Check self-complementarity, heterodimer formation, and 3' stability. Use when validating primer specificity and properties.
What this skill does
## Version Compatibility
Reference examples tested with: pandas 2.2+, primer3-py 2.0+
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.
# Primer Validation
Check primers for secondary structures, dimers, and other issues using primer3-py.
**"Validate a primer pair"** -> Check for hairpins, self-dimers, heterodimers, and 3' stability using thermodynamic calculations.
- Python: `primer3.calc_hairpin()`, `primer3.calc_homodimer()`, `primer3.calc_heterodimer()` (primer3-py)
## Required Imports
```python
import primer3
```
## Check Hairpin Formation
```python
primer = 'ATGCGATCGATCGATCGATC'
hairpin = primer3.calc_hairpin(primer)
print(f'Hairpin Tm: {hairpin.tm:.1f}C')
print(f'Hairpin dG: {hairpin.dg:.1f} cal/mol')
print(f'Hairpin dH: {hairpin.dh:.1f} cal/mol')
print(f'Hairpin dS: {hairpin.ds:.1f} cal/mol/K')
# Hairpin is problematic if Tm > annealing temp - 10
annealing_temp = 60.0
if hairpin.tm > annealing_temp - 10:
print(f'WARNING: Hairpin Tm too high for annealing at {annealing_temp}C')
```
## Check Self-Dimer (Homodimer)
```python
primer = 'ATGCGATCGATCGATCGATC'
homodimer = primer3.calc_homodimer(primer)
print(f'Homodimer Tm: {homodimer.tm:.1f}C')
print(f'Homodimer dG: {homodimer.dg:.1f} cal/mol')
# Self-dimer is problematic if Tm is close to annealing temp
if homodimer.tm > 40:
print('WARNING: Significant self-dimer potential')
```
## Check Primer-Primer Dimer (Heterodimer)
```python
forward = 'ATGCGATCGATCGATCGATC'
reverse = 'GCTAGCTAGCTAGCTAGCTA'
heterodimer = primer3.calc_heterodimer(forward, reverse)
print(f'Heterodimer Tm: {heterodimer.tm:.1f}C')
print(f'Heterodimer dG: {heterodimer.dg:.1f} cal/mol')
if heterodimer.tm > 40:
print('WARNING: Significant primer dimer potential between forward and reverse')
```
## Complete Primer Validation
```python
def validate_primer(primer_seq, name='Primer', annealing_temp=60.0):
'''Comprehensive primer validation'''
print(f'\n=== Validating {name}: {primer_seq} ===')
# Basic properties
tm = primer3.calc_tm(primer_seq)
gc = (primer_seq.count('G') + primer_seq.count('C')) / len(primer_seq) * 100
print(f'Length: {len(primer_seq)}bp')
print(f'Tm: {tm:.1f}C')
print(f'GC: {gc:.1f}%')
# Hairpin
hairpin = primer3.calc_hairpin(primer_seq)
print(f'Hairpin Tm: {hairpin.tm:.1f}C, dG: {hairpin.dg:.1f}')
if hairpin.tm > annealing_temp - 10:
print(' WARNING: Hairpin may interfere with annealing')
# Homodimer
homodimer = primer3.calc_homodimer(primer_seq)
print(f'Homodimer Tm: {homodimer.tm:.1f}C, dG: {homodimer.dg:.1f}')
if homodimer.tm > 40:
print(' WARNING: Self-dimer potential')
# 3' end stability (last 5 bases)
end_3 = primer_seq[-5:]
end_gc = (end_3.count('G') + end_3.count('C'))
print(f"3' end (last 5bp): {end_3}, {end_gc} G/C bases")
if end_gc > 3:
print(" WARNING: 3' end may be too GC-rich")
if end_gc == 0:
print(" WARNING: 3' end lacks GC clamp")
# Poly-X runs
for base in 'ATGC':
for run_len in range(5, len(primer_seq)):
if base * run_len in primer_seq:
print(f' WARNING: Contains {base}x{run_len} run')
break
return {'tm': tm, 'gc': gc, 'hairpin_tm': hairpin.tm, 'homodimer_tm': homodimer.tm}
validate_primer('ATGCGATCGATCGATCGATC', 'Forward')
```
## Validate Primer Pair
```python
def validate_primer_pair(forward, reverse, annealing_temp=60.0):
'''Validate a primer pair'''
print(f'\n=== Primer Pair Validation ===')
print(f'Forward: {forward}')
print(f'Reverse: {reverse}')
# Individual primer checks
fwd_tm = primer3.calc_tm(forward)
rev_tm = primer3.calc_tm(reverse)
print(f'\nTm Forward: {fwd_tm:.1f}C')
print(f'Tm Reverse: {rev_tm:.1f}C')
print(f'Tm Difference: {abs(fwd_tm - rev_tm):.1f}C')
if abs(fwd_tm - rev_tm) > 2:
print(' WARNING: Tm difference > 2C')
# Heterodimer check
heterodimer = primer3.calc_heterodimer(forward, reverse)
print(f'\nHeterodimer Tm: {heterodimer.tm:.1f}C')
print(f'Heterodimer dG: {heterodimer.dg:.1f} cal/mol')
if heterodimer.tm > 40:
print(' WARNING: Significant primer dimer potential')
# Check 3' complementarity specifically
end_heterodimer = primer3.calc_heterodimer(forward[-6:], reverse[-6:])
print(f"3' end heterodimer Tm: {end_heterodimer.tm:.1f}C")
if end_heterodimer.tm > 20:
print(" WARNING: 3' ends may form stable dimer")
# Individual hairpins and homodimers
fwd_hairpin = primer3.calc_hairpin(forward)
rev_hairpin = primer3.calc_hairpin(reverse)
fwd_homodimer = primer3.calc_homodimer(forward)
rev_homodimer = primer3.calc_homodimer(reverse)
print(f'\nForward hairpin Tm: {fwd_hairpin.tm:.1f}C')
print(f'Reverse hairpin Tm: {rev_hairpin.tm:.1f}C')
print(f'Forward homodimer Tm: {fwd_homodimer.tm:.1f}C')
print(f'Reverse homodimer Tm: {rev_homodimer.tm:.1f}C')
return {
'fwd_tm': fwd_tm,
'rev_tm': rev_tm,
'heterodimer_tm': heterodimer.tm,
'fwd_hairpin_tm': fwd_hairpin.tm,
'rev_hairpin_tm': rev_hairpin.tm,
}
validate_primer_pair('ATGCGATCGATCGATCGATC', 'GCTAGCTAGCTAGCTAGCTA')
```
## Calculate End Stability (Native Function)
```python
# Use native calc_end_stability for 3' end thermodynamics
primer = 'ATGCGATCGATCGATCGATC'
# Calculate stability of last 5 bases (default)
end_stability = primer3.calc_end_stability(primer)
print(f"3' end stability: dG = {end_stability.dg:.1f} cal/mol")
# More negative dG = more stable 3' end = better extension but higher mispriming risk
if end_stability.dg < -9000:
print(' Note: Very stable 3\' end - good extension but watch for mispriming')
```
## Quick Tm-Only Checks (Lightweight)
```python
# For high-throughput screening, use Tm-only functions (return float, not ThermoResult)
primer = 'ATGCGATCGATCGATCGATC'
# Quick hairpin Tm check
hairpin_tm = primer3.calc_hairpin_tm(primer)
print(f'Hairpin Tm: {hairpin_tm:.1f}C')
# Quick homodimer Tm check
homodimer_tm = primer3.calc_homodimer_tm(primer)
print(f'Homodimer Tm: {homodimer_tm:.1f}C')
# Quick heterodimer Tm check
forward = 'ATGCGATCGATCGATCGATC'
reverse = 'GCTAGCTAGCTAGCTAGCTA'
heterodimer_tm = primer3.calc_heterodimer_tm(forward, reverse)
print(f'Heterodimer Tm: {heterodimer_tm:.1f}C')
```
## Fast Batch Screening with Tm-Only Functions
```python
def quick_screen_primers(primer_list, max_hairpin_tm=45, max_homodimer_tm=45):
'''Fast screening using Tm-only functions'''
passed = []
failed = []
for seq in primer_list:
hairpin_tm = primer3.calc_hairpin_tm(seq)
homodimer_tm = primer3.calc_homodimer_tm(seq)
if hairpin_tm < max_hairpin_tm and homodimer_tm < max_homodimer_tm:
passed.append(seq)
else:
failed.append((seq, hairpin_tm, homodimer_tm))
return passed, failed
primers = ['ATGCGATCGATCGATCGATC', 'GCGCGCGCGCGCGCGCGCGC', 'ATATATATATATATATATAT']
passed, failed = quick_screen_primers(primers)
print(f'Passed: {len(passed)}, Failed: {len(failed)}')
```
## Check Specificity (3' End)
```python
def check_3prime_specificity(primer_seq):
'''Check if 3' end is suitable for specific priming'''
end_5bp = primer_seq[-5:]
end_3bp = primer_seq[-3:]
# Count G/C in last 5 bases
gc_5 = end_5bp.count('G') + end_5bp.count('C')
# Check last base
last_base = primer_seq[-1]
print(f"3' sequence: ...{end_5bp}")
print(f"G/C in last 5bp: {gc_5}")
print(f"Last base: {last_base}")
# Ideal: 1-2 G/C in last 5, ending in G or C
if gc_5 == 0:
print(' Consider: No GC clamp at 3\' end')
elif gc_5 > 3:
Related in Design
contribute
IncludedLocal-only OSS contribution command center. Auto-refreshes the user's in-flight PR and issue state on invoke so conversations start with full context — no need to brief Claude on what's in flight. Helps the user find issues to contribute to on GitHub, builds per-repo dossiers of what each upstream expects (CLA, DCO, branch convention, AI policy, draft-first, review bots, issue templates), runs deterministic gates before any external action so AI-assisted contributions don't reach maintainers as slop. State is markdown-only: candidate files at ~/.contribute-system/candidates/, repo dossiers at ~/.contribute-system/research/, append-only event log at ~/.contribute-system/log.jsonl. No database, no cloud calls. Use when the user asks about their PRs / issues / contributions, wants to find new work to take on, claim an issue, build/refresh a repo's dossier, or draft a Design Issue or PR. Trigger with "/contribute", "what's my PR status", "find a contribution", "claim issue X", "draft a Design Issue for Y", "refresh dossier for Z".
architectural-analysis
IncludedUser-triggered deep architectural analysis of a codebase or scoped subtree across eight modes — information architecture, data flow, integration points, UI surfaces, interaction patterns, data model, control flow, and failure modes. This skill should be used when the user asks to "diagram this codebase," "map the architecture," "show the data flow," "give me an ERD," "trace control flow," "find the integration points," "verify the layout pattern," "audit the UX architecture," or any similar request whose primary deliverable is mermaid diagrams plus cited reports under docs/architecture/. Dispatches haiku/sonnet sub-agents in parallel for per-mode exploration, then verifies every citation mechanically before any node lands in a diagram. Not for one-off prose explanations of code (use code-explanation) or for high-level system design from scratch (use system-design).
mcp
IncludedModel Context Protocol (MCP) server development and tool management. Languages: Python, TypeScript. Capabilities: build MCP servers, integrate external APIs, discover/execute MCP tools, manage multi-server configs, design agent-centric tools. Actions: create, build, integrate, discover, execute, configure MCP servers/tools. Keywords: MCP, Model Context Protocol, MCP server, MCP tool, stdio transport, SSE transport, tool discovery, resource provider, prompt template, external API integration, Gemini CLI MCP, Claude MCP, agent tools, tool execution, server config. Use when: building MCP servers, integrating external APIs as MCP tools, discovering available MCP tools, executing MCP capabilities, configuring multi-server setups, designing tools for AI agents.
react-native-skia
IncludedDesign, build, debug, and optimise high-polish animated graphics in React Native or Expo using @shopify/react-native-skia, Reanimated, and Gesture Handler. Use when the user wants canvas-driven UI, shaders, paths, rich text, image filters, sprite fields, Skottie, video frames, snapshots, web CanvasKit setup, or performance tuning for custom motion-heavy elements such as loaders, hero art, cards, charts, progress indicators, particle systems, or gesture-driven surfaces. Also use when the user asks for fluid, glow, glass, blob, parallax, 60fps/120fps, or GPU-friendly animated effects in React Native, even if they do not explicitly say "Skia". Do not use for ordinary form/layout work with standard views.
plaid
IncludedProduct Led AI Development — guides founders from idea to launched product. Six capabilities: Idea (discover a product idea), Validate (pressure-test the idea against fatal flaws, problem reality, competition, and 2-week MVP feasibility), Plan (vision intake + document generation), Design (translate image references into a design.md spec), Launch (go-to-market strategy), and Build (roadmap execution). Use when someone says "PLAID", "plaid idea", "help me find an idea", "product idea", "idea from my business", "idea from my expertise", "plaid validate", "validate my idea", "pressure-test", "is this idea good", "find fatal flaws", "validate the problem", "plan a product", "define my vision", "generate a PRD", "product strategy", "plaid design", "design from image", "translate image to design", "create design.md", "extract design tokens", "plaid launch", "go-to-market", "launch plan", "GTM strategy", "launch playbook", "plaid build", "build the app", "start building", or "execute the roadmap".
nextjs-framer-motion-animations
IncludedAdds production-safe Motion for React or Framer Motion animations to Next.js apps, including reveal, hover and tap micro-interactions, whileInView, stagger, AnimatePresence, layout and layoutId transitions, reorder, scroll-linked UI, and lightweight route-content transitions. Use when the user asks to add, refactor, or debug Motion or Framer Motion in App Router or Pages Router codebases, especially around server/client boundaries, reduced motion, LazyMotion, bundle size, hydration, or route transitions. Avoid for GSAP-style timelines, WebGL or 3D scenes, heavy scroll storytelling, or CSS-only effects unless Motion is explicitly requested.