Skip to main content

Another SeqRecord class with methods: degenerate seqs, codon positions based on reading frames, etc.

Project description

tests

Travis-CI Build Status Requirements Status Coverage Status
Code issues

package

PyPI Package latest release PyPI Wheel Supported versions Supported implementations

Another SeqRecord class with methods: degenerate seqs, codon positions based on reading frames, etc.

Usage

By default it assumes a DNA sequence with ambiguous characters.

>>> from seqrecord_expanded import SeqRecordExpanded
>>> seq_record = SeqRecordExpanded('TCTGAATGGAAGACAAAGCGTCCA',
...                                voucher_code='CP100-09',
...                                taxonomy={'genus': 'Melitaea',
...                                          'species': 'phoebe',
...                                         },
...                                gene_code='EF1a',
...                                reading_frame=1,
...                                table=1,  # translation table
...                                )
>>> # Degenerate sequence standard genetic code
>>> seq_record.degenerate()
'TCNGARTGGAARACNAARMGNCCN'
>>>
>>> # Degenerate sequence S method
>>> seq_record.degenerate(method='S')
'AGYGARTGGAARACNAARMGNCCN'
>>>
>>> # Degenerate sequence Z method
>>> seq_record.degenerate(method='Z')
'TCNGARTGGAARACNAARMGNCCN'
>>>
>>> # Degenerate sequence SZ method
>>> seq_record.degenerate(method='SZ')
'NNNGARTGGAARACNAARMGNCCN'
>>>
>>> # get first codon positions
>>> seq_record.first_codon_position()
'TGTAAACC'
>>>
>>> # get second codon positions
>>> seq_record.second_codon_position()
'CAGACAGC'
>>>
>>> # get third codon positions
>>> seq_record.third_codon_position()
'TAGGAGTA'
>>>
>>> # get first and second positions
>>> seq_record.first_and_second_positions()
'TCGATGAAACAACGCC'
>>>
>>> # translate to aminoacid sequence
>>> seq_record.translate()
'SEWKTKRP'
>>> # translate to aminoacid sequence
>>> seq_record.translate(table=1)
'SEWKTKRP'

Installation

pip install seqrecord-expanded

Requirements

pip install -r requirements.txt

Compatibility

Supported Python versions: 2.6, 2.7, 3.3, 3.4, 3.5, pypy.

Licence

BSD.

Authors

seqrecord-expanded was written by Carlos Peña.

Download files

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

Source Distribution

seqrecord_expanded-0.2.4.tar.gz (10.1 kB view hashes)

Uploaded Source

Built Distribution

seqrecord_expanded-0.2.4-py3-none-any.whl (12.1 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