Trees | Indices | Help |
---|
|
|
|||
|
|||
anything (can be a tuple) |
|
||
|
|||
|
|||
int |
|
||
|
|||
|
|||
[(chain_id, res_id), (chain_id, res_id),...] |
|
|
True if the mapping has a property for this residue. Example: >>> if (chain_id, res_id) in apmap: ... res, prop = apmap[(chain_id, res_id)]
|
Return property for a residue.
|
Iterate over the (entity, property) list. Handy alternative to the dictionary-like access. Example: >>> for (res, property) in iter(map): ... print res, property
|
Return number of residues for which the property is available.
|
True if the mapping has a property for this residue. (Obsolete; use "id in mapping" instead.) Example: >>> if apmap.has_key((chain_id, res_id)): ... res, prop = apmap[(chain_id, res_id)] Is equivalent to: >>> if (chain_id, res_id) in apmap: ... res, prop = apmap[(chain_id, res_id)]
|
Return the list of residues.
|
Trees | Indices | Help |
---|
Generated by Epydoc 3.0.1 on Fri Nov 26 15:43:50 2010 | http://epydoc.sourceforge.net |