Examples for Molecule representation

    In this part several chemical structures are used to illustrate the internal representation of molecule graphs. The diagrams below are not complete yet demonstrate the most relevant data items and their internal relationships. Examples range from the simplest molecule to a complex reaction schema.

    Simple molecular structure

    As a first example take the water molecule.

    images/download/attachments/1806277/simpl_mol_struc_h2o.png

    Labels next to the atom symbols are the internal atom indexes assigned by the system (note, that actual values of the indexes are the displayed values minus 1, as representation starts from 0).

    images/download/attachments/1806277/simpl_mol_struc_diagr.png

    In this diagram each box represents an object of the class named in the header row. Names and values in the bottom part of the box are data fields (attributes, class members) and actual values that represent the molecule drawn (water, in this example). Embedded boxes represent data objects that constitute the outer object: water consists of two bonds (MolBond objects) and three atoms (MolAtom objects). Lines connecting the boxes represent associations between the objects: each pair of atoms is linked by a bond.

    In the next examples the notation of the Molecule object is used, but only from a “bird’s eye view”, that is, without considering its internal finer scale structure, which, however, is always present.

    Molecule with S-groups

    S-groups are structural entities within a molecule. S-group provides a base implementation to represent abbreviations, multiple groups, polymers, attached data, coordinated structures, position variations, generic groups, ordered and unordered mixtures of components. Abbreviated and multiple groups are often drawn in an abbreviated or condensed form in the structural formula.

    In the example below the monomer unit of polystyrene is used to demonstrate the internal representation of S-groups in Chemaxon core classes.

    images/download/attachments/1806277/mol_with_sgroup_1.png

    This monomer consists of two structural parts that can be denoted by an S-group: the phenol ring and the hydrocarbon chain.

    images/download/attachments/1806277/mol_with_sgroup_2.png

    The structure contained in the S-group is represented by a Molecule object just as any other structure, since the S-group can simply be regarded as a particular structural entity within the molecule. Thus the internal representation of the Molecule is extended by two S-group objects that depict the type of the S-group and its abbreviation (symbolic name) if one exists. Each S-group object refers to its constituent atoms.

    Molecule with R-groups

    An R-group is a collection of possible substituent fragments that can be part of a molecule at a specific location.

    images/download/attachments/1806277/mol_with_rgroup_1.png

    The complexity of such chemical structure representation cannot be captured by one single Molecule object.

    images/download/attachments/1806277/mol_with_rgroup_2.png

    Instead, an RgMolecule object is introduced (which, however, inherits Molecule) and this object embeds all parts of the structure: the core (or scaffold) structure, referred to as the “root” molecule, and all elements of each R-group as Molecule objects.

    Reaction schema

    A reaction is a collection of reagents, products and agents. It is represented by the RxnMolecule object. The reagent, product and agent elements are Molecule objects embedded into the RxnMolecule object. The type of an element is defined by its relative position to the reaction arrow. The present representation is capable to express single step reactions only.

    images/download/attachments/1806277/reaction_schemas1.png images/download/attachments/1806277/reaction_schemas2.png

    Reaction schema with R-groups

    Embedding of R-groups into a reaction is possible by setting the reaction as the root of an RgMolecule.

    images/download/attachments/1806277/reaction_schemas_with_rgroup.png