Package mmLib :: Module Structure :: Class BetaSheet
[hide private]
[frames] | no frames]

Class BetaSheet

source code

object --+
         |
        BetaSheet

Class containing information on a protein beta sheet. BetaSheet objects contain a list of Segments spanning the beta sheet.

Instance Methods [hide private]
 
__init__(self, sheet_id='', **args)
x.__init__(...) initializes x; see x.__class__.__doc__ for signature
source code
 
__str__(self)
str(x)
source code
 
add_strand(self, strand)
Adds a Segment instance.
source code
 
construct_segments(self)
Calls Strand.construct_segment() on all child Strand objects.
source code
 
get_model(self)
REturns the parent Model object.
source code
 
get_structure(self)
Returns the parent Structure object.
source code
 
iter_strands(self)
Iterates over all child Strands objects.
source code
 
iter_fragments(self)
Iterates over all Fragment objects.
source code
 
iter_atoms(self)
Iterates all Atom objects.
source code
 
iter_all_atoms(self)
Iterates all Atom objects plus any in non-default alt_loc conformations.
source code

Inherited from object: __delattr__, __format__, __getattribute__, __hash__, __new__, __reduce__, __reduce_ex__, __repr__, __setattr__, __sizeof__, __subclasshook__

Properties [hide private]

Inherited from object: __class__

Method Details [hide private]

__init__(self, sheet_id='', **args)
(Constructor)

source code 

x.__init__(...) initializes x; see x.__class__.__doc__ for signature

Overrides: object.__init__
(inherited documentation)

__str__(self)
(Informal representation operator)

source code 

str(x)

Overrides: object.__str__
(inherited documentation)