Skip to main content

Contains classes and code for representing double stranded DNA and functions for simulating homologous recombination between DNA molecules.

Project description

icon pydna

Tests & Coverage codecov PyPI version Anaconda-Server Badge0 Google group : pydna
Documentation Status GitHub issues Anaconda-Server Badge2 GitHub stars

Planning genetic constructs with many parts and assembly steps, such as recombinant metabolic pathways :petri_dish:, are often difficult to properly document as is evident from the state of such documentation in the scientific literature :radioactive:.

The pydna python package provide a human-readable formal descriptions of :dna: cloning and genetic assembly strategies in Python :snake: which allow for simulation and verification.

Pydna can be though of as executable documentation for cloning.

A cloning strategy expressed in pydna is complete, unambiguous and stable.

Pydna provides simulation of:

  • Restriction digestion
  • Ligation
  • PCR
  • Primer design
  • Gibson assembly
  • Golden gate assembly
  • Homologous recombination
  • Gel electrophoresis of DNA with generation of gel images

Virtually any sub-cloning experiment can be described in pydna, and its execution yield the sequence of the of intermediate and final resulting DNA molecule(s).

Pydna has been designed to be understandable for biologists with only some basic understanding of Python.

Pydna can formalize planning and sharing of cloning strategies and is especially useful for complex or combinatorial DNA molecule constructions.

Look at some assembly strategies made in the Jupyter notebook format here.

There is an open access paper in BMC Bioinformatics describing pydna:

abstr

Please reference the above paper when using pydna.

-----------------------------------------------------

Usage

Most pydna functionality is implemented as methods for the double stranded DNA sequence record classes Dseq and Dseqrecord, which are subclasses of the Biopython Seq and SeqRecord classes.

These classes make cut and paste cloning and PCR very simple:

>>> from pydna.dseq import Dseq
>>> seq = Dseq("GGATCCAAA","TTTGGATCC",ovhg=0)
>>> seq
Dseq(-9)
GGATCCAAA
CCTAGGTTT
>>> from Bio.Restriction import BamHI
>>> a,b = seq.cut(BamHI)
>>> a
Dseq(-5)
G
CCTAG
>>> b
Dseq(-8)
GATCCAAA
    GTTT
>>> a+b
Dseq(-9)
GGATCCAAA
CCTAGGTTT
>>> b+a
Dseq(-13)
GATCCAAAG
    GTTTCCTAG
>>> b+a+b
Dseq(-17)
GATCCAAAGGATCCAAA
    GTTTCCTAGGTTT
>>> b+a+a
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "/usr/local/lib/python2.7/dist-packages/pydna/dsdna.py", line 217, in __add__
    raise TypeError("sticky ends not compatible!")
TypeError: sticky ends not compatible!
>>>

As the example above shows, pydna keeps track of sticky ends.

Notably, homologous recombination and Gibson assembly between linear DNA fragments can be easily simulated without any additional information besides the primary sequence of the fragments.

Gel electrophoresis of DNA fragments can be simulated using the included gel module by Bruno Silva:

alt text

Look at an example notebook with a gel simulation here.

Pydna can be very compact. The nine lines of Python below, simulates the construction of a recombinant plasmid. DNA sequences are downloaded from Genbank by accession numbers that are guaranteed to be stable over time.

from pydna.genbank import Genbank
gb = Genbank("myself@email.com") # Tell Genbank who you are!
gene = gb.nucleotide("X06997") # Kluyveromyces lactis LAC12 gene for lactose permease.
from pydna.parsers import parse_primers
primer_f,primer_r = parse_primers(''' >760_KlLAC12_rv (20-mer)
                                      ttaaacagattctgcctctg

                                      >759_KlLAC12_fw (19-mer)
                                      aaatggcagatcattcgag ''')
from pydna.amplify import pcr
pcr_prod = pcr(primer_f,primer_r, gene)
vector = gb.nucleotide("AJ001614") # pCAPs cloning vector
from Bio.Restriction import EcoRV
lin_vector = vector.linearize(EcoRV)
rec_vec =  ( lin_vector + pcr_prod ).looped()

Pydna can automate the simulation of sub cloning experiments using python. This is helpful to generate examples for teaching purposes.

Read the documentation (below) or the cookbook with example files for further information.

Please post a message in the google group for pydna if you need help or have problems, questions or comments :sos:.

Feedback & suggestions are very welcome!

-----------------------------------------------------

Who is using pydna?

An Automated Protein Synthesis Pipeline with Transcriptic and Snakemake

Pyviko: an automated Python tool to design gene knockouts in complex viruses with overlapping genes

and others

-----------------------------------------------------

Documentation

Documentation is built using Sphinx from docstrings in the code and displayed at readthedocs Documentation Status

The numpy docstring format is used.

-----------------------------------------------------

Installation using conda on Anaconda

The absolutely best way of installing and using pydna is to use the free Anaconda or Miniconda python distributions.

Anaconda is a large download (about 400 Mb) while Miniconda is about 40-50 Mb.

Once Anaconda (or Miniconda) is installed, the conda package manager can be used to install pydna. Pydna and its dependencies are available from the BjornFJohansson package channel at Anaconda.org.

The first step is to add the channel by typing the command below followed by return:

conda config --append channels BjornFJohansson

Then pydna can be installed by typing the command below followed by return:

conda install pydna

This works on Windows, MacOSX and Linux, and installs all necessary and optional dependencies automatically (see below).

-----------------------------------------------------

Installation using pip

The second best way of installing pydna is with pip, the officially recommended tool.

Pip is included in recent Python versions.

Pip installs the minimal installation requirements automatically, but not the optional requirements (see below). This will probably not work directly on windows, as biopython is not directly installable.

Linux:

bjorn@bjorn-UL30A:~/pydna$ sudo pip install pydna

Windows:

You should be able to pip install pydna from the Windows terminal as biopython now can be installed with pip as well.

C:\> pip install pydna

By default python and pip are not on the PATH. You can re-install Python and select this option, or give the full path for pip. Try something like this, depending on where your copy of Python is installed:

C:\Python37\Scripts\pip install pydna

-----------------------------------------------------

Installation from Source

If you install from source, you need to install all dependencies separately (listed above). Download one of the source installers from the pypi site or from Github and extract the file. Open the pydna source code directory (containing the setup.py file) in terminal and type:

python setup.py install

-----------------------------------------------------

Source Code

Pydna is developed on Github :octocat:.

-----------------------------------------------------

Minimal installation requirements

Pydna is currently developed on and for Python 3.6, 3.7 and 3.8. Pydna versions before 1.0.0 were compatible with python 2.7 only. The list below is the minimal requirements for installing pydna. Biopython has c-extensions, but the other modules are pure python.

-----------------------------------------------------

Optional Requirements

Pydna has been designed to be used from the Jupyter notebook. If IPython and Jupyter are installed, importing ipython notebooks as modules among are supported among other things.

If the modules listed below are installed, gel simulation functionality will be available.

The pydna conda package installs the optional requirements listed above as well as:

-----------------------------------------------------

Requirements for running tests

-----------------------------------------------------

Requirements for analyzing code coverage

-----------------------------------------------------

Automatic testing

The test suit is run automatically after each commit on Linux, macOS and Windows using a GitHub action.

-----------------------------------------------------

Changelog

See the change log for recent changes.

-----------------------------------------------------

Release process

There are three github actions associated with this package:

  • pydna_test_and_coverage_workflow.yml
  • pydna_setuptools_build_workflow.yml
  • pydna_conda_build_workflow.yml

The pydna_test_and_coverage_workflow.yml is triggered on all pushed non-tagged commits. This workflow run tests, doctests and a series of Jupyter notebooks using pytest.

The two other workflows build a setuptools wheel and packages for python 3.6, 3.7 and 3.8 on Linux, Windows and macOS. These are triggered by publishing a github release.

:microbe:

:portugal:

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 Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distribution

pydna-3.1.3-py3-none-any.whl (120.5 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page