Metadata-Version: 2.1
Name: dogma
Version: 0.0.7
Summary: Collection of object-oriented entities related by the central dogma of biology.
Home-page: https://github.com/griffinclausen/dogma
Author: Griffin Clausen
Author-email: dogma.maintainer@gmail.com
License: MIT
Platform: UNKNOWN
Requires-Dist: pandas

dogma
=====

Collection of object-oriented entities related by the central dogma of
biology.


Installation
============

using Pipenv
------------

::

   >> pipenv install dogma

or using pip
------------

::

   >> pip install dogma

or Github
---------

::

   >> git clone https://github.com/griffinclausen/dogma.git
   >> cd dogma
   >> pipenv install .

Basic Usage
===========

::

   >> from dogma import GeneticCode, Oligonucleotide
   >> supE = GeneticCode(1, {'TAG': 'Q'})
   >> oligo = Oligonucleotide('NNK', supE)
   >> samples = oligo.samples(100)
   >> print(samples)

Contact Information
===================

dogma.maintainer@gmail.com


