A class which is returned by the ResidueIterator and contains
information about the residue including the atoms which make it up.
|
__init__(self,
st,
resnum,
inscode,
chain,
atoms=[]) |
|
|
|
__str__(self)
Return a string representation - chain:resnum[inscode]. |
|
|
|
|
|
_setPdbRes(self,
newvalue) |
|
|
|
|
|
_setChain(self,
newvalue) |
|
|
|
|
|
_setResnum(self,
newvalue) |
|
|
|
|
|
_setInscode(self,
newvalue) |
|
|
|
|
|
|
|
|
|
getCode(self)
Return the one-letter residue code for this residue. |
|
|
|
hasMissingAtoms(self)
Returns True is this residue doesn't have the expected number of
heavy atoms. |
|
|
|
isStandardResidue(self)
Returns True if this residue is on the list of standard PDB residues |
|
|
|
isConnectedToResidue(self,
other_res)
Returns True if the given residue is connected (C->N) to this
residue. |
|
|
|
applyStyle(self,
atoms=ATOM_BALLNSTICK,
bonds=BOND_BALLNSTICK)
Applies the given display styles to the atoms and bonds of the
residue. |
|
|
Inherited from _AtomCollection :
__len__ ,
atom ,
extractStructure ,
getAtomList
|
|
pdbres = property(_getPdbRes, _setPdbRes, doc= "PDB residue na...
|
|
chain = property(_getChain, _setChain, doc= "Chain name")
|
|
resnum = property(_getResnum, _setResnum, doc= "PDB residue nu...
|
|
inscode = property(_getInscode, _setInscode, doc= "PDB residue...
|
|
temperature_factor = property(_getBF, doc= "Residue B (tempera...
|
|
molecule_number = property(_getMolNumber, doc= "Molecule number")
|
|
secondary_structure = property(_getSecStruct, doc= "Secondary ...
|