Skip to main content
Pre-release

This release is a pre-release and may not be stable for production use.

introdution

(take from abstract)

  • Find the preprint HERE
  • Find the data zenodo HERE (dump of /gpfs/gibbs/pi/reilly/tabula_data)
  • Find the github archival zenodo HERE

Skip down to "install" to get started!

This repository is organzied as follows:


├── docs					# documentation
├── notebooks				# jupyter notebooks
│   ├── object_creation		# creates objects from scMPRA data
│   ├── results				# figures and numerical results
│   └── preprocessing		# preprocesses emperical scMPRA data
└── scMPRAforge				# the package proper
    ├── vingettes			# notebooks demonstrating the use of the package
    ├── presets				# presets to be distributed with the package
    └── tests				# tests

"scMPRAforge" contains the actual pacakge

"Preprocessing" processes emperical data for "object_creation".

"object_creation" creates and saves several python objects (ortho, scMPRA_data, Bounds and similar) useful in multiple analyses run in "results". Intermediate values are not distributed. Simulated datasets & processed emperical datasets are distributed separately, as .scmpra files on a data zenodo LINK. Bounds objects are stored in presets directory in main package.

"results" contains notebooks generating results in the paper. This includes figure panels and numbers.

key assumptions

(move to paper)

  1. Though ideally we would model each barcode (like the approach in MPRAmodel) for greater statistical power, the sparse nature of scMPRA data means that we won't be able to do this. Not that the barcodes are retained, just not modeled separaately.
  2. Removal of "false zeroes" through clonotype analysis and transfection reporters is part of pre-processing.
  3. We are interested in changes in CRE activity within and between cell-types

install

pip install scMPRAforge

scMPRAforge requires Python 3.11 or 3.12. The import name is case-sensitive:

import scMPRAforge

For development installs from a checkout:

pip install -e .

To reproduce the environment the published fits were made in, build from the pinned spec rather than resolving fresh:

micromamba create -f environment.yml -p /path/to/env
/path/to/env/bin/pip install -e .

Two compatibility constraints are worth knowing:

  • numpy must be 2.x. Saved ortho objects are numpy-2 pickles and raise ModuleNotFoundError: No module named 'numpy._core' under numpy 1.x.
  • tf-keras is required and is installed automatically with scMPRAforge. It provides the Keras 2 API that tensorzinb builds on.

Barcode clustering (utils.bcs_to_lut) needs umi_tools, which is an optional extra rather than a dependency: it publishes no PyPI wheels and its sdist does not build on current setuptools. Install it from conda if you need it -- most users dedup during upstream processing instead.

conda install -c bioconda umi_tools

The zero-inflated solver is tensorzinb-plusplus, a maintained fork of tensorzinb adding TensorFlow 2.16+ support, sparse design matrices and per-observation weights. It installs from PyPI as a normal dependency.

GPU and platform notes

On Apple silicon, the standard PyPI installation provides the TensorFlow dependency needed for CPU execution. GPU acceleration is optional and platform-specific.

At this point, it may work fine. However some environments (such as mccleary gpu nodes) may require some more fnagling to get GPU accel working. Perform the following:

For McCleary:

conda install cudatoolkit=11.2 cudnn=8.1.0
echo 'export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$CONDA_PREFIX/lib/' > $CONDA_PREFIX/etc/conda/activate.d/env_vars.sh

For Bouchet:

conda install cudatoolkit=11.3.1 cudnn=8.2.1
# Store system paths to cuda libraries for gpu communication
mkdir -p $CONDA_PREFIX/etc/conda/activate.d
echo 'export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$CONDA_PREFIX/lib/' > $CONDA_PREFIX/etc/conda/activate.d/env_vars.sh

then deactivate, activate, and test with (must be on gpu node)

python3 -c "import tensorflow as tf; print(tf.config.list_physical_devices('GPU'))"

If you see a device, you're good to go.

(adapted from mccleary docs)

supplementary conda environments

The above is sufficient for you to use the package, but recapitulating some of the preprocessing steps & results from the paper require other conda environments. Fill in

  • biopython (used for some data carpentry and single cell processing steps)
  • parse_scanpy (used for scanpy : particular scanpy version particularly important to get same leiden clustering)
  • speedracer (used for some rapid text-processing steps)
  • doc (used to produce documentation)

Data formats

This section describes the various standard tabular formats used internally.

.scmpra file format

.scmpra paths are directories written by scMPRA_data.to_parquet(...). They contain:

  • data.parquet/ (gzip-compressed parquet dataset for scMPRA_data.data)
  • members.json (serialized object members other than .data)

MPRA data formatting

Note that most of our code does not require that any of the barcode sequences should be actual nucleotide sequences. So you can replace them with, for example, numerical combinatorial barcoding sub-barcode ID strings with no consequence. The exception is barcode-deduplication.

(Collapsing cells, replicates, and MPRA barcodes is not meaningful for us, since this would collapse what we believe to be true biological samples. However we may frequently summarize (e.g. compute mean UMIs per cell, or model a distribution where all UMI count originating from one CRE in one cell-type (regardless of MPRA barcode) are considered to have come from one triplicate of zinb parameters).

In memory, dataframes use named columns with dummy row-indicies.

scMPRA data can be umi-wise or read-wise.

UMI = unique molecular identifier

Read-wise

Column name Type Description Mandatory?
cell_bc str (nucleotide) cell barcode T
rep_id str replicate id T
cre_id str CRE id or name T
cell_type str cell-type T
mpra_bc str (nucleotide) MPRA reporter barcode T
umi str (nucleotide) MPRA umi T
reads int number mpra reads T
transfection_bc str (nucleotide) transfection barcode F
transfection_umi str (nucleotide) transfection reporter umi F
reads_transfection_bc int number transfection reporter reads F
reads_DNA int DNA library reads (for MPRA barcode) F

Umi-wise

Column name Type Description Mandatory?
cell_bc str (nucleotide) cell barcode F (~T for empirical data)
rep_id str replicate id T
cre_id str CRE id or name T
cell_type str cell-type T
mpra_bc str (nucleotide) MPRA reporter barcode F (recommended)
umis_mpra_bc int number of MPRA UMIs T
reads_mpra_bc int number of MPRA reads, summed across all UMIs F
transfection_bc str (nucleotide) transfection barcode F
umis_transfection_bc int number transfection reporter UMIs F
reads_transfection_bc int number transfection reporter reads, summed across all UMIs F
reads_DNA int DNA library reads (for MPRA barcode) F

(Though MPRA barcodes cannot be modeled individually, its undersierable to sum across to remove them : since this would inflate strength estimates of CREs with more MPRA barcodes)

Simulated UMI-wise data doesn't currently require cell barcode.

scMPRA_data.from_tsv(...) enforces the spec strictly: required columns must be present and extra columns are rejected.

Note that DNA is treated as constant for a given CRE : it's never reduced on account of certain MPRA barcodes being present in certain cells. This keeps it as a totally exogenous source of information, far from the vicissitudes of single-cell sequencing...

Also note that all these strings are really factors / categorical data, and will be treated as such.

Hypothesis formatting

A hypothesis set is a table with the following format:

Column name Type Description Mandatory?
comparison_CRE str CRE id or name T
comparison_cell_type str cell-type T
reference_CRE str CRE id or name F
reference_cell_type str cell-type F
meta str metadata F
  • If no reference CRE is provided, the package will assume that we are comparing to zero (looking for any activity at all).
  • A row that contains only one of reference_CRE, reference_cell_type is considered malformed.
  • For assessing variant effects, we recommend the convention that reference columns refer to the reference allele, and comparison columns refer to the alternate allele.
  • The metadata column can also be used to paint plots, so a categorical like "negative_control", "positive_control", "emvar", "putative-brain-specific" or similar would work well. No strict requirements: modify names as suits your experimental design.

A result table is the same as a hypothesis table with the following additional columns:

Column name Type Description Mandatory?
test_type str which test was performed T
test_statistic float the test-statistic for that test T
p_value float type 1 error probability T
fold_change float between ref and comparison T
bh_p float benjamini hochberg corrected p-value T
flattened bool whether the CRE was flattened due to insufficient UMIs T
  • NOTE: for tiny pvalues where floating point sizes require rounding p, the exact value of this epsilon will depend on the computer hardware/architecture that you are operating on.
     eps = np.finfo(float).tiny  # ~1e-308
     p = max(1.0 - chi2.cdf(z*z, 1), eps)
    

Ground-truth formatting

These tables store made-up ground truth, for the purposes of simulation.

Column name Type Description
cell_type str cell-type
cre_id str CRE id or name
true_mean float Ground-truth # MPRA barcode UMIs/cell

MPRA library table

Column name Type Description Mandatory?
cre_id string CRE id or name T
mpra_bc string (nucleotide) MPRA reporter barcode T
abundance float Relative abundance in DNA library T

Abundance column must sum to 1. It can be defined in different ways, but in most cases will be (reads MPRA barcode)/(total MPRA barcode reads)

Release files for scMPRAforge 0.1.0.dev1

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for scMPRAforge 0.1.0.dev1
File Size Uploaded
scmpraforge-0.1.0.dev1.tar.gz 798.5 kB Details

Built distribution (wheel)

Table of built distributions (wheels) for scMPRAforge 0.1.0.dev1
File Interpreter ABI Platform
scmpraforge-0.1.0.dev1-py3-none-any.whl Python 3 none any Details

Total release size: 1.6 MB

Release files / scmpraforge-0.1.0.dev1.tar.gz

Download URL scmpraforge-0.1.0.dev1.tar.gz
Size 798.5 kB
Tags Source
SHA-256 checksum
How to use checksums
3b19d8eeba698e3daecf4c8371bc911c4c0852b740401752d6e02a4e43d86217
BLAKE2b-256 checksum
How to use checksums
b4d5ce6f993b497751402e141f00920f99f67740bc9aab89184e99067f2b4997
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 24, 2026.

Transparency log

Release files / scmpraforge-0.1.0.dev1-py3-none-any.whl

Download URL scmpraforge-0.1.0.dev1-py3-none-any.whl
Size 791.6 kB
Tags Python 3
SHA-256 checksum
How to use checksums
32eebc9ea5da798b974d3455fd1740cdb60b1cfc1c09281dbe6c83225dd273ff
BLAKE2b-256 checksum
How to use checksums
2bcb7243a955cbd60739fec3b0ea77bb202799f986add6d86ad16817b1163fd4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 24, 2026.

Transparency log

Release history Release notifications | RSS feed

This release

0.1.0.dev1 This release

2 release 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