BjornFJohansson / pydna

Clone with Python! Data structures for double stranded DNA & simulation of homologous recombination, Gibson assembly, cut & paste cloning.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

icon pydna

Tests & Coverage codecov PyPI version 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 🧫, are often difficult to properly document as is evident from the poor state of documentation in the scientific literature ☒️.

The pydna python package provide a human-readable formal descriptions of 🧬 cloning and genetic assembly strategies in Python 🐍 which allow for simulation and verification. Pydna can be used as executable documentation for cloning.

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

Pydna provides simulation of:

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

Virtually any sub-cloning experiment can be described in pydna, and its execution yield the sequences of intermediate and final DNA molecules.

Pydna has been designed with the goal of being 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.

Start by looking at the cookbook.

Some simple examples can be found here.

For more elaborate use, look at some assembly strategies of D-xylose metabolic pathways MetabolicEngineeringGroupCBMA/ypk-xylose-pathways.

See below for documentation.

----

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 PCR primer design, PCR simulation and cut-and-paste cloning very simple:

example

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

Pydna can be very compact. The eleven 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()

Another use case for pydna in the automatic generation of sub cloning examples for teaching purposes. These examples

Feedback & suggestions are very welcome! Please post a message in the google group for pydna if you need help or have problems, questions or comments πŸ†˜.

----

Who is using pydna?

Taylor, L. J., & Strebel, K. (2017). Pyviko: an automated Python tool to design gene knockouts in complex viruses with overlapping genes. BMC Microbiology, 17(1), 12. PubMed

Wang, Y., Xue, H., Pourcel, C., Du, Y., & Gautheret, D. (2021). 2-kupl: mapping-free variant detection from DNA-seq data of matched samples. In Cold Spring Harbor Laboratory (p. 2021.01.17.427048). DOI PubMed

An Automated Protein Synthesis Pipeline with Transcriptic and Snakemake

and other projects on github

----

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

abstr

Please reference the above paper:

Pereira, F., Azevedo, F., Carvalho, Γ‚., Ribeiro, G. F., Budde, M. W., & Johansson, B. (2015). Pydna: a simulation and documentation tool for DNA assembly strategies using python. BMC Bioinformatics, 16(142), 142.

When using pydna.

----

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 pip

Pip is included in recent Python versions and is the officially recommended tool.

Pip installs the minimal installation requirements automatically, but not the optional requirements (see below). The --pre switch to get the latest version of pydna.

pip install --pre --upgrade pydna

for optional functionality do:

pip install --pre --upgrade pydna[clipboard,download,express,gel]

Remove options inside the square brackets as required, but be sure not to leave spaces as pip will not recognize the options. See below under "Optional dependencies".

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 during installation, 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

----

Source Code

Pydna is developed on Github :octocat:. I am happy to collaborate on new features or bugfixes.

----

Minimal installation dependencies

The list below is the minimal requirements for installing pydna. Biopython and pydivsufsort has c-extensions, but the other modules are pure python.

Pydna is importable even without pyfiglet.

Optional dependencies

These can be installed pip install pydna[clipboard,gel,download,express] where [clipboard,gel,download,express] is the list of options available. Any combination of the words inside the square brackets are allowed, but no white space.

clipboard

Enables the pydna.dseqrecord.Dseqrecord.copy_gb_to_clipboard() and pydna.dseqrecord.Dseqrecord.copy_fasta_to_clipboard()

These methods will put a copy the sequence on the clipboard in either Genbank (gb) or fasta format.

Dependency Function in pydna
pyperclip copy sequence to clipboard

download

Pyparsing enables the pydna.genbankfixer.gbtext_clean() function that can automatically correct malformed sequence files in Genbank format. These are often found online, so this option also installs requests to enable the pydna.genbankfixer.download.download_text() function which can be used to get cleaned up text from a URL.

Dependency Function in pydna
pyparsing fix corrupt Genbank files with pydna.genbankfixer
requests download sequences with pydna.download

express

This option enables the pydna.utils.cai() function and the cai() method available from subclasses of pydna.seqrecord.SeqRecord, such as pydna.dseqrecord.Dseqrecord.

| cai2 | codon adaptation index calculations in several modules |

gel

Scipy, matplotlib and pillow (PIL) enable the generation of gel images. Numpy is also needed, but usually installed as a dependency of biopython.

Dependency Function in pydna
scipy gel simulation with pydna.gel
matplotlib β€œ
pillow β€œ

Requirements for running tests, coverage and profiling

for instance by pip install pytest pytest-cov pytest-doctestplus pytest-profiling coverage nbval requests-mock

Running the entire test suite also require:

  • scipy
  • matplotlib
  • pillow
  • pyparsing
  • requests
  • cai2

That can be installed by pip install pydna[clipboard,gel,download,express]

or by pip install pyparsing requests cai2 scipy matplotlib pillow

----

Contributing

Please direct pull requests towards the develop branch.

Local development

  1. Use Poetry to install dependencies and activate virtual environment.

    # If you want the virtual environment to be created in this folder
    poetry config virtualenvs.in-project true
    
    # Install dependencies (extras are required for tests to pass)
    poetry install --all-extras
    
    # Activate virtual environment
    poetry shell
  2. Make your changes.

  3. Add the necessary tests in tests/.

  4. Run the tests from the root directory with python run_test.py.

Building the documentation locally

Below the commands to run a local sphinx server that auto-updated when files are changed.

# Install docs dependency group
poetry install --with docs

# Start the sphinx server to see docs live by default at http://127.0.0.1:8000/
sphinx-autobuild --watch src/ docs docs/_build/html

Automatic testing & Release process

See the releases for changes and releases.

There are two github actions for this package:

  • .github/workflows/pydna_test_and_coverage_workflow.yml
  • .github/workflows/pydna_pypi_build_workflow.yml

The test_and_coverage workflow is triggered on all pushed commits for all branches except the master branch. This workflow run tests, doctests and a series of Jupyter notebooks using pytest on Linux, Windows and macOS with all supported python versions.

The build workflow builds a PyPI packages using poetry. This workflow is triggered by publishing a Github release manually from the Github web interface.

----

Building a PyPI package with Poetry

  1. Commit changes to git

  2. Tag the commit according to the Semantic Versioning format, for example "v2.0.1a3". Do not forget the "v" or poetry will not recognize the tag.

     git tag v2.0.1a3
    
  3. Pydna uses the poetry poetry-dynamic-versioning plugin.

     poetry dynamic-versioning # This sets the version number in the source files
    
  4. Verify the version

     poetry version
    
  5. Build package:

     poetry build # run this command in the root directory where the pyproject.toml file is located
    
  6. Verify the filename of the files in the dist/ folder, they should match

  7. Publish to pypi

     poetry publish
    

----

History

Pydna was made public in 2012 on Google code.

🦠

πŸ‡΅πŸ‡Ή

About

Clone with Python! Data structures for double stranded DNA & simulation of homologous recombination, Gibson assembly, cut & paste cloning.

License:Other


Languages

Language:Jupyter Notebook 60.5%Language:Python 39.1%Language:HTML 0.2%Language:C 0.1%Language:Rust 0.0%Language:Shell 0.0%Language:C++ 0.0%Language:JavaScript 0.0%