Skip to content

DeltaVML/haem

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

haem

Quick start

Create a DNA sequence, complement and transcribe it:

>>> import haem
>>> dna = haem.DNASequence("ACGT")
>>> dna.complement
<DNASequence: TGCA>
>>> dna.transcribe()
<RNASequence: ACGU>

Create an amino acid from a codon and from an ambiguous codon:

>>> haem.AminoAcid("UCA")
AminoAcid.SERINE
>>> haem.AminoAcid("UCN")
AminoAcid.SERINE

About

A Python library for working on Bioinformatics problems

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 65.5%
  • Rust 34.3%
  • Makefile 0.2%