OERenderContactMap

bool OERenderContactMap(OEDepict::OEImageBase& image,
                        const OE2DActiveSiteDisplay& adisp);

Renders the protein-ligand contact map with residue toggle buttons. Clicking on any residue will highlight those ligand atoms that interact with the residue.

Note

This functionality is only available for .svg image format. In all other image formats it only depicts the residue circles.

The generated svg image should be included into and HTML page with the SVG MIME type.

<object data="<imagename>.svg" type="image/svg+xml"></object>
image

The image on which the contact map is rendered.

adisp

The OE2DActiveSiteDisplay object that holds the data necessary to depict the interactions of an active site.

The following code snippet shows how to use the OERenderContactMap function. The image created is shown in Figure: Example of using the OERenderContactMap function.

Example:

OEInteractionHintContainer asite = new OEInteractionHintContainer(receptor, ligand);
oebio.OEPerceiveInteractionHints(asite);
oegrapheme.OEPrepareActiveSiteDepiction(asite);

OEImage image = new OEImage(800.0, 600.0);
OE2DActiveSiteDisplayOptions opts = new OE2DActiveSiteDisplayOptions(image.GetWidth(), image.GetHeight());
OE2DActiveSiteDisplay adisp = new OE2DActiveSiteDisplay(asite, opts);

oegrapheme.OERenderContactMap(image, adisp);
oedepict.OEWriteImage("RenderContactMap.svg", image);

click on any residue circles

Example of using the OERenderContactMap function

../../_images/RenderContactMap.svg

Code Example