BoltzNet
Project description
boltznet
BoltzNet is a biophysically designed neural network that learns a quantitative model of TF-DNA binding energy from ChIP-Seq data. BoltzNet mirrors a quantitative biophysical model and provides directly interpretable predictions genome-wide at nucleotide resolution. We have performed ChIP-Seq mapping of genome-wide DNA binding for 139 E. coli TFs. From these data we have generated BoltzNet models for 124 TFs.
The Boltznet models are described in our publication and through the companion website:
This python package provides a high-level object interface for downloading pretrained models, running predictions on DNA sequences, and visualizing results.
Installation
Create a conda environment and activate it. Then run:
pip install boltznet
boltznet-init
This installs the package and downloads available models to the package cache dir. To perform selftests, run
boltznet-selftest
This builds a model on all TFs, performs predictions on a set of E. coli promoter sequences, and then generates and saves a plot as selftest_pdhR,pdhR-aceE-aceF-lpd.png. Basically runs a version of the example code in Usage below.
USAGE
from boltznet import boltznet_tf
####################################
# create a tfmodel on all TFs that have been loaded into the package cache
####################################
tfmodel=boltznet_tf.create()
####################################################
# load sequences from fasta file and run predictions
# Returns a np.array of predicions at each position on both
# strands of each sequence for all TFs
#
# The numpy array has shape:
# (nseqs,2,seqlen,numtfs)
# - nseqs: number of sequences
# - 2: forward and reverse strands
# - seqlen: length of each sequence
# - numtf: number of models
####################################################
fa_name='test.fa'
y=tfmodel(fastafile=fa_name)
####################################################
# load annotations for the sequences for plotting
####################################################
gff_name='ecoli.gff'
tfmodel.loadGff(gff_name)
####################################################
# Plot the predictions for sequences by sequence index or sequence name patterns
# Below will plot sequence number 76 as well as any sequences that
# contain chaC or pdhR in the name. But will not plot the same sequence twice
# If savefilename is None, generate plots in a window
3 If savefilename is given, generate plots named savefilename_<seqid>.png
####################################################
tfmodel.plotPrediction(inds=[76],seqnames=['chaC','pdhR'],model_names=None,seqlogo=False,baseseq=False, maxN=3, savefilename='test')
Test data
The package comes bundled with two datafiles that can be used for testing:
- promoters.fa: a fasta file with a small subset of promoters (see https://boltznet.bu.edu/ecoli/promoters)
- ecoli.gff: a gff file with annotations of genes and known binding sites
You can retrieve and use these data files with code like the following:
from importlib import resources
import boltznet.testdata as testdata_pkg
fa_name=resources.files(testdata_pkg).joinpath('promoters.fa')
gff_name=resources.files(testdata_pkg).joinpath('ecoli.gff')
Citation
The code for BoltzNet is freely available for academic use. BoltzNet can be used by molecular biologists seeking to quantitatively predict TF binding, by synthetic biologists seeking to predictively engineer new regulatory interactions, and by computational biologists seeking to develop biophysically motivated bioinformatic tools.
- Lally, Patrick, Gómez-Romero, Laura, Tierrafría, Víctor H., Aquino, Patricia, Rioualen, Claire, Zhang, Xiaoman, Kim, Sunyoung, Baniulyte, Gabriele, Plitnick, Jonathan, Smith, Carol, Babu, Mohan, Collado-Vides, Julio, Wade, Joseph, Galagan, James E. (2025) Predictive Biophysical Neural Network Modeling of a Compendium of in vivo Transcription Factor DNA Binding Profiles for Escherichia coli. Nature Communications
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file boltznet-0.3.1.tar.gz.
File metadata
- Download URL: boltznet-0.3.1.tar.gz
- Upload date:
- Size: 220.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.9.23
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cc9c1dcd60966cc77ea838d7f3e1b0c9967d227200d5c53e6273b92112e593b6
|
|
| MD5 |
f2821104833290c6d38351869882c77a
|
|
| BLAKE2b-256 |
a78dbed73a9baabcac2d8bb3ed42819d664f65382f85c6a90cc0e31eb1da7575
|
File details
Details for the file boltznet-0.3.1-py3-none-any.whl.
File metadata
- Download URL: boltznet-0.3.1-py3-none-any.whl
- Upload date:
- Size: 227.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.9.23
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b1bb870c36bf619866f2cb80cf0d6e1d58bf989c5ce2f9442b68eb089239bc0d
|
|
| MD5 |
21b0d045039ec6a295a4662b3fd7286f
|
|
| BLAKE2b-256 |
d8b0ea3218f2d6358a467de017402d3692b94b2aaff343f8a4066653e24f6d6f
|