Feb 16 2024 Feedback.
Contents
 
Introduction
Help Videos
Reference Guide
Getting Started
Protein Structure
Molecular Graphics
Slides & ActiveICM
Sequences & Alignments
Protein Modeling
Cheminformatics
Learn and Predict
Docking
Virtual Screening
Molecular Dynamics
MolScreen
3D Ligand Editor
Tables and Plots
Local Databases
ICM-Scarab
KNIME
Tutorials
FAQs
 FAQ-Install
 FAQ-Graphics and Display
 FAQ ActiveICM
 FAQ-Structure
 FAQ-Dock
 Sequences and Alignments
 FAQ-Modeling
 FAQ-Cheminformatics
  Chemical Search
  Molecular Editor
  convert to 3D
  Grid View
  Convert Chemical
  convert to 3D and preserve
  Add Property Column
  Extract Ligand
  Druglikeness
  Chemical Monitor
  SMILES
  APF Model
  Chemical Rotate
  Remove salt
  Fingerprints
  Distance to Ring
  H-bond acceptors
 FAQ MolCart
 FAQ-Script
 
Index
PrevICM User's Guide
22.8 FAQ-Cheminformatics
Next

[ Chemical Search | Molecular Editor | convert to 3D | Grid View | Convert Chemical | convert to 3D and preserve | Add Property Column | Extract Ligand | Druglikeness | Chemical Monitor | SMILES | APF Model | Chemical Rotate | Remove salt | Fingerprints | Distance to Ring | H-bond acceptors ]

Frequently asked questions regarding small molecules, ICM-Chemistry tools and MolCart

22.8.1 How do I perform a chemical search


You can search MolCart or Chemical Tables using the ICM Chemical Search Window. This window can be displayed by going to:

  • Tools/Chemistry/Chemical Search

OR

  • Click on this icon

OR

  • Right click on a structure in a chemical table and select Query Molecule.

OR

  • Or right click on a database in MolCart you wish to search and select Query...

22.8.2 How can I draw small molecules?


Use the molecule editor

Chemistry/Molecular Editor

or look for the ICM molecular editor button at the top of the graphical user interface.

22.8.3 How do I read in a small molecule from ISIS draw and convert it to 3D?


  • Save the molecule in mol format and then read into ICM (File/Open).
  • The molecule should be displayed in 2D in a molecular table.
  • Right click on the molecule in the table and select chemistry/convert to 3D and optimize.

NOTE: There is no need to use an external chemistry drawing software when you can use the ICM molecular editor which is fully integrated into the ICM software.

22.8.4 How can I change the layout of a chemical table?


To change the layout of a chemical table (eg converting a table to grid view).

  • Select the columns you wish to display in grid view. You can do this by clicking on the column headers with the CTRL key pressed down.
  • Once the columns are selected right click inside the table and select Table View
  • Select Custom Grid...

22.8.5 How can I convert a chemical in a chemical table into 3D?


To do this:

  • Select the chemical or chemicals you wish to convert to 3D. You can do this by clicking on the row number whilst keeping the CTRL key pressed down.
  • Right click on the chemical table and select Chemistry/Convert 3D and Optimize

22.8.6 I have a small molecule which already has the 3D coordinates defined. How can I load the molecule and not optimize it so as to preserve the assigned 3D coordinates?


  • File/Open and read in the molecule - it should be then displayed in a molecular table
  • Right click on the molecule in the table and select Chemistry/ Load and Preserve Coordinates.

22.8.7 I have a chemical table displayed - how can I add columns of chemical properties associated with each chemical in my table?


To read a chemical table into ICM:

  • File/Open and look for sdf files.

To add a chemical property to the table.

  • Right click on the 'mol' column header and select Insert Column...

  • Click on the drop down 'Function' button and select chemical.
  • Select which property you wouls like to add and click OK.
  • The property you selected will be displayed in the table.

22.8.8 I have a small molecule displayed in 3D in a loaded PDB file. How can I extract this molecule into an ICM Chemical Table?


You can extract a ligand from an ICM object or PDB file by:

  • Right click on the ligand in the ICM Workspace.=
  • Select Extract Ligand.
  • Choose to extract either 2D or 3D coordinates and the molecule will be placed in a chemical table.

22.8.9 What is considered a good druglikeness value?


When building a molecule in the ICM Molecular Editor (Tools/Chemistry) properties such as druglikeness are calculated on the fly. The properties can also be added by inserting a column into a chemical table (right click on column header/ insert column/ Function = Chemical). These values should be used as a guide and druglikeness is a prediction based on drug-like properties. A druglikeness value less than zero indicates that the compound may have some non-drug-like properties.

22.8.10 I do not see the chemical property monitor in the molecular editor. Where is it?


If you do not see the chemical monitor in the ICM Molecule Editor - Go to:

  • Go to Molecular Editor
  • View/Chemical Monitor

22.8.11 How to convert SMILES strings to 2D


See Convert Smiles to 2D section.

22.8.12 Is there a way to build a classification model using the APF output?


_setAPFparams is in the distribution since 3.6-0;

The usage:

icm _apf3Dqsar train=trainingSet.sdf activity=LogIC50 table=testSet.sdf

Training and test set compounds should be all pre-aligned, for example by aligning training set actives using APF multiple chemical alignment, and then superimposing the test compounds onto aligned actives using APF superposition. Any external alignment method can be used as well. The field containing activity data in the training set SDF is specified by activity= argument.

The script also can take alignments in icm multiple object format *.ob, in which case SDFs are only used for input/output of activity data and can be just 2D:

icm _apf3Dqsar train=trainingSet.sdf align=trainingSet3Daligned.ob activity=LogIC50 predict=testSet3Daligned.ob table=testSet.sdf

The results are written to testSet_predict.sdf output file. Some statistics is reported along the way. If testSet.sdf contains activity (i.e. LogIC50) column like the training set, RMSD and R2 will be reported as well.

22.8.13 How to rotate a 2D chemical sketch so it fits nicely in its cell in a chemical table?


See this description in the command line manual:

http://www.molsoft.com/man/icm-commands.html#make-flat

22.8.14 How do I remove unwanted metal and counterions from an SDF file?


You can do this in the menu option Chemistry/Standardize and check the remove salt option.

22.8.15 How to export binary fingerprints?


To export our default binary fingerprints the Descriptor function can be used as below:

Sarray(Descriptor(t.mol))

It will return array of binary 0/1 strings of length 1536.

22.8.16 How to measure the distance to a center of a ring?


If you need to just measure the distance from the center of the ring to the atom it can be done lile this:

ring atoms are selected into as_graph and the distance is measured from the center of the mass to atom 'c3'

Distance( Matrix( Mean(Xyz(as_graph ) ) ) Xyz( a_//c3 ) )

to visualize this you can create a dummy atom in the center of the ring


# create a single atom with coordinates in the center of the ring

read mol Chemical( "C|3D:" + Sum(Sarray( Mean(Xyz(as_graph  )))",") ) name="cent_ring"

# display it

display xstick  a_cent_ring.m

# display distance

make distance append refresh a_cent_ring.m/1/c1 a_//c3 display

22.8.17 How does ICM calculate the number of hydrogen bond acceptors in a chemical?


The number of hydrogen bond acceptors is calculated as a sum of number of lone pairs on the following atoms:

  • any oxygen (double bonded - 2 pair, single bonded - 1 pair)
  • SP1 nitrogen (1 coordinated) - 1 pair
  • SP2 nitrogen (2 coordinated) - 1 pair
  • SP3 nitrogen (3 coordinated) - 1 pair
  • 2 valency sulfur (same as oxygen)


Prev
FAQ-Modeling
Home
Up
Next
FAQ MolCart

Copyright© 1989-2020, Molsoft,LLC - All Rights Reserved.
This document contains proprietary and confidential information of Molsoft, LLC.
The content of this document may not be disclosed to third parties, copied or duplicated in any form,
in whole or in part, without the prior written permission from Molsoft, LLC.