A kinetic model of CRISPR-Cas target recognition.
Project description
CRISPRzip
Welcome to the codebase of CRISPRzip from the Depken Lab at TU Delft.
About the project
CRISPRzip is a physics-based model to study the target recognition dynamics of CRISPR-associated nucleases like Cas9 (Eslami-Mossalam, 2022). Their interactions with target DNA is represented as an energy landscape, with which you can simulate binding and cleavage kinetics. The parameters have been obtained by machine learning on high-throughput data. CRISPRzip makes quantitative predictions of on-target efficiency and off-target risks of different guide RNAs.
With CRISPRzip, we hope to contribute to assessing the risks that come with particular choices in CRISPR application, and as such contribute to the development of safe gene editing technology.
References
Eslami-Mossallam B et al. (2022) A kinetic model predicts SpCas9 activity, improves off-target classification, and reveals the physical basis of targeting fidelity. Nature Communications. 10.1038/s41467-022-28994-2
Installation
CRISPRzip is available on PyPi and can be installed with pip.
User installation
Although CRISPRzip can be directly installed from pip, creating a virtual environment makes it easier to manage dependencies. Below you can see some intructions on how to generate a virtual environment with venv assuming you already have python installed in a bash-like terminal.
python -m venv crisprzip-venv
source crisprzip-venv/bin/activate
pip install crisprzip
Developer installation
To be able to make changes and contributions to CRISPRzip, you will need to get your own copy of the source code and install software dependencies on your own. Assuming you have a python and git installed in a bash-like terminal, the installation process can be done with the following instructions.
git clone https://github.com/hiddeoff/crisprzip.git
cd crisprzip
python -m venv crisprzip-venv
source crisprzip-venv/bin/activate
pip install -e .
Please use our contributing guidelines if you would like us to consider your developments in a future CRISPRzip release
Verifying installation
CRISPRzip development includes a cross-platform compatibility and test workflow. If you would like to verify your local installation, please follow the Developer Installation instructions, then run the following test.
source crisprzip-venv/bin/activate
pip install -e '.[tests]' # installs pytest and pandas
pytest tests/cleavage_binding_prediction/test_cleavage_binding_prediction.py -v
You can also follow the user installation and execute the code in the Usage section below.
Usage
CRISPRzip makes predictions about cleavage and binding activity on on- and off-targets. First, you define the protospacer and target sequence, and then, you can predict the fraction cleaved or bound.
# 1. load parameter set
from crisprzip.kinetics import load_landscape
searcher = load_landscape("sequence_params")
# 2. define Cas9, gRNA and DNA target
searchertargetcomplex = searcher.probe_sequence(
protospacer = "AGACGCATAAAGATGAGACGCTGG",
target_seq = "AGACCCATTAAGATGAGACGCGGG", # A13T G17C
)
# 3. predict activity
f_clv = searchertargetcomplex.get_cleaved_fraction(
time=600, # 10 minutes
on_rate=1E-1
)
f_bnd = searchertargetcomplex.get_bound_fraction(
time=600, # 10 minutes
on_rate=1E-1
)
# 4. format output
print(f"After 10 minutes, the target (A13T G17C) is ...")
print(f"- cleaved for {100 * f_clv:.1f}% by Cas9")
print(f" or ")
print(f"- bound for {100 * f_bnd:.1f}% by dCas9")
Output:
After 10 minutes, the target (A13T G17C) is ...
- cleaved for 10.5% by Cas9
or
- bound for 94.2% by dCas9
See the tutorial or the docs for more examples how to explore sequence, time and concentration dependency.
Contributing
We encourage contributions in any form - reporting bugs, suggesting features, drafting code changes. Read our Contributing guidelines and our Code of Conduct.
Acknowledgements
Many thanks to Elviss Dvinskis, Raúl Ortiz and Aysun Urhan from the DCC team at TU Delft for their support to get this package released!
Waiver
Technische Universiteit Delft hereby disclaims all copyright interest in the program “CRISPRzip” (a physics-based CRISPR activity predictor) written by the Author(s). Paulien Herder, Dean of Applied Sciences
(c) 2024, Hidde Offerhaus, Delft, The Netherlands.
Project details
Release history Release notifications | RSS feed
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 crisprzip-1.2.2.tar.gz.
File metadata
- Download URL: crisprzip-1.2.2.tar.gz
- Upload date:
- Size: 48.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9f8a5a2a2776f6266fc4074fa0fc6906c117bd6aef0bc18406ffb9726a6d61f5
|
|
| MD5 |
1e4af1e4863ea8cd21c4d73a18665293
|
|
| BLAKE2b-256 |
414ef30ad944b2841d85e59d471083ecfce42f7329e99093806ce4b5d7e4f1ee
|
File details
Details for the file crisprzip-1.2.2-py3-none-any.whl.
File metadata
- Download URL: crisprzip-1.2.2-py3-none-any.whl
- Upload date:
- Size: 48.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a2e00c2f3c2acb5ff7e2c1811a14f19af00232978442b67352c321c5e4eb7a22
|
|
| MD5 |
dc78f94d58d05f874ba547ccbbea06f9
|
|
| BLAKE2b-256 |
3426e936d190a3ae20f3afdbe0021d768918551bbd460caf2405f3e8ecdfaf33
|