Skip to main content

CPU-friendly sequence-only CRISCross off-target prediction with a scikit-learn-style API.

Project description

criscross

CPU-friendly sequence-only CRISCross off-target prediction with a scikit-learn-style API. The pretrained model weights ship inside the wheel (fp16 + zstd-compressed) so no extra downloads are required.

Install

pip install criscross

CPU-only install (no CUDA libraries pulled in):

pip install criscross --extra-index-url https://download.pytorch.org/whl/cpu

Quickstart

from criscross import sequence_model
import pandas as pd

# Single datapoint (dict)
prob = sequence_model.predict({
    "Guide_sequence":   "GCTCGGGGACACAGGATCCCTGG",     # 23 nt
    "off_target_512nt": "GCAG...TGCC",                 # 512 nt, RC for - strand
    "strand_id":        1,                             # 1 for +, 0 for -
})
print(prob)   # float in [0, 1]

# Dataset (DataFrame or CSV path)
df = pd.read_csv("examples/sample_input.csv")
probs = sequence_model.predict(df)           # -> np.ndarray, shape [N]
probs = sequence_model.predict("examples/sample_input.csv")  # same

Accepted inputs to predict(X)

X Returned
dict / pandas.Series with the 3 required keys float
(guide, off_target_512nt, strand_id) 3-tuple float
pandas.DataFrame with the 3 required columns np.ndarray shape [N]
list of dicts np.ndarray shape [N]
str / pathlib.Path pointing to a CSV with the 3 columns np.ndarray shape [N]

Required columns/keys:

key dtype meaning
Guide_sequence 23nt string sgRNA guide sequence
off_target_512nt 512nt string candidate off-target window, already reverse-complemented for - strand
strand_id int 0/1 1 for + strand, 0 for -

CLI

criscross predict --csv examples/sample_input.csv --out preds.csv

If the input CSV also has a label column (0/1), AUPRC is printed to stderr.

Loading a custom checkpoint

from criscross import sequence_model
sequence_model.load("path/to/my_model.pt")           # fp32 raw .pt
sequence_model.load("path/to/my_model.pt.zst")       # zstd-compressed fp16

Inspecting the model

sequence_model.config()    # hyperparameters used to build CRISCross(**config)
sequence_model.metadata()  # versions, training-time test_auprc, input/output signature, seed

Citation

If you use this package in research, please cite the upstream CRISCross work. This package is a CPU-only, sequence-only repackaging of that model.

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

criscross-0.1.1.tar.gz (70.5 MB view details)

Uploaded Source

Built Distribution

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

criscross-0.1.1-py3-none-any.whl (70.4 MB view details)

Uploaded Python 3

File details

Details for the file criscross-0.1.1.tar.gz.

File metadata

  • Download URL: criscross-0.1.1.tar.gz
  • Upload date:
  • Size: 70.5 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.7

File hashes

Hashes for criscross-0.1.1.tar.gz
Algorithm Hash digest
SHA256 919c198e9ba1df2e819c51483e864a2684c2a970e6dbc7a78b84726687645990
MD5 89eebe3fd036561774fa987fe5e60107
BLAKE2b-256 ae30d782385cb5c052b5586dc7e540e167f7cef0ac57a0c9e013e8e88aa213a1

See more details on using hashes here.

File details

Details for the file criscross-0.1.1-py3-none-any.whl.

File metadata

  • Download URL: criscross-0.1.1-py3-none-any.whl
  • Upload date:
  • Size: 70.4 MB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.7

File hashes

Hashes for criscross-0.1.1-py3-none-any.whl
Algorithm Hash digest
SHA256 8265b70ec1e8546224c46bdfa0ffd080212057d51f477a3001b7c8bb0fda97fc
MD5 2393f20673933efa66f52d2b9ed4428c
BLAKE2b-256 c1cdde7920cadcbea8a20b954ed213bc4a30fcb1151fa3138e0230d48144dea5

See more details on using hashes here.

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