Skip to main content

SnapGene File Format Parser

A reverse-engineered parser and writer for SnapGene .dna / .rna / .prot files. Supports all 17 known block types with typed Python models, a chainable builder pattern, and a history operations API.

[!Important] Effectively full compatibility with SnapGene 8.2.2 — every observed block type parses, sequence decode matches SnapGene's FASTA export, and SnapGene normalizes sgffp-written files without rewriting bytes. Found an unknown block? Run sff check your_file.dna -l: [NEW] flags genuinely unknown blocks, [*] marks known caches. Report [NEW] blocks in #1 with sff check your_file.dna -d.

Installation

pip install sgffp

Requires Python 3.10+.

Quick Start

from sgffp import SgffReader, SgffWriter, SgffObject

# Read a SnapGene file
sgff = SgffReader.from_file("plasmid.dna")

# Access data via typed properties
print(sgff.sequence.value)
print(sgff.features[0].name)

# Modify and write back
sgff.sequence.topology = "circular"
SgffWriter.to_file(sgff, "output.dna")

# Create a new file from scratch
sgff = (
    SgffObject.new("ATGCATGCATGC", topology="circular")
    .add_feature("GFP", "CDS", 0, 8)
    .add_primer("fwd", "ATGC", bind_position=0)
)
SgffWriter.to_file(sgff, "new_plasmid.dna")

History Operations

Record cloning operations with automatic history tracking:

sgff.ops.insert_fragment("ATCGATCG")
sgff.ops.digest("GGCC", InputSummary={"manipulation": "digest"})

# Or build an entire tree from multiple source files
vector = SgffReader.from_file("vector.dna")
insert = SgffReader.from_file("insert.dna")

sgff.ops.build_from_spec(
    [
        {"id": 1, "operation": "insertFragment", "sequence": "...",
         "name": "Final", "children": [2, 3]},
        {"id": 2, "source": vector},
        {"id": 3, "source": insert},
    ],
    final_sequence="...",
)

How It Works

SnapGene files use a TLV (Type-Length-Value) binary format after a 19-byte header. Each block has a 1-byte type ID and a 4-byte length, with encoding varying by type: UTF-8 for sequences, XML for annotations, 2-bit GATC encoding for compressed DNA, LZMA for history, and ZTR for chromatogram traces.

SgffReader parses blocks via a version-aware SCHEME dispatch table (resolved from the file's export_version, so old and new SnapGene layouts are handled without version branches in the parsers themselves) and stores them in SgffObject.blocks (a Dict[int, List]). Typed model properties (sgff.sequence, sgff.features, sgff.history, etc.) are lazily loaded from the blocks dict and sync changes back automatically. SgffWriter serializes blocks back to binary in sorted order, normalizing to the modern format by default (or preserving the source version with preserve=True).

Supported Block Types

ID Block Type Format Model
0 DNA Sequence UTF-8 SgffSequence
1 Compressed DNA Section-based (2-bit DNA / IUPAC / N-run + lowercase) SgffSequence
5 Primers XML SgffPrimerList
6 Notes XML SgffNotes
7 History Tree XML (LZMA in v15+, plain in older) SgffHistory
8 Sequence Properties XML SgffProperties
10 Features XML SgffFeatureList
11 History Nodes Binary + TLV SgffHistory
14 Custom Enzyme Sets XML
16 Trace Container Binary + TLV SgffTraceList
17 Alignable Sequences XML SgffAlignmentList
18 ZTR Trace (in 16) ZTR SgffTrace
20 Strand Colors XML
21 Protein Sequence UTF-8 SgffSequence
23 File Attachments Binary + zlib XML SgffAttachmentList
27 Trace Alignment BGZF + BAM SgffTraceAlignment
28 Enzyme Visibilities XML
29 History Modifier LZMA + XML SgffHistory
30 History Content LZMA + TLV SgffHistory
32 RNA Sequence UTF-8 SgffSequence
34 RNA Structure LZMA + JSON

Blocks 2, 3, 13, 35 are SnapGene enzyme caches. Modern SnapGene (export_version >= 15) regenerates them, so they are skipped; legacy files (< 15) are not regenerated by SnapGene, so blocks 2, 3, 13 are retained there to keep enzymes on round-trip. See Versioning.

CLI

sff parse plasmid.dna           # Export to JSON
sff info plasmid.dna -v         # Show detailed file info
sff tree plasmid.dna            # Display history timeline
sff check plasmid.dna -l        # List block types
sff filter plasmid.dna -k 0,10 -o minimal.dna
sff convert old.dna -o new.dna         # Re-save, normalizing to the modern format
sff convert old.dna -o new.dna -p      # Re-save, preserving the source version

All read commands accept stdin (cat file.dna | sff info).

Development

git clone https://github.com/merv1n34k/sgffp.git
cd sgffp
uv sync --dev

# Run tests
uv run pytest tests/ -v

# Docs (VitePress)
cd docs && bun install && bun run docs:dev

Documentation

Full guides, API reference, CLI reference, and binary format specification:

merv1n34k.github.io/sgffp

Acknowledgments

This project would not have been possible without previous work done by

Contributions

Also would like to say thank for the people who helped the project:

  • Manuel Lera-Ramirez (@manulera) for his PRs and suggestions
  • Cory Tobin (@cory-mozza) for reviewing new blocks
  • Nicola Zilio (@nicolazilio) for legacy SnapGene support and issue reviews

License

Distributed under MIT licence, see LICENSE for more.

Download files

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

Source Distribution

sgffp-0.22.0.tar.gz (419.2 kB view details)

Uploaded Source

Built Distribution

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

sgffp-0.22.0-py3-none-any.whl (60.6 kB view details)

Uploaded Python 3

File details

Details for the file sgffp-0.22.0.tar.gz.

File metadata

  • Download URL: sgffp-0.22.0.tar.gz
  • Upload date:
  • Size: 419.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for sgffp-0.22.0.tar.gz
Algorithm Hash digest
SHA256 9a061376d4d44789a48200fc08b4cb1015183720a524ab64c26b1b11cbd12c6f
MD5 e1545d106e9db5b04761a3fb5c239d71
BLAKE2b-256 26700ef60c1be7e6614ae81a56528ca26c150c327d991ba988ea93a57f1a13b8

See more details on using hashes here.

Provenance

The following attestation bundles were made for sgffp-0.22.0.tar.gz:

Publisher: publish.yml on merv1n34k/sgffp

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

File details

Details for the file sgffp-0.22.0-py3-none-any.whl.

File metadata

  • Download URL: sgffp-0.22.0-py3-none-any.whl
  • Upload date:
  • Size: 60.6 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for sgffp-0.22.0-py3-none-any.whl
Algorithm Hash digest
SHA256 8c5efbeff4003ccf808025ea5b127d877baf862bc35fc6d8a7eac923bf725295
MD5 92cb5f06310666106173e8cc216f7d7e
BLAKE2b-256 0ab750cf12abc8743262d339367e3dcb6db26c29044b30e4563cde263752178c

See more details on using hashes here.

Provenance

The following attestation bundles were made for sgffp-0.22.0-py3-none-any.whl:

Publisher: publish.yml on merv1n34k/sgffp

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

Release history Release notifications | RSS feed

0.22.1

2 files

This release

0.22.0 This release

2 files

0.21.0

2 files

0.20.0

2 files

0.19.1

2 files

0.19.0

2 files

0.18.1

2 files

0.18.0

2 files

0.17.1

2 files

0.17.0

2 files

0.16.0

2 files

0.15.4

2 files

0.15.3

2 files

0.15.2

2 files

0.15.1

2 files

0.15.0

2 files

0.14.0

2 files

0.13.1

2 files

0.13.0

2 files

0.11.0

2 files

0.10.0

2 files

0.9.0

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page