Документ взят из кэша поисковой машины. Адрес оригинального документа : http://kodomo.fbb.msu.ru/hg/allpy/file/5caae97bacdf/allpy/base.py
Дата изменения: Unknown
Дата индексирования: Sun Feb 3 19:36:48 2013
Кодировка:
allpy: 5caae97bacdf allpy/base.py

allpy

view allpy/base.py @ 243:5caae97bacdf

allpy: add documentation to base.Sequence
author boris <bnagaev@gmail.com>
date Fri, 03 Dec 2010 22:57:37 +0300
parents 292b74612a42
children 6507cd6808c7
line source
1 class Sequence(list):
2 """ Sequence of Monomers
4 list of monomer objects
6 Mandatory data:
7 * name -- str with the name of sequence
8 * description -- str with description of the sequence
9 """
10 pass
12 class MonomerType(list):
13 """ """
14 pass
16 class Monomer(object):
17 """ """
18 pass
20 class Alignment(list):
21 """ """
22 pass
24 class Block(list):
25 """ """
26 pass