Python scripting library for generating designs readable by scadnano.
Project description
scadnano Python package
scadnano ("scriptable-cadnano") is a program for designing synthetic DNA structures such as DNA origami. The scadnano Python package (source code repository here) is a library for programmatically creating and editing these nanostructures. The scadnano project is developed and maintained by the UC Davis Molecular Computing group. Note that cadnano is a separate project, developed and maintained by the Douglas lab at UCSF.
If you find scadnano useful in a scientific project, please cite its associated paper:
scadnano: A browser-based, scriptable tool for designing DNA nanostructures.
David Doty, Benjamin L Lee, and Tristan Stérin.
DNA 2020: Proceedings of the 26th International Conference on DNA Computing and Molecular Programming
[ paper | BibTeX ]
Note: If you are reading this on the PyPI website, some of the links below won't work. Many are relative links intended to be read on the GitHub README page.
Table of contents
- Overview
- Reporting issues
- Installation
- Example
- Abbreviated syntax with chained methods
- Tutorial
- API documentation
- Other examples
- Contributing
Overview
This package is used to write Python scripts outputting .sc
files readable by scadnano, a web application useful for displaying and manually editing these structures. The purpose of this module is to help automate some of the task of creating DNA designs, as well as making large-scale changes to them that are easier to describe programmatically than to do by hand in the scadnano web interface.
Early versions of this project didn't have well-defined versions. However, we will try to announce breaking changes (and possibly new features) under the GitHub releases page. The version numbers in this Python library repo and the web interface repo won't always advance at the same time.
Following semantic versioning, version numbers are major.minor.patch, i.e., version 0.9.2 has minor version number 9. Prior to version 1.0.0, when a breaking change is made, this will increment the minor version (for example, going from 0.9.4 to 0.10.0). After version 1.0.0, breaking changes will increment the major version.
Reporting issues
Please report issues in the web interface at the scadnano web interface GitHub repository, and report issues in the Python scripting library at the scadnano Python package GitHub repository.
Installation
Short version: type this at the command line:
pip install scadnano
Read below for troubleshooting suggestions if that didn't work.
Getting Python
The scadnano Python package requires Python version 3.7 or later (with a workaround available for version 3.6, but not for any lower version).
To check your current version of Python, open a command line and type
python --version
If it is version 2.7 or below, type
python3 --version
If that fails, or reports Python version 3.5 or below, you will have to install a later version of Python (recommended at least 3.7). Follow this link to install Python. You may also use an alternative Python distribution, such as Anaconda.
If you are using Python 3.6 and do not wish to upgrade, you can install a package providing the required features: the dataclasses backport; see pip
instructions below to see how to install it.
Python 3.7 provides the
dataclasses module automatically.
Installing the scadnano Python package
Once Python is installed (and the dataclasses backport if you have Python version 3.6), there are two ways you can install the scadnano Python package:
-
pip (recommended)
Use pip to install the package by executing the following at the command line:
pip install scadnano
If it worked, you should be able to open a Python interpreter and import the scadnano module:
Python 3.7.9 (default, Aug 31 2020, 17:10:11) [MSC v.1916 64 bit (AMD64)] :: Anaconda, Inc. on win32 Type "help", "copyright", "credits" or "license" for more information. >>> import scadnano as sc >>> print(sc.Domain(helix=1, forward=True, start=0, end=8)) Domain(, helix=1, forward=True, start=0, end=8) >>>
Troubleshooting
If the above does not work for you, here are some things to try.
If your Python installation does not already have pip installed, you may have to install it. Executing this Python script should work; see also https://docs.python.org/3/installing/index.html or https://www.liquidweb.com/kb/install-pip-windows/.
Once pip is installed, or if you believe it is already installed, check your version of
pip
by typingpip --version
It should say something like
pip 19.3.1 from ...lib\site-packages\pip (python 3.8)
If the version of Python at the end is Python 3.7 or higher, you are good. If it is version 2.7 or lower, type
pip3 --version
If that works and shows Python 3.7 or higher, you are good, but you should type
pip3
in the subsequent instructions instead ofpip
.If it shows Python 3.6, install the dataclasses backport module via
pip install dataclasses
If it shows Python 3.5 or lower, then you will need to upgrade your Python version (recommended Python 3.7 or higher).
-
download
As a simple alternative (in case you run into trouble using pip), you can download and place the following files in your PYTHONPATH (e.g., in the same directory as the scripts you are running). Note: If you are reading this on the PyPI website or anywhere other than GitHub, the links below won't work. They are relative links intended to be read on the GitHub README page.
- required: scadnano.py
- optional: modifications.py; This contains some common DNA modifications such as biotin and Cy3.
- optional: origami_rectangle.py; This can help create origami rectangles, but it is not necessary to use scadnano.
To download them, right-click on "Raw" near the top and select (in Chrome or Firefox) "Save link as...":
The scadnano package uses the Python package xlwt to write Excel files, so xlwt must be installed in order to call the method
Design.write_idt_plate_excel_file()
to export an Excel file with DNA sequences. To install xlwt, typepip install xlwt
at the command line. (If you instead use pip to install the scadnano package, xlwt will be automatically installed.)
Example
Consider the following design:
The following Python script produces this design.
import scadnano as sc
import modifications as mod
def create_design():
# helices
helices = [sc.Helix(max_offset=48), sc.Helix(max_offset=48)]
# left staple
stap_left_domain1 = sc.Domain(helix=1, forward=True, start=8, end=24)
stap_left_domain0 = sc.Domain(helix=0, forward=False, start=8, end=24)
stap_left = sc.Strand(domains=[stap_left_domain1, stap_left_domain0])
# right staple
stap_right_domain0 = sc.Domain(helix=0, forward=False, start=24, end=40)
stap_right_domain1 = sc.Domain(helix=1, forward=True, start=24, end=40)
stap_right = sc.Strand(domains=[stap_right_domain0, stap_right_domain1])
stap_right.set_modification_5p(mod.biotin_5p)
# scaffold
scaf_domain1_left = sc.Domain(helix=1, forward=False, start=8, end=24)
scaf_domain0 = sc.Domain(helix=0, forward=True, start=8, end=40)
loopout = sc.Loopout(length=3)
scaf_domain1_right = sc.Domain(helix=1, forward=False, start=24, end=40)
scaf = sc.Strand(domains=[scaf_domain1_left, scaf_domain0, loopout, scaf_domain1_right], is_scaffold=True)
# whole design
design = sc.Design(helices=helices, strands=[scaf, stap_left, stap_right], grid=sc.square)
# deletions and insertions added to design are added to both strands on a helix
design.add_deletion(helix=1, offset=20)
design.add_insertion(helix=0, offset=14, length=1)
design.add_insertion(helix=0, offset=26, length=2)
# also assigns complement to strands other than scaf bound to it
design.assign_dna(scaf, 'AACGT' * 18)
return design
if __name__ == '__main__':
design = create_design()
design.write_scadnano_file(directory='output_designs')
Running the code above produces a .sc
file that, if loaded into scadnano, should appear as in the screenshot above. The web interface README explains many of the terms used in the code (domain, helix, loopout, insertion, etc.).
Abbreviated syntax with chained methods
Instead of explicitly creating variables and objects representing each domain in each strand, there is a shorter syntax using chained method calls. Instead of the above, create only the helices first, then create the Design. Then strands can be added using a shorter syntax, to describe how to draw the strand starting at the 5' end and moving to the 3' end. The following is a modified version of the above script using these chained methods
import scadnano as sc
import modifications as mod
def create_design():
# helices
helices = [sc.Helix(max_offset=48), sc.Helix(max_offset=48)]
# whole design
design = sc.Design(helices=helices, grid=sc.square)
# for absolute offsets, call method "to"
# left staple
design.strand(1, 8).to(24).cross(0).to(8)
# for relative offsets, call method "move"
# right staple
design.strand(0, 40).move(-16).cross(1).move(16).with_modification_5p(mod.biotin_5p)
# scaffold
design.strand(1, 24).move(-16).cross(0).move(32).loopout(1, 3).move(-16).as_scaffold()
# deletions and insertions added to design are added to both strands on a helix
design.add_deletion(helix=1, offset=20)
design.add_insertion(helix=0, offset=14, length=1)
design.add_insertion(helix=0, offset=26, length=2)
# also assigns complement to strands other than scaf bound to it
design.assign_dna(design.scaffold, 'AACGT' * 18)
return design
if __name__ == '__main__':
design = create_design()
design.write_scadnano_file(directory='output_designs')
Documentation is available in the API docs.
API Documentation
Online documentation of the package API (which classes, methods, functions, and constants are provided by the package) is located here: https://scadnano-python-package.readthedocs.io
Tutorial
A tutorial shows how to create a "standard" 24-helix DNA origami rectangle using the scadnano Python package.
Other examples
Note: If you are reading this on the PyPI website, the links below won't work. They are relative links intended to be read on the GitHub README page.
Several example scripts are located in the examples/ subfolder. Their output is contained in the examples/output_designs/ subfolder.
Contributing
If you wish to contribute to scadnano, please see the CONTRIBUTING document to contribute to the scadnano Python package. There is also a CONTRIBUTING document for the web interface.
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
File details
Details for the file scadnano_test-0.17.1.tar.gz
.
File metadata
- Download URL: scadnano_test-0.17.1.tar.gz
- Upload date:
- Size: 91.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.15.0 pkginfo/1.8.2 requests/2.22.0 setuptools/44.1.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/2.7.17
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9fe6a80b0ee4e1f74a40e624ed70fcaea01eafb06c3523ae02342bee7cb8ecdb |
|
MD5 | 3b69253ca7c212b27241f31f8f2b69d2 |
|
BLAKE2b-256 | 1eb4e024f0a60035eb6bffcc767c91bb6daba1afb86e17c65fb46b9731c1cbf3 |
File details
Details for the file scadnano_test-0.17.1-py3-none-any.whl
.
File metadata
- Download URL: scadnano_test-0.17.1-py3-none-any.whl
- Upload date:
- Size: 88.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.15.0 pkginfo/1.8.2 requests/2.22.0 setuptools/44.1.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/2.7.17
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 47631ba03df4a975310eb812b8ff5c6b0b11f7f7187fb40418da938367f1e084 |
|
MD5 | 626af04b37fc29c57b9d846bf0238feb |
|
BLAKE2b-256 | 90150b97da158f146ec49d4e2c6c5869327a170e24f82c6129bcf9b41b72ea71 |