Codon optimize DNA and Protein sequences for multiple species.
Reason this release was yanked:
mistake
Project description
Optipyzer SDK
This is the Software Developer Kit for the Optipyzer engine. It privides an API for the engine, as well as a wrapper for the web-API that lets you search organisms and pull codon usage data for an organism. This library is inteneded for use by those who want to customize their codon optimization beyond the capabilities of the site
Installation
pip install optipyzer
Quick Start
import optipyzer
# initalize API
optipyzer = optipyzer.api()
# search for e coli
results = optipyzer.search(name='Escherichia Coli')
org1 = results[0]
# search for campylbacter
results = optipyzer.search(name='Campylobacter')
org2 = results[0]
# pull codon usage for those organisms
codon_usage1 = optipyzer.pull_codons(org1)
codon_usage2 = optipyzer.pull_codons(org2)
# optimize a sequence to those organisms, weight campylobascter twice as much
seq = 'ATGGCTACTGCATGCTTAGCATGCATGACT'
optimized = optipyzer.optimize(seq,org_list=[org1,org2],weights=[1,2])
More Information
For a more detailed tutorial, please visit the dev tools page
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
optipyzer-0.1.1.tar.gz
(4.8 kB
view hashes)
Built Distribution
Close
Hashes for optipyzer-0.1.1-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | ba1e9c69fddaf5b701c4e411631d739b33fe06e73f872ebd59f1b15309f82050 |
|
MD5 | 450e5691f4b8a6865d2c6aab39efc95e |
|
BLAKE2b-256 | b891d5abb23e99c1a9c7522736270b36019d4ddfe062450799895104420c3add |