Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/adelq/dnds

Calculate dN/dS ratio precisely (Ka/Ks) using a codon-by-codon counting method.
https://github.com/adelq/dnds

Last synced: about 6 hours ago
JSON representation

Calculate dN/dS ratio precisely (Ka/Ks) using a codon-by-codon counting method.

Awesome Lists containing this project

README

        

dN/dS Calculator
================

.. image:: https://travis-ci.org/adelq/dnds.svg?branch=master
:target: https://travis-ci.org/adelq/dnds

.. image:: https://img.shields.io/pypi/v/dnds.svg?maxAge=2592000?style=plastic
:target: https://pypi.python.org/pypi/dnds

Calculate dN/dS ratio precisely (Ka/Ks) using a codon-by-codon counting
method. Also calculates the pN/pS ratio precisely (previously referred to as
dN/dS).

Usage
-----

.. code:: python

>>> sequence_1 = "ATGCTTTTGAAATCG"
>>> sequence_2 = "ATGCGTTCGAAGTCG"
>>> pnps(sequence_1, sequence2)
Fraction(38, 71)
>>> round(float(pnps(sequence_1, sequence2)), 3)
0.535
>>> round(dnds(sequence_1, sequence_2), 3)
0.467