Skip to main content

Terminal-based circular plasmid map viewer, sequence editor, and Primer3/Golden Braid primer design workbench

Project description

SpliceCraft

SpliceCraft Logo

PyPI Python 100% Python TUI: Textual Tests License: MIT Status: Release candidate

Your whole cloning workflow, in the terminal.

SpliceCraft is a plasmid workbench that runs where you already work. Open a map, edit the sequence, design primers, plan a Golden Braid or MoClo assembly, BLAST a hit, check your Sanger reads, and keep a lab notebook — all from the keyboard, all in one place, no browser tab and no cloud account. Circular and linear maps render as crisp Unicode braille graphics in any modern terminal, and nothing leaves your machine unless you ask it to.

It's built by a practicing bioengineer for daily bench work: the bug reports come from real cloning, and so do the fixes. If you live in a terminal and clone for a living, it's meant to feel like home.

SpliceCraft screenshot

Why give it a try:

  • Fast and local. No Electron, no web app, no login. pipx install splicecraft and you're designing in seconds.
  • It does the whole job. View → edit → design → clone → simulate → verify → document — one tool that actually understands how those steps connect.
  • It guards your data like it's irreplaceable (because it is — see below).
  • It's scriptable. A 100+ endpoint local API and a stdlib CLI let an agent or a shell script drive every workflow.

Quick start

pipx install splicecraft
splicecraft                      # empty canvas
splicecraft L09137               # fetch pUC19 from NCBI on launch
splicecraft myplasmid.gb         # local GenBank or .dna

Press ? once running for the full keyboard-shortcut reference. See docs/install.md for pip / uv / conda / source installs.

A workhorse that just works

Your plasmid library is the product of months — sometimes years — of work. SpliceCraft is engineered so it can be your daily driver without ever making you nervous about it. Three promises, and the receipts behind them:

Your data is sacred. Every save runs through a four-layer safety net: an atomic write (a crash can never leave a half-written file), a .bak plus rotating timestamped backups, a daily snapshot, and a "suspicious shrink" guard that flat-out refuses to replace a 156 MB library with an empty file. Open a file that collides with something you already have and SpliceCraft asks — skip, keep a copy, or overwrite — it never clobbers your work behind your back. Before any self-update it snapshots everything to a sibling directory first, so even a hypothetical bug in a new version can't take your recovery copy with it.

The biology is correct, and we prove it. Restriction scanning handles palindromes, Type IIS enzymes, and origin-spanning cut sites the way a bench scientist expects; features that wrap the origin survive every edit; translation (including non-standard genetic codes via /transl_table), reverse-complement, and IUPAC matching are pinned down to the base. Selection markers are read from the actual entry vector you're using — no hardcoded antibiotics quietly mislabeling a construct. There are 4,000+ automated tests behind all of it, plus property-based fuzzing on the biology primitives, crash-injection tests on the save path, and concurrency fuzzing on the data layer. Every release ships only when the whole suite is green.

We go looking for trouble. The codebase is governed by a long list of "sacred invariants" (documented in CLAUDE.md), and each release is preceded by deep, multi-pass audits hunting for edge cases, data-loss windows, race conditions, and security gaps — with every finding verified against the real code before a line is changed. The short version: it's a workhorse, and it goes to real lengths to keep "it just works" true.

Full data-safety writeup: docs/data-safety.md · Security policy: SECURITY.md.

A guided tour

Everything lives behind a menu bar across the top of the screen. Here's the tour — starting with BLAST and working rightward across the bar, with the housekeeping menus (File, Settings) saved for last.

BLAST

Search without leaving the app (Ctrl+B). The Local tab runs BLASTN / BLASTP / HMMscan against your own library with an in-process engine — powered by pyhmmer, so there's no external blast+ to install — and a one-click downloader pulls Pfam-A or NCBIfam (or any HMMER3 .hmm.gz URL) with automatic update-detection, no wget + hmmpress ritual. On native Windows, BLASTN/BLASTP run in-process but HMMscan needs WSL2 (pyhmmer/HMMER is POSIX-only). The Online tab sends DNA / RNA / protein — or a whole plasmid or a single feature straight from your library — to NCBI (blastn / blastp / blastx / tblastn / tblastx) or to Pfam at EMBL-EBI, and drops the hits into a scrollable table just like a web BLAST. A live spinner and poll counter prove the search is really running, and Cancel actually stops it.

Enzymes

Drive the restriction overlay: show all sites, unique cutters only, 6+ or 4+ bp recognition, or just the Golden Braid connectors. Build enzyme collections — named subsets of the master catalog (200+ NEB enzymes plus your own customs) — and the active collection scopes every scan. Add a custom enzyme (name, site, cut positions, type, supplier) and it's live in every map from then on.

Features

A workbench for your reusable annotations — promoters, RBSs, tags, CDSs. Capture a region off any plasmid into the feature library, then drop it back onto another construct to either annotate a selection or splice the sequence in. It's the same store the Synthesis editor and Domesticator pull from, so your parts stay consistent everywhere.

Primers

A full-screen Primer3 designer covering detection, cloning, Golden Braid, and generic primers — each with a persistent Designed → Ordered → Validated lifecycle, so you can see at a glance what's been ordered and what came back working, right alongside the plasmid it belongs to.

Mutato

Site-directed mutagenesis, with a hint of whimsy in the name. Point at any CDS, name the change (say, L54A), and SpliceCraft designs the SOE-PCR primers for you — with a smart fallback to a 2-primer modified-outer strategy when a near-the-end mutation can be folded into a single primer. It checks its own work, too: the shortcut is only offered when the primer genuinely carries the change, so you never amplify wild-type by accident. It also turns a pasted protein into a ready-to-order CDS — frequency-matched codon optimization against your chosen table, with a stops selector (1–3) that also honors a trailing * run when you want a double or triple stop codon, and an Avoid sites picker that scrubs your chosen restriction-enzyme cut sites out of the optimized CDS.

Synthesis

A gene-synthesis composer with two tabs. The DNA tab is a horizontally-scrolling linear editor with anti-parallel strand markers, live feature stripes, restriction overlay, and AA translation, plus a feature library side-pane (Insert to splice, Annotate to overlay). The Protein tab lets you type or paste amino acids and watch the codons appear underneath using your chosen codon table — pick a different one or hit Manage to fetch one from Kazusa, import your own as a TSV, or delete one, all from the dropdown and reflected live — and a built-in motif library (His6, FLAG, HA, TEV, P2A, NLS, GS linkers, and ~30 more) inserts pre-colored tags. Hit Optimize → DNA to codon-optimize the protein (with the same stop-count and Avoid sites controls as Mutato) and hand the CDS straight to the DNA tab as an editable fragment. Or hit Open to load a sequence straight from a single-entry FASTA (or other amino-acid file) — a file browser highlights the loadable formats in pink. Compose a part, hit Clone Fragment, and it's handed straight to the Domesticator as an L0 building block. Save (and Save As, which forks a copy and only lights up once the fragment has been saved once) let you pick which collection the fragment lands in, and keep editing it there.

Parts

Your Parts Bin — the Level-0 building blocks for grammar-based assembly, organized into per-grammar bins. Multiple bins live side by side as Parts Bin collections, so a yeast toolkit and a plant toolkit never get mixed up.

Constructor

Where it all comes together. A multi-tab assembly bench — Traditional cloning, Gibson, Golden Braid, MoClo, or your own custom grammar — driven by a 4-source part picker. Every assembly, at every level, lands as one complete library entry (payload + overhangs + backbone) that carries every parent feature forward, so you can trace a finished L3 construct all the way back to its L0 parts right from the Library panel.

Simulator

In-silico PCR and agarose gels. Pick a template from your library, run the PCR, then save the amplicon back to the library or send it to a gel lane. Gels render at 0.5–4% with a real Helling–Goodman–Boyer mobility curve; stack several amplicons side by side, save the whole gel to reload later, or cite it as &<gel> in your lab notebook.

Sequencing

Verify your constructs against real reads. Drop in a Plasmidsaurus .zip and walk three numbered tabs — pick the run, pick the sample, pick the target plasmid — then Align. The read lands as a colored bar on the plasmid's linear map (green match / red mismatch / gray gap) with its name painted right onto the bar so a multi-read pile-up stays readable. Bulk auto-align matches a whole results folder against your library in one pass, and the Verification Report grades every construct (✓ verified / ⚠ near-match / ~ partial / ✗ divergent) in one sortable table — click a row to jump to the first variant. The Library panel even shows a per-plasmid Seq badge so you can see what's been verified at a glance, alongside a Kind badge ( plasmid · / fragment · amplicon · ρ protein) telling you what each entry is.

Experiments

A genuine lab notebook, in markdown. A split-pane editor, entries grouped into projects (the way plasmids group into collections), and live colored cross-references — type @plasmid, !action, or &gel and double-click (or Ctrl+G) to jump straight to the source. Attach images, and spellcheck with F7 against a dictionary you can grow.

History

Every plasmid you build through SpliceCraft remembers how it was made. History opens with a Protocol summary — a numbered, plain-English recipe of the real assembly steps ("TU_GFP ⟵ pProm + pCDS_GFP + pTerm into pENTR_L1 ✂ Esp3I") — above a lineage tree that opens collapsed to the finished plasmid and its direct inputs and lets you drill in as deep as you like. A backbone or part reused across branches is shown once and then referenced, so even a multi-part Golden Braid / MoClo build reads at a glance. Construction history also rides along when you import and re-export a CommercialSaaS .dna file. "How did I make this again?" is always one keystroke away.

File & Settings

The housekeeping. File opens local files, fetches from NCBI, saves, exports (GenBank / FASTA / GFF3), bulk-imports a folder, and restores from backup — and it's home to Master Delete, a triple-gated full wipe for when you genuinely want a clean slate (typed YES, a default-No confirm, and a cool-down on the button; no shortcut, no API). Settings collapses every toggle (restriction overlay, primer-binding length, and more) into one dialog, with launchers for the grammar, entry-vector, enzyme-collection, and codon-table editors.

Want to drive all of this from a script or an agent? There's a 100+ endpoint localhost JSON API (splicecraft --agent) and a stdlib-only CLI sidecar (splicecraft-cli) — see docs/agent-api.md and docs/cli.md.

Full feature reference: docs/features.md.

Documentation

Topic Where
Install methods docs/install.md
First five seconds with pUC19 docs/getting-started.md
Full feature list docs/features.md
Keybindings + menus docs/keybindings.md
Data safety + backups docs/data-safety.md
Agent API (HTTP) docs/agent-api.md
CLI sidecar docs/cli.md
Architecture docs/architecture.md
Sacred invariants CLAUDE.md
Contributing CONTRIBUTING.md
Security policy SECURITY.md
v1.0.0 acceptance gate V1_GATE.md
Changelog CHANGELOG.md
Release checklist RELEASE_CHECKLIST.md

Tests

python3 -m pytest -n auto -q                  # full suite (~5–6 min on 8 cores)
python3 -m pytest tests/test_dna_sanity.py    # biology correctness only (< 2 s)
python3 -m pytest tests/test_perf_regression.py  # perf gates (~3 s)

All tests run offline against synthetic SeqRecords and monkeypatched data paths; the autouse _protect_user_data fixture in tests/conftest.py guarantees no test can write to real user files.

Maintenance

SpliceCraft is actively maintained. The maintainer is a practicing bioengineer running real cloning workflows in it daily; releases typically go out the same week a problem surfaces at the bench. Issues and PRs welcome at github.com/Binomica-Labs/SpliceCraft/issues.

See CONTRIBUTING.md before opening a non-trivial PR — it walks through the sacred invariants, the test cadence, and the security-sensitive code surfaces.

License

MIT

Project details


Release history Release notifications | RSS feed

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

splicecraft-1.0.8.tar.gz (2.8 MB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

splicecraft-1.0.8-py3-none-any.whl (1.5 MB view details)

Uploaded Python 3

File details

Details for the file splicecraft-1.0.8.tar.gz.

File metadata

  • Download URL: splicecraft-1.0.8.tar.gz
  • Upload date:
  • Size: 2.8 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for splicecraft-1.0.8.tar.gz
Algorithm Hash digest
SHA256 9eaa0fd0e70ba38b669529071dd22b33181fd3adb5e54e581d93cdfbfb3ca838
MD5 a9f6bf5c105e4ccb97ee643d1b81cee7
BLAKE2b-256 608edd1b19c17e0ea2bc3b3fd6622a24686456596f578c6bac310564c7ffcf44

See more details on using hashes here.

Provenance

The following attestation bundles were made for splicecraft-1.0.8.tar.gz:

Publisher: publish.yml on Binomica-Labs/SpliceCraft

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file splicecraft-1.0.8-py3-none-any.whl.

File metadata

  • Download URL: splicecraft-1.0.8-py3-none-any.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for splicecraft-1.0.8-py3-none-any.whl
Algorithm Hash digest
SHA256 c7d52420dd0eae3862a5a6beda22d8bc03540d073159f08cbca1fc50b4e67dd0
MD5 5f2b1a9461d242ca8067591cbb562bf5
BLAKE2b-256 a0f674a5b2adeae58d743dda74aabfd1518d63fd9d9c2654ea64860366acb37f

See more details on using hashes here.

Provenance

The following attestation bundles were made for splicecraft-1.0.8-py3-none-any.whl:

Publisher: publish.yml on Binomica-Labs/SpliceCraft

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page