allpy
view allpy/markup.py @ 645:88c246f20918
Fixed monomer pickling to avoid name clashes. This breaks pickle backwards-compatiblity! [see #35]
Previosly all monomer classes were stored a single namespace,
allpy.data.monomers. This caused a few name clashes, which were mostly
resolved, and one name clash, that was not. (This caused one class to be named
differently depending on the order in which modules were loaded).
Now, instead of one allpy.data.monomers module we have allpy.data.monomers
package with modules dna, rna, protein. This ensures that all name clashes are
resolved uniformly upon any sequence of modules loading.
This may also help in future to keep backward-compatibility longer in case we
replace dynaminc monomer class creation with storing the classes in the module -
if we want to retain independent loading of dna/rna/protein parts.
author | Daniil Alexeyevsky <dendik@kodomo.fbb.msu.ru> |
---|---|
date | Wed, 08 Jun 2011 21:31:02 +0400 |
parents | 3566d253c994 |
children |
line source
4 """ object for use as key for default value """
7 """ Markup for Sequence or Alignment
9 container is iterable collection of items.
10 item is object getting markup data (new attribute).
12 container: Alignment, item: Column
13 container: Sequence, item: Monomer
15 Markup stored in attributes of item is internal value.
16 When export or import, it is mapped to or from external value.
17 Internal value could be of any type.
18 External value should be single character.
20 Data:
21 * name -- name (str) of attribute of object
22 * container
23 * map_out -- dict, mapping internal values to external
24 * map_in -- dict, mapping external values to internal
26 map_in and map_out can have key markup.default, which used when
27 input key is not in map. To drop this defaults, drop this key
28 from map_out and map_in dicts. In this case to_string() and
29 from_string() methods can raise KeyError
30 """
33 """ Note: add convenient defaults to maps """
55 """ return internal value for given item
57 markup[monomer] <==> monomer.name, where name is markup.name
58 """
62 """ set attribute of item to value """
66 """ return item has attribute
68 usage: if item in markup
69 """
73 """ delete all attributes from items """
78 """ return string representing markup """
87 @classmethod
89 """ return new markup
91 add (or replaces) attributes to items
92 """
104 """ return list of tuples (item, self[item]) for items with attribute """
110 """ return list of items for with attribute is determined """