allpy
view lib/sequence.py @ 98:3d40d7b9a123
lib::project::muscle_align
project::save_fasta
sequence::operator==
fixes
test -- alignment done
| author | boris <bnagaev@gmail.com> |
|---|---|
| date | Wed, 20 Oct 2010 23:33:29 +0400 |
| parents | a2f3926f5077 |
| children | 5091fef2ad88 |
line source
1 #!/usr/bin/python
10 """
11 Mandatory data:
12 * name -- str with the name of sequence
13 * description -- str with description of the sequence
14 * monomers -- list of monomer objects (aminoacids or nucleotides)
15 * pdb_chain -- list of Bio.PDB.Chain's
17 TODO: class Protein: container of multiple Sequences,
18 class ProteinMononer: container of multiple Monomers
19 """
36 """
37 Reads Pdb chain from file
38 and align each Monomer with PDB.Residue (TODO)
39 """
45 # FIXME: align and map
