Skip to main content

Oligo Designer Toolsuite: lightweight development of custom oligo design pipelines

Project description

Oligo Designer Toolsuite - Lightweight Development of Custom Oligo Design Pipelines

Docs PyPI PyPI Downloads DOI stars License: MIT

codecov TestUbuntuX64 TestMacOsArm64

Oligonucleotides (abbrev. oligos) are short, synthetic strands of DNA or RNA that are designed with respect to a specific target region and have many application areas, ranging from research to disease diagnosis or therapeutics. Oligos can be used as primers during DNA amplification, as probes for in situ hybridization or as guide RNAs for CRISPR-based gene editing. Based on the intended application and experimental design, researchers have to customize the length, sequence composition, and thermodynamic properties of the designed oligos.

Various tools exist that provide custom design of oligo sequences depending on the area of application. Even though most tools apply the same basic processing steps, ranging from the generation of custom-length oligo sequences, the filtering of oligo sequences based on thermodynamic properties as well as the selection of an optimal set of oligos, each newly developed tool uses its own implementation and different package dependencies. Consequently, not only the development of new tools is slowed down, but also the maintenance and modification of existing tools is hampered, because developers do not have a common resource for those functionalities to use. We tackle this issue with our open-source Oligo Designer Toolsuite.

🚀 Oligo Designer Toolsuite is a collection of modules that provides all basic functionalities for custom oligo design pipelines as well as advanced experiment-specific functionalities like machine learning models for oligo specificity prediction within a flexible Python framework.

To allow the flexible usage of different modules, depending on the required processing steps, we developed a common underlying data structure that ensures the cross-compatibility of all modules within the framework. This data structure is runtime and memory optimized to enable the processing of large sequence dataset in a reasonable time frame. With our Oligo Designer Toolsuite we aim to set new standards in the development of oligo design pipelines, helping to accelerate the development of new tools and facilitate the upgrade of existing tools with the latest developments in the field. We also provide ready-to-use oligo design pipelines for specific experimental setups, e.g. MERFISH or SeqFISH+ probe design for Spatial Transcriptomics.

Implemented Oligo Design Pipelines

The following pipelines are pre-implemented and ready-to-use:

🧬 Genomic Region Generator

🧪 Scrinshot Probe Designer

🧪 SeqFISH+ Probe Designer

🧪 MERFISH Probe Designer

🧫 Oligo-Seq Probe Designer

🧫 CycleHCR Probe Designer

If you would like to modify an existing pipeline for adjusted experimental settings or to design a new pipeline for a different experimental setup, feel free to reach out to us Lisa Barros de Andrade e Sousa or Jonas Hagenberg.

Installation

Requirements

This package was tested for Python 3.10 - 3.12 on Linux (x64) and macOS (arm64) but not tested on Windows.

Note: Intel-based macOS (osx64) installation is ⚠️ DEPRECATED ⚠️

For stable installation, we recommend to first setup a conda environment.

Note: if your institution does not support anaconda, you can use miniforge instead to run the conda installations.

First create a conda environment:

conda create -n odt python=3.12
conda activate odt

To install the additional required tools via conda, please activate the bioconda and conda-forge channels in your conda environment and update conda and all packages in your environment:

conda config --add channels bioconda
conda config --add channels conda-forge
conda update --all

The additional tools need to be installed independently:

conda install "blast>=2.15.0"
conda install "bedtools>=2.30"
conda install "bowtie>=1.3.1"
conda install "bowtie2>=2.5"
conda install "bcftools>=1.22"
conda install "samtools>=1.22"

All other required packages are automatically installed if installation is done via pip (see below).

Install Options

The installation of the package is done via pip. Note: if you are using conda, first install pip with: conda install pip.

PyPI install:

pip install oligo-designer-toolsuite

Installation from source:

git clone https://github.com/HelmholtzAI-Consultants-Munich/oligo-designer-toolsuite.git
cd oligo-designer-toolsuite
  • Installation as python package (run inside directory):

      pip install .
    
  • Development installation as python package (run inside directory):

      pip install -e .[dev]
    

Contributing

Contributions are more than welcome! Everything from code to notebooks to examples and documentation are all equally valuable so please don't feel you can't contribute. To contribute please fork the project make your changes and submit a pull request. We will do our best to work through any issues with you and get your code merged into the main branch.

For any further inquiries please send an email to Lisa Barros de Andrade e Sousa or Jonas Hagenberg.

How to cite

If the Oligo Designer Toolsuite is useful for your research, consider citing the package:

@software{
	author		= 	{	Barros de Andrade e Sousa L.,
  						Mekki I.,
						Campi F.,
						Kümmerle L.,
						Bright C.,
						Lücken M.,
						Theis F.,
						Piraud M.
					},
	title		= 	{Oligo Designer Toolsuite},
	year		= 	{2025},
	publisher	= 	{GitHub},
	journal 	= 	{GitHub repository},
	url 		= 	{https://github.com/HelmholtzAI-Consultants-Munich/oligo-designer-toolsuite}
}

If you are using the SCRINSHOT, MERFISH or SeqFISH+ pipeline provided along the Oligo Designer Toolsuite, consider citing in addition the paper:

@article{
	author 	 	= 	{
						Louis B. Kuemmerle,
		     			Malte D. Luecken,
		     			Alexandra B. Firsova
		     			Lisa Barros de Andrade e Sousa
		     			Lena Strasser
                     	Ilhem Isra Mekki
                     	Francesco Campi
		     			Lukas Heumos
		     			Maiia Shulman
                     	Valentina Beliaeva
                     	Soroor Hediyeh-Zadeh
                     	Anna C. Schaar
		     			Krishnaa T. Mahbubani
		     			Alexandros Sountoulidis
		     			Tamas Balassa
		     			Ferenc Kovacs
		     			Peter Horvath
		     			Marie Piraud
		     			Ali Ertürk
		     			Christos Samakovlis
		     			Fabian J. Theis
					},
    title 	 	= 	{Probe set selection for targeted spatial transcriptomics},
    year 	 	= 	{2024},
    publisher 	= 	{Nature Publishing Group US New York},
    journal 	= 	{Nature methods},
    doi 	 	= 	{10.1038/s41592-024-02496-z},
    URL 	 	= 	{https://doi.org/10.1038/s41592-024-02496-z}
}

License

oligo-designer-toolsuite is released under the MIT license. See LICENSE for additional details about it.

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

oligo_designer_toolsuite-2.1.0.tar.gz (71.3 MB view details)

Uploaded Source

Built Distribution

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

oligo_designer_toolsuite-2.1.0-py3-none-any.whl (268.7 kB view details)

Uploaded Python 3

File details

Details for the file oligo_designer_toolsuite-2.1.0.tar.gz.

File metadata

  • Download URL: oligo_designer_toolsuite-2.1.0.tar.gz
  • Upload date:
  • Size: 71.3 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.11.15

File hashes

Hashes for oligo_designer_toolsuite-2.1.0.tar.gz
Algorithm Hash digest
SHA256 cd1d760922772b9cc2609c5fc05de397b78e6d312ba6e2bacc70b3e33b778672
MD5 b3c8f11a2aadeefd562bda0203263386
BLAKE2b-256 1f9ec76e63c17a98f8f628e2161b77122cbb8a7d74bcd25b2198e0f13eb3b9e7

See more details on using hashes here.

File details

Details for the file oligo_designer_toolsuite-2.1.0-py3-none-any.whl.

File metadata

File hashes

Hashes for oligo_designer_toolsuite-2.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 227f8775c5f465e58bf3d9945a603ec08bcdefcbb27c98b49e58d8d279e61376
MD5 435495cafa5bea40ea993d0b29d2a134
BLAKE2b-256 aa84c2a934bdeb71805a94eedde01b2e45130e1eaa2bf4cf596f33e8e57dd41c

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