#include <openbabel/residue.h>
Inheritance diagram for OBResidue:
Public Member Functions | |
OBResidue (void) | |
OBResidue (const OBResidue &) | |
virtual | ~OBResidue (void) |
OBResidue & | operator= (const OBResidue &) |
void | AddAtom (OBAtom *atom) |
void | InsertAtom (OBAtom *atom) |
void | RemoveAtom (OBAtom *atom) |
bool | Clear () |
void | SetName (const std::string &resname) |
void | SetNum (const unsigned int resnum) |
void | SetChain (const char chain) |
void | SetChainNum (const unsigned int chainnum) |
void | SetIdx (const unsigned int idx) |
void | SetAtomID (OBAtom *atom, const std::string &id) |
void | SetHetAtom (OBAtom *atom, bool hetatm) |
void | SetSerialNum (OBAtom *atom, unsigned int sernum) |
std::string | GetName (void) const |
unsigned int | GetNum (void) const |
unsigned int | GetNumAtoms () const |
char | GetChain (void) const |
unsigned int | GetChainNum (void) const |
unsigned int | GetIdx (void) const |
unsigned int | GetResKey (void) const |
std::vector< OBAtom * > | GetAtoms (void) const |
std::vector< OBBond * > | GetBonds (bool exterior=true) const |
std::string | GetAtomID (OBAtom *atom) const |
unsigned | GetSerialNum (OBAtom *atom) const |
bool | GetAminoAcidProperty (int) const |
bool | GetAtomProperty (OBAtom *a, int) const |
bool | GetResidueProperty (int) const |
bool | IsHetAtom (OBAtom *atom) const |
bool | IsResidueType (int) const |
virtual OBBase * | DoTransformations (const std::map< std::string, std::string > *) |
template<class T> | |
T * | CastAndClear (bool clear=true) |
Iterator methods | |
OBAtomIterator | BeginAtoms () |
OBAtomIterator | EndAtoms () |
OBAtom * | BeginAtom (std::vector< OBAtom * >::iterator &i) |
OBAtom * | NextAtom (std::vector< OBAtom * >::iterator &i) |
Generic data handling methods (via OBGenericData) | |
bool | HasData (const std::string &) |
bool | HasData (const char *) |
bool | HasData (const unsigned int type) |
void | DeleteData (unsigned int type) |
void | DeleteData (OBGenericData *) |
void | DeleteData (std::vector< OBGenericData * > &) |
void | SetData (OBGenericData *d) |
unsigned int | DataSize () const |
OBGenericData * | GetData (const unsigned int type) |
OBGenericData * | GetData (const std::string &) |
OBGenericData * | GetData (const char *) |
std::vector< OBGenericData * > & | GetData () |
std::vector< OBGenericData * > | GetData (DataOrigin source) |
OBDataIterator | BeginData () |
OBDataIterator | EndData () |
Static Public Member Functions | |
static const char * | ClassDescription () |
Protected Attributes | |
unsigned int | _idx |
char | _chain |
unsigned int | _aakey |
unsigned int | _reskey |
unsigned int | _resnum |
std::string | _resname |
std::vector< bool > | _hetatm |
std::vector< std::string > | _atomid |
std::vector< OBAtom * > | _atoms |
std::vector< unsigned int > | _sernum |
std::vector< OBGenericData * > | _vdata |
The residue information is drawn from PDB or MOL2 files (or similar), which track biomolecule information, and are stored in the OBResidue class. OBResidues are stored inside the OBAtom class and OBMol classes. The residue information for an atom can be requested in the following way:
OBAtom *atom; OBResidue *r; atom = mol.GetAtom(1); r = atom->GetResidue();
cout << "This molecule has " << mol.NumResidues() << " residues." << endl; OBResidue *r; r = mol.GetResidue(1);
OBResidue | ( | void | ) |
Constructor.
~OBResidue | ( | void | ) | [virtual] |
Destructor.
void AddAtom | ( | OBAtom * | atom | ) |
Add atom
to this residue. Updates the atom via OBAtom::SetResidue().
void InsertAtom | ( | OBAtom * | atom | ) |
Add atom
to this residue. Updates the atom via OBAtom::SetResidue().
void RemoveAtom | ( | OBAtom * | atom | ) |
Remove atom
from this residue and update the atom.
bool Clear | ( | ) | [virtual] |
Clear any and all data associated with this residue. Updates all atoms included in the residue, as well as calling OBBase::Clear() for any generic data.
Reimplemented from OBBase.
void SetName | ( | const std::string & | resname | ) |
Set the name of this residue (e.g., "ALA"). Use 3-char PDB standard names. http://www.rcsb.org/pdb/file_formats/pdb/pdbguide2.2/part_79.html MODRES records for modified residues: http://www.rcsb.org/pdb/file_formats/pdb/pdbguide2.2/part_36.html.
void SetNum | ( | const unsigned int | resnum | ) |
Set the residue number (in the sequence).
void SetChain | ( | const char | chain | ) |
Set the chain ID for this residue.
void SetChainNum | ( | const unsigned int | chainnum | ) |
Set the chain number for this residue.
void SetIdx | ( | const unsigned int | idx | ) |
Set the internal index of this residue in the parent OBMol. Intended mostly for internal use
void SetAtomID | ( | OBAtom * | atom, | |
const std::string & | id | |||
) |
Set the character code ID for an ATOM record for the supplied atom This does nothing if the supplied atom is not found in the residue
void SetHetAtom | ( | OBAtom * | atom, | |
bool | hetatm | |||
) |
void SetSerialNum | ( | OBAtom * | atom, | |
unsigned int | sernum | |||
) |
Set the atomic serial number for a given atom (see OBSerialNums).
string GetName | ( | void | ) | const |
unsigned int GetNum | ( | void | ) | const |
unsigned int GetNumAtoms | ( | ) | const |
char GetChain | ( | void | ) | const |
unsigned int GetChainNum | ( | void | ) | const |
unsigned int GetIdx | ( | void | ) | const |
unsigned int GetResKey | ( | void | ) | const |
vector< OBAtom * > GetAtoms | ( | void | ) | const |
vector< OBBond * > GetBonds | ( | bool | exterior = true |
) | const |
exterior
includes bonds to atoms outside this residue (default is true) string GetAtomID | ( | OBAtom * | atom | ) | const |
unsigned int GetSerialNum | ( | OBAtom * | atom | ) | const |
bool GetAminoAcidProperty | ( | int | ) | const |
bool GetAtomProperty | ( | OBAtom * | a, | |
int | ||||
) | const |
a
has the supplied residue atom property defined from the OBResidueAtomProperty namespace bool GetResidueProperty | ( | int | ) | const |
bool IsHetAtom | ( | OBAtom * | atom | ) | const |
bool IsResidueType | ( | int | ) | const |
restype
Set by SetResidueKeys() OBAtomIterator BeginAtoms | ( | ) | [inline] |
OBAtomIterator EndAtoms | ( | ) | [inline] |
Set the iterator i
to the beginning of the atom list in this residue
Increment the iterator i
virtual OBBase* DoTransformations | ( | const std::map< std::string, std::string > * | ) | [inline, virtual, inherited] |
Perform a set of transformations specified by the user
Typically these are program options to filter or modify an object For example, see OBMol::DoTransformations() and OBMol::ClassDescription()
Reimplemented in OBMol.
static const char* ClassDescription | ( | ) | [inline, static, inherited] |
Reimplemented in OBMol.
T* CastAndClear | ( | bool | clear = true |
) | [inline, inherited] |
By default clears the object. Called from ReadMolecule of most format classes.
bool HasData | ( | const std::string & | ) | [inherited] |
bool HasData | ( | const char * | ) | [inherited] |
bool HasData | ( | const unsigned int | type | ) | [inherited] |
void DeleteData | ( | unsigned int | type | ) | [inherited] |
Delete any data matching the given OBGenericDataType.
void DeleteData | ( | OBGenericData * | ) | [inherited] |
Delete the given generic data from this object.
void DeleteData | ( | std::vector< OBGenericData * > & | ) | [inherited] |
Delete all of the given generic data from this object.
void SetData | ( | OBGenericData * | d | ) | [inline, inherited] |
Adds a data object; does nothing if d==NULL.
unsigned int DataSize | ( | ) | const [inline, inherited] |
OBGenericData * GetData | ( | const unsigned int | type | ) | [inherited] |
OBGenericData * GetData | ( | const std::string & | ) | [inherited] |
OBGenericData * GetData | ( | const char * | ) | [inherited] |
std::vector<OBGenericData*>& GetData | ( | ) | [inline, inherited] |
std::vector< OBGenericData * > GetData | ( | DataOrigin | source | ) | [inherited] |
OBDataIterator BeginData | ( | ) | [inline, inherited] |
OBDataIterator EndData | ( | ) | [inline, inherited] |
char _chain [protected] |
Chain ID.
unsigned int _aakey [protected] |
Amino Acid key ID -- see SetResidueKeys().
unsigned int _reskey [protected] |
Residue key ID -- see SetResidueKeys().
unsigned int _resnum [protected] |
Residue number (i.e., in file).
std::string _resname [protected] |
Residue text name.
std::vector<bool> _hetatm [protected] |
Is a given atom a HETAM.
std::vector<std::string> _atomid [protected] |
Residue atom text IDs.
std::vector<unsigned int> _sernum [protected] |
List of serial numbers.
std::vector<OBGenericData*> _vdata [protected, inherited] |
Custom data.