1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44
|
# Copyright (C) 2002, Thomas Hamelryck (thamelry@binf.ku.dk)
# This code is part of the Biopython distribution and governed by its
# license. Please see the LICENSE file that should have been included
# as part of this package.
"""The structure class, representing a macromolecular structure."""
from Bio.PDB.Entity import Entity
class Structure(Entity):
"""The Structure class contains a collection of Model instances."""
def __init__(self, id):
"""Initialize the class."""
self.level = "S"
Entity.__init__(self, id)
def __repr__(self):
"""Return the structure identifier."""
return "<Structure id=%s>" % self.get_id()
def get_models(self):
"""Return models."""
for m in self:
yield m
def get_chains(self):
"""Return chains from models."""
for m in self.get_models():
for c in m:
yield c
def get_residues(self):
"""Return residues from chains."""
for c in self.get_chains():
for r in c:
yield r
def get_atoms(self):
"""Return atoms from residue."""
for r in self.get_residues():
for a in r:
yield a
|