home
Oct 31, 2025
1 min

iFrame for CHEESE

CHEESE is a web-based shape and electrostatic search engine. If you want to drop it into your web page, blog post, CMS or a private dashboard, an iframe embed is the quickest path—no additional scripts required.

Default catalog embed

<div style="width: 120%; height: 800px; border: 1px solid #ddd; border-radius: 8px; overflow: hidden; margin: 20px 0;">
  <iframe
    src="https://cheese.deepmedchem.com/"
    title="CHEESE Chemical Space Search"
    style="
      border: none;
      width: 120%;
      height: 120%;
      transform: scale(0.85);
      transform-origin: 0 0;
    "
  ></iframe>
</div>

Renders on the page as:

Smaller pages or mobile devices

<iframe
  src="https://cheese.deepmedchem.com/"
  width="100%"
  height="800px"
  title="CHEESE Chemical Space Search"
  style="border: none;"
></iframe>

Renders on the page as:

Vendor catalog preset

For instance /emolecules path loads CHEESE with the commercial eMolecules catalog. Please use as well utm_source=emolecules so we can identify the origin.

<div style="width: 120%; height: 800px; border: 1px solid #ddd; border-radius: 8px; overflow: hidden; margin: 20px 0;">
  <iframe
    src="https://cheese.deepmedchem.com/emolecules?utm_source=emolecules"
    title="CHEESE Chemical Space Search"
    style="
      border: none;
      width: 120%;
      height: 120%;
      transform: scale(0.85);
      transform-origin: 0 0;
    "
  ></iframe>
</div>

Which produces:

For other vendors you may add /enamine, /aurigene, /molport, /mcule etc.

That’s all that’s needed—wrap the iframe in a styled container, tweak the height if you prefer a tighter viewport, and CHEESE is ready to use inside any html webpage or markdown blogpost.