optipyzer

Codon optimize DNA and Protein sequences for multiple species.


Keywords
codon, optimization, dna, protein, biology, bioinformatics, python, react
License
Apache-2.0
Install
pip install optipyzer==0.4.1

Documentation

Optipyzer

Heroku License Vercel PyPI version

A fast and flexible codon optimization tool. Optipyzer is capable of codon-optimizing both DNA and peptide sequences for multiple species at once while giving prefernce to certain species. The optimizer is hosted as a publically available web server with both a web-interface and a python programming interface for one-off queries or more high-throughput frameworks.

Web Application

The web-interface can be found at optipyzer.com. The site is intended to be used for simple, one-off queries. It provides a sequence input box and a species selection tool to choose your species and designate weightings. You can search through our database and specify any species you want.

Python API

For convenience, we have also written a small python package for an easier to use interface in high-throughput workflows. The package is a basic wrapper around our server that exposes convenience functions to interface the optimization server and make calls for you.

Install

pip install optipyzer

Quick Start

To get started, simply create an API instance, and start making requests:

import optipyzer

api = optipyzer.API()

gblock = "ATGGCCCTTTAA"

result = api.optimize(
        seq=dna_seq,
        seq_type="dna",
        weights={"human": 2, "mouse": 1},
    )

print(result['optimized_sd'])

For more detailed usage instructions and information about the algorithm, refer to the documentation here

Local Optimization Server

Some users might be interested in optimizing sequences confidentially. That is, using a locally run server instead of making HTTP requests to the public API. This also increases speed. Because of this, a docker container was prepared to run a local instance of the server. The docker container will run the optimzation server off your local machine and you can now use this to optimize sequences instead of making calls to the public server.

(i.e. The server now runs on localhost:8000)

To Run Locally:

docker build -t optipyzer .
docker run -p 8000:8000 optipyzer

Using the local server

Simply specify you want to run the optimizer locally when initializing an Optipyzer object in your scripts and your local server will then be used:

import optipyzer

api = optipyzer.API(local=True) # <--- specify you are using a local server

gblock = "ATGGCCCTTTAA"

result = api.optimize(
        seq=dna_seq,
        seq_type="dna",
        weights={"human": 2, "mouse": 1},
    )

print(result['optimized_sd'])

Contributing

Issues, PR's, and contributions are always welcome. Please reach out (or open an issue) if you would like to contribute!