Q1. How do I keep all metadata from my input SDF (e.g., Catalog ID, PlateID, Well) in the docked hitlist?
Use direct SDF input and direct SDF output. All columns in the input SDF will be preserved in the output.
Q2. What if I dock using an index file (.inx) instead of an SDF file?
When docking is done using an .inx file (e.g. for large parallel scans), only the compound index is preserved:
icm64 _dockScan input=input.inx output=output.sdf
The output will contain a column called IX, which is just the index of the compound in the .inx file. None of the original fields (e.g., Catalog ID, PlateID, etc.) are included.
Q3. Can I restore the original metadata after docking with .inx?
Yes. MolSoft provides a script to re-import the original metadata using the .inx file. Run this command:
Replace <docking_hitlist.sdf> with the SDF output from docking and <input_index.inx> with the same .inx file that was used during docking. The script will match the IX values and join back the metadata columns.
Below is the full ICM script. Save it as hitlist_import_orig_data.icm.