Python bindings to FragGeneScanRs for fast, error-tolerant bacterial ORF prediction
For full usage, see the docs
Built for noisy data
Standard ab initio predictors are fantastic for pristine, fully assembled contigs.
However, they struggle with raw metagenomic reads or error-prone assemblies because they immediately break the open
reading frame at the first sign of an indel. pyfgs uses an error-tolerant Hidden Markov Model trained on specific
sequencing profiles (Illumina, 454, Sanger) to power through these sequencing errors, dynamically correct the reading
frame, and salvage the translated protein.
Native frameshift tracking
Instead of just silently stitching broken genes together, pyfgs exposes the exact coordinates of every hallucinated or
skipped base directly to Python. This allows you to rigorously track structural variants, correctly annotate
INSDC-compliant pseudogenes, or export exact frameshift coordinates for downstream quality control.
No subprocess I/O tax
Running standard CLI bioinformatics tools from Python usually requires a heavy I/O penalty: dumping sequences to a
temporary FASTA file, firing a subprocess, and parsing the text outputs back into memory. pyfgs binds directly to the
underlying Rust engine. The HMM runs entirely in memory and yields native Python objects ready for immediate analysis.
True multithreading and zero-copy memory
pyfgs is designed to process massive datasets efficiently:
-
GIL-Free Inference: The Rust backend completely releases the Python Global Interpreter Lock (GIL) during the heavy HMM math. You can drop the predictor into a standard ThreadPoolExecutor and achieve true parallel processing across all your CPU cores.
-
Zero-Copy Bytes: The engine borrows raw byte slices
(&[u8])directly from Python's memory, bypassing the overhead of copying strings between languages. -
Lazy Translation: Translating DNA to amino acids is computationally expensive.
pyfgsevaluates sequence strings lazily, meaning you only pay the CPU and memory cost of string allocation if you explicitly request the sequence data.
A Pythonic API
Bioinformatics coordinates are notoriously messy. pyfgs outputs standard 0-based, half-open intervals ([start, end)),
allowing you to slice sequence arrays immediately without wrestling with 1-based GFF3 coordinate math. When you do need
standardized files, it includes heavily optimized, native-Rust context managers to stream perfectly compliant VCF, BED,
GFF3, and FASTA files directly to disk without bloating your RAM.
Blazing Fast
Thanks to the memory-safe zero-copy architecture and multi-threading through Rayon, pyfgs can outperform even the fastest SIMD-optimized Gene Finders (e.g. pyrodigal) in Whole Genome mode—especially on highly fragmented assemblies and metagenomes.
If you are a power user integrating gene prediction into a larger Python pipeline, pyfgs offers a vectorized, zero-copy NumPy API that sidesteps Python object overhead completely.
import pyfgs
# 1. Initialize the gene finder
# By default, this loads the Illumina HMM model (error-tolerant).
finder = pyfgs.GeneFinder()
# 2. Extract byte strings of sequence
# Notice we pass bytes (b""), not strings, to avoid encoding overhead.
sequences = [
b"ATGCCCGGGAAATTTTGACCC",
b"ATGAAAAAA",
]
# 3. Predict genes across all sequences in parallel (releasing the GIL)
batch = finder.find_genes_batch(sequences)
# 4. Access predictions as flat, 1-dimensional NumPy arrays (Structure-of-Arrays)
print(batch.starts) # array([0, ...])
print(batch.ends) # array([18, ...])
print(batch.strands) # array([1, ...])
print(batch.scores) # array([12.34, ...])
# 5. Fields with variable counts per gene (e.g. insertions/deletions)
# are exposed as flat arrays alongside parallel "offsets" arrays
# defining the slice boundaries (i.e. ragged arrays).
print(batch.insertions_offsets)
print(batch.insertions_flat)If your goal is just to read a FASTA file and output standard format files (GFF3, BED, etc), pyfgs provides a pure-Rust IO pipeline that bypasses Python entirely. This is what the pyfgs CLI uses under the hood.
import pyfgs
finder = pyfgs.GeneFinder()
# Stream directly from disk to disk using Rust native threading
finder.run_file(
input_path="input.fasta",
is_fastq=False,
outputs={
"gff3": "output.gff3",
"faa": "output.faa",
},
)This project is supported on Python 3.10 and later.
pyfgs can be installed directly from PyPI:
pip install pyfgs⚡️ Power users ⚡️ can force your local machine to compile the Rust engine specifically for your own CPU by running:
RUSTFLAGS="-C target-cpu=native" pip install --no-binary pyfgs pyfgsFound a bug ? Have an enhancement request ? Head over to the GitHub issue tracker if you need to report or ask something. If you are filing in on a bug, please include as much information as you can about the issue, and try to recreate the same bug in a simple, easily reproducible situation.
Contributions are more than welcome! See
CONTRIBUTING.md
for more details.
This project adheres to Semantic Versioning and provides a changelog in the Keep a Changelog format.
This library is provided under the GNU General Public License v3.0.
The FragGeneScanRs code was written by Peter Dawyndt,
Bart Mesuere and
Felix Van der Jeugt and is distributed under the
terms of the GPLv3 as well. See https://github.com/FragGeneScanRs/LICENSE for more information.
This project is in no way affiliated, sponsored, or otherwise endorsed by the original FragGeneScanRs authors Peter Dawyndt, Bart Mesuere and Felix Van der Jeugt. It was developed by Tom Stanton during his Post-doc project at Monash University in the Wryes Lab.