Skip to main content

Primer selection + data analysis for DNA assembly validation

Project description

.. raw:: html

<p align="center">
<img alt="Primavera Logo" title="Primavera Logo" src="https://raw.githubusercontent.com/Edinburgh-Genome-Foundry/Primavera/master/docs/_static/images/title.png" width="550">
<br /><br />
</p>

.. image:: https://travis-ci.org/Edinburgh-Genome-Foundry/Primavera.svg?branch=master
:target: https://travis-ci.org/Edinburgh-Genome-Foundry/Primavera
:alt: Travis CI build status

(documentation under construction)

Primavera is a Python library to plan and analyze primer-based verification of DNA assemblies, using Sanger sequencing or verification PCR. It implements methods to design and select primers to ensure that the relevant assembly segments will be covered, and it

Usage
-----

**Primer selection**

The following code assumes that a file ``available_primers.fa`` contains the labels and sequences of all available primers in the lab, and that the assemblies to be sequence-verified have annotations indicating the zones that the sequencing should cover and zones where primer annealing should be avoided.

.. image:: https://raw.githubusercontent.com/Edinburgh-Genome-Foundry/Primavera/master/docs/_static/images/annotated_genbank.png
:width: 600px

.. code:: python

from primavera import PrimerSelector, Primer, load_record
import os

# LOAD ASSEMBLIES RECORDS AND AVAILABLE PRIMERS
records = [load_record(file_path, linear=False)
for file_path in ['my_record_1.gb', 'my_record_2.gb'...]]
available_primers = Primer.list_from_fasta("example_primers.fa")

# SELECT THE BEST PRIMERS
selector = PrimerSelector(tm_range=(55, 70), size_range=(16, 25))
selected_primers = selector.select_primers(records, available_primers)

# PLOT THE COVERAGE AND WRITE THE PRIMERS IN A SPREADSHEET
selector.plot_coverage(records, selected_primers, 'coverage.pdf')
selector.write_primers_table(selected_primers, 'selected_primers.csv')

The returned ``selected_primers`` contains a list of lists of primers (one list for each construct). The PDF report returned looks like this:

.. image:: https://raw.githubusercontent.com/Edinburgh-Genome-Foundry/Primavera/master/docs/_static/images/annotated_primer_selection.png
:width: 600px

**Sequencing Validation**

(documentation for this feature is coming soon)



Installation
-------------

(Soon) You can install Primavera through PIP

.. code::

sudo pip install primavera

Alternatively, you can unzip the sources in a folder and type

.. code::

sudo python setup.py install

License = MIT
--------------

Primavera is an open-source software originally written at the `Edinburgh Genome Foundry <http://edinburgh-genome-foundry.github.io/home.html>`_ by `Zulko <https://github.com/Zulko>`_ and `released on Github <https://github.com/Edinburgh-Genome-Foundry/Primavera>`_ under the MIT licence (¢ Edinburg Genome Foundry).

Everyone is welcome to contribute !

Contribute
-----------

Primavera is an open-source software originally developed at the Edinburgh
Genome Foundry by Zulko and released on Github under the MIT licence (copyright Edinburgh Genome Foundry). Everyone is welcome to contribute !

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

primavera-0.1.2.tar.gz (23.0 kB view hashes)

Uploaded Source

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